Searched refs:code_addr (Results 1 – 10 of 10) sorted by relevance
/openbsd/gnu/llvm/lldb/source/Plugins/Architecture/Arm/ |
H A D | ArchitectureArm.cpp | 124 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 D | ArchitectureMips.cpp | 42 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 D | Address.cpp | 337 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 D | frame.h | 108 CORE_ADDR code_addr; member 153 CORE_ADDR code_addr); 160 CORE_ADDR code_addr,
|
H A D | frame.c | 135 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 D | dummy-frame.c | 77 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 D | alpha-tdep.c | 775 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 D | ia64-tdep.c | 1554 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 D | ChangeLog-2003 | 10383 * 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 D | AppleObjCTrampolineHandler.cpp | 268 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()
|