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

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: Fixed the 2 failing mjsunit tests Created 8 years, 2 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
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 DoLoadKeyedExternal(LLoadKeyed* instr);
339 void DoStoreKeyedExternal(LStoreKeyed* instr);
338 340
339 Zone* zone_; 341 Zone* zone_;
340 LPlatformChunk* const chunk_; 342 LPlatformChunk* const chunk_;
341 MacroAssembler* const masm_; 343 MacroAssembler* const masm_;
342 CompilationInfo* const info_; 344 CompilationInfo* const info_;
343 345
344 int current_block_; 346 int current_block_;
345 int current_instruction_; 347 int current_instruction_;
346 const ZoneList<LInstruction*>* instructions_; 348 const ZoneList<LInstruction*>* instructions_;
347 ZoneList<LEnvironment*> deoptimizations_; 349 ZoneList<LEnvironment*> deoptimizations_;
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
416 LCodeGen* codegen_; 418 LCodeGen* codegen_;
417 Label entry_; 419 Label entry_;
418 Label exit_; 420 Label exit_;
419 Label* external_exit_; 421 Label* external_exit_;
420 int instruction_index_; 422 int instruction_index_;
421 }; 423 };
422 424
423 } } // namespace v8::internal 425 } } // namespace v8::internal
424 426
425 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_ 427 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698