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 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
278 void EnsureSpaceForLazyDeopt(int space_needed) override; | 278 void EnsureSpaceForLazyDeopt(int space_needed) override; |
279 void DoLoadKeyedExternalArray(LLoadKeyed* instr); | 279 void DoLoadKeyedExternalArray(LLoadKeyed* instr); |
280 void DoLoadKeyedFixedDoubleArray(LLoadKeyed* instr); | 280 void DoLoadKeyedFixedDoubleArray(LLoadKeyed* instr); |
281 void DoLoadKeyedFixedArray(LLoadKeyed* instr); | 281 void DoLoadKeyedFixedArray(LLoadKeyed* instr); |
282 void DoStoreKeyedExternalArray(LStoreKeyed* instr); | 282 void DoStoreKeyedExternalArray(LStoreKeyed* instr); |
283 void DoStoreKeyedFixedDoubleArray(LStoreKeyed* instr); | 283 void DoStoreKeyedFixedDoubleArray(LStoreKeyed* instr); |
284 void DoStoreKeyedFixedArray(LStoreKeyed* instr); | 284 void DoStoreKeyedFixedArray(LStoreKeyed* instr); |
285 | 285 |
286 template <class T> | 286 template <class T> |
287 void EmitVectorLoadICRegisters(T* instr); | 287 void EmitVectorLoadICRegisters(T* instr); |
| 288 template <class T> |
| 289 void EmitVectorStoreICRegisters(T* instr); |
288 | 290 |
289 ZoneList<LEnvironment*> deoptimizations_; | 291 ZoneList<LEnvironment*> deoptimizations_; |
290 ZoneList<Deoptimizer::JumpTableEntry> jump_table_; | 292 ZoneList<Deoptimizer::JumpTableEntry> jump_table_; |
291 int inlined_function_count_; | 293 int inlined_function_count_; |
292 Scope* const scope_; | 294 Scope* const scope_; |
293 TranslationBuffer translations_; | 295 TranslationBuffer translations_; |
294 ZoneList<LDeferredCode*> deferred_; | 296 ZoneList<LDeferredCode*> deferred_; |
295 int osr_pc_offset_; | 297 int osr_pc_offset_; |
296 bool frame_is_built_; | 298 bool frame_is_built_; |
297 | 299 |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
359 LCodeGen* codegen_; | 361 LCodeGen* codegen_; |
360 Label entry_; | 362 Label entry_; |
361 Label exit_; | 363 Label exit_; |
362 Label* external_exit_; | 364 Label* external_exit_; |
363 int instruction_index_; | 365 int instruction_index_; |
364 }; | 366 }; |
365 } | 367 } |
366 } // namespace v8::internal | 368 } // namespace v8::internal |
367 | 369 |
368 #endif // V8_PPC_LITHIUM_CODEGEN_PPC_H_ | 370 #endif // V8_PPC_LITHIUM_CODEGEN_PPC_H_ |
OLD | NEW |