OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 #include "src/compiler/simplified-operator.h" | 5 #include "src/compiler/simplified-operator.h" |
6 | 6 |
7 #include "src/base/lazy-instance.h" | 7 #include "src/base/lazy-instance.h" |
8 #include "src/compiler/opcodes.h" | 8 #include "src/compiler/opcodes.h" |
9 #include "src/compiler/operator.h" | 9 #include "src/compiler/operator.h" |
10 #include "src/types.h" | 10 #include "src/types.h" |
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
247 V(NumberShiftLeft, Operator::kNoProperties, 2) \ | 247 V(NumberShiftLeft, Operator::kNoProperties, 2) \ |
248 V(NumberShiftRight, Operator::kNoProperties, 2) \ | 248 V(NumberShiftRight, Operator::kNoProperties, 2) \ |
249 V(NumberShiftRightLogical, Operator::kNoProperties, 2) \ | 249 V(NumberShiftRightLogical, Operator::kNoProperties, 2) \ |
250 V(NumberImul, Operator::kCommutative, 2) \ | 250 V(NumberImul, Operator::kCommutative, 2) \ |
251 V(NumberClz32, Operator::kNoProperties, 1) \ | 251 V(NumberClz32, Operator::kNoProperties, 1) \ |
252 V(NumberCeil, Operator::kNoProperties, 1) \ | 252 V(NumberCeil, Operator::kNoProperties, 1) \ |
253 V(NumberFloor, Operator::kNoProperties, 1) \ | 253 V(NumberFloor, Operator::kNoProperties, 1) \ |
254 V(NumberFround, Operator::kNoProperties, 1) \ | 254 V(NumberFround, Operator::kNoProperties, 1) \ |
255 V(NumberAtan, Operator::kNoProperties, 1) \ | 255 V(NumberAtan, Operator::kNoProperties, 1) \ |
256 V(NumberAtan2, Operator::kNoProperties, 2) \ | 256 V(NumberAtan2, Operator::kNoProperties, 2) \ |
| 257 V(NumberExp, Operator::kNoProperties, 1) \ |
257 V(NumberLog, Operator::kNoProperties, 1) \ | 258 V(NumberLog, Operator::kNoProperties, 1) \ |
258 V(NumberLog1p, Operator::kNoProperties, 1) \ | 259 V(NumberLog1p, Operator::kNoProperties, 1) \ |
259 V(NumberLog2, Operator::kNoProperties, 1) \ | 260 V(NumberLog2, Operator::kNoProperties, 1) \ |
260 V(NumberLog10, Operator::kNoProperties, 1) \ | 261 V(NumberLog10, Operator::kNoProperties, 1) \ |
261 V(NumberRound, Operator::kNoProperties, 1) \ | 262 V(NumberRound, Operator::kNoProperties, 1) \ |
262 V(NumberSqrt, Operator::kNoProperties, 1) \ | 263 V(NumberSqrt, Operator::kNoProperties, 1) \ |
263 V(NumberTrunc, Operator::kNoProperties, 1) \ | 264 V(NumberTrunc, Operator::kNoProperties, 1) \ |
264 V(NumberToInt32, Operator::kNoProperties, 1) \ | 265 V(NumberToInt32, Operator::kNoProperties, 1) \ |
265 V(NumberToUint32, Operator::kNoProperties, 1) \ | 266 V(NumberToUint32, Operator::kNoProperties, 1) \ |
266 V(NumberSilenceNaN, Operator::kNoProperties, 1) \ | 267 V(NumberSilenceNaN, Operator::kNoProperties, 1) \ |
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
541 Operator1<Type>(IrOpcode::k##Name, Operator::kNoThrow | properties, \ | 542 Operator1<Type>(IrOpcode::k##Name, Operator::kNoThrow | properties, \ |
542 #Name, value_input_count, 1, control_input_count, \ | 543 #Name, value_input_count, 1, control_input_count, \ |
543 output_count, 1, 0, access); \ | 544 output_count, 1, 0, access); \ |
544 } | 545 } |
545 ACCESS_OP_LIST(ACCESS) | 546 ACCESS_OP_LIST(ACCESS) |
546 #undef ACCESS | 547 #undef ACCESS |
547 | 548 |
548 } // namespace compiler | 549 } // namespace compiler |
549 } // namespace internal | 550 } // namespace internal |
550 } // namespace v8 | 551 } // namespace v8 |
OLD | NEW |