Searched refs:Mips64Context (Results 1 – 3 of 3) sorted by relevance
28 void Mips64Context::Reset() { in Reset()35 sp_ = Mips64Context::kBadGprBase + SP; in Reset()36 t9_ = Mips64Context::kBadGprBase + T9; in Reset()40 void Mips64Context::FillCalleeSaves(uint8_t* frame, const QuickMethodFrameInfo& frame_info) { in FillCalleeSaves()58 void Mips64Context::SetGPR(uint32_t reg, uintptr_t value) { in SetGPR()65 void Mips64Context::SetFPR(uint32_t reg, uintptr_t value) { in SetFPR()72 void Mips64Context::SmashCallerSaves() { in SmashCallerSaves()114 void Mips64Context::DoLongJump() { in DoLongJump()118 gprs[i] = gprs_[i] != nullptr ? *gprs_[i] : Mips64Context::kBadGprBase + i; in DoLongJump()121 fprs[i] = fprs_[i] != nullptr ? *fprs_[i] : Mips64Context::kBadFprBase + i; in DoLongJump()
29 class Mips64Context : public Context {31 Mips64Context() { in Mips64Context() function34 virtual ~Mips64Context() {} in ~Mips64Context()
36 #define RUNTIME_CONTEXT_TYPE mips64::Mips64Context