OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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 830 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
841 Address entry = deopt_jump_table_[i].address; | 841 Address entry = deopt_jump_table_[i].address; |
842 Deoptimizer::BailoutType type = deopt_jump_table_[i].bailout_type; | 842 Deoptimizer::BailoutType type = deopt_jump_table_[i].bailout_type; |
843 int id = Deoptimizer::GetDeoptimizationId(isolate(), entry, type); | 843 int id = Deoptimizer::GetDeoptimizationId(isolate(), entry, type); |
844 if (id == Deoptimizer::kNotDeoptimizationEntry) { | 844 if (id == Deoptimizer::kNotDeoptimizationEntry) { |
845 Comment(";;; jump table entry %d.", i); | 845 Comment(";;; jump table entry %d.", i); |
846 } else { | 846 } else { |
847 Comment(";;; jump table entry %d: deoptimization bailout %d.", i, id); | 847 Comment(";;; jump table entry %d: deoptimization bailout %d.", i, id); |
848 } | 848 } |
849 if (deopt_jump_table_[i].needs_frame) { | 849 if (deopt_jump_table_[i].needs_frame) { |
850 ASSERT(!info()->saves_caller_doubles()); | 850 ASSERT(!info()->saves_caller_doubles()); |
851 __ Mov(__ Tmp0(), Operand(ExternalReference::ForDeoptEntry(entry))); | 851 |
| 852 UseScratchRegisterScope temps(masm()); |
| 853 Register stub_deopt_entry = temps.AcquireX(); |
| 854 Register stub_marker = temps.AcquireX(); |
| 855 |
| 856 __ Mov(stub_deopt_entry, |
| 857 Operand(ExternalReference::ForDeoptEntry(entry))); |
852 if (needs_frame.is_bound()) { | 858 if (needs_frame.is_bound()) { |
853 __ B(&needs_frame); | 859 __ B(&needs_frame); |
854 } else { | 860 } else { |
855 __ Bind(&needs_frame); | 861 __ Bind(&needs_frame); |
856 // This variant of deopt can only be used with stubs. Since we don't | 862 // This variant of deopt can only be used with stubs. Since we don't |
857 // have a function pointer to install in the stack frame that we're | 863 // have a function pointer to install in the stack frame that we're |
858 // building, install a special marker there instead. | 864 // building, install a special marker there instead. |
859 // TODO(jochen): Revisit the use of TmpX(). | |
860 ASSERT(info()->IsStub()); | 865 ASSERT(info()->IsStub()); |
861 __ Mov(__ Tmp1(), Operand(Smi::FromInt(StackFrame::STUB))); | 866 __ Mov(stub_marker, Operand(Smi::FromInt(StackFrame::STUB))); |
862 __ Push(lr, fp, cp, __ Tmp1()); | 867 __ Push(lr, fp, cp, stub_marker); |
863 __ Add(fp, __ StackPointer(), 2 * kPointerSize); | 868 __ Add(fp, __ StackPointer(), 2 * kPointerSize); |
864 __ Call(__ Tmp0()); | 869 __ Call(stub_deopt_entry); |
865 } | 870 } |
866 } else { | 871 } else { |
867 if (info()->saves_caller_doubles()) { | 872 if (info()->saves_caller_doubles()) { |
868 ASSERT(info()->IsStub()); | 873 ASSERT(info()->IsStub()); |
869 RestoreCallerDoubles(); | 874 RestoreCallerDoubles(); |
870 } | 875 } |
871 __ Call(entry, RelocInfo::RUNTIME_ENTRY); | 876 __ Call(entry, RelocInfo::RUNTIME_ENTRY); |
872 } | 877 } |
873 masm()->CheckConstPool(false, false); | 878 masm()->CheckConstPool(false, false); |
874 } | 879 } |
(...skipping 4791 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5666 __ Bind(&out_of_object); | 5671 __ Bind(&out_of_object); |
5667 __ Ldr(result, FieldMemOperand(object, JSObject::kPropertiesOffset)); | 5672 __ Ldr(result, FieldMemOperand(object, JSObject::kPropertiesOffset)); |
5668 // Index is equal to negated out of object property index plus 1. | 5673 // Index is equal to negated out of object property index plus 1. |
5669 __ Sub(result, result, Operand::UntagSmiAndScale(index, kPointerSizeLog2)); | 5674 __ Sub(result, result, Operand::UntagSmiAndScale(index, kPointerSizeLog2)); |
5670 __ Ldr(result, FieldMemOperand(result, | 5675 __ Ldr(result, FieldMemOperand(result, |
5671 FixedArray::kHeaderSize - kPointerSize)); | 5676 FixedArray::kHeaderSize - kPointerSize)); |
5672 __ Bind(&done); | 5677 __ Bind(&done); |
5673 } | 5678 } |
5674 | 5679 |
5675 } } // namespace v8::internal | 5680 } } // namespace v8::internal |
OLD | NEW |