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

Side by Side Diff: src/mips/lithium-codegen-mips.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/ic/ic.cc ('k') | src/mips/lithium-codegen-mips.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_MIPS_LITHIUM_CODEGEN_MIPS_H_ 5 #ifndef V8_MIPS_LITHIUM_CODEGEN_MIPS_H_
6 #define V8_MIPS_LITHIUM_CODEGEN_MIPS_H_ 6 #define V8_MIPS_LITHIUM_CODEGEN_MIPS_H_
7 7
8 #include "src/deoptimizer.h" 8 #include "src/deoptimizer.h"
9 #include "src/lithium-codegen.h" 9 #include "src/lithium-codegen.h"
10 #include "src/mips/lithium-gap-resolver-mips.h" 10 #include "src/mips/lithium-gap-resolver-mips.h"
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after
347 void EnsureSpaceForLazyDeopt(int space_needed) override; 347 void EnsureSpaceForLazyDeopt(int space_needed) override;
348 void DoLoadKeyedExternalArray(LLoadKeyed* instr); 348 void DoLoadKeyedExternalArray(LLoadKeyed* instr);
349 void DoLoadKeyedFixedDoubleArray(LLoadKeyed* instr); 349 void DoLoadKeyedFixedDoubleArray(LLoadKeyed* instr);
350 void DoLoadKeyedFixedArray(LLoadKeyed* instr); 350 void DoLoadKeyedFixedArray(LLoadKeyed* instr);
351 void DoStoreKeyedExternalArray(LStoreKeyed* instr); 351 void DoStoreKeyedExternalArray(LStoreKeyed* instr);
352 void DoStoreKeyedFixedDoubleArray(LStoreKeyed* instr); 352 void DoStoreKeyedFixedDoubleArray(LStoreKeyed* instr);
353 void DoStoreKeyedFixedArray(LStoreKeyed* instr); 353 void DoStoreKeyedFixedArray(LStoreKeyed* instr);
354 354
355 template <class T> 355 template <class T>
356 void EmitVectorLoadICRegisters(T* instr); 356 void EmitVectorLoadICRegisters(T* instr);
357 template <class T>
358 void EmitVectorStoreICRegisters(T* instr);
357 359
358 ZoneList<LEnvironment*> deoptimizations_; 360 ZoneList<LEnvironment*> deoptimizations_;
359 ZoneList<Deoptimizer::JumpTableEntry> jump_table_; 361 ZoneList<Deoptimizer::JumpTableEntry> jump_table_;
360 int inlined_function_count_; 362 int inlined_function_count_;
361 Scope* const scope_; 363 Scope* const scope_;
362 TranslationBuffer translations_; 364 TranslationBuffer translations_;
363 ZoneList<LDeferredCode*> deferred_; 365 ZoneList<LDeferredCode*> deferred_;
364 int osr_pc_offset_; 366 int osr_pc_offset_;
365 bool frame_is_built_; 367 bool frame_is_built_;
366 368
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
431 LCodeGen* codegen_; 433 LCodeGen* codegen_;
432 Label entry_; 434 Label entry_;
433 Label exit_; 435 Label exit_;
434 Label* external_exit_; 436 Label* external_exit_;
435 int instruction_index_; 437 int instruction_index_;
436 }; 438 };
437 439
438 } } // namespace v8::internal 440 } } // namespace v8::internal
439 441
440 #endif // V8_MIPS_LITHIUM_CODEGEN_MIPS_H_ 442 #endif // V8_MIPS_LITHIUM_CODEGEN_MIPS_H_
OLDNEW
« no previous file with comments | « src/ic/ic.cc ('k') | src/mips/lithium-codegen-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698