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_OPCODES_H_ | 5 #ifndef V8_COMPILER_OPCODES_H_ |
6 #define V8_COMPILER_OPCODES_H_ | 6 #define V8_COMPILER_OPCODES_H_ |
7 | 7 |
8 // Opcodes for control operators. | 8 // Opcodes for control operators. |
9 #define CONTROL_OP_LIST(V) \ | 9 #define CONTROL_OP_LIST(V) \ |
10 V(Start) \ | 10 V(Start) \ |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
158 // Opcodes for Machine-level operators. | 158 // Opcodes for Machine-level operators. |
159 #define MACHINE_OP_LIST(V) \ | 159 #define MACHINE_OP_LIST(V) \ |
160 V(Load) \ | 160 V(Load) \ |
161 V(Store) \ | 161 V(Store) \ |
162 V(Word32And) \ | 162 V(Word32And) \ |
163 V(Word32Or) \ | 163 V(Word32Or) \ |
164 V(Word32Xor) \ | 164 V(Word32Xor) \ |
165 V(Word32Shl) \ | 165 V(Word32Shl) \ |
166 V(Word32Shr) \ | 166 V(Word32Shr) \ |
167 V(Word32Sar) \ | 167 V(Word32Sar) \ |
| 168 V(Word32Ror) \ |
168 V(Word32Equal) \ | 169 V(Word32Equal) \ |
169 V(Word64And) \ | 170 V(Word64And) \ |
170 V(Word64Or) \ | 171 V(Word64Or) \ |
171 V(Word64Xor) \ | 172 V(Word64Xor) \ |
172 V(Word64Shl) \ | 173 V(Word64Shl) \ |
173 V(Word64Shr) \ | 174 V(Word64Shr) \ |
174 V(Word64Sar) \ | 175 V(Word64Sar) \ |
| 176 V(Word64Ror) \ |
175 V(Word64Equal) \ | 177 V(Word64Equal) \ |
176 V(Int32Add) \ | 178 V(Int32Add) \ |
177 V(Int32AddWithOverflow) \ | 179 V(Int32AddWithOverflow) \ |
178 V(Int32Sub) \ | 180 V(Int32Sub) \ |
179 V(Int32SubWithOverflow) \ | 181 V(Int32SubWithOverflow) \ |
180 V(Int32Mul) \ | 182 V(Int32Mul) \ |
181 V(Int32Div) \ | 183 V(Int32Div) \ |
182 V(Int32UDiv) \ | 184 V(Int32UDiv) \ |
183 V(Int32Mod) \ | 185 V(Int32Mod) \ |
184 V(Int32UMod) \ | 186 V(Int32UMod) \ |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
288 return false; | 290 return false; |
289 } | 291 } |
290 } | 292 } |
291 }; | 293 }; |
292 | 294 |
293 } // namespace compiler | 295 } // namespace compiler |
294 } // namespace internal | 296 } // namespace internal |
295 } // namespace v8 | 297 } // namespace v8 |
296 | 298 |
297 #endif // V8_COMPILER_OPCODES_H_ | 299 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |