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_X64_LITHIUM_CODEGEN_X64_H_ | 5 #ifndef V8_X64_LITHIUM_CODEGEN_X64_H_ |
6 #define V8_X64_LITHIUM_CODEGEN_X64_H_ | 6 #define V8_X64_LITHIUM_CODEGEN_X64_H_ |
7 | 7 |
8 #include "src/x64/lithium-x64.h" | 8 #include "src/x64/lithium-x64.h" |
9 | 9 |
10 #include "src/base/logging.h" | 10 #include "src/base/logging.h" |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 enum IntegerSignedness { SIGNED_INT32, UNSIGNED_INT32 }; | 88 enum IntegerSignedness { SIGNED_INT32, UNSIGNED_INT32 }; |
89 void DoDeferredNumberTagIU(LInstruction* instr, | 89 void DoDeferredNumberTagIU(LInstruction* instr, |
90 LOperand* value, | 90 LOperand* value, |
91 LOperand* temp1, | 91 LOperand* temp1, |
92 LOperand* temp2, | 92 LOperand* temp2, |
93 IntegerSignedness signedness); | 93 IntegerSignedness signedness); |
94 | 94 |
95 void DoDeferredTaggedToI(LTaggedToI* instr, Label* done); | 95 void DoDeferredTaggedToI(LTaggedToI* instr, Label* done); |
96 void DoDeferredMathAbsTaggedHeapNumber(LMathAbs* instr); | 96 void DoDeferredMathAbsTaggedHeapNumber(LMathAbs* instr); |
97 void DoDeferredStackCheck(LStackCheck* instr); | 97 void DoDeferredStackCheck(LStackCheck* instr); |
| 98 void DoDeferredMaybeGrowElements(LMaybeGrowElements* instr); |
98 void DoDeferredStringCharCodeAt(LStringCharCodeAt* instr); | 99 void DoDeferredStringCharCodeAt(LStringCharCodeAt* instr); |
99 void DoDeferredStringCharFromCode(LStringCharFromCode* instr); | 100 void DoDeferredStringCharFromCode(LStringCharFromCode* instr); |
100 void DoDeferredAllocate(LAllocate* instr); | 101 void DoDeferredAllocate(LAllocate* instr); |
101 void DoDeferredInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr, | 102 void DoDeferredInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr, |
102 Label* map_check); | 103 Label* map_check); |
103 void DoDeferredInstanceMigration(LCheckMaps* instr, Register object); | 104 void DoDeferredInstanceMigration(LCheckMaps* instr, Register object); |
104 void DoDeferredLoadMutableDouble(LLoadFieldByIndex* instr, | 105 void DoDeferredLoadMutableDouble(LLoadFieldByIndex* instr, |
105 Register object, | 106 Register object, |
106 Register index); | 107 Register index); |
107 | 108 |
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
389 Label entry_; | 390 Label entry_; |
390 Label exit_; | 391 Label exit_; |
391 Label done_; | 392 Label done_; |
392 Label* external_exit_; | 393 Label* external_exit_; |
393 int instruction_index_; | 394 int instruction_index_; |
394 }; | 395 }; |
395 | 396 |
396 } } // namespace v8::internal | 397 } } // namespace v8::internal |
397 | 398 |
398 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_ | 399 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_ |
OLD | NEW |