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_CRANKSHAFT_PPC_LITHIUM_CODEGEN_PPC_H_ | 5 #ifndef V8_CRANKSHAFT_PPC_LITHIUM_CODEGEN_PPC_H_ |
6 #define V8_CRANKSHAFT_PPC_LITHIUM_CODEGEN_PPC_H_ | 6 #define V8_CRANKSHAFT_PPC_LITHIUM_CODEGEN_PPC_H_ |
7 | 7 |
8 #include "src/ast/scopes.h" | 8 #include "src/ast/scopes.h" |
9 #include "src/crankshaft/lithium-codegen.h" | 9 #include "src/crankshaft/lithium-codegen.h" |
10 #include "src/crankshaft/ppc/lithium-gap-resolver-ppc.h" | 10 #include "src/crankshaft/ppc/lithium-gap-resolver-ppc.h" |
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
270 void EnsureSpaceForLazyDeopt(int space_needed) override; | 270 void EnsureSpaceForLazyDeopt(int space_needed) override; |
271 void DoLoadKeyedExternalArray(LLoadKeyed* instr); | 271 void DoLoadKeyedExternalArray(LLoadKeyed* instr); |
272 void DoLoadKeyedFixedDoubleArray(LLoadKeyed* instr); | 272 void DoLoadKeyedFixedDoubleArray(LLoadKeyed* instr); |
273 void DoLoadKeyedFixedArray(LLoadKeyed* instr); | 273 void DoLoadKeyedFixedArray(LLoadKeyed* instr); |
274 void DoStoreKeyedExternalArray(LStoreKeyed* instr); | 274 void DoStoreKeyedExternalArray(LStoreKeyed* instr); |
275 void DoStoreKeyedFixedDoubleArray(LStoreKeyed* instr); | 275 void DoStoreKeyedFixedDoubleArray(LStoreKeyed* instr); |
276 void DoStoreKeyedFixedArray(LStoreKeyed* instr); | 276 void DoStoreKeyedFixedArray(LStoreKeyed* instr); |
277 | 277 |
278 template <class T> | 278 template <class T> |
279 void EmitVectorLoadICRegisters(T* instr); | 279 void EmitVectorLoadICRegisters(T* instr); |
280 template <class T> | |
281 void EmitVectorStoreICRegisters(T* instr); | |
282 | 280 |
283 ZoneList<Deoptimizer::JumpTableEntry> jump_table_; | 281 ZoneList<Deoptimizer::JumpTableEntry> jump_table_; |
284 Scope* const scope_; | 282 Scope* const scope_; |
285 ZoneList<LDeferredCode*> deferred_; | 283 ZoneList<LDeferredCode*> deferred_; |
286 bool frame_is_built_; | 284 bool frame_is_built_; |
287 | 285 |
288 // Builder that keeps track of safepoints in the code. The table | 286 // Builder that keeps track of safepoints in the code. The table |
289 // itself is emitted at the end of the generated code. | 287 // itself is emitted at the end of the generated code. |
290 SafepointTableBuilder safepoints_; | 288 SafepointTableBuilder safepoints_; |
291 | 289 |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
349 LCodeGen* codegen_; | 347 LCodeGen* codegen_; |
350 Label entry_; | 348 Label entry_; |
351 Label exit_; | 349 Label exit_; |
352 Label* external_exit_; | 350 Label* external_exit_; |
353 int instruction_index_; | 351 int instruction_index_; |
354 }; | 352 }; |
355 } // namespace internal | 353 } // namespace internal |
356 } // namespace v8 | 354 } // namespace v8 |
357 | 355 |
358 #endif // V8_CRANKSHAFT_PPC_LITHIUM_CODEGEN_PPC_H_ | 356 #endif // V8_CRANKSHAFT_PPC_LITHIUM_CODEGEN_PPC_H_ |
OLD | NEW |