Searched refs:ArmContext (Results 1 – 3 of 3) sorted by relevance
29 void ArmContext::Reset() { in Reset()36 sp_ = ArmContext::kBadGprBase + SP; in Reset()37 pc_ = ArmContext::kBadGprBase + PC; in Reset()41 void ArmContext::FillCalleeSaves(uint8_t* frame, const QuickMethodFrameInfo& frame_info) { in FillCalleeSaves()61 void ArmContext::SetGPR(uint32_t reg, uintptr_t value) { in SetGPR()68 void ArmContext::SetFPR(uint32_t reg, uintptr_t value) { in SetFPR()75 void ArmContext::SmashCallerSaves() { in SmashCallerSaves()102 void ArmContext::DoLongJump() { in DoLongJump()106 gprs[i] = gprs_[i] != nullptr ? *gprs_[i] : ArmContext::kBadGprBase + i; in DoLongJump()109 fprs[i] = fprs_[i] != nullptr ? *fprs_[i] : ArmContext::kBadFprBase + i; in DoLongJump()
29 class ArmContext FINAL : public Context {31 ArmContext() { in ArmContext() function35 virtual ~ArmContext() {} in ~ArmContext()
27 #define RUNTIME_CONTEXT_TYPE arm::ArmContext