Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/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()
/freebsd-14.2/contrib/llvm-project/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()
/freebsd-14.2/contrib/llvm-project/lldb/source/Core/
H A DAddress.cpp339 addr_t code_addr = LLDB_INVALID_ADDRESS; in GetCallableLoadAddress() local
345 code_addr = processSP->ResolveIndirectFunction(this, error); in GetCallableLoadAddress()
347 code_addr = LLDB_INVALID_ADDRESS; in GetCallableLoadAddress()
350 code_addr = GetLoadAddress(target); in GetCallableLoadAddress()
353 if (code_addr == LLDB_INVALID_ADDRESS) in GetCallableLoadAddress()
354 return code_addr; in GetCallableLoadAddress()
358 return code_addr; in GetCallableLoadAddress()
372 addr_t code_addr = GetLoadAddress(target); in GetOpcodeLoadAddress() local
373 if (code_addr != LLDB_INVALID_ADDRESS) { in GetOpcodeLoadAddress()
376 code_addr = target->GetOpcodeLoadAddress(code_addr, addr_class); in GetOpcodeLoadAddress()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCTrampolineHandler.cpp267 lldb::addr_t code_addr = desc_ptr + start_offset + voffset; in SetUpRegion() local
268 m_descriptors.push_back(VTableDescriptor(flags, code_addr)); in SetUpRegion()
270 if (m_code_start_addr == 0 || code_addr < m_code_start_addr) in SetUpRegion()
271 m_code_start_addr = code_addr; in SetUpRegion()
272 if (code_addr > m_code_end_addr) in SetUpRegion()
273 m_code_end_addr = code_addr; in SetUpRegion()