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_PPC_LITHIUM_CODEGEN_PPC_H_ | 5 #ifndef V8_PPC_LITHIUM_CODEGEN_PPC_H_ |
6 #define V8_PPC_LITHIUM_CODEGEN_PPC_H_ | 6 #define V8_PPC_LITHIUM_CODEGEN_PPC_H_ |
7 | 7 |
8 #include "src/ppc/lithium-ppc.h" | 8 #include "src/ppc/lithium-ppc.h" |
9 | 9 |
10 #include "src/ppc/lithium-gap-resolver-ppc.h" | 10 #include "src/ppc/lithium-gap-resolver-ppc.h" |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 IntegerSignedness signedness); | 105 IntegerSignedness signedness); |
106 | 106 |
107 void DoDeferredTaggedToI(LTaggedToI* instr); | 107 void DoDeferredTaggedToI(LTaggedToI* instr); |
108 void DoDeferredMathAbsTaggedHeapNumber(LMathAbs* instr); | 108 void DoDeferredMathAbsTaggedHeapNumber(LMathAbs* instr); |
109 void DoDeferredStackCheck(LStackCheck* instr); | 109 void DoDeferredStackCheck(LStackCheck* instr); |
110 void DoDeferredMaybeGrowElements(LMaybeGrowElements* instr); | 110 void DoDeferredMaybeGrowElements(LMaybeGrowElements* instr); |
111 void DoDeferredStringCharCodeAt(LStringCharCodeAt* instr); | 111 void DoDeferredStringCharCodeAt(LStringCharCodeAt* instr); |
112 void DoDeferredStringCharFromCode(LStringCharFromCode* instr); | 112 void DoDeferredStringCharFromCode(LStringCharFromCode* instr); |
113 void DoDeferredAllocate(LAllocate* instr); | 113 void DoDeferredAllocate(LAllocate* instr); |
114 void DoDeferredInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr, | 114 void DoDeferredInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr, |
115 Label* map_check); | 115 Label* map_check, Label* bool_load); |
116 void DoDeferredInstanceMigration(LCheckMaps* instr, Register object); | 116 void DoDeferredInstanceMigration(LCheckMaps* instr, Register object); |
117 void DoDeferredLoadMutableDouble(LLoadFieldByIndex* instr, Register result, | 117 void DoDeferredLoadMutableDouble(LLoadFieldByIndex* instr, Register result, |
118 Register object, Register index); | 118 Register object, Register index); |
119 | 119 |
120 // Parallel move support. | 120 // Parallel move support. |
121 void DoParallelMove(LParallelMove* move); | 121 void DoParallelMove(LParallelMove* move); |
122 void DoGap(LGap* instr); | 122 void DoGap(LGap* instr); |
123 | 123 |
124 MemOperand PrepareKeyedOperand(Register key, Register base, | 124 MemOperand PrepareKeyedOperand(Register key, Register base, |
125 bool key_is_constant, bool key_is_tagged, | 125 bool key_is_constant, bool key_is_tagged, |
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
361 LCodeGen* codegen_; | 361 LCodeGen* codegen_; |
362 Label entry_; | 362 Label entry_; |
363 Label exit_; | 363 Label exit_; |
364 Label* external_exit_; | 364 Label* external_exit_; |
365 int instruction_index_; | 365 int instruction_index_; |
366 }; | 366 }; |
367 } | 367 } |
368 } // namespace v8::internal | 368 } // namespace v8::internal |
369 | 369 |
370 #endif // V8_PPC_LITHIUM_CODEGEN_PPC_H_ | 370 #endif // V8_PPC_LITHIUM_CODEGEN_PPC_H_ |
OLD | NEW |