Searched refs:X86_64Context (Results 1 – 3 of 3) sorted by relevance
28 void X86_64Context::Reset() { in Reset()34 rsp_ = X86_64Context::kBadGprBase + RSP; in Reset()35 rip_ = X86_64Context::kBadGprBase + kNumberOfCpuRegisters; in Reset()39 void X86_64Context::FillCalleeSaves(uint8_t* frame, const QuickMethodFrameInfo& frame_info) { in FillCalleeSaves()64 void X86_64Context::SmashCallerSaves() { in SmashCallerSaves()89 void X86_64Context::SetGPR(uint32_t reg, uintptr_t value) { in SetGPR()96 void X86_64Context::SetFPR(uint32_t reg, uintptr_t value) { in SetFPR()105 void X86_64Context::DoLongJump() { in DoLongJump()111 …gprs[kNumberOfCpuRegisters - i - 1] = gprs_[i] != nullptr ? *gprs_[i] : X86_64Context::kBadGprBase… in DoLongJump()114 fprs[i] = fprs_[i] != nullptr ? *fprs_[i] : X86_64Context::kBadFprBase + i; in DoLongJump()
29 class X86_64Context final : public Context {31 X86_64Context() { in X86_64Context() function34 virtual ~X86_64Context() {} in ~X86_64Context()
42 #define RUNTIME_CONTEXT_TYPE x86_64::X86_64Context