Home
last modified time | relevance | path

Searched refs:guest_call_execution (Results 1 – 3 of 3) sorted by relevance

/frameworks/libs/binary_translation/runtime/
Dexecute_guest_call.cc33 GuestCallExecution guest_call_execution{.parent = thread->guest_call_execution(), in ExecuteGuestCall() local
37 sigsetjmp(guest_call_execution.buf, 0); in ExecuteGuestCall()
39 thread->set_guest_call_execution(&guest_call_execution); in ExecuteGuestCall()
43 thread->set_guest_call_execution(guest_call_execution.parent); in ExecuteGuestCall()
45 if (guest_call_execution.sp == GetStackRegister(GetCPUState(*state))) { in ExecuteGuestCall()
51 for (auto* curr = thread->guest_call_execution(); curr; curr = curr->parent) { in ExecuteGuestCall()
62 ToHostAddr<void>(guest_call_execution.sp), in ExecuteGuestCall()
/frameworks/libs/binary_translation/guest_os_primitives/include/berberis/guest_os_primitives/
Dguest_thread.h90 GuestCallExecution* guest_call_execution() const { return guest_call_execution_; } in guest_call_execution() function
91 void set_guest_call_execution(GuestCallExecution* guest_call_execution) { in set_guest_call_execution() argument
92 guest_call_execution_ = guest_call_execution; in set_guest_call_execution()
/frameworks/libs/native_bridge_support/android_api/libc/proxy/
Dsetjmp_thunks.cc58 *GetHostJmpBufPtr(guest_buf) = &thread->guest_call_execution()->buf; in DoThunk_sigsetjmp()