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_IA32_INSTRUCTION_CODES_IA32_H_ | 5 #ifndef V8_COMPILER_IA32_INSTRUCTION_CODES_IA32_H_ |
6 #define V8_COMPILER_IA32_INSTRUCTION_CODES_IA32_H_ | 6 #define V8_COMPILER_IA32_INSTRUCTION_CODES_IA32_H_ |
7 | 7 |
8 namespace v8 { | 8 namespace v8 { |
9 namespace internal { | 9 namespace internal { |
10 namespace compiler { | 10 namespace compiler { |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 V(AVXFloat32Neg) \ | 82 V(AVXFloat32Neg) \ |
83 V(IA32Movsxbl) \ | 83 V(IA32Movsxbl) \ |
84 V(IA32Movzxbl) \ | 84 V(IA32Movzxbl) \ |
85 V(IA32Movb) \ | 85 V(IA32Movb) \ |
86 V(IA32Movsxwl) \ | 86 V(IA32Movsxwl) \ |
87 V(IA32Movzxwl) \ | 87 V(IA32Movzxwl) \ |
88 V(IA32Movw) \ | 88 V(IA32Movw) \ |
89 V(IA32Movl) \ | 89 V(IA32Movl) \ |
90 V(IA32Movss) \ | 90 V(IA32Movss) \ |
91 V(IA32Movsd) \ | 91 V(IA32Movsd) \ |
| 92 V(IA32BitcastFI) \ |
| 93 V(IA32BitcastIF) \ |
92 V(IA32Lea) \ | 94 V(IA32Lea) \ |
93 V(IA32Push) \ | 95 V(IA32Push) \ |
94 V(IA32Poke) \ | 96 V(IA32Poke) \ |
95 V(IA32StoreWriteBarrier) \ | 97 V(IA32StoreWriteBarrier) \ |
96 V(IA32StackCheck) | 98 V(IA32StackCheck) |
97 | 99 |
98 | 100 |
99 // Addressing modes represent the "shape" of inputs to an instruction. | 101 // Addressing modes represent the "shape" of inputs to an instruction. |
100 // Many instructions support multiple addressing modes. Addressing modes | 102 // Many instructions support multiple addressing modes. Addressing modes |
101 // are encoded into the InstructionCode of the instruction and tell the | 103 // are encoded into the InstructionCode of the instruction and tell the |
(...skipping 25 matching lines...) Expand all Loading... |
127 V(M2I) /* [ %r2*2 + K] */ \ | 129 V(M2I) /* [ %r2*2 + K] */ \ |
128 V(M4I) /* [ %r2*4 + K] */ \ | 130 V(M4I) /* [ %r2*4 + K] */ \ |
129 V(M8I) /* [ %r2*8 + K] */ \ | 131 V(M8I) /* [ %r2*8 + K] */ \ |
130 V(MI) /* [ K] */ | 132 V(MI) /* [ K] */ |
131 | 133 |
132 } // namespace compiler | 134 } // namespace compiler |
133 } // namespace internal | 135 } // namespace internal |
134 } // namespace v8 | 136 } // namespace v8 |
135 | 137 |
136 #endif // V8_COMPILER_IA32_INSTRUCTION_CODES_IA32_H_ | 138 #endif // V8_COMPILER_IA32_INSTRUCTION_CODES_IA32_H_ |
OLD | NEW |