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 #ifndef V8_FULL_CODEGEN_FULL_CODEGEN_H_ | 5 #ifndef V8_FULL_CODEGEN_FULL_CODEGEN_H_ |
6 #define V8_FULL_CODEGEN_FULL_CODEGEN_H_ | 6 #define V8_FULL_CODEGEN_FULL_CODEGEN_H_ |
7 | 7 |
8 #include "src/v8.h" | |
9 | |
10 #include "src/allocation.h" | 8 #include "src/allocation.h" |
11 #include "src/assert-scope.h" | 9 #include "src/assert-scope.h" |
12 #include "src/ast.h" | 10 #include "src/ast.h" |
13 #include "src/bit-vector.h" | 11 #include "src/bit-vector.h" |
14 #include "src/code-stubs.h" | 12 #include "src/code-stubs.h" |
15 #include "src/codegen.h" | 13 #include "src/codegen.h" |
16 #include "src/compiler.h" | 14 #include "src/compiler.h" |
17 #include "src/globals.h" | 15 #include "src/globals.h" |
18 #include "src/objects.h" | 16 #include "src/objects.h" |
19 #include "src/scopes.h" | 17 #include "src/scopes.h" |
(...skipping 1061 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1081 | 1079 |
1082 Address start_; | 1080 Address start_; |
1083 Address instruction_start_; | 1081 Address instruction_start_; |
1084 uint32_t length_; | 1082 uint32_t length_; |
1085 }; | 1083 }; |
1086 | 1084 |
1087 | 1085 |
1088 } } // namespace v8::internal | 1086 } } // namespace v8::internal |
1089 | 1087 |
1090 #endif // V8_FULL_CODEGEN_FULL_CODEGEN_H_ | 1088 #endif // V8_FULL_CODEGEN_FULL_CODEGEN_H_ |
OLD | NEW |