Home
last modified time | relevance | path

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

/art/runtime/arch/arm64/
Dcontext_arm64.cc30 void Arm64Context::Reset() { in Reset()
37 sp_ = Arm64Context::kBadGprBase + SP; in Reset()
38 pc_ = Arm64Context::kBadGprBase + kPC; in Reset()
42 void Arm64Context::FillCalleeSaves(uint8_t* frame, const QuickMethodFrameInfo& frame_info) { in FillCalleeSaves()
60 void Arm64Context::SetGPR(uint32_t reg, uintptr_t value) { in SetGPR()
68 void Arm64Context::SetFPR(uint32_t reg, uintptr_t value) { in SetFPR()
75 void Arm64Context::SmashCallerSaves() { in SmashCallerSaves()
126 void Arm64Context::DoLongJump() { in DoLongJump()
134 gprs[i] = gprs_[i] != nullptr ? *gprs_[i] : Arm64Context::kBadGprBase + i; in DoLongJump()
137 fprs[i] = fprs_[i] != nullptr ? *fprs_[i] : Arm64Context::kBadFprBase + i; in DoLongJump()
Dcontext_arm64.h28 class Arm64Context : public Context {
30 Arm64Context() { in Arm64Context() function
34 ~Arm64Context() {} in ~Arm64Context()
/art/runtime/arch/
Dcontext.cc41 return new arm64::Arm64Context(); in Create()