| OLD | NEW |
| 1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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_MIPS_INSTRUCTION_CODES_MIPS_H_ | 5 #ifndef V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ |
| 6 #define V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ | 6 #define V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ |
| 7 | 7 |
| 8 namespace v8 { | 8 namespace v8 { |
| 9 namespace internal { | 9 namespace internal { |
| 10 namespace compiler { | 10 namespace compiler { |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 V(Mips64Lhu) \ | 69 V(Mips64Lhu) \ |
| 70 V(Mips64Sh) \ | 70 V(Mips64Sh) \ |
| 71 V(Mips64Ld) \ | 71 V(Mips64Ld) \ |
| 72 V(Mips64Lw) \ | 72 V(Mips64Lw) \ |
| 73 V(Mips64Sw) \ | 73 V(Mips64Sw) \ |
| 74 V(Mips64Sd) \ | 74 V(Mips64Sd) \ |
| 75 V(Mips64Lwc1) \ | 75 V(Mips64Lwc1) \ |
| 76 V(Mips64Swc1) \ | 76 V(Mips64Swc1) \ |
| 77 V(Mips64Ldc1) \ | 77 V(Mips64Ldc1) \ |
| 78 V(Mips64Sdc1) \ | 78 V(Mips64Sdc1) \ |
| 79 V(Mips64FmoveLowUwD) \ |
| 80 V(Mips64FmoveLowDUw) \ |
| 81 V(Mips64FmoveHighUwD) \ |
| 82 V(Mips64FmoveHighDUw) \ |
| 79 V(Mips64Push) \ | 83 V(Mips64Push) \ |
| 80 V(Mips64StoreToStackSlot) \ | 84 V(Mips64StoreToStackSlot) \ |
| 81 V(Mips64StackClaim) \ | 85 V(Mips64StackClaim) \ |
| 82 V(Mips64StoreWriteBarrier) | 86 V(Mips64StoreWriteBarrier) |
| 83 | 87 |
| 84 | 88 |
| 85 // Addressing modes represent the "shape" of inputs to an instruction. | 89 // Addressing modes represent the "shape" of inputs to an instruction. |
| 86 // Many instructions support multiple addressing modes. Addressing modes | 90 // Many instructions support multiple addressing modes. Addressing modes |
| 87 // are encoded into the InstructionCode of the instruction and tell the | 91 // are encoded into the InstructionCode of the instruction and tell the |
| 88 // code generator after register allocation which assembler method to call. | 92 // code generator after register allocation which assembler method to call. |
| (...skipping 10 matching lines...) Expand all Loading... |
| 99 #define TARGET_ADDRESSING_MODE_LIST(V) \ | 103 #define TARGET_ADDRESSING_MODE_LIST(V) \ |
| 100 V(MRI) /* [%r0 + K] */ \ | 104 V(MRI) /* [%r0 + K] */ \ |
| 101 V(MRR) /* [%r0 + %r1] */ | 105 V(MRR) /* [%r0 + %r1] */ |
| 102 | 106 |
| 103 | 107 |
| 104 } // namespace compiler | 108 } // namespace compiler |
| 105 } // namespace internal | 109 } // namespace internal |
| 106 } // namespace v8 | 110 } // namespace v8 |
| 107 | 111 |
| 108 #endif // V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ | 112 #endif // V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ |
| OLD | NEW |