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 367 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
378 | 378 |
379 const Operator* CheckIf(); | 379 const Operator* CheckIf(); |
380 const Operator* CheckBounds(); | 380 const Operator* CheckBounds(); |
381 const Operator* CheckMaps(CheckMapsFlags, ZoneHandleSet<Map>); | 381 const Operator* CheckMaps(CheckMapsFlags, ZoneHandleSet<Map>); |
382 | 382 |
383 const Operator* CheckHeapObject(); | 383 const Operator* CheckHeapObject(); |
384 const Operator* CheckInternalizedString(); | 384 const Operator* CheckInternalizedString(); |
385 const Operator* CheckNumber(); | 385 const Operator* CheckNumber(); |
386 const Operator* CheckSmi(); | 386 const Operator* CheckSmi(); |
387 const Operator* CheckString(); | 387 const Operator* CheckString(); |
| 388 const Operator* CheckReceiver(); |
388 | 389 |
389 const Operator* CheckedInt32Add(); | 390 const Operator* CheckedInt32Add(); |
390 const Operator* CheckedInt32Sub(); | 391 const Operator* CheckedInt32Sub(); |
391 const Operator* CheckedInt32Div(); | 392 const Operator* CheckedInt32Div(); |
392 const Operator* CheckedInt32Mod(); | 393 const Operator* CheckedInt32Mod(); |
393 const Operator* CheckedUint32Div(); | 394 const Operator* CheckedUint32Div(); |
394 const Operator* CheckedUint32Mod(); | 395 const Operator* CheckedUint32Mod(); |
395 const Operator* CheckedInt32Mul(CheckForMinusZeroMode); | 396 const Operator* CheckedInt32Mul(CheckForMinusZeroMode); |
396 const Operator* CheckedInt32ToTaggedSigned(); | 397 const Operator* CheckedInt32ToTaggedSigned(); |
397 const Operator* CheckedUint32ToInt32(); | 398 const Operator* CheckedUint32ToInt32(); |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
463 Zone* const zone_; | 464 Zone* const zone_; |
464 | 465 |
465 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); | 466 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); |
466 }; | 467 }; |
467 | 468 |
468 } // namespace compiler | 469 } // namespace compiler |
469 } // namespace internal | 470 } // namespace internal |
470 } // namespace v8 | 471 } // namespace v8 |
471 | 472 |
472 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ | 473 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ |
OLD | NEW |