Home
last modified time | relevance | path

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

/art/runtime/arch/arm64/
Dcontext_arm64.cc37 void Arm64Context::Reset() { in Reset()
44 sp_ = Arm64Context::kBadGprBase + SP; in Reset()
45 pc_ = Arm64Context::kBadGprBase + kPC; in Reset()
49 void Arm64Context::FillCalleeSaves(uint8_t* frame, const QuickMethodFrameInfo& frame_info) { in FillCalleeSaves()
67 void Arm64Context::SetGPR(uint32_t reg, uintptr_t value) { in SetGPR()
75 void Arm64Context::SetFPR(uint32_t reg, uintptr_t value) { in SetFPR()
82 void Arm64Context::SmashCallerSaves() { in SmashCallerSaves()
133 void Arm64Context::DoLongJump() { in DoLongJump()
141 gprs[i] = gprs_[i] != nullptr ? *gprs_[i] : Arm64Context::kBadGprBase + i; in DoLongJump()
144 fprs[i] = fprs_[i] != nullptr ? *fprs_[i] : Arm64Context::kBadFprBase + i; in DoLongJump()
Dcontext_arm64.h29 class Arm64Context final : public Context {
31 Arm64Context() { in Arm64Context() function
35 ~Arm64Context() {} in ~Arm64Context()
/art/runtime/arch/
Dcontext-inl.h30 #define RUNTIME_CONTEXT_TYPE arm64::Arm64Context