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-inl.h" | 10 #include "src/types-inl.h" |
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
167 V(NumberSubtract, Operator::kNoProperties, 2) \ | 167 V(NumberSubtract, Operator::kNoProperties, 2) \ |
168 V(NumberMultiply, Operator::kCommutative, 2) \ | 168 V(NumberMultiply, Operator::kCommutative, 2) \ |
169 V(NumberDivide, Operator::kNoProperties, 2) \ | 169 V(NumberDivide, Operator::kNoProperties, 2) \ |
170 V(NumberModulus, Operator::kNoProperties, 2) \ | 170 V(NumberModulus, Operator::kNoProperties, 2) \ |
171 V(NumberToInt32, Operator::kNoProperties, 1) \ | 171 V(NumberToInt32, Operator::kNoProperties, 1) \ |
172 V(NumberToUint32, Operator::kNoProperties, 1) \ | 172 V(NumberToUint32, Operator::kNoProperties, 1) \ |
173 V(PlainPrimitiveToNumber, Operator::kNoProperties, 1) \ | 173 V(PlainPrimitiveToNumber, Operator::kNoProperties, 1) \ |
174 V(StringEqual, Operator::kCommutative, 2) \ | 174 V(StringEqual, Operator::kCommutative, 2) \ |
175 V(StringLessThan, Operator::kNoProperties, 2) \ | 175 V(StringLessThan, Operator::kNoProperties, 2) \ |
176 V(StringLessThanOrEqual, Operator::kNoProperties, 2) \ | 176 V(StringLessThanOrEqual, Operator::kNoProperties, 2) \ |
177 V(StringAdd, Operator::kNoProperties, 2) \ | |
178 V(ChangeTaggedToInt32, Operator::kNoProperties, 1) \ | 177 V(ChangeTaggedToInt32, Operator::kNoProperties, 1) \ |
179 V(ChangeTaggedToUint32, Operator::kNoProperties, 1) \ | 178 V(ChangeTaggedToUint32, Operator::kNoProperties, 1) \ |
180 V(ChangeTaggedToFloat64, Operator::kNoProperties, 1) \ | 179 V(ChangeTaggedToFloat64, Operator::kNoProperties, 1) \ |
181 V(ChangeInt32ToTagged, Operator::kNoProperties, 1) \ | 180 V(ChangeInt32ToTagged, Operator::kNoProperties, 1) \ |
182 V(ChangeUint32ToTagged, Operator::kNoProperties, 1) \ | 181 V(ChangeUint32ToTagged, Operator::kNoProperties, 1) \ |
183 V(ChangeFloat64ToTagged, Operator::kNoProperties, 1) \ | 182 V(ChangeFloat64ToTagged, Operator::kNoProperties, 1) \ |
184 V(ChangeBoolToBit, Operator::kNoProperties, 1) \ | 183 V(ChangeBoolToBit, Operator::kNoProperties, 1) \ |
185 V(ChangeBitToBool, Operator::kNoProperties, 1) \ | 184 V(ChangeBitToBool, Operator::kNoProperties, 1) \ |
186 V(ObjectIsSmi, Operator::kNoProperties, 1) \ | 185 V(ObjectIsSmi, Operator::kNoProperties, 1) \ |
187 V(ObjectIsNonNegativeSmi, Operator::kNoProperties, 1) | 186 V(ObjectIsNonNegativeSmi, Operator::kNoProperties, 1) |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
289 Operator1<Type>(IrOpcode::k##Name, Operator::kNoThrow | properties, \ | 288 Operator1<Type>(IrOpcode::k##Name, Operator::kNoThrow | properties, \ |
290 #Name, value_input_count, 1, control_input_count, \ | 289 #Name, value_input_count, 1, control_input_count, \ |
291 output_count, 1, 0, access); \ | 290 output_count, 1, 0, access); \ |
292 } | 291 } |
293 ACCESS_OP_LIST(ACCESS) | 292 ACCESS_OP_LIST(ACCESS) |
294 #undef ACCESS | 293 #undef ACCESS |
295 | 294 |
296 } // namespace compiler | 295 } // namespace compiler |
297 } // namespace internal | 296 } // namespace internal |
298 } // namespace v8 | 297 } // namespace v8 |
OLD | NEW |