Home
last modified time | relevance | path

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

/art/runtime/arch/arm/
Dcontext_arm.cc29 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()
Dcontext_arm.h29 class ArmContext final : public Context {
31 ArmContext() { in ArmContext() function
35 virtual ~ArmContext() {} in ~ArmContext()
/art/runtime/arch/
Dcontext-inl.h27 #define RUNTIME_CONTEXT_TYPE arm::ArmContext