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 #include <iosfwd> | 8 #include <iosfwd> |
9 | 9 |
10 // Opcodes for control operators. | 10 // Opcodes for control operators. |
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
230 V(StackSlot) \ | 230 V(StackSlot) \ |
231 V(Word32And) \ | 231 V(Word32And) \ |
232 V(Word32Or) \ | 232 V(Word32Or) \ |
233 V(Word32Xor) \ | 233 V(Word32Xor) \ |
234 V(Word32Shl) \ | 234 V(Word32Shl) \ |
235 V(Word32Shr) \ | 235 V(Word32Shr) \ |
236 V(Word32Sar) \ | 236 V(Word32Sar) \ |
237 V(Word32Ror) \ | 237 V(Word32Ror) \ |
238 V(Word32Clz) \ | 238 V(Word32Clz) \ |
239 V(Word32Ctz) \ | 239 V(Word32Ctz) \ |
| 240 V(Word32ReverseBits) \ |
240 V(Word32Popcnt) \ | 241 V(Word32Popcnt) \ |
241 V(Word64Popcnt) \ | 242 V(Word64Popcnt) \ |
242 V(Word64And) \ | 243 V(Word64And) \ |
243 V(Word64Or) \ | 244 V(Word64Or) \ |
244 V(Word64Xor) \ | 245 V(Word64Xor) \ |
245 V(Word64Shl) \ | 246 V(Word64Shl) \ |
246 V(Word64Shr) \ | 247 V(Word64Shr) \ |
247 V(Word64Sar) \ | 248 V(Word64Sar) \ |
248 V(Word64Ror) \ | 249 V(Word64Ror) \ |
249 V(Word64Clz) \ | 250 V(Word64Clz) \ |
250 V(Word64Ctz) \ | 251 V(Word64Ctz) \ |
| 252 V(Word64ReverseBits) \ |
251 V(Int32Add) \ | 253 V(Int32Add) \ |
252 V(Int32AddWithOverflow) \ | 254 V(Int32AddWithOverflow) \ |
253 V(Int32Sub) \ | 255 V(Int32Sub) \ |
254 V(Int32SubWithOverflow) \ | 256 V(Int32SubWithOverflow) \ |
255 V(Int32Mul) \ | 257 V(Int32Mul) \ |
256 V(Int32MulHigh) \ | 258 V(Int32MulHigh) \ |
257 V(Int32Div) \ | 259 V(Int32Div) \ |
258 V(Int32Mod) \ | 260 V(Int32Mod) \ |
259 V(Uint32Div) \ | 261 V(Uint32Div) \ |
260 V(Uint32Mod) \ | 262 V(Uint32Mod) \ |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
406 } | 408 } |
407 }; | 409 }; |
408 | 410 |
409 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 411 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
410 | 412 |
411 } // namespace compiler | 413 } // namespace compiler |
412 } // namespace internal | 414 } // namespace internal |
413 } // namespace v8 | 415 } // namespace v8 |
414 | 416 |
415 #endif // V8_COMPILER_OPCODES_H_ | 417 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |