| 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 "ia32/lithium-ia32.h" | 8 #include "ia32/lithium-ia32.h" |
| 9 | 9 |
| 10 #include "checks.h" | 10 #include "checks.h" |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 // Finish the code by setting stack height, safepoint, and bailout | 88 // Finish the code by setting stack height, safepoint, and bailout |
| 89 // information on it. | 89 // information on it. |
| 90 void FinishCode(Handle<Code> code); | 90 void FinishCode(Handle<Code> code); |
| 91 | 91 |
| 92 // Deferred code support. | 92 // Deferred code support. |
| 93 void DoDeferredNumberTagD(LNumberTagD* instr); | 93 void DoDeferredNumberTagD(LNumberTagD* instr); |
| 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* temp1, | 98 LOperand* temp, |
| 99 LOperand* temp2, | |
| 100 IntegerSignedness signedness); | 99 IntegerSignedness signedness); |
| 101 | 100 |
| 102 void DoDeferredTaggedToI(LTaggedToI* instr, Label* done); | 101 void DoDeferredTaggedToI(LTaggedToI* instr, Label* done); |
| 103 void DoDeferredMathAbsTaggedHeapNumber(LMathAbs* instr); | 102 void DoDeferredMathAbsTaggedHeapNumber(LMathAbs* instr); |
| 104 void DoDeferredStackCheck(LStackCheck* instr); | 103 void DoDeferredStackCheck(LStackCheck* instr); |
| 105 void DoDeferredStringCharCodeAt(LStringCharCodeAt* instr); | 104 void DoDeferredStringCharCodeAt(LStringCharCodeAt* instr); |
| 106 void DoDeferredStringCharFromCode(LStringCharFromCode* instr); | 105 void DoDeferredStringCharFromCode(LStringCharFromCode* instr); |
| 107 void DoDeferredAllocate(LAllocate* instr); | 106 void DoDeferredAllocate(LAllocate* instr); |
| 108 void DoDeferredInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr, | 107 void DoDeferredInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr, |
| 109 Label* map_check); | 108 Label* map_check); |
| (...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 412 Label entry_; | 411 Label entry_; |
| 413 Label exit_; | 412 Label exit_; |
| 414 Label* external_exit_; | 413 Label* external_exit_; |
| 415 Label done_; | 414 Label done_; |
| 416 int instruction_index_; | 415 int instruction_index_; |
| 417 }; | 416 }; |
| 418 | 417 |
| 419 } } // namespace v8::internal | 418 } } // namespace v8::internal |
| 420 | 419 |
| 421 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ | 420 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ |
| OLD | NEW |