Home
last modified time | relevance | path

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

/art/runtime/arch/x86/
Dcontext_x86.cc29 void X86Context::Reset() { in Reset()
35 esp_ = X86Context::kBadGprBase + ESP; in Reset()
36 eip_ = X86Context::kBadGprBase + kNumberOfCpuRegisters; in Reset()
40 void X86Context::FillCalleeSaves(uint8_t* frame, const QuickMethodFrameInfo& frame_info) { in FillCalleeSaves()
68 void X86Context::SmashCallerSaves() { in SmashCallerSaves()
77 void X86Context::SetGPR(uint32_t reg, uintptr_t value) { in SetGPR()
84 void X86Context::SetFPR(uint32_t reg, uintptr_t value) { in SetFPR()
91 void X86Context::DoLongJump() { in DoLongJump()
97 …gprs[kNumberOfCpuRegisters - i - 1] = gprs_[i] != nullptr ? *gprs_[i] : X86Context::kBadGprBase + … in DoLongJump()
101 fprs[i] = fprs_[i] != nullptr ? *fprs_[i] : X86Context::kBadFprBase + i; in DoLongJump()
Dcontext_x86.h29 class X86Context final : public Context {
31 X86Context() { in X86Context() function
34 virtual ~X86Context() {} in ~X86Context()
/art/runtime/arch/
Dcontext-inl.h33 #define RUNTIME_CONTEXT_TYPE x86::X86Context