| 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 396 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 407 | 407 | 
| 408   const Operator* CheckIf(); | 408   const Operator* CheckIf(); | 
| 409   const Operator* CheckBounds(); | 409   const Operator* CheckBounds(); | 
| 410   const Operator* CheckMaps(CheckMapsFlags, ZoneHandleSet<Map>); | 410   const Operator* CheckMaps(CheckMapsFlags, ZoneHandleSet<Map>); | 
| 411 | 411 | 
| 412   const Operator* CheckHeapObject(); | 412   const Operator* CheckHeapObject(); | 
| 413   const Operator* CheckInternalizedString(); | 413   const Operator* CheckInternalizedString(); | 
| 414   const Operator* CheckNumber(); | 414   const Operator* CheckNumber(); | 
| 415   const Operator* CheckSmi(); | 415   const Operator* CheckSmi(); | 
| 416   const Operator* CheckString(); | 416   const Operator* CheckString(); | 
|  | 417   const Operator* CheckSymbol(); | 
| 417   const Operator* CheckReceiver(); | 418   const Operator* CheckReceiver(); | 
| 418 | 419 | 
| 419   const Operator* CheckedInt32Add(); | 420   const Operator* CheckedInt32Add(); | 
| 420   const Operator* CheckedInt32Sub(); | 421   const Operator* CheckedInt32Sub(); | 
| 421   const Operator* CheckedInt32Div(); | 422   const Operator* CheckedInt32Div(); | 
| 422   const Operator* CheckedInt32Mod(); | 423   const Operator* CheckedInt32Mod(); | 
| 423   const Operator* CheckedUint32Div(); | 424   const Operator* CheckedUint32Div(); | 
| 424   const Operator* CheckedUint32Mod(); | 425   const Operator* CheckedUint32Mod(); | 
| 425   const Operator* CheckedInt32Mul(CheckForMinusZeroMode); | 426   const Operator* CheckedInt32Mul(CheckForMinusZeroMode); | 
| 426   const Operator* CheckedInt32ToTaggedSigned(); | 427   const Operator* CheckedInt32ToTaggedSigned(); | 
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 497   Zone* const zone_; | 498   Zone* const zone_; | 
| 498 | 499 | 
| 499   DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); | 500   DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); | 
| 500 }; | 501 }; | 
| 501 | 502 | 
| 502 }  // namespace compiler | 503 }  // namespace compiler | 
| 503 }  // namespace internal | 504 }  // namespace internal | 
| 504 }  // namespace v8 | 505 }  // namespace v8 | 
| 505 | 506 | 
| 506 #endif  // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ | 507 #endif  // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ | 
| OLD | NEW | 
|---|