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_X64_INSTRUCTION_CODES_X64_H_ | 5 #ifndef V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ |
6 #define V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ | 6 #define V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ |
7 | 7 |
8 namespace v8 { | 8 namespace v8 { |
9 namespace internal { | 9 namespace internal { |
10 namespace compiler { | 10 namespace compiler { |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 V(X64Movzxbl) \ | 102 V(X64Movzxbl) \ |
103 V(X64Movb) \ | 103 V(X64Movb) \ |
104 V(X64Movsxwl) \ | 104 V(X64Movsxwl) \ |
105 V(X64Movzxwl) \ | 105 V(X64Movzxwl) \ |
106 V(X64Movw) \ | 106 V(X64Movw) \ |
107 V(X64Movl) \ | 107 V(X64Movl) \ |
108 V(X64Movsxlq) \ | 108 V(X64Movsxlq) \ |
109 V(X64Movq) \ | 109 V(X64Movq) \ |
110 V(X64Movsd) \ | 110 V(X64Movsd) \ |
111 V(X64Movss) \ | 111 V(X64Movss) \ |
| 112 V(X64BitcastFI) \ |
| 113 V(X64BitcastDL) \ |
| 114 V(X64BitcastIF) \ |
| 115 V(X64BitcastLD) \ |
112 V(X64Lea32) \ | 116 V(X64Lea32) \ |
113 V(X64Lea) \ | 117 V(X64Lea) \ |
114 V(X64Dec32) \ | 118 V(X64Dec32) \ |
115 V(X64Inc32) \ | 119 V(X64Inc32) \ |
116 V(X64Push) \ | 120 V(X64Push) \ |
117 V(X64Poke) \ | 121 V(X64Poke) \ |
118 V(X64StoreWriteBarrier) \ | 122 V(X64StoreWriteBarrier) \ |
119 V(X64StackCheck) | 123 V(X64StackCheck) |
120 | 124 |
121 | 125 |
(...skipping 27 matching lines...) Expand all Loading... |
149 V(M1I) /* [ %r2*1 + K] */ \ | 153 V(M1I) /* [ %r2*1 + K] */ \ |
150 V(M2I) /* [ %r2*2 + K] */ \ | 154 V(M2I) /* [ %r2*2 + K] */ \ |
151 V(M4I) /* [ %r2*4 + K] */ \ | 155 V(M4I) /* [ %r2*4 + K] */ \ |
152 V(M8I) /* [ %r2*8 + K] */ | 156 V(M8I) /* [ %r2*8 + K] */ |
153 | 157 |
154 } // namespace compiler | 158 } // namespace compiler |
155 } // namespace internal | 159 } // namespace internal |
156 } // namespace v8 | 160 } // namespace v8 |
157 | 161 |
158 #endif // V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ | 162 #endif // V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ |
OLD | NEW |