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

Side by Side Diff: src/crankshaft/ia32/lithium-codegen-ia32.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/hydrogen-instructions.cc ('k') | src/crankshaft/ia32/lithium-codegen-ia32.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_IA32_LITHIUM_CODEGEN_IA32_H_ 5 #ifndef V8_CRANKSHAFT_IA32_LITHIUM_CODEGEN_IA32_H_
6 #define V8_CRANKSHAFT_IA32_LITHIUM_CODEGEN_IA32_H_ 6 #define V8_CRANKSHAFT_IA32_LITHIUM_CODEGEN_IA32_H_
7 7
8 #include "src/ast/scopes.h" 8 #include "src/ast/scopes.h"
9 #include "src/base/logging.h" 9 #include "src/base/logging.h"
10 #include "src/crankshaft/ia32/lithium-gap-resolver-ia32.h" 10 #include "src/crankshaft/ia32/lithium-gap-resolver-ia32.h"
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after
287 void EnsureSpaceForLazyDeopt(int space_needed) override; 287 void EnsureSpaceForLazyDeopt(int space_needed) override;
288 void DoLoadKeyedExternalArray(LLoadKeyed* instr); 288 void DoLoadKeyedExternalArray(LLoadKeyed* instr);
289 void DoLoadKeyedFixedDoubleArray(LLoadKeyed* instr); 289 void DoLoadKeyedFixedDoubleArray(LLoadKeyed* instr);
290 void DoLoadKeyedFixedArray(LLoadKeyed* instr); 290 void DoLoadKeyedFixedArray(LLoadKeyed* instr);
291 void DoStoreKeyedExternalArray(LStoreKeyed* instr); 291 void DoStoreKeyedExternalArray(LStoreKeyed* instr);
292 void DoStoreKeyedFixedDoubleArray(LStoreKeyed* instr); 292 void DoStoreKeyedFixedDoubleArray(LStoreKeyed* instr);
293 void DoStoreKeyedFixedArray(LStoreKeyed* instr); 293 void DoStoreKeyedFixedArray(LStoreKeyed* instr);
294 294
295 template <class T> 295 template <class T>
296 void EmitVectorLoadICRegisters(T* instr); 296 void EmitVectorLoadICRegisters(T* instr);
297 template <class T>
298 void EmitVectorStoreICRegisters(T* instr);
299 297
300 void EmitReturn(LReturn* instr); 298 void EmitReturn(LReturn* instr);
301 299
302 // Emits code for pushing either a tagged constant, a (non-double) 300 // Emits code for pushing either a tagged constant, a (non-double)
303 // register, or a stack slot operand. 301 // register, or a stack slot operand.
304 void EmitPushTaggedOperand(LOperand* operand); 302 void EmitPushTaggedOperand(LOperand* operand);
305 303
306 friend class LGapResolver; 304 friend class LGapResolver;
307 305
308 #ifdef _MSC_VER 306 #ifdef _MSC_VER
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
383 Label exit_; 381 Label exit_;
384 Label* external_exit_; 382 Label* external_exit_;
385 Label done_; 383 Label done_;
386 int instruction_index_; 384 int instruction_index_;
387 }; 385 };
388 386
389 } // namespace internal 387 } // namespace internal
390 } // namespace v8 388 } // namespace v8
391 389
392 #endif // V8_CRANKSHAFT_IA32_LITHIUM_CODEGEN_IA32_H_ 390 #endif // V8_CRANKSHAFT_IA32_LITHIUM_CODEGEN_IA32_H_
OLDNEW
« no previous file with comments | « src/crankshaft/hydrogen-instructions.cc ('k') | src/crankshaft/ia32/lithium-codegen-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698