Home
last modified time | relevance | path

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

/art/runtime/arch/arm/
Dcontext_arm.cc28 void ArmContext::Reset() { in Reset()
35 sp_ = ArmContext::kBadGprBase + SP; in Reset()
36 pc_ = ArmContext::kBadGprBase + PC; in Reset()
40 void ArmContext::FillCalleeSaves(uint8_t* frame, const QuickMethodFrameInfo& frame_info) { in FillCalleeSaves()
60 void ArmContext::SetGPR(uint32_t reg, uintptr_t value) { in SetGPR()
67 void ArmContext::SetFPR(uint32_t reg, uintptr_t value) { in SetFPR()
74 void ArmContext::SmashCallerSaves() { in SmashCallerSaves()
101 void ArmContext::DoLongJump() { in DoLongJump()
105 gprs[i] = gprs_[i] != nullptr ? *gprs_[i] : ArmContext::kBadGprBase + i; in DoLongJump()
108 fprs[i] = fprs_[i] != nullptr ? *fprs_[i] : ArmContext::kBadFprBase + i; in DoLongJump()
Dcontext_arm.h28 class ArmContext : public Context {
30 ArmContext() { in ArmContext() function
34 virtual ~ArmContext() {} in ~ArmContext()
/art/runtime/arch/
Dcontext.cc39 return new arm::ArmContext(); in Create()