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 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
302 const Operator* PlainPrimitiveToFloat64(); | 302 const Operator* PlainPrimitiveToFloat64(); |
303 | 303 |
304 const Operator* ChangeTaggedSignedToInt32(); | 304 const Operator* ChangeTaggedSignedToInt32(); |
305 const Operator* ChangeTaggedToInt32(); | 305 const Operator* ChangeTaggedToInt32(); |
306 const Operator* ChangeTaggedToUint32(); | 306 const Operator* ChangeTaggedToUint32(); |
307 const Operator* ChangeTaggedToFloat64(); | 307 const Operator* ChangeTaggedToFloat64(); |
308 const Operator* ChangeInt31ToTaggedSigned(); | 308 const Operator* ChangeInt31ToTaggedSigned(); |
309 const Operator* ChangeInt32ToTagged(); | 309 const Operator* ChangeInt32ToTagged(); |
310 const Operator* ChangeUint32ToTagged(); | 310 const Operator* ChangeUint32ToTagged(); |
311 const Operator* ChangeFloat64ToTagged(); | 311 const Operator* ChangeFloat64ToTagged(); |
| 312 const Operator* ChangeFloat64ToTaggedPointer(); |
312 const Operator* ChangeTaggedToBit(); | 313 const Operator* ChangeTaggedToBit(); |
313 const Operator* ChangeBitToTagged(); | 314 const Operator* ChangeBitToTagged(); |
314 const Operator* TruncateTaggedToWord32(); | 315 const Operator* TruncateTaggedToWord32(); |
315 const Operator* TruncateTaggedToFloat64(); | 316 const Operator* TruncateTaggedToFloat64(); |
316 const Operator* TruncateTaggedToBit(); | 317 const Operator* TruncateTaggedToBit(); |
317 | 318 |
318 const Operator* CheckIf(); | 319 const Operator* CheckIf(); |
319 const Operator* CheckBounds(); | 320 const Operator* CheckBounds(); |
320 const Operator* CheckMaps(int map_input_count); | 321 const Operator* CheckMaps(int map_input_count); |
321 | 322 |
(...skipping 10 matching lines...) Expand all Loading... |
332 const Operator* CheckedUint32Mod(); | 333 const Operator* CheckedUint32Mod(); |
333 const Operator* CheckedInt32Mul(CheckForMinusZeroMode); | 334 const Operator* CheckedInt32Mul(CheckForMinusZeroMode); |
334 const Operator* CheckedInt32ToTaggedSigned(); | 335 const Operator* CheckedInt32ToTaggedSigned(); |
335 const Operator* CheckedUint32ToInt32(); | 336 const Operator* CheckedUint32ToInt32(); |
336 const Operator* CheckedUint32ToTaggedSigned(); | 337 const Operator* CheckedUint32ToTaggedSigned(); |
337 const Operator* CheckedFloat64ToInt32(CheckForMinusZeroMode); | 338 const Operator* CheckedFloat64ToInt32(CheckForMinusZeroMode); |
338 const Operator* CheckedTaggedSignedToInt32(); | 339 const Operator* CheckedTaggedSignedToInt32(); |
339 const Operator* CheckedTaggedToInt32(CheckForMinusZeroMode); | 340 const Operator* CheckedTaggedToInt32(CheckForMinusZeroMode); |
340 const Operator* CheckedTaggedToFloat64(CheckTaggedInputMode); | 341 const Operator* CheckedTaggedToFloat64(CheckTaggedInputMode); |
341 const Operator* CheckedTaggedToTaggedSigned(); | 342 const Operator* CheckedTaggedToTaggedSigned(); |
| 343 const Operator* CheckedTaggedToTaggedPointer(); |
342 const Operator* CheckedTruncateTaggedToWord32(); | 344 const Operator* CheckedTruncateTaggedToWord32(); |
343 | 345 |
344 const Operator* CheckFloat64Hole(CheckFloat64HoleMode); | 346 const Operator* CheckFloat64Hole(CheckFloat64HoleMode); |
345 const Operator* CheckTaggedHole(); | 347 const Operator* CheckTaggedHole(); |
346 const Operator* ConvertTaggedHoleToUndefined(); | 348 const Operator* ConvertTaggedHoleToUndefined(); |
347 | 349 |
348 const Operator* ObjectIsCallable(); | 350 const Operator* ObjectIsCallable(); |
349 const Operator* ObjectIsNumber(); | 351 const Operator* ObjectIsNumber(); |
350 const Operator* ObjectIsReceiver(); | 352 const Operator* ObjectIsReceiver(); |
351 const Operator* ObjectIsSmi(); | 353 const Operator* ObjectIsSmi(); |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
394 Zone* const zone_; | 396 Zone* const zone_; |
395 | 397 |
396 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); | 398 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); |
397 }; | 399 }; |
398 | 400 |
399 } // namespace compiler | 401 } // namespace compiler |
400 } // namespace internal | 402 } // namespace internal |
401 } // namespace v8 | 403 } // namespace v8 |
402 | 404 |
403 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ | 405 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ |
OLD | NEW |