| 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 |
| 35 // ProcessDeclarations | 36 // ProcessDeclarations |
| 36 // DeclareGlobals | 37 // DeclareGlobals |
| 37 // CheckForInlineRuntimeCall | 38 // CheckForInlineRuntimeCall |
| 38 // AnalyzeCondition | 39 // AnalyzeCondition |
| 39 // CodeForFunctionPosition | 40 // CodeForFunctionPosition |
| 40 // CodeForReturnPosition | 41 // CodeForReturnPosition |
| 41 // CodeForStatementPosition | 42 // CodeForStatementPosition |
| 42 // CodeForDoWhileConditionPosition | 43 // CodeForDoWhileConditionPosition |
| 43 // CodeForSourcePosition | 44 // CodeForSourcePosition |
| 44 | 45 |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 #ifdef DEBUG | 174 #ifdef DEBUG |
| 174 #ifdef V8_TARGET_ARCH_ARM64 | 175 #ifdef V8_TARGET_ARCH_ARM64 |
| 175 const EmbeddedVector<byte, kNoCodeAgeSequenceLength> old_sequence_; | 176 const EmbeddedVector<byte, kNoCodeAgeSequenceLength> old_sequence_; |
| 176 #endif | 177 #endif |
| 177 #endif | 178 #endif |
| 178 }; | 179 }; |
| 179 | 180 |
| 180 } } // namespace v8::internal | 181 } } // namespace v8::internal |
| 181 | 182 |
| 182 #endif // V8_CODEGEN_H_ | 183 #endif // V8_CODEGEN_H_ |
| OLD | NEW |