| 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 INNER_CONTROL_OP_LIST(V) \ | 9 #define INNER_CONTROL_OP_LIST(V) \ |
| 10 V(Dead) \ | 10 V(Dead) \ |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 V(Word64Shl) \ | 178 V(Word64Shl) \ |
| 179 V(Word64Shr) \ | 179 V(Word64Shr) \ |
| 180 V(Word64Sar) \ | 180 V(Word64Sar) \ |
| 181 V(Word64Ror) \ | 181 V(Word64Ror) \ |
| 182 V(Word64Equal) \ | 182 V(Word64Equal) \ |
| 183 V(Int32Add) \ | 183 V(Int32Add) \ |
| 184 V(Int32AddWithOverflow) \ | 184 V(Int32AddWithOverflow) \ |
| 185 V(Int32Sub) \ | 185 V(Int32Sub) \ |
| 186 V(Int32SubWithOverflow) \ | 186 V(Int32SubWithOverflow) \ |
| 187 V(Int32Mul) \ | 187 V(Int32Mul) \ |
| 188 V(Int32MulHigh) \ |
| 188 V(Int32Div) \ | 189 V(Int32Div) \ |
| 189 V(Int32Mod) \ | 190 V(Int32Mod) \ |
| 190 V(Int32LessThan) \ | 191 V(Int32LessThan) \ |
| 191 V(Int32LessThanOrEqual) \ | 192 V(Int32LessThanOrEqual) \ |
| 192 V(Uint32Div) \ | 193 V(Uint32Div) \ |
| 193 V(Uint32LessThan) \ | 194 V(Uint32LessThan) \ |
| 194 V(Uint32LessThanOrEqual) \ | 195 V(Uint32LessThanOrEqual) \ |
| 195 V(Uint32Mod) \ | 196 V(Uint32Mod) \ |
| 196 V(Int64Add) \ | 197 V(Int64Add) \ |
| 197 V(Int64Sub) \ | 198 V(Int64Sub) \ |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 314 return false; | 315 return false; |
| 315 } | 316 } |
| 316 } | 317 } |
| 317 }; | 318 }; |
| 318 | 319 |
| 319 } // namespace compiler | 320 } // namespace compiler |
| 320 } // namespace internal | 321 } // namespace internal |
| 321 } // namespace v8 | 322 } // namespace v8 |
| 322 | 323 |
| 323 #endif // V8_COMPILER_OPCODES_H_ | 324 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |