Home
last modified time | relevance | path

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

/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()
/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()
/llvm-project/lldb/source/Core/
H A DAddress.cpp338 addr_t code_addr = LLDB_INVALID_ADDRESS; in GetCallableLoadAddress()
344 code_addr = processSP->ResolveIndirectFunction(this, error); in GetCallableLoadAddress()
346 code_addr = LLDB_INVALID_ADDRESS; in GetCallableLoadAddress()
349 code_addr = GetLoadAddress(target); in GetCallableLoadAddress()
352 if (code_addr == LLDB_INVALID_ADDRESS) in GetCallableLoadAddress()
353 return code_addr; in GetCallableLoadAddress()
356 return target->GetCallableLoadAddress(code_addr, GetAddressClass()); in GetCallableLoadAddress()
357 return code_addr; in GetCallableLoadAddress()
371 addr_t code_addr = GetLoadAddress(target); in GetOpcodeLoadAddress()
372 if (code_addr ! in GetOpcodeLoadAddress() local
339 addr_t code_addr = LLDB_INVALID_ADDRESS; GetCallableLoadAddress() local
[all...]
/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()