| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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_IA32_LITHIUM_CODEGEN_IA32_H_ | 5 #ifndef V8_IA32_LITHIUM_CODEGEN_IA32_H_ |
| 6 #define V8_IA32_LITHIUM_CODEGEN_IA32_H_ | 6 #define V8_IA32_LITHIUM_CODEGEN_IA32_H_ |
| 7 | 7 |
| 8 #include "src/ia32/lithium-ia32.h" | 8 #include "src/ia32/lithium-ia32.h" |
| 9 | 9 |
| 10 #include "src/base/logging.h" | 10 #include "src/base/logging.h" |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 | 94 |
| 95 enum IntegerSignedness { SIGNED_INT32, UNSIGNED_INT32 }; | 95 enum IntegerSignedness { SIGNED_INT32, UNSIGNED_INT32 }; |
| 96 void DoDeferredNumberTagIU(LInstruction* instr, | 96 void DoDeferredNumberTagIU(LInstruction* instr, |
| 97 LOperand* value, | 97 LOperand* value, |
| 98 LOperand* temp, | 98 LOperand* temp, |
| 99 IntegerSignedness signedness); | 99 IntegerSignedness signedness); |
| 100 | 100 |
| 101 void DoDeferredTaggedToI(LTaggedToI* instr, Label* done); | 101 void DoDeferredTaggedToI(LTaggedToI* instr, Label* done); |
| 102 void DoDeferredMathAbsTaggedHeapNumber(LMathAbs* instr); | 102 void DoDeferredMathAbsTaggedHeapNumber(LMathAbs* instr); |
| 103 void DoDeferredStackCheck(LStackCheck* instr); | 103 void DoDeferredStackCheck(LStackCheck* instr); |
| 104 void DoDeferredMaybeGrowElements(LMaybeGrowElements* instr); |
| 104 void DoDeferredStringCharCodeAt(LStringCharCodeAt* instr); | 105 void DoDeferredStringCharCodeAt(LStringCharCodeAt* instr); |
| 105 void DoDeferredStringCharFromCode(LStringCharFromCode* instr); | 106 void DoDeferredStringCharFromCode(LStringCharFromCode* instr); |
| 106 void DoDeferredAllocate(LAllocate* instr); | 107 void DoDeferredAllocate(LAllocate* instr); |
| 107 void DoDeferredInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr, | 108 void DoDeferredInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr, |
| 108 Label* map_check); | 109 Label* map_check); |
| 109 void DoDeferredInstanceMigration(LCheckMaps* instr, Register object); | 110 void DoDeferredInstanceMigration(LCheckMaps* instr, Register object); |
| 110 void DoDeferredLoadMutableDouble(LLoadFieldByIndex* instr, | 111 void DoDeferredLoadMutableDouble(LLoadFieldByIndex* instr, |
| 111 Register object, | 112 Register object, |
| 112 Register index); | 113 Register index); |
| 113 | 114 |
| (...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 402 Label entry_; | 403 Label entry_; |
| 403 Label exit_; | 404 Label exit_; |
| 404 Label* external_exit_; | 405 Label* external_exit_; |
| 405 Label done_; | 406 Label done_; |
| 406 int instruction_index_; | 407 int instruction_index_; |
| 407 }; | 408 }; |
| 408 | 409 |
| 409 } } // namespace v8::internal | 410 } } // namespace v8::internal |
| 410 | 411 |
| 411 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ | 412 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ |
| OLD | NEW |