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 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
241 V(ChangeUint32ToFloat64) \ | 241 V(ChangeUint32ToFloat64) \ |
242 V(ChangeUint32ToUint64) \ | 242 V(ChangeUint32ToUint64) \ |
243 V(TruncateFloat64ToFloat32) \ | 243 V(TruncateFloat64ToFloat32) \ |
244 V(TruncateFloat64ToInt32) \ | 244 V(TruncateFloat64ToInt32) \ |
245 V(TruncateInt64ToInt32) \ | 245 V(TruncateInt64ToInt32) \ |
246 V(Float64Add) \ | 246 V(Float64Add) \ |
247 V(Float64Sub) \ | 247 V(Float64Sub) \ |
248 V(Float64Mul) \ | 248 V(Float64Mul) \ |
249 V(Float64Div) \ | 249 V(Float64Div) \ |
250 V(Float64Mod) \ | 250 V(Float64Mod) \ |
| 251 V(Float64Max) \ |
| 252 V(Float64Min) \ |
251 V(Float64Sqrt) \ | 253 V(Float64Sqrt) \ |
252 V(Float64RoundDown) \ | 254 V(Float64RoundDown) \ |
253 V(Float64RoundTruncate) \ | 255 V(Float64RoundTruncate) \ |
254 V(Float64RoundTiesAway) \ | 256 V(Float64RoundTiesAway) \ |
255 V(Float64ExtractLowWord32) \ | 257 V(Float64ExtractLowWord32) \ |
256 V(Float64ExtractHighWord32) \ | 258 V(Float64ExtractHighWord32) \ |
257 V(Float64InsertLowWord32) \ | 259 V(Float64InsertLowWord32) \ |
258 V(Float64InsertHighWord32) \ | 260 V(Float64InsertHighWord32) \ |
259 V(LoadStackPointer) \ | 261 V(LoadStackPointer) \ |
260 V(CheckedLoad) \ | 262 V(CheckedLoad) \ |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
326 (kNumberEqual <= value && value <= kStringLessThanOrEqual) || | 328 (kNumberEqual <= value && value <= kStringLessThanOrEqual) || |
327 (kWord32Equal <= value && value <= kFloat64LessThanOrEqual); | 329 (kWord32Equal <= value && value <= kFloat64LessThanOrEqual); |
328 } | 330 } |
329 }; | 331 }; |
330 | 332 |
331 } // namespace compiler | 333 } // namespace compiler |
332 } // namespace internal | 334 } // namespace internal |
333 } // namespace v8 | 335 } // namespace v8 |
334 | 336 |
335 #endif // V8_COMPILER_OPCODES_H_ | 337 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |