| OLD | NEW |
| 1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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_COMPILER_CODE_GENERATOR_IMPL_H_ | 5 #ifndef V8_COMPILER_CODE_GENERATOR_IMPL_H_ |
| 6 #define V8_COMPILER_CODE_GENERATOR_IMPL_H_ | 6 #define V8_COMPILER_CODE_GENERATOR_IMPL_H_ |
| 7 | 7 |
| 8 #include "src/code-stubs.h" |
| 8 #include "src/compiler/code-generator.h" | 9 #include "src/compiler/code-generator.h" |
| 9 #include "src/compiler/instruction.h" | 10 #include "src/compiler/instruction.h" |
| 10 #include "src/compiler/linkage.h" | 11 #include "src/compiler/linkage.h" |
| 11 #include "src/compiler/opcodes.h" | 12 #include "src/compiler/opcodes.h" |
| 13 #include "src/macro-assembler.h" |
| 12 | 14 |
| 13 namespace v8 { | 15 namespace v8 { |
| 14 namespace internal { | 16 namespace internal { |
| 15 namespace compiler { | 17 namespace compiler { |
| 16 | 18 |
| 17 // Converts InstructionOperands from a given instruction to | 19 // Converts InstructionOperands from a given instruction to |
| 18 // architecture-specific | 20 // architecture-specific |
| 19 // registers and operands after they have been assigned by the register | 21 // registers and operands after they have been assigned by the register |
| 20 // allocator. | 22 // allocator. |
| 21 class InstructionOperandConverter { | 23 class InstructionOperandConverter { |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 #if V8_TARGET_ARCH_ARM64 || V8_TARGET_ARCH_ARM | 117 #if V8_TARGET_ARCH_ARM64 || V8_TARGET_ARCH_ARM |
| 116 masm->CheckConstPool(true, false); | 118 masm->CheckConstPool(true, false); |
| 117 #endif | 119 #endif |
| 118 } | 120 } |
| 119 | 121 |
| 120 } // namespace compiler | 122 } // namespace compiler |
| 121 } // namespace internal | 123 } // namespace internal |
| 122 } // namespace v8 | 124 } // namespace v8 |
| 123 | 125 |
| 124 #endif // V8_COMPILER_CODE_GENERATOR_IMPL_H | 126 #endif // V8_COMPILER_CODE_GENERATOR_IMPL_H |
| OLD | NEW |