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

Side by Side Diff: src/x64/lithium-codegen-x64.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: Last batch of comment response, formatting issues. 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 | « src/ia32/lithium-ia32.cc ('k') | src/x64/lithium-codegen-x64.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 317 matching lines...) Expand 10 before | Expand all | Expand 10 after
328 328
329 struct JumpTableEntry { 329 struct JumpTableEntry {
330 explicit inline JumpTableEntry(Address entry) 330 explicit inline JumpTableEntry(Address entry)
331 : label(), 331 : label(),
332 address(entry) { } 332 address(entry) { }
333 Label label; 333 Label label;
334 Address address; 334 Address address;
335 }; 335 };
336 336
337 void EnsureSpaceForLazyDeopt(int space_needed); 337 void EnsureSpaceForLazyDeopt(int space_needed);
338 void DoLoadKeyedExternalArray(LLoadKeyed* instr);
339 void DoLoadKeyedFixedDoubleArray(LLoadKeyed* instr);
340 void DoLoadKeyedFixedArray(LLoadKeyed* instr);
341 void DoStoreKeyedExternalArray(LStoreKeyed* instr);
342 void DoStoreKeyedFixedDoubleArray(LStoreKeyed* instr);
343 void DoStoreKeyedFixedArray(LStoreKeyed* instr);
338 344
339 Zone* zone_; 345 Zone* zone_;
340 LPlatformChunk* const chunk_; 346 LPlatformChunk* const chunk_;
341 MacroAssembler* const masm_; 347 MacroAssembler* const masm_;
342 CompilationInfo* const info_; 348 CompilationInfo* const info_;
343 349
344 int current_block_; 350 int current_block_;
345 int current_instruction_; 351 int current_instruction_;
346 const ZoneList<LInstruction*>* instructions_; 352 const ZoneList<LInstruction*>* instructions_;
347 ZoneList<LEnvironment*> deoptimizations_; 353 ZoneList<LEnvironment*> deoptimizations_;
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
416 LCodeGen* codegen_; 422 LCodeGen* codegen_;
417 Label entry_; 423 Label entry_;
418 Label exit_; 424 Label exit_;
419 Label* external_exit_; 425 Label* external_exit_;
420 int instruction_index_; 426 int instruction_index_;
421 }; 427 };
422 428
423 } } // namespace v8::internal 429 } } // namespace v8::internal
424 430
425 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_ 431 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_
OLDNEW
« no previous file with comments | « src/ia32/lithium-ia32.cc ('k') | src/x64/lithium-codegen-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698