OLD | NEW |
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 639 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
650 __ bind(¬_tos_eax); | 650 __ bind(¬_tos_eax); |
651 __ Abort("no cases left"); | 651 __ Abort("no cases left"); |
652 } | 652 } |
653 | 653 |
654 | 654 |
655 void Builtins::Generate_NotifyDeoptimized(MacroAssembler* masm) { | 655 void Builtins::Generate_NotifyDeoptimized(MacroAssembler* masm) { |
656 Generate_NotifyDeoptimizedHelper(masm, Deoptimizer::EAGER); | 656 Generate_NotifyDeoptimizedHelper(masm, Deoptimizer::EAGER); |
657 } | 657 } |
658 | 658 |
659 | 659 |
| 660 void Builtins::Generate_NotifySoftDeoptimized(MacroAssembler* masm) { |
| 661 Generate_NotifyDeoptimizedHelper(masm, Deoptimizer::SOFT); |
| 662 } |
| 663 |
| 664 |
660 void Builtins::Generate_NotifyLazyDeoptimized(MacroAssembler* masm) { | 665 void Builtins::Generate_NotifyLazyDeoptimized(MacroAssembler* masm) { |
661 Generate_NotifyDeoptimizedHelper(masm, Deoptimizer::LAZY); | 666 Generate_NotifyDeoptimizedHelper(masm, Deoptimizer::LAZY); |
662 } | 667 } |
663 | 668 |
664 | 669 |
665 void Builtins::Generate_NotifyOSR(MacroAssembler* masm) { | 670 void Builtins::Generate_NotifyOSR(MacroAssembler* masm) { |
666 // TODO(kasperl): Do we need to save/restore the XMM registers too? | 671 // TODO(kasperl): Do we need to save/restore the XMM registers too? |
667 // TODO(mvstanton): We should save these regs, do this in a future | 672 // TODO(mvstanton): We should save these regs, do this in a future |
668 // checkin. | 673 // checkin. |
669 | 674 |
(...skipping 1135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1805 Deoptimizer::EntryGenerator generator(masm, Deoptimizer::OSR); | 1810 Deoptimizer::EntryGenerator generator(masm, Deoptimizer::OSR); |
1806 generator.Generate(); | 1811 generator.Generate(); |
1807 } | 1812 } |
1808 | 1813 |
1809 | 1814 |
1810 #undef __ | 1815 #undef __ |
1811 } | 1816 } |
1812 } // namespace v8::internal | 1817 } // namespace v8::internal |
1813 | 1818 |
1814 #endif // V8_TARGET_ARCH_IA32 | 1819 #endif // V8_TARGET_ARCH_IA32 |
OLD | NEW |