Searched refs:caller_registers (Results 1 – 9 of 9) sorted by relevance
/external/google-breakpad/src/processor/ |
D | cfi_frame_info_unittest.cc | 81 CFIFrameInfo::RegisterValueMap<uint64_t> registers, caller_registers; member 92 &caller_registers)); in TEST_F() 102 &caller_registers)); in TEST_F() 112 &caller_registers)); in TEST_F() 113 ASSERT_EQ(2U, caller_registers.size()); in TEST_F() 114 ASSERT_EQ(330903416631436410ULL, caller_registers[".cfa"]); in TEST_F() 115 ASSERT_EQ(5870666104170902211ULL, caller_registers[".ra"]); in TEST_F() 131 &caller_registers)); in TEST_F() 132 ASSERT_EQ(6U, caller_registers.size()); in TEST_F() 133 ASSERT_EQ(7664691U, caller_registers[".cfa"]); in TEST_F() [all …]
|
D | stackwalker_mips.cc | 104 CFIFrameInfo::RegisterValueMap<uint32_t> caller_registers; in GetCallerByCFIFrameInfo() local 107 caller_registers[kRegisterNames[i]] = last_frame->context.iregs[i]; in GetCallerByCFIFrameInfo() 112 &caller_registers)) { in GetCallerByCFIFrameInfo() 117 caller_registers.find(".cfa"); in GetCallerByCFIFrameInfo() 119 if (entry != caller_registers.end()) { in GetCallerByCFIFrameInfo() 121 caller_registers["$sp"] = entry->second; in GetCallerByCFIFrameInfo() 124 entry = caller_registers.find(".ra"); in GetCallerByCFIFrameInfo() 125 if (entry != caller_registers.end()) { in GetCallerByCFIFrameInfo() 126 caller_registers["$ra"] = entry->second; in GetCallerByCFIFrameInfo() 129 caller_registers["$pc"] = pc; in GetCallerByCFIFrameInfo() [all …]
|
D | cfi_frame_info.cc | 53 RegisterValueMap<V> *caller_registers) const { in FindCallerRegs() 62 caller_registers->clear(); in FindCallerRegs() 85 (*caller_registers)[it->first] = value; in FindCallerRegs() 88 (*caller_registers)[".ra"] = ra; in FindCallerRegs() 89 (*caller_registers)[".cfa"] = cfa; in FindCallerRegs() 98 RegisterValueMap<uint32_t> *caller_registers) const; 102 RegisterValueMap<uint64_t> *caller_registers) const;
|
D | cfi_frame_info-inl.h | 53 ValueMap caller_registers; in FindCallerRegisters() local 55 typename ValueMap::const_iterator caller_none = caller_registers.end(); in FindCallerRegisters() 66 &caller_registers)) in FindCallerRegisters() 78 caller_entry = caller_registers.find(r.name); in FindCallerRegisters() 88 caller_entry = caller_registers.find(r.alternate_name); in FindCallerRegisters()
|
D | stackwalker_arm64.cc | 99 CFIFrameInfo::RegisterValueMap<uint64_t> caller_registers; in GetCallerByCFIFrameInfo() local 101 &caller_registers)) { in GetCallerByCFIFrameInfo() 108 caller_registers.find(register_names[i]); in GetCallerByCFIFrameInfo() 109 if (entry != caller_registers.end()) { in GetCallerByCFIFrameInfo() 128 caller_registers.find(".ra"); in GetCallerByCFIFrameInfo() 129 if (entry != caller_registers.end()) { in GetCallerByCFIFrameInfo() 137 caller_registers.find(".cfa"); in GetCallerByCFIFrameInfo() 138 if (entry != caller_registers.end()) { in GetCallerByCFIFrameInfo()
|
D | fast_source_line_resolver_unittest.cc | 288 CFIFrameInfo::RegisterValueMap<uint32_t> caller_registers; in TEST_F() local 313 &caller_registers)); in TEST_F() 315 expected_caller_registers, caller_registers)); in TEST_F() 323 &caller_registers)); in TEST_F() 325 expected_caller_registers, caller_registers)); in TEST_F() 333 &caller_registers)); in TEST_F() 335 expected_caller_registers, caller_registers); in TEST_F() 343 &caller_registers)); in TEST_F() 345 expected_caller_registers, caller_registers); in TEST_F() 353 &caller_registers)); in TEST_F() [all …]
|
D | stackwalker_arm.cc | 99 CFIFrameInfo::RegisterValueMap<uint32_t> caller_registers; in GetCallerByCFIFrameInfo() local 101 &caller_registers)) in GetCallerByCFIFrameInfo() 108 caller_registers.find(register_names[i]); in GetCallerByCFIFrameInfo() 109 if (entry != caller_registers.end()) { in GetCallerByCFIFrameInfo() 127 caller_registers.find(".ra"); in GetCallerByCFIFrameInfo() 128 if (entry != caller_registers.end()) { in GetCallerByCFIFrameInfo() 146 caller_registers.find(".cfa"); in GetCallerByCFIFrameInfo() 147 if (entry != caller_registers.end()) { in GetCallerByCFIFrameInfo()
|
D | basic_source_line_resolver_unittest.cc | 261 CFIFrameInfo::RegisterValueMap<uint32_t> caller_registers; in TEST_F() local 286 &caller_registers)); in TEST_F() 288 expected_caller_registers, caller_registers)); in TEST_F() 296 &caller_registers)); in TEST_F() 298 expected_caller_registers, caller_registers)); in TEST_F() 306 &caller_registers)); in TEST_F() 308 expected_caller_registers, caller_registers); in TEST_F() 316 &caller_registers)); in TEST_F() 318 expected_caller_registers, caller_registers); in TEST_F() 326 &caller_registers)); in TEST_F() [all …]
|
D | cfi_frame_info.h | 101 RegisterValueMap<ValueType> *caller_registers) const;
|