Home
last modified time | relevance | path

Searched refs:addr_type (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/lldb/source/Plugins/Language/CPlusPlus/
H A DLibStdcpp.cpp235 AddressType addr_type; in LibStdcppStringSummaryProvider() local
237 valobj.GetAddressOf(scalar_is_load_addr, &addr_type); in LibStdcppStringSummaryProvider()
239 switch (addr_type) { in LibStdcppStringSummaryProvider()
284 AddressType addr_type; in LibStdcppWStringSummaryProvider() local
286 valobj.GetAddressOf(scalar_is_load_addr, &addr_type); in LibStdcppWStringSummaryProvider()
288 switch (addr_type) { in LibStdcppWStringSummaryProvider()
/llvm-project-15.0.7/lldb/source/API/
H A DSBValue.cpp1271 AddressType addr_type; in GetLoadAddress() local
1272 value = value_sp->GetAddressOf(scalar_is_load_address, &addr_type); in GetLoadAddress()
1273 if (addr_type == eAddressTypeFile) { in GetLoadAddress()
1282 } else if (addr_type == eAddressTypeHost || in GetLoadAddress()
1283 addr_type == eAddressTypeInvalid) in GetLoadAddress()
1302 AddressType addr_type; in GetAddress() local
1303 value = value_sp->GetAddressOf(scalar_is_load_address, &addr_type); in GetAddress()
1304 if (addr_type == eAddressTypeFile) { in GetAddress()
1308 } else if (addr_type == eAddressTypeLoad) { in GetAddress()
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectWatchpoint.cpp927 AddressType addr_type; in DoExecute() local
928 addr = valobj_sp->GetAddressOf(false, &addr_type); in DoExecute()
929 if (addr_type == eAddressTypeLoad) { in DoExecute()
/llvm-project-15.0.7/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldELF.cpp60 typedef typename ELFT::uint addr_type; typedef in __anonc5cbbe410111::DyldELFObject
113 shdr->sh_addr = static_cast<addr_type>(Addr); in updateSectionAddress()
125 sym->st_value = static_cast<addr_type>(Addr); in updateSymbolAddress()
144 typedef typename ELFT::uint addr_type; in createRTDyldELFObject() typedef
170 shdr->sh_addr = static_cast<addr_type>(SecLoadAddr); in createRTDyldELFObject()
/llvm-project-15.0.7/lldb/examples/summaries/cocoa/
H A Dobjc_runtime.py693 self.types_cache.addr_type = valobj.GetType(
695 self.types_cache.addr_ptr_type = self.types_cache.addr_type.GetPointerType()
/llvm-project-15.0.7/lldb/source/Core/
H A DValueObject.cpp708 AddressType addr_type; in GetPointeeData() local
709 lldb::addr_t addr = is_pointer_type ? GetPointerValue(&addr_type) in GetPointeeData()
710 : GetAddressOf(true, &addr_type); in GetPointeeData()
712 switch (addr_type) { in GetPointeeData()