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

Side by Side Diff: src/objects.cc

Issue 2061623002: Introduce JIT code events dispatcher for the isolate. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: rebaseline Created 4 years, 6 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/log-inl.h ('k') | src/profiler/cpu-profiler.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 29 matching lines...) Expand all
40 #include "src/interpreter/interpreter.h" 40 #include "src/interpreter/interpreter.h"
41 #include "src/interpreter/source-position-table.h" 41 #include "src/interpreter/source-position-table.h"
42 #include "src/isolate-inl.h" 42 #include "src/isolate-inl.h"
43 #include "src/keys.h" 43 #include "src/keys.h"
44 #include "src/list.h" 44 #include "src/list.h"
45 #include "src/log.h" 45 #include "src/log.h"
46 #include "src/lookup.h" 46 #include "src/lookup.h"
47 #include "src/macro-assembler.h" 47 #include "src/macro-assembler.h"
48 #include "src/messages.h" 48 #include "src/messages.h"
49 #include "src/objects-body-descriptors-inl.h" 49 #include "src/objects-body-descriptors-inl.h"
50 #include "src/profiler/cpu-profiler.h"
51 #include "src/property-descriptor.h" 50 #include "src/property-descriptor.h"
52 #include "src/prototype.h" 51 #include "src/prototype.h"
53 #include "src/regexp/jsregexp.h" 52 #include "src/regexp/jsregexp.h"
54 #include "src/safepoint-table.h" 53 #include "src/safepoint-table.h"
55 #include "src/string-builder.h" 54 #include "src/string-builder.h"
56 #include "src/string-search.h" 55 #include "src/string-search.h"
57 #include "src/string-stream.h" 56 #include "src/string-stream.h"
58 #include "src/utils.h" 57 #include "src/utils.h"
59 #include "src/zone.h" 58 #include "src/zone.h"
60 59
(...skipping 18805 matching lines...) Expand 10 before | Expand all | Expand 10 after
18866 if (cell->value() != *new_value) { 18865 if (cell->value() != *new_value) {
18867 cell->set_value(*new_value); 18866 cell->set_value(*new_value);
18868 Isolate* isolate = cell->GetIsolate(); 18867 Isolate* isolate = cell->GetIsolate();
18869 cell->dependent_code()->DeoptimizeDependentCodeGroup( 18868 cell->dependent_code()->DeoptimizeDependentCodeGroup(
18870 isolate, DependentCode::kPropertyCellChangedGroup); 18869 isolate, DependentCode::kPropertyCellChangedGroup);
18871 } 18870 }
18872 } 18871 }
18873 18872
18874 } // namespace internal 18873 } // namespace internal
18875 } // namespace v8 18874 } // namespace v8
OLDNEW
« no previous file with comments | « src/log-inl.h ('k') | src/profiler/cpu-profiler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698