Index: src/builtins-arm.cc |
=================================================================== |
--- src/builtins-arm.cc (revision 929) |
+++ src/builtins-arm.cc (working copy) |
@@ -653,133 +653,6 @@ |
} |
-static void Generate_DebugBreakCallHelper(MacroAssembler* masm, |
- RegList pointer_regs) { |
- // Save the content of all general purpose registers in memory. This copy in |
- // memory is later pushed onto the JS expression stack for the fake JS frame |
- // generated and also to the C frame generated on top of that. In the JS |
- // frame ONLY the registers containing pointers will be pushed on the |
- // expression stack. This causes the GC to update these pointers so that |
- // they will have the correct value when returning from the debugger. |
- __ SaveRegistersToMemory(kJSCallerSaved); |
- |
- __ EnterInternalFrame(); |
- |
- // Store the registers containing object pointers on the expression stack to |
- // make sure that these are correctly updated during GC. |
- // Use sp as base to push. |
- __ CopyRegistersFromMemoryToStack(sp, pointer_regs); |
- |
-#ifdef DEBUG |
- __ RecordComment("// Calling from debug break to runtime - come in - over"); |
-#endif |
- __ mov(r0, Operand(0)); // no arguments |
- __ mov(r1, Operand(ExternalReference::debug_break())); |
- |
- CEntryDebugBreakStub ceb; |
- __ CallStub(&ceb); |
- |
- // Restore the register values containing object pointers from the expression |
- // stack in the reverse order as they where pushed. |
- // Use sp as base to pop. |
- __ CopyRegistersFromStackToMemory(sp, r3, pointer_regs); |
- |
- __ LeaveInternalFrame(); |
- |
- // Inlined ExitJSFrame ends here. |
- |
- // Finally restore all registers. |
- __ RestoreRegistersFromMemory(kJSCallerSaved); |
- |
- // Now that the break point has been handled, resume normal execution by |
- // jumping to the target address intended by the caller and that was |
- // overwritten by the address of DebugBreakXXX. |
- __ mov(ip, Operand(ExternalReference(Debug_Address::AfterBreakTarget()))); |
- __ ldr(ip, MemOperand(ip)); |
- __ Jump(ip); |
-} |
- |
- |
-void Builtins::Generate_LoadIC_DebugBreak(MacroAssembler* masm) { |
- // Calling convention for IC load (from ic-arm.cc). |
- // ----------- S t a t e ------------- |
- // -- r0 : receiver |
- // -- r2 : name |
- // -- lr : return address |
- // -- [sp] : receiver |
- // ----------------------------------- |
- // Registers r0 and r2 contain objects that needs to be pushed on the |
- // expression stack of the fake JS frame. |
- Generate_DebugBreakCallHelper(masm, r0.bit() | r2.bit()); |
-} |
- |
- |
-void Builtins::Generate_StoreIC_DebugBreak(MacroAssembler* masm) { |
- // Calling convention for IC store (from ic-arm.cc). |
- // ----------- S t a t e ------------- |
- // -- r0 : receiver |
- // -- r2 : name |
- // -- lr : return address |
- // -- [sp] : receiver |
- // ----------------------------------- |
- // Registers r0 and r2 contain objects that needs to be pushed on the |
- // expression stack of the fake JS frame. |
- Generate_DebugBreakCallHelper(masm, r0.bit() | r2.bit()); |
-} |
- |
- |
-void Builtins::Generate_KeyedLoadIC_DebugBreak(MacroAssembler* masm) { |
- // Keyed load IC not implemented on ARM. |
-} |
- |
- |
-void Builtins::Generate_KeyedStoreIC_DebugBreak(MacroAssembler* masm) { |
- // Keyed store IC not implemented on ARM. |
-} |
- |
- |
-void Builtins::Generate_CallIC_DebugBreak(MacroAssembler* masm) { |
- // Calling convention for IC call (from ic-arm.cc) |
- // ----------- S t a t e ------------- |
- // -- r0: number of arguments |
- // -- r1: receiver |
- // -- lr: return address |
- // ----------------------------------- |
- // Register r1 contains an object that needs to be pushed on the expression |
- // stack of the fake JS frame. r0 is the actual number of arguments not |
- // encoded as a smi, therefore it cannot be on the expression stack of the |
- // fake JS frame as it can easily be an invalid pointer (e.g. 1). r0 will be |
- // pushed on the stack of the C frame and restored from there. |
- Generate_DebugBreakCallHelper(masm, r1.bit()); |
-} |
- |
- |
-void Builtins::Generate_ConstructCall_DebugBreak(MacroAssembler* masm) { |
- // In places other than IC call sites it is expected that r0 is TOS which |
- // is an object - this is not generally the case so this should be used with |
- // care. |
- Generate_DebugBreakCallHelper(masm, r0.bit()); |
-} |
- |
- |
-void Builtins::Generate_Return_DebugBreak(MacroAssembler* masm) { |
- // In places other than IC call sites it is expected that r0 is TOS which |
- // is an object - this is not generally the case so this should be used with |
- // care. |
- Generate_DebugBreakCallHelper(masm, r0.bit()); |
-} |
- |
- |
-void Builtins::Generate_Return_DebugBreakEntry(MacroAssembler* masm) { |
- // Generate nothing as this handling of debug break return is not done this |
- // way on ARM - yet. |
-} |
- |
-void Builtins::Generate_StubNoRegisters_DebugBreak(MacroAssembler* masm) { |
- // Generate nothing as CodeStub CallFunction is not used on ARM. |
-} |
- |
- |
#undef __ |
} } // namespace v8::internal |