Home
last modified time | relevance | path

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

/art/runtime/arch/arm64/
Dcontext_arm64.cc33 void Arm64Context::Reset() { in Reset()
43 sp_ = Arm64Context::kBadGprBase + SP; in Reset()
44 pc_ = Arm64Context::kBadGprBase + LR; in Reset()
47 void Arm64Context::FillCalleeSaves(const StackVisitor& fr) { in FillCalleeSaves()
76 bool Arm64Context::SetGPR(uint32_t reg, uintptr_t value) { in SetGPR()
87 bool Arm64Context::SetFPR(uint32_t reg, uintptr_t value) { in SetFPR()
98 void Arm64Context::SmashCallerSaves() { in SmashCallerSaves()
148 void Arm64Context::DoLongJump() { in DoLongJump()
154 gprs[i] = gprs_[i] != nullptr ? *gprs_[i] : Arm64Context::kBadGprBase + i; in DoLongJump()
157 fprs[i] = fprs_[i] != nullptr ? *fprs_[i] : Arm64Context::kBadGprBase + i; in DoLongJump()
Dcontext_arm64.h27 class Arm64Context : public Context {
29 Arm64Context() { in Arm64Context() function
33 ~Arm64Context() {} in ~Arm64Context()
/art/runtime/arch/
Dcontext.cc39 return new arm64::Arm64Context(); in Create()