| OLD | NEW | 
|---|
| 1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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_OPCODES_H_ | 5 #ifndef V8_COMPILER_OPCODES_H_ | 
| 6 #define V8_COMPILER_OPCODES_H_ | 6 #define V8_COMPILER_OPCODES_H_ | 
| 7 | 7 | 
| 8 #include <iosfwd> | 8 #include <iosfwd> | 
| 9 | 9 | 
| 10 // Opcodes for control operators. | 10 // Opcodes for control operators. | 
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 231   V(ChangeTaggedToFloat64)            \ | 231   V(ChangeTaggedToFloat64)            \ | 
| 232   V(ChangeInt31ToTaggedSigned)        \ | 232   V(ChangeInt31ToTaggedSigned)        \ | 
| 233   V(ChangeInt32ToTagged)              \ | 233   V(ChangeInt32ToTagged)              \ | 
| 234   V(ChangeUint32ToTagged)             \ | 234   V(ChangeUint32ToTagged)             \ | 
| 235   V(ChangeFloat64ToTagged)            \ | 235   V(ChangeFloat64ToTagged)            \ | 
| 236   V(ChangeTaggedToBit)                \ | 236   V(ChangeTaggedToBit)                \ | 
| 237   V(ChangeBitToTagged)                \ | 237   V(ChangeBitToTagged)                \ | 
| 238   V(CheckBounds)                      \ | 238   V(CheckBounds)                      \ | 
| 239   V(CheckTaggedPointer)               \ | 239   V(CheckTaggedPointer)               \ | 
| 240   V(CheckTaggedSigned)                \ | 240   V(CheckTaggedSigned)                \ | 
|  | 241   V(CheckedInt32Add)                  \ | 
|  | 242   V(CheckedInt32Sub)                  \ | 
| 241   V(CheckedUint32ToInt32)             \ | 243   V(CheckedUint32ToInt32)             \ | 
| 242   V(CheckedFloat64ToInt32)            \ | 244   V(CheckedFloat64ToInt32)            \ | 
| 243   V(CheckedTaggedToInt32)             \ | 245   V(CheckedTaggedToInt32)             \ | 
| 244   V(CheckedTaggedToFloat64)           \ | 246   V(CheckedTaggedToFloat64)           \ | 
| 245   V(CheckFloat64Hole)                 \ | 247   V(CheckFloat64Hole)                 \ | 
| 246   V(CheckTaggedHole)                  \ | 248   V(CheckTaggedHole)                  \ | 
| 247   V(CheckIf)                          \ |  | 
| 248   V(TruncateTaggedToWord32)           \ | 249   V(TruncateTaggedToWord32)           \ | 
| 249   V(TruncateTaggedToFloat64)          \ | 250   V(TruncateTaggedToFloat64)          \ | 
| 250   V(Allocate)                         \ | 251   V(Allocate)                         \ | 
| 251   V(LoadField)                        \ | 252   V(LoadField)                        \ | 
| 252   V(LoadBuffer)                       \ | 253   V(LoadBuffer)                       \ | 
| 253   V(LoadElement)                      \ | 254   V(LoadElement)                      \ | 
| 254   V(StoreField)                       \ | 255   V(StoreField)                       \ | 
| 255   V(StoreBuffer)                      \ | 256   V(StoreBuffer)                      \ | 
| 256   V(StoreElement)                     \ | 257   V(StoreElement)                     \ | 
| 257   V(ObjectIsCallable)                 \ | 258   V(ObjectIsCallable)                 \ | 
| (...skipping 427 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 685   } | 686   } | 
| 686 }; | 687 }; | 
| 687 | 688 | 
| 688 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 689 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 
| 689 | 690 | 
| 690 }  // namespace compiler | 691 }  // namespace compiler | 
| 691 }  // namespace internal | 692 }  // namespace internal | 
| 692 }  // namespace v8 | 693 }  // namespace v8 | 
| 693 | 694 | 
| 694 #endif  // V8_COMPILER_OPCODES_H_ | 695 #endif  // V8_COMPILER_OPCODES_H_ | 
| OLD | NEW | 
|---|