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_CODEGEN_H_ | 5 #ifndef V8_CODEGEN_H_ |
6 #define V8_CODEGEN_H_ | 6 #define V8_CODEGEN_H_ |
7 | 7 |
8 #include "src/code-stubs.h" | 8 #include "src/code-stubs.h" |
9 #include "src/runtime/runtime.h" | 9 #include "src/runtime/runtime.h" |
10 | 10 |
(...skipping 14 matching lines...) Expand all Loading... |
25 // in_spilled_code | 25 // in_spilled_code |
26 // set_in_spilled_code | 26 // set_in_spilled_code |
27 // RecordPositions | 27 // RecordPositions |
28 // | 28 // |
29 // These methods are either used privately by the shared code or implemented as | 29 // These methods are either used privately by the shared code or implemented as |
30 // shared code: | 30 // shared code: |
31 // CodeGenerator | 31 // CodeGenerator |
32 // ~CodeGenerator | 32 // ~CodeGenerator |
33 // Generate | 33 // Generate |
34 // ComputeLazyCompile | 34 // ComputeLazyCompile |
35 // BuildFunctionInfo | |
36 // ProcessDeclarations | 35 // ProcessDeclarations |
37 // DeclareGlobals | 36 // DeclareGlobals |
38 // CheckForInlineRuntimeCall | 37 // CheckForInlineRuntimeCall |
39 // AnalyzeCondition | 38 // AnalyzeCondition |
40 // CodeForFunctionPosition | 39 // CodeForFunctionPosition |
41 // CodeForReturnPosition | 40 // CodeForReturnPosition |
42 // CodeForStatementPosition | 41 // CodeForStatementPosition |
43 // CodeForDoWhileConditionPosition | 42 // CodeForDoWhileConditionPosition |
44 // CodeForSourcePosition | 43 // CodeForSourcePosition |
45 | 44 |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
174 #ifdef DEBUG | 173 #ifdef DEBUG |
175 #ifdef V8_TARGET_ARCH_ARM64 | 174 #ifdef V8_TARGET_ARCH_ARM64 |
176 const EmbeddedVector<byte, kNoCodeAgeSequenceLength> old_sequence_; | 175 const EmbeddedVector<byte, kNoCodeAgeSequenceLength> old_sequence_; |
177 #endif | 176 #endif |
178 #endif | 177 #endif |
179 }; | 178 }; |
180 | 179 |
181 } } // namespace v8::internal | 180 } } // namespace v8::internal |
182 | 181 |
183 #endif // V8_CODEGEN_H_ | 182 #endif // V8_CODEGEN_H_ |
OLD | NEW |