Home
last modified time | relevance | path

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

/art/runtime/arch/x86/
Dcontext_x86.cc28 void X86Context::Reset() { in Reset()
33 esp_ = X86Context::kBadGprBase + ESP; in Reset()
34 eip_ = X86Context::kBadGprBase + kNumberOfCpuRegisters; in Reset()
37 void X86Context::FillCalleeSaves(const StackVisitor& fr) { in FillCalleeSaves()
67 void X86Context::SmashCallerSaves() { in SmashCallerSaves()
76 void X86Context::SetGPR(uint32_t reg, uintptr_t value) { in SetGPR()
83 void X86Context::SetFPR(uint32_t reg, uintptr_t value) { in SetFPR()
90 void X86Context::DoLongJump() { in DoLongJump()
96 …gprs[kNumberOfCpuRegisters - i - 1] = gprs_[i] != nullptr ? *gprs_[i] : X86Context::kBadGprBase + … in DoLongJump()
100 fprs[i] = fprs_[i] != nullptr ? *fprs_[i] : X86Context::kBadFprBase + i; in DoLongJump()
Dcontext_x86.h28 class X86Context : public Context {
30 X86Context() { in X86Context() function
33 virtual ~X86Context() {} in ~X86Context()
/art/runtime/arch/
Dcontext.cc47 return new x86::X86Context(); in Create()