| 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(CheckForMinusZeroMode); | 304 const Operator* ChangeFloat64ToTagged(); |
| 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 | 314 |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 387 Zone* const zone_; | 387 Zone* const zone_; |
| 388 | 388 |
| 389 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); | 389 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); |
| 390 }; | 390 }; |
| 391 | 391 |
| 392 } // namespace compiler | 392 } // namespace compiler |
| 393 } // namespace internal | 393 } // namespace internal |
| 394 } // namespace v8 | 394 } // namespace v8 |
| 395 | 395 |
| 396 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ | 396 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ |
| OLD | NEW |