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

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

Issue 11369110: MIPS: Consolidated all the key store/load classes in the Hydrogen and Lithium space into just two: … (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 1 month 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 | « no previous file | 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 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after
369 369
370 struct JumpTableEntry { 370 struct JumpTableEntry {
371 explicit inline JumpTableEntry(Address entry) 371 explicit inline JumpTableEntry(Address entry)
372 : label(), 372 : label(),
373 address(entry) { } 373 address(entry) { }
374 Label label; 374 Label label;
375 Address address; 375 Address address;
376 }; 376 };
377 377
378 void EnsureSpaceForLazyDeopt(); 378 void EnsureSpaceForLazyDeopt();
379 void DoLoadKeyedExternalArray(LLoadKeyed* instr);
380 void DoLoadKeyedFixedDoubleArray(LLoadKeyed* instr);
381 void DoLoadKeyedFixedArray(LLoadKeyed* instr);
382 void DoStoreKeyedExternalArray(LStoreKeyed* instr);
383 void DoStoreKeyedFixedDoubleArray(LStoreKeyed* instr);
384 void DoStoreKeyedFixedArray(LStoreKeyed* instr);
379 385
380 Zone* zone_; 386 Zone* zone_;
381 LPlatformChunk* const chunk_; 387 LPlatformChunk* const chunk_;
382 MacroAssembler* const masm_; 388 MacroAssembler* const masm_;
383 CompilationInfo* const info_; 389 CompilationInfo* const info_;
384 390
385 int current_block_; 391 int current_block_;
386 int current_instruction_; 392 int current_instruction_;
387 const ZoneList<LInstruction*>* instructions_; 393 const ZoneList<LInstruction*>* instructions_;
388 ZoneList<LEnvironment*> deoptimizations_; 394 ZoneList<LEnvironment*> deoptimizations_;
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
478 LCodeGen* codegen_; 484 LCodeGen* codegen_;
479 Label entry_; 485 Label entry_;
480 Label exit_; 486 Label exit_;
481 Label* external_exit_; 487 Label* external_exit_;
482 int instruction_index_; 488 int instruction_index_;
483 }; 489 };
484 490
485 } } // namespace v8::internal 491 } } // namespace v8::internal
486 492
487 #endif // V8_MIPS_LITHIUM_CODEGEN_MIPS_H_ 493 #endif // V8_MIPS_LITHIUM_CODEGEN_MIPS_H_
OLDNEW
« no previous file with comments | « no previous file | src/mips/lithium-codegen-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698