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

Side by Side Diff: src/objects.cc

Issue 1285183010: Remove grab-bag includes of v8.h from everywhere. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Minor stylistic issue. Created 5 years, 4 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/messages.cc ('k') | src/objects-debug.cc » ('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 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 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"
6
5 #include <iomanip> 7 #include <iomanip>
6 #include <sstream> 8 #include <sstream>
7 9
8 #include "src/v8.h"
9
10 #include "src/accessors.h" 10 #include "src/accessors.h"
11 #include "src/allocation-site-scopes.h" 11 #include "src/allocation-site-scopes.h"
12 #include "src/api.h" 12 #include "src/api.h"
13 #include "src/arguments.h" 13 #include "src/arguments.h"
14 #include "src/base/bits.h" 14 #include "src/base/bits.h"
15 #include "src/base/utils/random-number-generator.h" 15 #include "src/base/utils/random-number-generator.h"
16 #include "src/bootstrapper.h" 16 #include "src/bootstrapper.h"
17 #include "src/code-stubs.h" 17 #include "src/code-stubs.h"
18 #include "src/codegen.h" 18 #include "src/codegen.h"
19 #include "src/compilation-dependencies.h" 19 #include "src/compilation-dependencies.h"
(...skipping 15697 matching lines...) Expand 10 before | Expand all | Expand 10 after
15717 if (cell->value() != *new_value) { 15717 if (cell->value() != *new_value) {
15718 cell->set_value(*new_value); 15718 cell->set_value(*new_value);
15719 Isolate* isolate = cell->GetIsolate(); 15719 Isolate* isolate = cell->GetIsolate();
15720 cell->dependent_code()->DeoptimizeDependentCodeGroup( 15720 cell->dependent_code()->DeoptimizeDependentCodeGroup(
15721 isolate, DependentCode::kPropertyCellChangedGroup); 15721 isolate, DependentCode::kPropertyCellChangedGroup);
15722 } 15722 }
15723 } 15723 }
15724 15724
15725 } // namespace internal 15725 } // namespace internal
15726 } // namespace v8 15726 } // namespace v8
OLDNEW
« no previous file with comments | « src/messages.cc ('k') | src/objects-debug.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698