Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Architecture/Arm/
H A DArchitectureArm.cpp130 addr_t ArchitectureArm::GetCallableLoadAddress(addr_t code_addr, in GetCallableLoadAddress() argument
144 if ((code_addr & 2u) || is_alternate_isa) in GetCallableLoadAddress()
145 return code_addr | 1u; in GetCallableLoadAddress()
146 return code_addr; in GetCallableLoadAddress()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DAddress.cpp319 addr_t code_addr = LLDB_INVALID_ADDRESS; in GetCallableLoadAddress() local
325 code_addr = processSP->ResolveIndirectFunction(this, error); in GetCallableLoadAddress()
327 code_addr = LLDB_INVALID_ADDRESS; in GetCallableLoadAddress()
330 code_addr = GetLoadAddress(target); in GetCallableLoadAddress()
333 if (code_addr == LLDB_INVALID_ADDRESS) in GetCallableLoadAddress()
334 return code_addr; in GetCallableLoadAddress()
338 return code_addr; in GetCallableLoadAddress()
352 addr_t code_addr = GetLoadAddress(target); in GetOpcodeLoadAddress() local
353 if (code_addr != LLDB_INVALID_ADDRESS) { in GetOpcodeLoadAddress()
356 code_addr = target->GetOpcodeLoadAddress(code_addr, addr_class); in GetOpcodeLoadAddress()
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Architecture/Mips/
H A DArchitectureMips.cpp47 addr_t ArchitectureMips::GetCallableLoadAddress(addr_t code_addr, in GetCallableLoadAddress() argument
61 if ((code_addr & 2ull) || is_alternate_isa) in GetCallableLoadAddress()
62 return code_addr | 1u; in GetCallableLoadAddress()
63 return code_addr; in GetCallableLoadAddress()
/freebsd-12.1/contrib/gdb/gdb/
H A Dframe.c146 paddr_nz (id.code_addr), in fprint_frame_id()
261 id.code_addr = code_addr; in frame_id_build_special()
267 frame_id_build (CORE_ADDR stack_addr, CORE_ADDR code_addr) in frame_id_build() argument
269 return frame_id_build_special (stack_addr, code_addr, 0); in frame_id_build()
297 else if (l.code_addr == 0 || r.code_addr == 0) in frame_id_eq()
300 else if (l.code_addr != r.code_addr) in frame_id_eq()
1423 prev->this_id.value.code_addr in legacy_get_prev_frame()
1424 = get_pc_function_start (prev->this_id.value.code_addr); in legacy_get_prev_frame()
1667 prev->this_id.value.code_addr in legacy_get_prev_frame()
1668 = get_pc_function_start (prev->this_id.value.code_addr); in legacy_get_prev_frame()
[all …]
H A Dframe.h104 CORE_ADDR code_addr; member
142 CORE_ADDR code_addr);
151 CORE_ADDR code_addr,
H A Dalpha-tdep.c785 CORE_ADDR stack_addr, code_addr; in alpha_sigtramp_frame_this_id() local
798 code_addr = frame_pc_unwind (next_frame); in alpha_sigtramp_frame_this_id()
799 offset = tdep->dynamic_sigtramp_offset (code_addr); in alpha_sigtramp_frame_this_id()
801 code_addr -= offset; in alpha_sigtramp_frame_this_id()
803 code_addr = 0; in alpha_sigtramp_frame_this_id()
806 code_addr = frame_func_unwind (next_frame); in alpha_sigtramp_frame_this_id()
814 *this_id = frame_id_build (stack_addr, code_addr); in alpha_sigtramp_frame_this_id()
H A Ddummy-frame.c399 (*this_prologue_cache) = find_dummy_frame ((*this_id).code_addr, in dummy_frame_this_id()
H A Dia64-tdep.c1577 paddr_nz (this_id->code_addr), in ia64_frame_this_id()
1981 paddr_nz (this_id->code_addr), in ia64_sigtramp_frame_this_id()
2587 (*this_id) = frame_id_build_special (id.stack_addr, id.code_addr, bsp); in ia64_libunwind_frame_this_id()
2592 paddr_nz (id.code_addr), paddr_nz (id.stack_addr), in ia64_libunwind_frame_this_id()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCTrampolineHandler.cpp368 lldb::addr_t code_addr = desc_ptr + start_offset + voffset; in SetUpRegion() local
369 m_descriptors.push_back(VTableDescriptor(flags, code_addr)); in SetUpRegion()
371 if (m_code_start_addr == 0 || code_addr < m_code_start_addr) in SetUpRegion()
372 m_code_start_addr = code_addr; in SetUpRegion()
373 if (code_addr > m_code_end_addr) in SetUpRegion()
374 m_code_end_addr = code_addr; in SetUpRegion()
/freebsd-12.1/sys/contrib/octeon-sdk/
H A Docteon-boot-info.h84 uint64_t code_addr; member