| 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 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 V(NumberAtanh, Operator::kNoProperties, 1) \ | 309 V(NumberAtanh, Operator::kNoProperties, 1) \ |
| 310 V(NumberCbrt, Operator::kNoProperties, 1) \ | 310 V(NumberCbrt, Operator::kNoProperties, 1) \ |
| 311 V(NumberCos, Operator::kNoProperties, 1) \ | 311 V(NumberCos, Operator::kNoProperties, 1) \ |
| 312 V(NumberCosh, Operator::kNoProperties, 1) \ | 312 V(NumberCosh, Operator::kNoProperties, 1) \ |
| 313 V(NumberExp, Operator::kNoProperties, 1) \ | 313 V(NumberExp, Operator::kNoProperties, 1) \ |
| 314 V(NumberExpm1, Operator::kNoProperties, 1) \ | 314 V(NumberExpm1, Operator::kNoProperties, 1) \ |
| 315 V(NumberLog, Operator::kNoProperties, 1) \ | 315 V(NumberLog, Operator::kNoProperties, 1) \ |
| 316 V(NumberLog1p, Operator::kNoProperties, 1) \ | 316 V(NumberLog1p, Operator::kNoProperties, 1) \ |
| 317 V(NumberLog10, Operator::kNoProperties, 1) \ | 317 V(NumberLog10, Operator::kNoProperties, 1) \ |
| 318 V(NumberLog2, Operator::kNoProperties, 1) \ | 318 V(NumberLog2, Operator::kNoProperties, 1) \ |
| 319 V(NumberMax, Operator::kNoProperties, 2) \ |
| 320 V(NumberMin, Operator::kNoProperties, 2) \ |
| 319 V(NumberPow, Operator::kNoProperties, 2) \ | 321 V(NumberPow, Operator::kNoProperties, 2) \ |
| 320 V(NumberRound, Operator::kNoProperties, 1) \ | 322 V(NumberRound, Operator::kNoProperties, 1) \ |
| 321 V(NumberSign, Operator::kNoProperties, 1) \ | 323 V(NumberSign, Operator::kNoProperties, 1) \ |
| 322 V(NumberSin, Operator::kNoProperties, 1) \ | 324 V(NumberSin, Operator::kNoProperties, 1) \ |
| 323 V(NumberSinh, Operator::kNoProperties, 1) \ | 325 V(NumberSinh, Operator::kNoProperties, 1) \ |
| 324 V(NumberSqrt, Operator::kNoProperties, 1) \ | 326 V(NumberSqrt, Operator::kNoProperties, 1) \ |
| 325 V(NumberTan, Operator::kNoProperties, 1) \ | 327 V(NumberTan, Operator::kNoProperties, 1) \ |
| 326 V(NumberTanh, Operator::kNoProperties, 1) \ | 328 V(NumberTanh, Operator::kNoProperties, 1) \ |
| 327 V(NumberTrunc, Operator::kNoProperties, 1) \ | 329 V(NumberTrunc, Operator::kNoProperties, 1) \ |
| 328 V(NumberToInt32, Operator::kNoProperties, 1) \ | 330 V(NumberToInt32, Operator::kNoProperties, 1) \ |
| (...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 631 Operator::kNoDeopt | Operator::kNoThrow | properties, \ | 633 Operator::kNoDeopt | Operator::kNoThrow | properties, \ |
| 632 #Name, value_input_count, 1, control_input_count, \ | 634 #Name, value_input_count, 1, control_input_count, \ |
| 633 output_count, 1, 0, access); \ | 635 output_count, 1, 0, access); \ |
| 634 } | 636 } |
| 635 ACCESS_OP_LIST(ACCESS) | 637 ACCESS_OP_LIST(ACCESS) |
| 636 #undef ACCESS | 638 #undef ACCESS |
| 637 | 639 |
| 638 } // namespace compiler | 640 } // namespace compiler |
| 639 } // namespace internal | 641 } // namespace internal |
| 640 } // namespace v8 | 642 } // namespace v8 |
| OLD | NEW |