| 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 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 294 const Operator* PlainPrimitiveToWord32(); | 294 const Operator* PlainPrimitiveToWord32(); |
| 295 const Operator* PlainPrimitiveToFloat64(); | 295 const Operator* PlainPrimitiveToFloat64(); |
| 296 | 296 |
| 297 const Operator* ChangeTaggedSignedToInt32(); | 297 const Operator* ChangeTaggedSignedToInt32(); |
| 298 const Operator* ChangeTaggedToInt32(); | 298 const Operator* ChangeTaggedToInt32(); |
| 299 const Operator* ChangeTaggedToUint32(); | 299 const Operator* ChangeTaggedToUint32(); |
| 300 const Operator* ChangeTaggedToFloat64(); | 300 const Operator* ChangeTaggedToFloat64(); |
| 301 const Operator* ChangeInt31ToTaggedSigned(); | 301 const Operator* ChangeInt31ToTaggedSigned(); |
| 302 const Operator* ChangeInt32ToTagged(); | 302 const Operator* ChangeInt32ToTagged(); |
| 303 const Operator* ChangeUint32ToTagged(); | 303 const Operator* ChangeUint32ToTagged(); |
| 304 const Operator* ChangeFloat64ToTagged(); | 304 const Operator* ChangeFloat64ToTagged(CheckForMinusZeroMode); |
| 305 const Operator* ChangeTaggedToBit(); | 305 const Operator* ChangeTaggedToBit(); |
| 306 const Operator* ChangeBitToTagged(); | 306 const Operator* ChangeBitToTagged(); |
| 307 const Operator* TruncateTaggedToWord32(); | 307 const Operator* TruncateTaggedToWord32(); |
| 308 const Operator* TruncateTaggedToFloat64(); | 308 const Operator* TruncateTaggedToFloat64(); |
| 309 const Operator* TruncateTaggedToBit(); | 309 const Operator* TruncateTaggedToBit(); |
| 310 | 310 |
| 311 const Operator* CheckIf(); | 311 const Operator* CheckIf(); |
| 312 const Operator* CheckBounds(); | 312 const Operator* CheckBounds(); |
| 313 const Operator* CheckMaps(int map_input_count); | 313 const Operator* CheckMaps(int map_input_count); |
| 314 const Operator* CheckNumber(); | 314 const Operator* CheckNumber(); |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 383 Zone* const zone_; | 383 Zone* const zone_; |
| 384 | 384 |
| 385 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); | 385 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); |
| 386 }; | 386 }; |
| 387 | 387 |
| 388 } // namespace compiler | 388 } // namespace compiler |
| 389 } // namespace internal | 389 } // namespace internal |
| 390 } // namespace v8 | 390 } // namespace v8 |
| 391 | 391 |
| 392 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ | 392 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ |
| OLD | NEW |