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 | 117 CFIFrameInfo::RegisterValueMap<uint32_t> caller_registers; in GetCallerByCFIFrameInfo() local 120 caller_registers[kRegisterNames[i]] = last_frame->context.iregs[i]; in GetCallerByCFIFrameInfo() 125 &caller_registers)) { in GetCallerByCFIFrameInfo() 130 caller_registers.find(".cfa"); in GetCallerByCFIFrameInfo() 132 if (entry != caller_registers.end()) { in GetCallerByCFIFrameInfo() 133 caller_registers["$sp"] = entry->second; in GetCallerByCFIFrameInfo() 136 entry = caller_registers.find(".ra"); in GetCallerByCFIFrameInfo() 137 if (entry != caller_registers.end()) { in GetCallerByCFIFrameInfo() 138 caller_registers["$ra"] = entry->second; in GetCallerByCFIFrameInfo() 141 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_arm.cc | 100 CFIFrameInfo::RegisterValueMap<uint32_t> caller_registers; in GetCallerByCFIFrameInfo() local 102 &caller_registers)) in GetCallerByCFIFrameInfo() 109 caller_registers.find(register_names[i]); in GetCallerByCFIFrameInfo() 110 if (entry != caller_registers.end()) { in GetCallerByCFIFrameInfo() 128 caller_registers.find(".ra"); in GetCallerByCFIFrameInfo() 129 if (entry != caller_registers.end()) { in GetCallerByCFIFrameInfo() 147 caller_registers.find(".cfa"); in GetCallerByCFIFrameInfo() 148 if (entry != caller_registers.end()) { in GetCallerByCFIFrameInfo()
|
D | fast_source_line_resolver_unittest.cc | 291 CFIFrameInfo::RegisterValueMap<uint32_t> caller_registers; in TEST_F() local 316 &caller_registers)); in TEST_F() 318 expected_caller_registers, caller_registers)); in TEST_F() 326 &caller_registers)); in TEST_F() 328 expected_caller_registers, caller_registers)); in TEST_F() 336 &caller_registers)); in TEST_F() 338 expected_caller_registers, caller_registers); in TEST_F() 346 &caller_registers)); in TEST_F() 348 expected_caller_registers, caller_registers); in TEST_F() 356 &caller_registers)); in TEST_F() [all …]
|
D | stackwalker_arm64.cc | 122 CFIFrameInfo::RegisterValueMap<uint64_t> caller_registers; in GetCallerByCFIFrameInfo() local 124 &caller_registers)) { in GetCallerByCFIFrameInfo() 131 caller_registers.find(register_names[i]); in GetCallerByCFIFrameInfo() 132 if (entry != caller_registers.end()) { in GetCallerByCFIFrameInfo() 151 caller_registers.find(".ra"); in GetCallerByCFIFrameInfo() 152 if (entry != caller_registers.end()) { in GetCallerByCFIFrameInfo() 160 caller_registers.find(".cfa"); in GetCallerByCFIFrameInfo() 161 if (entry != caller_registers.end()) { in GetCallerByCFIFrameInfo()
|
D | basic_source_line_resolver_unittest.cc | 264 CFIFrameInfo::RegisterValueMap<uint32_t> caller_registers; in TEST_F() local 289 &caller_registers)); in TEST_F() 291 expected_caller_registers, caller_registers)); in TEST_F() 299 &caller_registers)); in TEST_F() 301 expected_caller_registers, caller_registers)); in TEST_F() 309 &caller_registers)); in TEST_F() 311 expected_caller_registers, caller_registers); in TEST_F() 319 &caller_registers)); in TEST_F() 321 expected_caller_registers, caller_registers); in TEST_F() 329 &caller_registers)); in TEST_F() [all …]
|
D | cfi_frame_info.h | 101 RegisterValueMap<ValueType> *caller_registers) const;
|