Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/lldb/source/Plugins/Architecture/Arm/
H A DArchitectureArm.cpp124 addr_t ArchitectureArm::GetCallableLoadAddress(addr_t code_addr, in GetCallableLoadAddress() argument
138 if ((code_addr & 2u) || is_alternate_isa) in GetCallableLoadAddress()
139 return code_addr | 1u; in GetCallableLoadAddress()
140 return code_addr; in GetCallableLoadAddress()
/openbsd/gnu/llvm/lldb/source/Plugins/Architecture/Mips/
H A DArchitectureMips.cpp42 addr_t ArchitectureMips::GetCallableLoadAddress(addr_t code_addr, in GetCallableLoadAddress() argument
56 if ((code_addr & 2ull) || is_alternate_isa) in GetCallableLoadAddress()
57 return code_addr | 1u; in GetCallableLoadAddress()
58 return code_addr; in GetCallableLoadAddress()
/openbsd/gnu/llvm/lldb/source/Core/
H A DAddress.cpp337 addr_t code_addr = LLDB_INVALID_ADDRESS; in GetCallableLoadAddress() local
343 code_addr = processSP->ResolveIndirectFunction(this, error); in GetCallableLoadAddress()
345 code_addr = LLDB_INVALID_ADDRESS; in GetCallableLoadAddress()
348 code_addr = GetLoadAddress(target); in GetCallableLoadAddress()
351 if (code_addr == LLDB_INVALID_ADDRESS) in GetCallableLoadAddress()
352 return code_addr; in GetCallableLoadAddress()
356 return code_addr; in GetCallableLoadAddress()
370 addr_t code_addr = GetLoadAddress(target); in GetOpcodeLoadAddress() local
371 if (code_addr != LLDB_INVALID_ADDRESS) { in GetOpcodeLoadAddress()
374 code_addr = target->GetOpcodeLoadAddress(code_addr, addr_class); in GetOpcodeLoadAddress()
[all …]
/openbsd/gnu/usr.bin/binutils/gdb/
H A Dframe.h108 CORE_ADDR code_addr; member
153 CORE_ADDR code_addr);
160 CORE_ADDR code_addr,
H A Dframe.c135 fprint_field (file, "code", id.code_addr_p, id.code_addr); in fprint_frame_id()
249 frame_id_build_special (CORE_ADDR stack_addr, CORE_ADDR code_addr, in frame_id_build_special() argument
255 id.code_addr = code_addr; in frame_id_build_special()
263 frame_id_build (CORE_ADDR stack_addr, CORE_ADDR code_addr) in frame_id_build() argument
268 id.code_addr = code_addr; in frame_id_build()
311 else if (l.code_addr != r.code_addr) in frame_id_eq()
H A Ddummy-frame.c77 if ((pc >= dummyframe->id.code_addr) in deprecated_pc_in_call_dummy()
78 && (pc <= dummyframe->id.code_addr + DECR_PC_AFTER_BREAK)) in deprecated_pc_in_call_dummy()
H A Dalpha-tdep.c775 CORE_ADDR stack_addr, code_addr; in alpha_sigtramp_frame_this_id() local
788 code_addr = frame_pc_unwind (next_frame); in alpha_sigtramp_frame_this_id()
789 offset = tdep->dynamic_sigtramp_offset (code_addr); in alpha_sigtramp_frame_this_id()
791 code_addr -= offset; in alpha_sigtramp_frame_this_id()
793 code_addr = 0; in alpha_sigtramp_frame_this_id()
796 code_addr = frame_func_unwind (next_frame); in alpha_sigtramp_frame_this_id()
804 *this_id = frame_id_build (stack_addr, code_addr); in alpha_sigtramp_frame_this_id()
H A Dia64-tdep.c1554 paddr_nz (this_id->code_addr), in ia64_frame_this_id()
1953 paddr_nz (this_id->code_addr), in ia64_sigtramp_frame_this_id()
2559 (*this_id) = frame_id_build_special (id.stack_addr, id.code_addr, bsp); in ia64_libunwind_frame_this_id()
2564 paddr_nz (id.code_addr), paddr_nz (id.stack_addr), in ia64_libunwind_frame_this_id()
H A DChangeLog-200310383 * frame.c (frame_id_eq): Fail when the code_addr's do not match.
10784 (legacy_get_prev_frame): Set prev's frame ID code_addr to the
10895 "stack_addr" and "code_addr". Update comments.
/openbsd/gnu/llvm/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCTrampolineHandler.cpp268 lldb::addr_t code_addr = desc_ptr + start_offset + voffset; in SetUpRegion() local
269 m_descriptors.push_back(VTableDescriptor(flags, code_addr)); in SetUpRegion()
271 if (m_code_start_addr == 0 || code_addr < m_code_start_addr) in SetUpRegion()
272 m_code_start_addr = code_addr; in SetUpRegion()
273 if (code_addr > m_code_end_addr) in SetUpRegion()
274 m_code_end_addr = code_addr; in SetUpRegion()