Searched defs:sp8 (Results 1 - 1 of 1) sorted by relevance

/art/runtime/entrypoints/quick/
H A Dquick_trampoline_entrypoints.cc1882 uint8_t* LayoutCallStack(uint8_t* sp8) const {
1883 sp8 -= GetStackSize();
1885 sp8 = reinterpret_cast<uint8_t*>(RoundDown(reinterpret_cast<uintptr_t>(sp8), kStackAlignment));
1886 return sp8;
1889 uint8_t* LayoutCallRegisterStacks(uint8_t* sp8, uintptr_t** start_gpr, uint32_t** start_fpr) argument
1893 sp8 -= fregs * sizeof(uintptr_t);
1894 *start_fpr = reinterpret_cast<uint32_t*>(sp8);
1896 sp8 -= iregs * sizeof(uintptr_t);
1897 *start_gpr = reinterpret_cast<uintptr_t*>(sp8);
1901 LayoutNativeCall(uint8_t* sp8, uintptr_t** start_stack, uintptr_t** start_gpr, uint32_t** start_fpr) const argument
1997 uint8_t* sp8 = reinterpret_cast<uint8_t*>(sp); local
2039 uint8_t* sp8 = reinterpret_cast<uint8_t*>(*m); local
2055 uint8_t* sp8 = LayoutJNISaveFrame(self, m, reinterpret_cast<void*>(*m), handle_scope); local
[all...]

Completed in 9 milliseconds