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

Side by Side Diff: src/objects.cc

Issue 2039913002: Make api-arguments.h not include inline headers. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@local_cleanup-includes-type-feedback-vector
Patch Set: Addressed comments. 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/ic/ic.cc ('k') | src/v8.gyp » ('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
11 #include "src/objects-inl.h" 11 #include "src/objects-inl.h"
12 12
13 #include "src/accessors.h" 13 #include "src/accessors.h"
14 #include "src/allocation-site-scopes.h" 14 #include "src/allocation-site-scopes.h"
15 #include "src/api-arguments.h" 15 #include "src/api-arguments-inl.h"
16 #include "src/api-natives.h" 16 #include "src/api-natives.h"
17 #include "src/api.h" 17 #include "src/api.h"
18 #include "src/base/bits.h" 18 #include "src/base/bits.h"
19 #include "src/base/utils/random-number-generator.h" 19 #include "src/base/utils/random-number-generator.h"
20 #include "src/bootstrapper.h" 20 #include "src/bootstrapper.h"
21 #include "src/code-stubs.h" 21 #include "src/code-stubs.h"
22 #include "src/codegen.h" 22 #include "src/codegen.h"
23 #include "src/compilation-dependencies.h" 23 #include "src/compilation-dependencies.h"
24 #include "src/compiler.h" 24 #include "src/compiler.h"
25 #include "src/counters-inl.h" 25 #include "src/counters-inl.h"
(...skipping 18748 matching lines...) Expand 10 before | Expand all | Expand 10 after
18774 if (cell->value() != *new_value) { 18774 if (cell->value() != *new_value) {
18775 cell->set_value(*new_value); 18775 cell->set_value(*new_value);
18776 Isolate* isolate = cell->GetIsolate(); 18776 Isolate* isolate = cell->GetIsolate();
18777 cell->dependent_code()->DeoptimizeDependentCodeGroup( 18777 cell->dependent_code()->DeoptimizeDependentCodeGroup(
18778 isolate, DependentCode::kPropertyCellChangedGroup); 18778 isolate, DependentCode::kPropertyCellChangedGroup);
18779 } 18779 }
18780 } 18780 }
18781 18781
18782 } // namespace internal 18782 } // namespace internal
18783 } // namespace v8 18783 } // namespace v8
OLDNEW
« no previous file with comments | « src/ic/ic.cc ('k') | src/v8.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698