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

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

Issue 11238016: Consolidated all the key store/load classes in the Hydrogen and Lithium (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Oops, removed a TODO 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
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 359 matching lines...) Expand 10 before | Expand all | Expand 10 after
370 370
371 struct JumpTableEntry { 371 struct JumpTableEntry {
372 explicit inline JumpTableEntry(Address entry) 372 explicit inline JumpTableEntry(Address entry)
373 : label(), 373 : label(),
374 address(entry) { } 374 address(entry) { }
375 Label label; 375 Label label;
376 Address address; 376 Address address;
377 }; 377 };
378 378
379 void EnsureSpaceForLazyDeopt(); 379 void EnsureSpaceForLazyDeopt();
380 void DoLoadKeyedExternalArray(LLoadKeyed* instr);
381 void DoLoadKeyedFixedDoubleArray(LLoadKeyed* instr);
382 void DoLoadKeyedFixedArray(LLoadKeyed* instr);
383 void DoStoreKeyedExternalArray(LStoreKeyed* instr);
384 void DoStoreKeyedFixedDoubleArray(LStoreKeyed* instr);
385 void DoStoreKeyedFixedArray(LStoreKeyed* instr);
380 386
381 Zone* zone_; 387 Zone* zone_;
382 LPlatformChunk* const chunk_; 388 LPlatformChunk* const chunk_;
383 MacroAssembler* const masm_; 389 MacroAssembler* const masm_;
384 CompilationInfo* const info_; 390 CompilationInfo* const info_;
385 391
386 int current_block_; 392 int current_block_;
387 int current_instruction_; 393 int current_instruction_;
388 const ZoneList<LInstruction*>* instructions_; 394 const ZoneList<LInstruction*>* instructions_;
389 ZoneList<LEnvironment*> deoptimizations_; 395 ZoneList<LEnvironment*> deoptimizations_;
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
479 LCodeGen* codegen_; 485 LCodeGen* codegen_;
480 Label entry_; 486 Label entry_;
481 Label exit_; 487 Label exit_;
482 Label* external_exit_; 488 Label* external_exit_;
483 int instruction_index_; 489 int instruction_index_;
484 }; 490 };
485 491
486 } } // namespace v8::internal 492 } } // namespace v8::internal
487 493
488 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ 494 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698