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

Side by Side Diff: src/ia32/lithium-codegen-ia32.h

Issue 1209903003: VectorICs: Lithium support for vector-based stores. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix and REBASE. Created 5 years, 6 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/hydrogen-instructions.h ('k') | src/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_IA32_LITHIUM_CODEGEN_IA32_H_ 5 #ifndef V8_IA32_LITHIUM_CODEGEN_IA32_H_
6 #define V8_IA32_LITHIUM_CODEGEN_IA32_H_ 6 #define V8_IA32_LITHIUM_CODEGEN_IA32_H_
7 7
8 #include "src/ia32/lithium-ia32.h" 8 #include "src/ia32/lithium-ia32.h"
9 9
10 #include "src/base/logging.h" 10 #include "src/base/logging.h"
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after
301 void EnsureSpaceForLazyDeopt(int space_needed) override; 301 void EnsureSpaceForLazyDeopt(int space_needed) override;
302 void DoLoadKeyedExternalArray(LLoadKeyed* instr); 302 void DoLoadKeyedExternalArray(LLoadKeyed* instr);
303 void DoLoadKeyedFixedDoubleArray(LLoadKeyed* instr); 303 void DoLoadKeyedFixedDoubleArray(LLoadKeyed* instr);
304 void DoLoadKeyedFixedArray(LLoadKeyed* instr); 304 void DoLoadKeyedFixedArray(LLoadKeyed* instr);
305 void DoStoreKeyedExternalArray(LStoreKeyed* instr); 305 void DoStoreKeyedExternalArray(LStoreKeyed* instr);
306 void DoStoreKeyedFixedDoubleArray(LStoreKeyed* instr); 306 void DoStoreKeyedFixedDoubleArray(LStoreKeyed* instr);
307 void DoStoreKeyedFixedArray(LStoreKeyed* instr); 307 void DoStoreKeyedFixedArray(LStoreKeyed* instr);
308 308
309 template <class T> 309 template <class T>
310 void EmitVectorLoadICRegisters(T* instr); 310 void EmitVectorLoadICRegisters(T* instr);
311 template <class T>
312 void EmitVectorStoreICRegisters(T* instr);
311 313
312 void EmitReturn(LReturn* instr, bool dynamic_frame_alignment); 314 void EmitReturn(LReturn* instr, bool dynamic_frame_alignment);
313 315
314 // Emits code for pushing either a tagged constant, a (non-double) 316 // Emits code for pushing either a tagged constant, a (non-double)
315 // register, or a stack slot operand. 317 // register, or a stack slot operand.
316 void EmitPushTaggedOperand(LOperand* operand); 318 void EmitPushTaggedOperand(LOperand* operand);
317 319
318 friend class LGapResolver; 320 friend class LGapResolver;
319 321
320 #ifdef _MSC_VER 322 #ifdef _MSC_VER
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
400 Label entry_; 402 Label entry_;
401 Label exit_; 403 Label exit_;
402 Label* external_exit_; 404 Label* external_exit_;
403 Label done_; 405 Label done_;
404 int instruction_index_; 406 int instruction_index_;
405 }; 407 };
406 408
407 } } // namespace v8::internal 409 } } // namespace v8::internal
408 410
409 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ 411 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_
OLDNEW
« no previous file with comments | « src/hydrogen-instructions.h ('k') | src/ia32/lithium-codegen-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698