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

Side by Side Diff: src/crankshaft/x87/lithium-codegen-x87.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/x64/lithium-x64.cc ('k') | src/crankshaft/x87/lithium-codegen-x87.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_X87_LITHIUM_CODEGEN_X87_H_ 5 #ifndef V8_CRANKSHAFT_X87_LITHIUM_CODEGEN_X87_H_
6 #define V8_CRANKSHAFT_X87_LITHIUM_CODEGEN_X87_H_ 6 #define V8_CRANKSHAFT_X87_LITHIUM_CODEGEN_X87_H_
7 7
8 #include <map> 8 #include <map>
9 9
10 #include "src/ast/scopes.h" 10 #include "src/ast/scopes.h"
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after
316 void EnsureSpaceForLazyDeopt(int space_needed) override; 316 void EnsureSpaceForLazyDeopt(int space_needed) override;
317 void DoLoadKeyedExternalArray(LLoadKeyed* instr); 317 void DoLoadKeyedExternalArray(LLoadKeyed* instr);
318 void DoLoadKeyedFixedDoubleArray(LLoadKeyed* instr); 318 void DoLoadKeyedFixedDoubleArray(LLoadKeyed* instr);
319 void DoLoadKeyedFixedArray(LLoadKeyed* instr); 319 void DoLoadKeyedFixedArray(LLoadKeyed* instr);
320 void DoStoreKeyedExternalArray(LStoreKeyed* instr); 320 void DoStoreKeyedExternalArray(LStoreKeyed* instr);
321 void DoStoreKeyedFixedDoubleArray(LStoreKeyed* instr); 321 void DoStoreKeyedFixedDoubleArray(LStoreKeyed* instr);
322 void DoStoreKeyedFixedArray(LStoreKeyed* instr); 322 void DoStoreKeyedFixedArray(LStoreKeyed* instr);
323 323
324 template <class T> 324 template <class T>
325 void EmitVectorLoadICRegisters(T* instr); 325 void EmitVectorLoadICRegisters(T* instr);
326 template <class T>
327 void EmitVectorStoreICRegisters(T* instr);
328 326
329 void EmitReturn(LReturn* instr); 327 void EmitReturn(LReturn* instr);
330 328
331 // Emits code for pushing either a tagged constant, a (non-double) 329 // Emits code for pushing either a tagged constant, a (non-double)
332 // register, or a stack slot operand. 330 // register, or a stack slot operand.
333 void EmitPushTaggedOperand(LOperand* operand); 331 void EmitPushTaggedOperand(LOperand* operand);
334 332
335 void X87Fld(Operand src, X87OperandType opts); 333 void X87Fld(Operand src, X87OperandType opts);
336 334
337 void EmitFlushX87ForDeopt(); 335 void EmitFlushX87ForDeopt();
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
485 Label* external_exit_; 483 Label* external_exit_;
486 Label done_; 484 Label done_;
487 int instruction_index_; 485 int instruction_index_;
488 LCodeGen::X87Stack x87_stack_; 486 LCodeGen::X87Stack x87_stack_;
489 }; 487 };
490 488
491 } // namespace internal 489 } // namespace internal
492 } // namespace v8 490 } // namespace v8
493 491
494 #endif // V8_CRANKSHAFT_X87_LITHIUM_CODEGEN_X87_H_ 492 #endif // V8_CRANKSHAFT_X87_LITHIUM_CODEGEN_X87_H_
OLDNEW
« no previous file with comments | « src/crankshaft/x64/lithium-x64.cc ('k') | src/crankshaft/x87/lithium-codegen-x87.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698