/external/google-breakpad/src/processor/ |
D | stackwalk_common.cc | 72 static int PrintRegister(const char *name, uint32_t value, int start_col) { in PrintRegister() function 296 sequence = PrintRegister("eip", frame_x86->context.eip, sequence); in PrintStack() 298 sequence = PrintRegister("esp", frame_x86->context.esp, sequence); in PrintStack() 300 sequence = PrintRegister("ebp", frame_x86->context.ebp, sequence); in PrintStack() 302 sequence = PrintRegister("ebx", frame_x86->context.ebx, sequence); in PrintStack() 304 sequence = PrintRegister("esi", frame_x86->context.esi, sequence); in PrintStack() 306 sequence = PrintRegister("edi", frame_x86->context.edi, sequence); in PrintStack() 308 sequence = PrintRegister("eax", frame_x86->context.eax, sequence); in PrintStack() 309 sequence = PrintRegister("ecx", frame_x86->context.ecx, sequence); in PrintStack() 310 sequence = PrintRegister("edx", frame_x86->context.edx, sequence); in PrintStack() [all …]
|
/external/google-breakpad/src/tools/mac/crash_report/ |
D | crash_report.mm | 81 static int PrintRegister(const char *name, u_int32_t value, int sequence) { function 146 sequence = PrintRegister("eip", frame_x86->context.eip, sequence); 148 sequence = PrintRegister("esp", frame_x86->context.esp, sequence); 150 sequence = PrintRegister("ebp", frame_x86->context.ebp, sequence); 152 sequence = PrintRegister("ebx", frame_x86->context.ebx, sequence); 154 sequence = PrintRegister("esi", frame_x86->context.esi, sequence); 156 sequence = PrintRegister("edi", frame_x86->context.edi, sequence); 158 sequence = PrintRegister("eax", frame_x86->context.eax, sequence); 159 sequence = PrintRegister("ecx", frame_x86->context.ecx, sequence); 160 sequence = PrintRegister("edx", frame_x86->context.edx, sequence); [all …]
|
/external/llvm/lib/Target/Hexagon/ |
D | HexagonGenPredicate.cpp | 48 struct PrintRegister { struct 49 PrintRegister(Register R, const TargetRegisterInfo &I) : Reg(R), TRI(I) {} in PrintRegister() function 50 friend raw_ostream &operator<< (raw_ostream &OS, const PrintRegister &PR); 55 raw_ostream &operator<< (raw_ostream &OS, const PrintRegister &PR) 57 raw_ostream &operator<< (raw_ostream &OS, const PrintRegister &PR) { in operator <<() 233 DEBUG(dbgs() << LLVM_FUNCTION_NAME << ": " << PrintRegister(Reg, *TRI)); in getPredRegFor() 241 DEBUG(dbgs() << " -> " << PrintRegister(PR, *TRI) << '\n'); in getPredRegFor() 257 DEBUG(dbgs() << " -> !" << PrintRegister(Register(NewPR), *TRI) << '\n'); in getPredRegFor()
|
/external/llvm-project/llvm/lib/Target/Hexagon/ |
D | HexagonGenPredicate.cpp | 67 struct PrintRegister { struct 68 friend raw_ostream &operator<< (raw_ostream &OS, const PrintRegister &PR); 70 PrintRegister(RegisterSubReg R, const TargetRegisterInfo &I) : Reg(R), TRI(I) {} in PrintRegister() argument 77 raw_ostream &operator<< (raw_ostream &OS, const PrintRegister &PR) 79 raw_ostream &operator<< (raw_ostream &OS, const PrintRegister &PR) { in operator <<() 255 LLVM_DEBUG(dbgs() << __func__ << ": " << PrintRegister(Reg, *TRI)); in getPredRegFor() 263 LLVM_DEBUG(dbgs() << " -> " << PrintRegister(PR, *TRI) << '\n'); in getPredRegFor() 279 LLVM_DEBUG(dbgs() << " -> !" << PrintRegister(RegisterSubReg(NewPR), *TRI) in getPredRegFor()
|
D | HexagonConstExtenders.cpp | 416 friend struct PrintRegister; 421 const struct PrintRegister &P); 442 struct PrintRegister { struct 443 PrintRegister(HCE::Register R, const HexagonRegisterInfo &I) in PrintRegister() function 450 raw_ostream &operator<< (raw_ostream &OS, const PrintRegister &P) { in operator <<() 1859 << PrintRegister(ExtR, *HRI) << " Diff:" << Diff << '\n'); in replaceInstr()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
D | HexagonGenPredicate.cpp | 66 struct PrintRegister { struct 67 friend raw_ostream &operator<< (raw_ostream &OS, const PrintRegister &PR); 69 PrintRegister(RegisterSubReg R, const TargetRegisterInfo &I) : Reg(R), TRI(I) {} in PrintRegister() function 76 raw_ostream &operator<< (raw_ostream &OS, const PrintRegister &PR) 78 raw_ostream &operator<< (raw_ostream &OS, const PrintRegister &PR) { in operator <<() 254 LLVM_DEBUG(dbgs() << __func__ << ": " << PrintRegister(Reg, *TRI)); in getPredRegFor() 262 LLVM_DEBUG(dbgs() << " -> " << PrintRegister(PR, *TRI) << '\n'); in getPredRegFor() 278 LLVM_DEBUG(dbgs() << " -> !" << PrintRegister(RegisterSubReg(NewPR), *TRI) in getPredRegFor()
|
D | HexagonConstExtenders.cpp | 417 friend struct PrintRegister; 422 const struct PrintRegister &P); 443 struct PrintRegister { struct 444 PrintRegister(HCE::Register R, const HexagonRegisterInfo &I) in PrintRegister() function 451 raw_ostream &operator<< (raw_ostream &OS, const PrintRegister &P) { in operator <<() 1842 << PrintRegister(ExtR, *HRI) << " Diff:" << Diff << '\n'); in replaceInstr()
|
/external/vixl/src/aarch64/ |
D | simulator-aarch64.cc | 747 PrintRegister(i); in PrintRegisters() 767 PrintRegister(i); in PrintWrittenRegisters() 882 void Simulator::PrintRegister(int code, in PrintRegister() function in vixl::aarch64::Simulator 1292 PrintRegister(code, format, ""); in PrintAccess() 1520 PrintRegister(rt_code, format); in PrintExtendingRead()
|
D | simulator-aarch64.h | 2123 void PrintRegister(int code, 2153 if (ShouldTraceRegs()) PrintRegister(code, format);
|