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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
196 #define MACHINE_COMPARE_BINOP_LIST(V) \ | 196 #define MACHINE_COMPARE_BINOP_LIST(V) \ |
197 V(Word32Equal) \ | 197 V(Word32Equal) \ |
198 V(Word64Equal) \ | 198 V(Word64Equal) \ |
199 V(Int32LessThan) \ | 199 V(Int32LessThan) \ |
200 V(Int32LessThanOrEqual) \ | 200 V(Int32LessThanOrEqual) \ |
201 V(Uint32LessThan) \ | 201 V(Uint32LessThan) \ |
202 V(Uint32LessThanOrEqual) \ | 202 V(Uint32LessThanOrEqual) \ |
203 V(Int64LessThan) \ | 203 V(Int64LessThan) \ |
204 V(Int64LessThanOrEqual) \ | 204 V(Int64LessThanOrEqual) \ |
205 V(Uint64LessThan) \ | 205 V(Uint64LessThan) \ |
| 206 V(Uint64LessThanOrEqual) \ |
206 V(Float32Equal) \ | 207 V(Float32Equal) \ |
207 V(Float32LessThan) \ | 208 V(Float32LessThan) \ |
208 V(Float32LessThanOrEqual) \ | 209 V(Float32LessThanOrEqual) \ |
209 V(Float64Equal) \ | 210 V(Float64Equal) \ |
210 V(Float64LessThan) \ | 211 V(Float64LessThan) \ |
211 V(Float64LessThanOrEqual) | 212 V(Float64LessThanOrEqual) |
212 | 213 |
213 #define MACHINE_OP_LIST(V) \ | 214 #define MACHINE_OP_LIST(V) \ |
214 MACHINE_COMPARE_BINOP_LIST(V) \ | 215 MACHINE_COMPARE_BINOP_LIST(V) \ |
215 V(Load) \ | 216 V(Load) \ |
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
358 } | 359 } |
359 }; | 360 }; |
360 | 361 |
361 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 362 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
362 | 363 |
363 } // namespace compiler | 364 } // namespace compiler |
364 } // namespace internal | 365 } // namespace internal |
365 } // namespace v8 | 366 } // namespace v8 |
366 | 367 |
367 #endif // V8_COMPILER_OPCODES_H_ | 368 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |