OLD | NEW |
1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "src/objects.h" | 5 #include "src/objects.h" |
6 | 6 |
7 #include <cmath> | 7 #include <cmath> |
8 #include <iomanip> | 8 #include <iomanip> |
9 #include <sstream> | 9 #include <sstream> |
10 | 10 |
(...skipping 24 matching lines...) Expand all Loading... |
35 #include "src/list.h" | 35 #include "src/list.h" |
36 #include "src/log.h" | 36 #include "src/log.h" |
37 #include "src/lookup.h" | 37 #include "src/lookup.h" |
38 #include "src/macro-assembler.h" | 38 #include "src/macro-assembler.h" |
39 #include "src/messages.h" | 39 #include "src/messages.h" |
40 #include "src/objects-inl.h" | 40 #include "src/objects-inl.h" |
41 #include "src/objects-body-descriptors-inl.h" | 41 #include "src/objects-body-descriptors-inl.h" |
42 #include "src/profiler/cpu-profiler.h" | 42 #include "src/profiler/cpu-profiler.h" |
43 #include "src/property-descriptor.h" | 43 #include "src/property-descriptor.h" |
44 #include "src/prototype.h" | 44 #include "src/prototype.h" |
| 45 #include "src/regexp/jsregexp.h" |
45 #include "src/safepoint-table.h" | 46 #include "src/safepoint-table.h" |
46 #include "src/string-builder.h" | 47 #include "src/string-builder.h" |
47 #include "src/string-search.h" | 48 #include "src/string-search.h" |
48 #include "src/string-stream.h" | 49 #include "src/string-stream.h" |
49 #include "src/utils.h" | 50 #include "src/utils.h" |
50 #include "src/zone.h" | 51 #include "src/zone.h" |
51 | 52 |
52 #ifdef ENABLE_DISASSEMBLER | 53 #ifdef ENABLE_DISASSEMBLER |
53 #include "src/disasm.h" | 54 #include "src/disasm.h" |
54 #include "src/disassembler.h" | 55 #include "src/disassembler.h" |
(...skipping 19552 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
19607 if (cell->value() != *new_value) { | 19608 if (cell->value() != *new_value) { |
19608 cell->set_value(*new_value); | 19609 cell->set_value(*new_value); |
19609 Isolate* isolate = cell->GetIsolate(); | 19610 Isolate* isolate = cell->GetIsolate(); |
19610 cell->dependent_code()->DeoptimizeDependentCodeGroup( | 19611 cell->dependent_code()->DeoptimizeDependentCodeGroup( |
19611 isolate, DependentCode::kPropertyCellChangedGroup); | 19612 isolate, DependentCode::kPropertyCellChangedGroup); |
19612 } | 19613 } |
19613 } | 19614 } |
19614 | 19615 |
19615 } // namespace internal | 19616 } // namespace internal |
19616 } // namespace v8 | 19617 } // namespace v8 |
OLD | NEW |