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 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
318 const Operator* ChangeBitToTagged(); | 318 const Operator* ChangeBitToTagged(); |
319 const Operator* TruncateTaggedToWord32(); | 319 const Operator* TruncateTaggedToWord32(); |
320 const Operator* TruncateTaggedToFloat64(); | 320 const Operator* TruncateTaggedToFloat64(); |
321 const Operator* TruncateTaggedToBit(); | 321 const Operator* TruncateTaggedToBit(); |
322 | 322 |
323 const Operator* CheckIf(); | 323 const Operator* CheckIf(); |
324 const Operator* CheckBounds(); | 324 const Operator* CheckBounds(); |
325 const Operator* CheckMaps(int map_input_count); | 325 const Operator* CheckMaps(int map_input_count); |
326 | 326 |
327 const Operator* CheckHeapObject(); | 327 const Operator* CheckHeapObject(); |
| 328 const Operator* CheckInternalizedString(); |
328 const Operator* CheckNumber(); | 329 const Operator* CheckNumber(); |
329 const Operator* CheckSmi(); | 330 const Operator* CheckSmi(); |
330 const Operator* CheckString(); | 331 const Operator* CheckString(); |
331 | 332 |
332 const Operator* CheckedInt32Add(); | 333 const Operator* CheckedInt32Add(); |
333 const Operator* CheckedInt32Sub(); | 334 const Operator* CheckedInt32Sub(); |
334 const Operator* CheckedInt32Div(); | 335 const Operator* CheckedInt32Div(); |
335 const Operator* CheckedInt32Mod(); | 336 const Operator* CheckedInt32Mod(); |
336 const Operator* CheckedUint32Div(); | 337 const Operator* CheckedUint32Div(); |
337 const Operator* CheckedUint32Mod(); | 338 const Operator* CheckedUint32Mod(); |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
406 Zone* const zone_; | 407 Zone* const zone_; |
407 | 408 |
408 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); | 409 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); |
409 }; | 410 }; |
410 | 411 |
411 } // namespace compiler | 412 } // namespace compiler |
412 } // namespace internal | 413 } // namespace internal |
413 } // namespace v8 | 414 } // namespace v8 |
414 | 415 |
415 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ | 416 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ |
OLD | NEW |