OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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_SIMPLIFIED_OPERATOR_H_ | 5 #ifndef V8_COMPILER_SIMPLIFIED_OPERATOR_H_ |
6 #define V8_COMPILER_SIMPLIFIED_OPERATOR_H_ | 6 #define V8_COMPILER_SIMPLIFIED_OPERATOR_H_ |
7 | 7 |
8 #include <iosfwd> | 8 #include <iosfwd> |
9 | 9 |
10 #include "src/compiler/operator.h" | 10 #include "src/compiler/operator.h" |
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
266 const Operator* ChangeInt32ToTagged(); | 266 const Operator* ChangeInt32ToTagged(); |
267 const Operator* ChangeUint32ToTagged(); | 267 const Operator* ChangeUint32ToTagged(); |
268 const Operator* ChangeFloat64ToTagged(); | 268 const Operator* ChangeFloat64ToTagged(); |
269 const Operator* ChangeTaggedToBit(); | 269 const Operator* ChangeTaggedToBit(); |
270 const Operator* ChangeBitToTagged(); | 270 const Operator* ChangeBitToTagged(); |
271 const Operator* TruncateTaggedToWord32(); | 271 const Operator* TruncateTaggedToWord32(); |
272 const Operator* TruncateTaggedToFloat64(); | 272 const Operator* TruncateTaggedToFloat64(); |
273 | 273 |
274 const Operator* CheckIf(); | 274 const Operator* CheckIf(); |
275 const Operator* CheckBounds(); | 275 const Operator* CheckBounds(); |
| 276 const Operator* CheckMaps(int map_input_count); |
276 const Operator* CheckNumber(); | 277 const Operator* CheckNumber(); |
277 const Operator* CheckString(); | 278 const Operator* CheckString(); |
278 const Operator* CheckTaggedPointer(); | 279 const Operator* CheckTaggedPointer(); |
279 const Operator* CheckTaggedSigned(); | 280 const Operator* CheckTaggedSigned(); |
280 | 281 |
281 const Operator* CheckedInt32Add(); | 282 const Operator* CheckedInt32Add(); |
282 const Operator* CheckedInt32Sub(); | 283 const Operator* CheckedInt32Sub(); |
283 const Operator* CheckedInt32Div(); | 284 const Operator* CheckedInt32Div(); |
284 const Operator* CheckedInt32Mod(); | 285 const Operator* CheckedInt32Mod(); |
285 const Operator* CheckedUint32Div(); | 286 const Operator* CheckedUint32Div(); |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
328 Zone* const zone_; | 329 Zone* const zone_; |
329 | 330 |
330 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); | 331 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); |
331 }; | 332 }; |
332 | 333 |
333 } // namespace compiler | 334 } // namespace compiler |
334 } // namespace internal | 335 } // namespace internal |
335 } // namespace v8 | 336 } // namespace v8 |
336 | 337 |
337 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ | 338 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ |
OLD | NEW |