| 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 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 245 V(Float64Add) \ | 245 V(Float64Add) \ |
| 246 V(Float64Sub) \ | 246 V(Float64Sub) \ |
| 247 V(Float64Mul) \ | 247 V(Float64Mul) \ |
| 248 V(Float64Div) \ | 248 V(Float64Div) \ |
| 249 V(Float64Mod) \ | 249 V(Float64Mod) \ |
| 250 V(Float64Sqrt) \ | 250 V(Float64Sqrt) \ |
| 251 V(Float64Floor) \ | 251 V(Float64Floor) \ |
| 252 V(Float64Ceil) \ | 252 V(Float64Ceil) \ |
| 253 V(Float64RoundTruncate) \ | 253 V(Float64RoundTruncate) \ |
| 254 V(Float64RoundTiesAway) \ | 254 V(Float64RoundTiesAway) \ |
| 255 V(Float64ExtractLowWord32) \ |
| 256 V(Float64ExtractHighWord32) \ |
| 257 V(Float64InsertLowWord32) \ |
| 258 V(Float64InsertHighWord32) \ |
| 255 V(LoadStackPointer) \ | 259 V(LoadStackPointer) \ |
| 256 V(CheckedLoad) \ | 260 V(CheckedLoad) \ |
| 257 V(CheckedStore) | 261 V(CheckedStore) |
| 258 | 262 |
| 259 #define VALUE_OP_LIST(V) \ | 263 #define VALUE_OP_LIST(V) \ |
| 260 COMMON_OP_LIST(V) \ | 264 COMMON_OP_LIST(V) \ |
| 261 SIMPLIFIED_OP_LIST(V) \ | 265 SIMPLIFIED_OP_LIST(V) \ |
| 262 MACHINE_OP_LIST(V) \ | 266 MACHINE_OP_LIST(V) \ |
| 263 JS_OP_LIST(V) | 267 JS_OP_LIST(V) |
| 264 | 268 |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 322 (kNumberEqual <= value && value <= kStringLessThanOrEqual) || | 326 (kNumberEqual <= value && value <= kStringLessThanOrEqual) || |
| 323 (kWord32Equal <= value && value <= kFloat64LessThanOrEqual); | 327 (kWord32Equal <= value && value <= kFloat64LessThanOrEqual); |
| 324 } | 328 } |
| 325 }; | 329 }; |
| 326 | 330 |
| 327 } // namespace compiler | 331 } // namespace compiler |
| 328 } // namespace internal | 332 } // namespace internal |
| 329 } // namespace v8 | 333 } // namespace v8 |
| 330 | 334 |
| 331 #endif // V8_COMPILER_OPCODES_H_ | 335 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |