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 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
288 const Operator* CheckTaggedSigned(); | 288 const Operator* CheckTaggedSigned(); |
289 | 289 |
290 const Operator* CheckedInt32Add(); | 290 const Operator* CheckedInt32Add(); |
291 const Operator* CheckedInt32Sub(); | 291 const Operator* CheckedInt32Sub(); |
292 const Operator* CheckedInt32Div(); | 292 const Operator* CheckedInt32Div(); |
293 const Operator* CheckedInt32Mod(); | 293 const Operator* CheckedInt32Mod(); |
294 const Operator* CheckedUint32Div(); | 294 const Operator* CheckedUint32Div(); |
295 const Operator* CheckedUint32Mod(); | 295 const Operator* CheckedUint32Mod(); |
296 const Operator* CheckedInt32Mul(CheckForMinusZeroMode); | 296 const Operator* CheckedInt32Mul(CheckForMinusZeroMode); |
297 const Operator* CheckedUint32ToInt32(); | 297 const Operator* CheckedUint32ToInt32(); |
298 const Operator* CheckedFloat64ToInt32(); | 298 const Operator* CheckedFloat64ToInt32(CheckForMinusZeroMode); |
299 const Operator* CheckedTaggedSignedToInt32(); | 299 const Operator* CheckedTaggedSignedToInt32(); |
300 const Operator* CheckedTaggedToInt32(); | 300 const Operator* CheckedTaggedToInt32(CheckForMinusZeroMode); |
301 const Operator* CheckedTaggedToFloat64(); | 301 const Operator* CheckedTaggedToFloat64(); |
302 const Operator* CheckedTruncateTaggedToWord32(); | 302 const Operator* CheckedTruncateTaggedToWord32(); |
303 | 303 |
304 const Operator* CheckFloat64Hole(CheckFloat64HoleMode); | 304 const Operator* CheckFloat64Hole(CheckFloat64HoleMode); |
305 const Operator* CheckTaggedHole(CheckTaggedHoleMode); | 305 const Operator* CheckTaggedHole(CheckTaggedHoleMode); |
306 | 306 |
307 const Operator* ObjectIsCallable(); | 307 const Operator* ObjectIsCallable(); |
308 const Operator* ObjectIsNumber(); | 308 const Operator* ObjectIsNumber(); |
309 const Operator* ObjectIsReceiver(); | 309 const Operator* ObjectIsReceiver(); |
310 const Operator* ObjectIsSmi(); | 310 const Operator* ObjectIsSmi(); |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
344 Zone* const zone_; | 344 Zone* const zone_; |
345 | 345 |
346 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); | 346 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); |
347 }; | 347 }; |
348 | 348 |
349 } // namespace compiler | 349 } // namespace compiler |
350 } // namespace internal | 350 } // namespace internal |
351 } // namespace v8 | 351 } // namespace v8 |
352 | 352 |
353 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ | 353 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ |
OLD | NEW |