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

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

Issue 8775009: Insert proper padding between lazy deoptimization points and safepoints. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 9 years 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/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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 287 matching lines...) Expand 10 before | Expand all | Expand 10 after
298 int* offset); 298 int* offset);
299 299
300 struct JumpTableEntry { 300 struct JumpTableEntry {
301 explicit inline JumpTableEntry(Address entry) 301 explicit inline JumpTableEntry(Address entry)
302 : label(), 302 : label(),
303 address(entry) { } 303 address(entry) { }
304 Label label; 304 Label label;
305 Address address; 305 Address address;
306 }; 306 };
307 307
308 void EnsureSpaceForLazyDeopt(); 308 void EnsureSpaceForLazyDeopt(int space_needed);
309 309
310 LChunk* const chunk_; 310 LChunk* const chunk_;
311 MacroAssembler* const masm_; 311 MacroAssembler* const masm_;
312 CompilationInfo* const info_; 312 CompilationInfo* const info_;
313 313
314 int current_block_; 314 int current_block_;
315 int current_instruction_; 315 int current_instruction_;
316 const ZoneList<LInstruction*>* instructions_; 316 const ZoneList<LInstruction*>* instructions_;
317 ZoneList<LEnvironment*> deoptimizations_; 317 ZoneList<LEnvironment*> deoptimizations_;
318 ZoneList<JumpTableEntry> jump_table_; 318 ZoneList<JumpTableEntry> jump_table_;
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
386 LCodeGen* codegen_; 386 LCodeGen* codegen_;
387 Label entry_; 387 Label entry_;
388 Label exit_; 388 Label exit_;
389 Label* external_exit_; 389 Label* external_exit_;
390 int instruction_index_; 390 int instruction_index_;
391 }; 391 };
392 392
393 } } // namespace v8::internal 393 } } // namespace v8::internal
394 394
395 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_ 395 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_
OLDNEW
« no previous file with comments | « no previous file | src/x64/lithium-codegen-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698