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 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
266 const Operator* ChangeUint32ToTagged(); | 266 const Operator* ChangeUint32ToTagged(); |
267 const Operator* ChangeFloat64ToTagged(); | 267 const Operator* ChangeFloat64ToTagged(); |
268 const Operator* ChangeTaggedToBit(); | 268 const Operator* ChangeTaggedToBit(); |
269 const Operator* ChangeBitToTagged(); | 269 const Operator* ChangeBitToTagged(); |
270 const Operator* TruncateTaggedToWord32(); | 270 const Operator* TruncateTaggedToWord32(); |
271 const Operator* TruncateTaggedToFloat64(); | 271 const Operator* TruncateTaggedToFloat64(); |
272 | 272 |
273 const Operator* CheckIf(); | 273 const Operator* CheckIf(); |
274 const Operator* CheckBounds(); | 274 const Operator* CheckBounds(); |
275 const Operator* CheckNumber(); | 275 const Operator* CheckNumber(); |
| 276 const Operator* CheckString(); |
276 const Operator* CheckTaggedPointer(); | 277 const Operator* CheckTaggedPointer(); |
277 const Operator* CheckTaggedSigned(); | 278 const Operator* CheckTaggedSigned(); |
278 | 279 |
279 const Operator* CheckedInt32Add(); | 280 const Operator* CheckedInt32Add(); |
280 const Operator* CheckedInt32Sub(); | 281 const Operator* CheckedInt32Sub(); |
281 const Operator* CheckedInt32Div(); | 282 const Operator* CheckedInt32Div(); |
282 const Operator* CheckedInt32Mod(); | 283 const Operator* CheckedInt32Mod(); |
283 const Operator* CheckedUint32Div(); | 284 const Operator* CheckedUint32Div(); |
284 const Operator* CheckedUint32Mod(); | 285 const Operator* CheckedUint32Mod(); |
285 const Operator* CheckedInt32Mul(CheckForMinusZeroMode); | 286 const Operator* CheckedInt32Mul(CheckForMinusZeroMode); |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
325 Zone* const zone_; | 326 Zone* const zone_; |
326 | 327 |
327 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); | 328 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); |
328 }; | 329 }; |
329 | 330 |
330 } // namespace compiler | 331 } // namespace compiler |
331 } // namespace internal | 332 } // namespace internal |
332 } // namespace v8 | 333 } // namespace v8 |
333 | 334 |
334 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ | 335 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ |
OLD | NEW |