Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(146)

Side by Side Diff: src/objects.cc

Issue 1565183002: [regexp] move regexp parser into own files. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix test compile Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/heap/heap.cc ('k') | src/parsing/parser.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « src/heap/heap.cc ('k') | src/parsing/parser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698