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

/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Architecture/Arm/
H A DArchitectureArm.cpp131 addr_t ArchitectureArm::GetCallableLoadAddress(addr_t code_addr, argument
145 if ((code_addr & 2u) || is_alternate_isa)
146 return code_addr | 1u;
147 return code_addr;
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Architecture/Mips/
H A DArchitectureMips.cpp48 addr_t ArchitectureMips::GetCallableLoadAddress(addr_t code_addr, argument
62 if ((code_addr & 2ull) || is_alternate_isa)
63 return code_addr | 1u;
64 return code_addr;
/freebsd-13-stable/contrib/llvm-project/lldb/source/Core/
H A DAddress.cpp336 addr_t code_addr = LLDB_INVALID_ADDRESS; local
342 code_addr = processSP->ResolveIndirectFunction(this, error);
344 code_addr = LLDB_INVALID_ADDRESS;
347 code_addr = GetLoadAddress(target);
350 if (code_addr == LLDB_INVALID_ADDRESS)
351 return code_addr;
354 return target->GetCallableLoadAddress(code_addr, GetAddressClass());
355 return code_addr;
369 addr_t code_addr = GetLoadAddress(target); local
370 if (code_addr !
[all...]
/freebsd-13-stable/sys/contrib/octeon-sdk/
H A Docteon-boot-info.h84 uint64_t code_addr; member in struct:__anon10417
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCTrampolineHandler.cpp368 lldb::addr_t code_addr = desc_ptr + start_offset + voffset; local
369 m_descriptors.push_back(VTableDescriptor(flags, code_addr));
371 if (m_code_start_addr == 0 || code_addr < m_code_start_addr)
372 m_code_start_addr = code_addr;
373 if (code_addr > m_code_end_addr)
374 m_code_end_addr = code_addr;

Completed in 177 milliseconds