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

Side by Side Diff: src/crankshaft/arm/lithium-codegen-arm.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/arm/lithium-arm.cc ('k') | src/crankshaft/arm/lithium-codegen-arm.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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_ARM_LITHIUM_CODEGEN_ARM_H_ 5 #ifndef V8_CRANKSHAFT_ARM_LITHIUM_CODEGEN_ARM_H_
6 #define V8_CRANKSHAFT_ARM_LITHIUM_CODEGEN_ARM_H_ 6 #define V8_CRANKSHAFT_ARM_LITHIUM_CODEGEN_ARM_H_
7 7
8 #include "src/ast/scopes.h" 8 #include "src/ast/scopes.h"
9 #include "src/crankshaft/arm/lithium-arm.h" 9 #include "src/crankshaft/arm/lithium-arm.h"
10 #include "src/crankshaft/arm/lithium-gap-resolver-arm.h" 10 #include "src/crankshaft/arm/lithium-gap-resolver-arm.h"
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after
304 void EnsureSpaceForLazyDeopt(int space_needed) override; 304 void EnsureSpaceForLazyDeopt(int space_needed) override;
305 void DoLoadKeyedExternalArray(LLoadKeyed* instr); 305 void DoLoadKeyedExternalArray(LLoadKeyed* instr);
306 void DoLoadKeyedFixedDoubleArray(LLoadKeyed* instr); 306 void DoLoadKeyedFixedDoubleArray(LLoadKeyed* instr);
307 void DoLoadKeyedFixedArray(LLoadKeyed* instr); 307 void DoLoadKeyedFixedArray(LLoadKeyed* instr);
308 void DoStoreKeyedExternalArray(LStoreKeyed* instr); 308 void DoStoreKeyedExternalArray(LStoreKeyed* instr);
309 void DoStoreKeyedFixedDoubleArray(LStoreKeyed* instr); 309 void DoStoreKeyedFixedDoubleArray(LStoreKeyed* instr);
310 void DoStoreKeyedFixedArray(LStoreKeyed* instr); 310 void DoStoreKeyedFixedArray(LStoreKeyed* instr);
311 311
312 template <class T> 312 template <class T>
313 void EmitVectorLoadICRegisters(T* instr); 313 void EmitVectorLoadICRegisters(T* instr);
314 template <class T>
315 void EmitVectorStoreICRegisters(T* instr);
316 314
317 ZoneList<Deoptimizer::JumpTableEntry> jump_table_; 315 ZoneList<Deoptimizer::JumpTableEntry> jump_table_;
318 Scope* const scope_; 316 Scope* const scope_;
319 ZoneList<LDeferredCode*> deferred_; 317 ZoneList<LDeferredCode*> deferred_;
320 bool frame_is_built_; 318 bool frame_is_built_;
321 319
322 // Builder that keeps track of safepoints in the code. The table 320 // Builder that keeps track of safepoints in the code. The table
323 // itself is emitted at the end of the generated code. 321 // itself is emitted at the end of the generated code.
324 SafepointTableBuilder safepoints_; 322 SafepointTableBuilder safepoints_;
325 323
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
382 Label entry_; 380 Label entry_;
383 Label exit_; 381 Label exit_;
384 Label* external_exit_; 382 Label* external_exit_;
385 int instruction_index_; 383 int instruction_index_;
386 }; 384 };
387 385
388 } // namespace internal 386 } // namespace internal
389 } // namespace v8 387 } // namespace v8
390 388
391 #endif // V8_CRANKSHAFT_ARM_LITHIUM_CODEGEN_ARM_H_ 389 #endif // V8_CRANKSHAFT_ARM_LITHIUM_CODEGEN_ARM_H_
OLDNEW
« no previous file with comments | « src/crankshaft/arm/lithium-arm.cc ('k') | src/crankshaft/arm/lithium-codegen-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698