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