| 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/base/compiler-specific.h" | 10 #include "src/base/compiler-specific.h" |
| (...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 352 | 352 |
| 353 const Operator* StringEqual(); | 353 const Operator* StringEqual(); |
| 354 const Operator* StringLessThan(); | 354 const Operator* StringLessThan(); |
| 355 const Operator* StringLessThanOrEqual(); | 355 const Operator* StringLessThanOrEqual(); |
| 356 const Operator* StringCharAt(); | 356 const Operator* StringCharAt(); |
| 357 const Operator* StringCharCodeAt(); | 357 const Operator* StringCharCodeAt(); |
| 358 const Operator* StringFromCharCode(); | 358 const Operator* StringFromCharCode(); |
| 359 const Operator* StringFromCodePoint(UnicodeEncoding encoding); | 359 const Operator* StringFromCodePoint(UnicodeEncoding encoding); |
| 360 const Operator* StringIndexOf(); | 360 const Operator* StringIndexOf(); |
| 361 | 361 |
| 362 const Operator* SpeculativeToNumber(NumberOperationHint hint); |
| 363 |
| 362 const Operator* PlainPrimitiveToNumber(); | 364 const Operator* PlainPrimitiveToNumber(); |
| 363 const Operator* PlainPrimitiveToWord32(); | 365 const Operator* PlainPrimitiveToWord32(); |
| 364 const Operator* PlainPrimitiveToFloat64(); | 366 const Operator* PlainPrimitiveToFloat64(); |
| 365 | 367 |
| 366 const Operator* ChangeTaggedSignedToInt32(); | 368 const Operator* ChangeTaggedSignedToInt32(); |
| 367 const Operator* ChangeTaggedToInt32(); | 369 const Operator* ChangeTaggedToInt32(); |
| 368 const Operator* ChangeTaggedToUint32(); | 370 const Operator* ChangeTaggedToUint32(); |
| 369 const Operator* ChangeTaggedToFloat64(); | 371 const Operator* ChangeTaggedToFloat64(); |
| 370 const Operator* ChangeTaggedToTaggedSigned(); | 372 const Operator* ChangeTaggedToTaggedSigned(); |
| 371 const Operator* ChangeInt31ToTaggedSigned(); | 373 const Operator* ChangeInt31ToTaggedSigned(); |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 472 Zone* const zone_; | 474 Zone* const zone_; |
| 473 | 475 |
| 474 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); | 476 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); |
| 475 }; | 477 }; |
| 476 | 478 |
| 477 } // namespace compiler | 479 } // namespace compiler |
| 478 } // namespace internal | 480 } // namespace internal |
| 479 } // namespace v8 | 481 } // namespace v8 |
| 480 | 482 |
| 481 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ | 483 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ |
| OLD | NEW |