| 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 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 205 V(NumberCeil, Operator::kNoProperties, 1) \ | 205 V(NumberCeil, Operator::kNoProperties, 1) \ |
| 206 V(NumberFloor, Operator::kNoProperties, 1) \ | 206 V(NumberFloor, Operator::kNoProperties, 1) \ |
| 207 V(NumberLog, Operator::kNoProperties, 1) \ | 207 V(NumberLog, Operator::kNoProperties, 1) \ |
| 208 V(NumberRound, Operator::kNoProperties, 1) \ | 208 V(NumberRound, Operator::kNoProperties, 1) \ |
| 209 V(NumberTrunc, Operator::kNoProperties, 1) \ | 209 V(NumberTrunc, Operator::kNoProperties, 1) \ |
| 210 V(NumberToInt32, Operator::kNoProperties, 1) \ | 210 V(NumberToInt32, Operator::kNoProperties, 1) \ |
| 211 V(NumberToUint32, Operator::kNoProperties, 1) \ | 211 V(NumberToUint32, Operator::kNoProperties, 1) \ |
| 212 V(NumberIsHoleNaN, Operator::kNoProperties, 1) \ | 212 V(NumberIsHoleNaN, Operator::kNoProperties, 1) \ |
| 213 V(StringFromCharCode, Operator::kNoProperties, 1) \ | 213 V(StringFromCharCode, Operator::kNoProperties, 1) \ |
| 214 V(StringToNumber, Operator::kNoProperties, 1) \ | 214 V(StringToNumber, Operator::kNoProperties, 1) \ |
| 215 V(PlainPrimitiveToNumber, Operator::kNoWrite, 1) \ |
| 216 V(PlainPrimitiveToWord32, Operator::kNoWrite, 1) \ |
| 217 V(PlainPrimitiveToFloat64, Operator::kNoWrite, 1) \ |
| 215 V(ChangeTaggedSignedToInt32, Operator::kNoProperties, 1) \ | 218 V(ChangeTaggedSignedToInt32, Operator::kNoProperties, 1) \ |
| 216 V(ChangeTaggedToInt32, Operator::kNoProperties, 1) \ | 219 V(ChangeTaggedToInt32, Operator::kNoProperties, 1) \ |
| 217 V(ChangeTaggedToUint32, Operator::kNoProperties, 1) \ | 220 V(ChangeTaggedToUint32, Operator::kNoProperties, 1) \ |
| 218 V(ChangeTaggedToFloat64, Operator::kNoProperties, 1) \ | 221 V(ChangeTaggedToFloat64, Operator::kNoProperties, 1) \ |
| 219 V(ChangeInt31ToTaggedSigned, Operator::kNoProperties, 1) \ | 222 V(ChangeInt31ToTaggedSigned, Operator::kNoProperties, 1) \ |
| 220 V(ChangeInt32ToTagged, Operator::kNoProperties, 1) \ | 223 V(ChangeInt32ToTagged, Operator::kNoProperties, 1) \ |
| 221 V(ChangeUint32ToTagged, Operator::kNoProperties, 1) \ | 224 V(ChangeUint32ToTagged, Operator::kNoProperties, 1) \ |
| 222 V(ChangeFloat64ToTagged, Operator::kNoProperties, 1) \ | 225 V(ChangeFloat64ToTagged, Operator::kNoProperties, 1) \ |
| 223 V(ChangeTaggedToBit, Operator::kNoProperties, 1) \ | 226 V(ChangeTaggedToBit, Operator::kNoProperties, 1) \ |
| 224 V(ChangeBitToTagged, Operator::kNoProperties, 1) \ | 227 V(ChangeBitToTagged, Operator::kNoProperties, 1) \ |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 408 Operator1<Type>(IrOpcode::k##Name, Operator::kNoThrow | properties, \ | 411 Operator1<Type>(IrOpcode::k##Name, Operator::kNoThrow | properties, \ |
| 409 #Name, value_input_count, 1, control_input_count, \ | 412 #Name, value_input_count, 1, control_input_count, \ |
| 410 output_count, 1, 0, access); \ | 413 output_count, 1, 0, access); \ |
| 411 } | 414 } |
| 412 ACCESS_OP_LIST(ACCESS) | 415 ACCESS_OP_LIST(ACCESS) |
| 413 #undef ACCESS | 416 #undef ACCESS |
| 414 | 417 |
| 415 } // namespace compiler | 418 } // namespace compiler |
| 416 } // namespace internal | 419 } // namespace internal |
| 417 } // namespace v8 | 420 } // namespace v8 |
| OLD | NEW |