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 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
349 | 349 |
350 const Operator* ReferenceEqual(); | 350 const Operator* ReferenceEqual(); |
351 | 351 |
352 const Operator* StringEqual(); | 352 const Operator* StringEqual(); |
353 const Operator* StringLessThan(); | 353 const Operator* StringLessThan(); |
354 const Operator* StringLessThanOrEqual(); | 354 const Operator* StringLessThanOrEqual(); |
355 const Operator* StringCharAt(); | 355 const Operator* StringCharAt(); |
356 const Operator* StringCharCodeAt(); | 356 const Operator* StringCharCodeAt(); |
357 const Operator* StringFromCharCode(); | 357 const Operator* StringFromCharCode(); |
358 const Operator* StringFromCodePoint(UnicodeEncoding encoding); | 358 const Operator* StringFromCodePoint(UnicodeEncoding encoding); |
| 359 const Operator* StringIndexOf(); |
359 | 360 |
360 const Operator* PlainPrimitiveToNumber(); | 361 const Operator* PlainPrimitiveToNumber(); |
361 const Operator* PlainPrimitiveToWord32(); | 362 const Operator* PlainPrimitiveToWord32(); |
362 const Operator* PlainPrimitiveToFloat64(); | 363 const Operator* PlainPrimitiveToFloat64(); |
363 | 364 |
364 const Operator* ChangeTaggedSignedToInt32(); | 365 const Operator* ChangeTaggedSignedToInt32(); |
365 const Operator* ChangeTaggedToInt32(); | 366 const Operator* ChangeTaggedToInt32(); |
366 const Operator* ChangeTaggedToUint32(); | 367 const Operator* ChangeTaggedToUint32(); |
367 const Operator* ChangeTaggedToFloat64(); | 368 const Operator* ChangeTaggedToFloat64(); |
368 const Operator* ChangeInt31ToTaggedSigned(); | 369 const Operator* ChangeInt31ToTaggedSigned(); |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
465 Zone* const zone_; | 466 Zone* const zone_; |
466 | 467 |
467 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); | 468 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); |
468 }; | 469 }; |
469 | 470 |
470 } // namespace compiler | 471 } // namespace compiler |
471 } // namespace internal | 472 } // namespace internal |
472 } // namespace v8 | 473 } // namespace v8 |
473 | 474 |
474 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ | 475 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ |
OLD | NEW |