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

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

Issue 503103002: MIPS: Eliminate code duplication in lithium calls to vector-based LoadICs. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « src/mips/lithium-codegen-mips.cc ('k') | src/mips64/lithium-codegen-mips64.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/mips64/lithium-gap-resolver-mips64.h" 10 #include "src/mips64/lithium-gap-resolver-mips64.h"
(...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after
358 358
359 359
360 void EnsureSpaceForLazyDeopt(int space_needed) V8_OVERRIDE; 360 void EnsureSpaceForLazyDeopt(int space_needed) V8_OVERRIDE;
361 void DoLoadKeyedExternalArray(LLoadKeyed* instr); 361 void DoLoadKeyedExternalArray(LLoadKeyed* instr);
362 void DoLoadKeyedFixedDoubleArray(LLoadKeyed* instr); 362 void DoLoadKeyedFixedDoubleArray(LLoadKeyed* instr);
363 void DoLoadKeyedFixedArray(LLoadKeyed* instr); 363 void DoLoadKeyedFixedArray(LLoadKeyed* instr);
364 void DoStoreKeyedExternalArray(LStoreKeyed* instr); 364 void DoStoreKeyedExternalArray(LStoreKeyed* instr);
365 void DoStoreKeyedFixedDoubleArray(LStoreKeyed* instr); 365 void DoStoreKeyedFixedDoubleArray(LStoreKeyed* instr);
366 void DoStoreKeyedFixedArray(LStoreKeyed* instr); 366 void DoStoreKeyedFixedArray(LStoreKeyed* instr);
367 367
368 template <class T>
369 void EmitVectorLoadICRegisters(T* instr);
370
368 ZoneList<LEnvironment*> deoptimizations_; 371 ZoneList<LEnvironment*> deoptimizations_;
369 ZoneList<Deoptimizer::JumpTableEntry> deopt_jump_table_; 372 ZoneList<Deoptimizer::JumpTableEntry> deopt_jump_table_;
370 ZoneList<Handle<Object> > deoptimization_literals_; 373 ZoneList<Handle<Object> > deoptimization_literals_;
371 int inlined_function_count_; 374 int inlined_function_count_;
372 Scope* const scope_; 375 Scope* const scope_;
373 TranslationBuffer translations_; 376 TranslationBuffer translations_;
374 ZoneList<LDeferredCode*> deferred_; 377 ZoneList<LDeferredCode*> deferred_;
375 int osr_pc_offset_; 378 int osr_pc_offset_;
376 bool frame_is_built_; 379 bool frame_is_built_;
377 380
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
442 LCodeGen* codegen_; 445 LCodeGen* codegen_;
443 Label entry_; 446 Label entry_;
444 Label exit_; 447 Label exit_;
445 Label* external_exit_; 448 Label* external_exit_;
446 int instruction_index_; 449 int instruction_index_;
447 }; 450 };
448 451
449 } } // namespace v8::internal 452 } } // namespace v8::internal
450 453
451 #endif // V8_MIPS_LITHIUM_CODEGEN_MIPS_H_ 454 #endif // V8_MIPS_LITHIUM_CODEGEN_MIPS_H_
OLDNEW
« no previous file with comments | « src/mips/lithium-codegen-mips.cc ('k') | src/mips64/lithium-codegen-mips64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698