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

Side by Side Diff: src/x64/builtins-x64.cc

Issue 6480032: X64: Fix Generate_NotifyLazyDeoptimized to actually call with the LAZY flag.... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 9 years, 10 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2010 the V8 project authors. All rights reserved. 1 // Copyright 2010 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 578 matching lines...) Expand 10 before | Expand all | Expand 10 after
589 __ bind(&not_tos_rax); 589 __ bind(&not_tos_rax);
590 __ Abort("no cases left"); 590 __ Abort("no cases left");
591 } 591 }
592 592
593 void Builtins::Generate_NotifyDeoptimized(MacroAssembler* masm) { 593 void Builtins::Generate_NotifyDeoptimized(MacroAssembler* masm) {
594 Generate_NotifyDeoptimizedHelper(masm, Deoptimizer::EAGER); 594 Generate_NotifyDeoptimizedHelper(masm, Deoptimizer::EAGER);
595 } 595 }
596 596
597 597
598 void Builtins::Generate_NotifyLazyDeoptimized(MacroAssembler* masm) { 598 void Builtins::Generate_NotifyLazyDeoptimized(MacroAssembler* masm) {
599 Generate_NotifyDeoptimizedHelper(masm, Deoptimizer::EAGER); 599 Generate_NotifyDeoptimizedHelper(masm, Deoptimizer::LAZY);
600 } 600 }
601 601
602 602
603 void Builtins::Generate_NotifyOSR(MacroAssembler* masm) { 603 void Builtins::Generate_NotifyOSR(MacroAssembler* masm) {
604 __ int3(); 604 __ int3();
605 } 605 }
606 606
607 607
608 void Builtins::Generate_FunctionCall(MacroAssembler* masm) { 608 void Builtins::Generate_FunctionCall(MacroAssembler* masm) {
609 // Stack Layout: 609 // Stack Layout:
(...skipping 798 matching lines...) Expand 10 before | Expand all | Expand 10 after
1408 void Builtins::Generate_OnStackReplacement(MacroAssembler* masm) { 1408 void Builtins::Generate_OnStackReplacement(MacroAssembler* masm) {
1409 __ int3(); 1409 __ int3();
1410 } 1410 }
1411 1411
1412 1412
1413 #undef __ 1413 #undef __
1414 1414
1415 } } // namespace v8::internal 1415 } } // namespace v8::internal
1416 1416
1417 #endif // V8_TARGET_ARCH_X64 1417 #endif // V8_TARGET_ARCH_X64
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698