Home
last modified time | relevance | path

Searched refs:fault_addr (Results 1 – 1 of 1) sorted by relevance

/system/core/debuggerd/libdebuggerd/
Dtombstone.cpp84 static std::string get_stack_overflow_cause(uint64_t fault_addr, uint64_t sp, in get_stack_overflow_cause() argument
88 if (sp >= fault_addr) { in get_stack_overflow_cause()
89 difference = sp - fault_addr; in get_stack_overflow_cause()
91 difference = fault_addr - sp; in get_stack_overflow_cause()
135 uint64_t fault_addr = reinterpret_cast<uint64_t>(si->si_addr); in dump_probable_cause() local
136 unwindstack::MapInfo* map_info = maps->Find(fault_addr); in dump_probable_cause()
140 cause = get_stack_overflow_cause(fault_addr, regs->sp(), maps); in dump_probable_cause()