Searched refs:GetGPR (Results 1 – 8 of 8) sorted by relevance
/art/runtime/ |
D | stack.cc | 170 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()
|
D | stack.h | 740 bool GetGPR(uint32_t reg, uintptr_t* val) const;
|
/art/runtime/arch/ |
D | context.h | 57 virtual bool GetGPR(uint32_t reg, uintptr_t* val) = 0;
|
/art/runtime/arch/x86/ |
D | context_x86.h | 52 bool GetGPR(uint32_t reg, uintptr_t* val) OVERRIDE { in GetGPR() function
|
/art/runtime/arch/arm64/ |
D | context_arm64.h | 54 bool GetGPR(uint32_t reg, uintptr_t* val) OVERRIDE { in GetGPR() function
|
/art/runtime/arch/x86_64/ |
D | context_x86_64.h | 52 bool GetGPR(uint32_t reg, uintptr_t* val) OVERRIDE { in GetGPR() function
|
/art/runtime/arch/arm/ |
D | context_arm.h | 54 bool GetGPR(uint32_t reg, uintptr_t* val) OVERRIDE { in GetGPR() function
|
/art/runtime/arch/mips/ |
D | context_mips.h | 53 bool GetGPR(uint32_t reg, uintptr_t* val) OVERRIDE { in GetGPR() function
|