Lines Matching refs:DumpRegister64

140   void DumpRegister64(std::ostream& os, const char* name, uint64_t value) const;
204 DumpRegister64(os, "rax", context.gregs[REG_RAX]); in Dump()
205 DumpRegister64(os, "rbx", context.gregs[REG_RBX]); in Dump()
206 DumpRegister64(os, "rcx", context.gregs[REG_RCX]); in Dump()
207 DumpRegister64(os, "rdx", context.gregs[REG_RDX]); in Dump()
210 DumpRegister64(os, "rdi", context.gregs[REG_RDI]); in Dump()
211 DumpRegister64(os, "rsi", context.gregs[REG_RSI]); in Dump()
212 DumpRegister64(os, "rbp", context.gregs[REG_RBP]); in Dump()
213 DumpRegister64(os, "rsp", context.gregs[REG_RSP]); in Dump()
216 DumpRegister64(os, "r8 ", context.gregs[REG_R8]); in Dump()
217 DumpRegister64(os, "r9 ", context.gregs[REG_R9]); in Dump()
218 DumpRegister64(os, "r10", context.gregs[REG_R10]); in Dump()
219 DumpRegister64(os, "r11", context.gregs[REG_R11]); in Dump()
222 DumpRegister64(os, "r12", context.gregs[REG_R12]); in Dump()
223 DumpRegister64(os, "r13", context.gregs[REG_R13]); in Dump()
224 DumpRegister64(os, "r14", context.gregs[REG_R14]); in Dump()
225 DumpRegister64(os, "r15", context.gregs[REG_R15]); in Dump()
228 DumpRegister64(os, "rip", context.gregs[REG_RIP]); in Dump()
269 DumpRegister64(os, reg_name.c_str(), context.regs[i]); in Dump()
276 DumpRegister64(os, "sp", context.sp); in Dump()
277 DumpRegister64(os, "pc", context.pc); in Dump()
280 DumpRegister64(os, "pstate", context.pstate); in Dump()
292 void UContext::DumpRegister64(std::ostream& os, const char* name, uint64_t value) const { in DumpRegister64() function in art::UContext