Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: src/crankshaft/s390/lithium-codegen-s390.h

Issue 2350423002: [crankshaft] Remove HStoreKeyedGeneric and use HCallWithDescriptor instead to call KeyedStoreIC. (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/crankshaft/ppc/lithium-ppc.cc ('k') | src/crankshaft/s390/lithium-codegen-s390.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « src/crankshaft/ppc/lithium-ppc.cc ('k') | src/crankshaft/s390/lithium-codegen-s390.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698