Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Architecture/Arm/
H A DArchitectureArm.cpp131 addr_t ArchitectureArm::GetCallableLoadAddress(addr_t code_addr, in GetCallableLoadAddress() argument
145 if ((code_addr & 2u) || is_alternate_isa) in GetCallableLoadAddress()
146 return code_addr | 1u; in GetCallableLoadAddress()
147 return code_addr; in GetCallableLoadAddress()
/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DAddress.cpp336 addr_t code_addr = LLDB_INVALID_ADDRESS; in GetCallableLoadAddress() local
342 code_addr = processSP->ResolveIndirectFunction(this, error); in GetCallableLoadAddress()
344 code_addr = LLDB_INVALID_ADDRESS; in GetCallableLoadAddress()
347 code_addr = GetLoadAddress(target); in GetCallableLoadAddress()
350 if (code_addr == LLDB_INVALID_ADDRESS) in GetCallableLoadAddress()
351 return code_addr; in GetCallableLoadAddress()
355 return code_addr; in GetCallableLoadAddress()
369 addr_t code_addr = GetLoadAddress(target); in GetOpcodeLoadAddress() local
370 if (code_addr != LLDB_INVALID_ADDRESS) { in GetOpcodeLoadAddress()
373 code_addr = target->GetOpcodeLoadAddress(code_addr, addr_class); in GetOpcodeLoadAddress()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Architecture/Mips/
H A DArchitectureMips.cpp48 addr_t ArchitectureMips::GetCallableLoadAddress(addr_t code_addr, in GetCallableLoadAddress() argument
62 if ((code_addr & 2ull) || is_alternate_isa) in GetCallableLoadAddress()
63 return code_addr | 1u; in GetCallableLoadAddress()
64 return code_addr; in GetCallableLoadAddress()
/freebsd-13.1/contrib/llvm-project/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-13.1/sys/contrib/octeon-sdk/
H A Docteon-boot-info.h84 uint64_t code_addr; member