Home
last modified time | relevance | path

Searched refs:GetGPR (Results 1 – 8 of 8) sorted by relevance

/art/runtime/
Dstack.cc170 bool success = is_float ? GetFPR(reg, &ptr_val) : GetGPR(reg, &ptr_val); in GetVReg()
226 bool success = is_float ? GetFPR(reg_lo, &ptr_val_lo) : GetGPR(reg_lo, &ptr_val_lo); in GetVRegPair()
227 success &= is_float ? GetFPR(reg_hi, &ptr_val_hi) : GetGPR(reg_hi, &ptr_val_hi); in GetVRegPair()
277 bool success = is_float ? GetFPR(reg, &old_reg_val) : GetGPR(reg, &old_reg_val); in SetVReg()
342 bool success = is_float ? GetFPR(reg_lo, &old_reg_val_lo) : GetGPR(reg_lo, &old_reg_val_lo); in SetVRegPair()
343 success &= is_float ? GetFPR(reg_hi, &old_reg_val_hi) : GetGPR(reg_hi, &old_reg_val_hi); in SetVRegPair()
379 bool StackVisitor::GetGPR(uint32_t reg, uintptr_t* val) const { in GetGPR() function in art::StackVisitor
381 return context_->GetGPR(reg, val); in GetGPR()
Dstack.h740 bool GetGPR(uint32_t reg, uintptr_t* val) const;
/art/runtime/arch/
Dcontext.h57 virtual bool GetGPR(uint32_t reg, uintptr_t* val) = 0;
/art/runtime/arch/x86/
Dcontext_x86.h52 bool GetGPR(uint32_t reg, uintptr_t* val) OVERRIDE { in GetGPR() function
/art/runtime/arch/arm64/
Dcontext_arm64.h54 bool GetGPR(uint32_t reg, uintptr_t* val) OVERRIDE { in GetGPR() function
/art/runtime/arch/x86_64/
Dcontext_x86_64.h52 bool GetGPR(uint32_t reg, uintptr_t* val) OVERRIDE { in GetGPR() function
/art/runtime/arch/arm/
Dcontext_arm.h54 bool GetGPR(uint32_t reg, uintptr_t* val) OVERRIDE { in GetGPR() function
/art/runtime/arch/mips/
Dcontext_mips.h53 bool GetGPR(uint32_t reg, uintptr_t* val) OVERRIDE { in GetGPR() function