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