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

Side by Side Diff: runtime/vm/stub_code_arm.cc

Issue 2506503002: Revert "Revert "JumpToFrame refactor"" + Fix (Closed)
Patch Set: new client Created 4 years, 1 month 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
« no previous file with comments | « runtime/vm/stub_code.cc ('k') | runtime/vm/stub_code_arm64.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 (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #include "vm/globals.h" 5 #include "vm/globals.h"
6 #if defined(TARGET_ARCH_ARM) 6 #if defined(TARGET_ARCH_ARM)
7 7
8 #include "vm/assembler.h" 8 #include "vm/assembler.h"
9 #include "vm/code_generator.h" 9 #include "vm/code_generator.h"
10 #include "vm/cpu.h" 10 #include "vm/cpu.h"
(...skipping 1832 matching lines...) Expand 10 before | Expand all | Expand 10 after
1843 } 1843 }
1844 1844
1845 1845
1846 // Return the current stack pointer address, used to do stack alignment checks. 1846 // Return the current stack pointer address, used to do stack alignment checks.
1847 void StubCode::GenerateGetStackPointerStub(Assembler* assembler) { 1847 void StubCode::GenerateGetStackPointerStub(Assembler* assembler) {
1848 __ mov(R0, Operand(SP)); 1848 __ mov(R0, Operand(SP));
1849 __ Ret(); 1849 __ Ret();
1850 } 1850 }
1851 1851
1852 1852
1853 // Jump to the exception or error handler. 1853 // Jump to a frame on the call stack.
1854 // LR: return address. 1854 // LR: return address.
1855 // R0: program_counter. 1855 // R0: program_counter.
1856 // R1: stack_pointer. 1856 // R1: stack_pointer.
1857 // R2: frame_pointer. 1857 // R2: frame_pointer.
1858 // R3: error object. 1858 // R3: thread.
1859 // SP + 0: address of stacktrace object.
1860 // SP + 4: thread.
1861 // Does not return. 1859 // Does not return.
1862 void StubCode::GenerateJumpToExceptionHandlerStub(Assembler* assembler) { 1860 void StubCode::GenerateJumpToFrameStub(Assembler* assembler) {
1863 ASSERT(kExceptionObjectReg == R0); 1861 ASSERT(kExceptionObjectReg == R0);
1864 ASSERT(kStackTraceObjectReg == R1); 1862 ASSERT(kStackTraceObjectReg == R1);
1865 __ mov(IP, Operand(R1)); // Copy Stack pointer into IP. 1863 __ mov(IP, Operand(R1)); // Copy Stack pointer into IP.
1866 __ mov(LR, Operand(R0)); // Program counter. 1864 __ mov(LR, Operand(R0)); // Program counter.
1867 __ mov(R0, Operand(R3)); // Exception object. 1865 __ mov(THR, Operand(R3)); // Thread.
1868 __ ldr(R1, Address(SP, 0)); // StackTrace object.
1869 __ ldr(THR, Address(SP, 4)); // Thread.
1870 __ mov(FP, Operand(R2)); // Frame_pointer. 1866 __ mov(FP, Operand(R2)); // Frame_pointer.
1871 __ mov(SP, Operand(IP)); // Set Stack pointer. 1867 __ mov(SP, Operand(IP)); // Set Stack pointer.
1872 // Set the tag. 1868 // Set the tag.
1873 __ LoadImmediate(R2, VMTag::kDartTagId); 1869 __ LoadImmediate(R2, VMTag::kDartTagId);
1874 __ StoreToOffset(kWord, R2, THR, Thread::vm_tag_offset()); 1870 __ StoreToOffset(kWord, R2, THR, Thread::vm_tag_offset());
1875 // Clear top exit frame. 1871 // Clear top exit frame.
1876 __ LoadImmediate(R2, 0); 1872 __ LoadImmediate(R2, 0);
1877 __ StoreToOffset(kWord, R2, THR, Thread::top_exit_frame_info_offset()); 1873 __ StoreToOffset(kWord, R2, THR, Thread::top_exit_frame_info_offset());
1878 // Restore the pool pointer. 1874 // Restore the pool pointer.
1879 __ RestoreCodePointer(); 1875 __ RestoreCodePointer();
1880 __ LoadPoolPointer(); 1876 __ LoadPoolPointer();
1877 __ bx(LR); // Jump to continuation point.
1878 }
1879
1880
1881 // Run an exception handler. Execution comes from JumpToFrame
1882 // stub or from the simulator.
1883 //
1884 // The arguments are stored in the Thread object.
1885 // Does not return.
1886 void StubCode::GenerateRunExceptionHandlerStub(Assembler* assembler) {
1887 __ LoadFromOffset(kWord, LR, THR, Thread::resume_pc_offset());
1888 __ LoadImmediate(R2, 0);
1889
1890 // Exception object.
1891 __ LoadFromOffset(kWord, R0, THR, Thread::active_exception_offset());
1892 __ StoreToOffset(kWord, R2, THR, Thread::active_exception_offset());
1893
1894 // Stacktrace object.
1895 __ LoadFromOffset(kWord, R1, THR, Thread::active_stacktrace_offset());
1896 __ StoreToOffset(kWord, R2, THR, Thread::active_stacktrace_offset());
1897
1881 __ bx(LR); // Jump to the exception handler code. 1898 __ bx(LR); // Jump to the exception handler code.
1882 } 1899 }
1883 1900
1884 1901
1885 // Calls to the runtime to optimize the given function. 1902 // Calls to the runtime to optimize the given function.
1886 // R8: function to be reoptimized. 1903 // R8: function to be reoptimized.
1887 // R4: argument descriptor (preserved). 1904 // R4: argument descriptor (preserved).
1888 void StubCode::GenerateOptimizeFunctionStub(Assembler* assembler) { 1905 void StubCode::GenerateOptimizeFunctionStub(Assembler* assembler) {
1889 __ EnterStubFrame(); 1906 __ EnterStubFrame();
1890 __ Push(R4); 1907 __ Push(R4);
(...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after
2241 } 2258 }
2242 2259
2243 2260
2244 void StubCode::GenerateFrameAwaitingMaterializationStub(Assembler* assembler) { 2261 void StubCode::GenerateFrameAwaitingMaterializationStub(Assembler* assembler) {
2245 __ bkpt(0); 2262 __ bkpt(0);
2246 } 2263 }
2247 2264
2248 } // namespace dart 2265 } // namespace dart
2249 2266
2250 #endif // defined TARGET_ARCH_ARM 2267 #endif // defined TARGET_ARCH_ARM
OLDNEW
« no previous file with comments | « runtime/vm/stub_code.cc ('k') | runtime/vm/stub_code_arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698