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

Side by Side Diff: src/full-codegen/full-codegen.cc

Issue 1322883002: Make isolate.h usable without objects-inl.h header. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@local_cleanup-includes-frames-2
Patch Set: Rebased. Created 5 years, 3 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/flags.cc ('k') | src/heap/gc-tracer.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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/full-codegen/full-codegen.h"
6
5 #include "src/ast.h" 7 #include "src/ast.h"
6 #include "src/ast-numbering.h" 8 #include "src/ast-numbering.h"
7 #include "src/code-factory.h" 9 #include "src/code-factory.h"
8 #include "src/codegen.h" 10 #include "src/codegen.h"
9 #include "src/compiler.h" 11 #include "src/compiler.h"
10 #include "src/debug/debug.h" 12 #include "src/debug/debug.h"
11 #include "src/debug/liveedit.h" 13 #include "src/debug/liveedit.h"
12 #include "src/full-codegen/full-codegen.h" 14 #include "src/isolate-inl.h"
13 #include "src/macro-assembler.h" 15 #include "src/macro-assembler.h"
14 #include "src/prettyprinter.h" 16 #include "src/prettyprinter.h"
15 #include "src/scopeinfo.h" 17 #include "src/scopeinfo.h"
16 #include "src/scopes.h" 18 #include "src/scopes.h"
17 #include "src/snapshot/snapshot.h" 19 #include "src/snapshot/snapshot.h"
18 20
19 namespace v8 { 21 namespace v8 {
20 namespace internal { 22 namespace internal {
21 23
22 #define __ ACCESS_MASM(masm()) 24 #define __ ACCESS_MASM(masm())
(...skipping 1624 matching lines...) Expand 10 before | Expand all | Expand 10 after
1647 return var->mode() == CONST_LEGACY || var->scope()->is_nonlinear() || 1649 return var->mode() == CONST_LEGACY || var->scope()->is_nonlinear() ||
1648 var->initializer_position() >= proxy->position(); 1650 var->initializer_position() >= proxy->position();
1649 } 1651 }
1650 1652
1651 1653
1652 #undef __ 1654 #undef __
1653 1655
1654 1656
1655 } // namespace internal 1657 } // namespace internal
1656 } // namespace v8 1658 } // namespace v8
OLDNEW
« no previous file with comments | « src/flags.cc ('k') | src/heap/gc-tracer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698