OLD | NEW |
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" | 5 #include "src/full-codegen/full-codegen.h" |
6 | 6 |
7 #include "src/ast.h" | 7 #include "src/ast/ast.h" |
8 #include "src/ast-numbering.h" | 8 #include "src/ast/ast-numbering.h" |
| 9 #include "src/ast/prettyprinter.h" |
| 10 #include "src/ast/scopeinfo.h" |
| 11 #include "src/ast/scopes.h" |
9 #include "src/code-factory.h" | 12 #include "src/code-factory.h" |
10 #include "src/codegen.h" | 13 #include "src/codegen.h" |
11 #include "src/compiler.h" | 14 #include "src/compiler.h" |
12 #include "src/debug/debug.h" | 15 #include "src/debug/debug.h" |
13 #include "src/debug/liveedit.h" | 16 #include "src/debug/liveedit.h" |
14 #include "src/isolate-inl.h" | 17 #include "src/isolate-inl.h" |
15 #include "src/macro-assembler.h" | 18 #include "src/macro-assembler.h" |
16 #include "src/prettyprinter.h" | |
17 #include "src/scopeinfo.h" | |
18 #include "src/scopes.h" | |
19 #include "src/snapshot/snapshot.h" | 19 #include "src/snapshot/snapshot.h" |
20 | 20 |
21 namespace v8 { | 21 namespace v8 { |
22 namespace internal { | 22 namespace internal { |
23 | 23 |
24 #define __ ACCESS_MASM(masm()) | 24 #define __ ACCESS_MASM(masm()) |
25 | 25 |
26 bool FullCodeGenerator::MakeCode(CompilationInfo* info) { | 26 bool FullCodeGenerator::MakeCode(CompilationInfo* info) { |
27 Isolate* isolate = info->isolate(); | 27 Isolate* isolate = info->isolate(); |
28 | 28 |
(...skipping 1708 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1737 return var->mode() == CONST_LEGACY || var->scope()->is_nonlinear() || | 1737 return var->mode() == CONST_LEGACY || var->scope()->is_nonlinear() || |
1738 var->initializer_position() >= proxy->position(); | 1738 var->initializer_position() >= proxy->position(); |
1739 } | 1739 } |
1740 | 1740 |
1741 | 1741 |
1742 #undef __ | 1742 #undef __ |
1743 | 1743 |
1744 | 1744 |
1745 } // namespace internal | 1745 } // namespace internal |
1746 } // namespace v8 | 1746 } // namespace v8 |
OLD | NEW |