Home
last modified time | relevance | path

Searched refs:info_bits (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCClassDescriptorV2.h41 bool GetTaggedPointerInfo(uint64_t *info_bits = nullptr,
47 bool GetTaggedPointerInfoSigned(uint64_t *info_bits = nullptr,
341 bool GetTaggedPointerInfo(uint64_t *info_bits = nullptr,
344 if (info_bits)
345 *info_bits = GetInfoBits();
353 bool GetTaggedPointerInfoSigned(uint64_t *info_bits = nullptr,
356 if (info_bits)
357 *info_bits = GetInfoBits();
H A DAppleObjCRuntimeV1.h61 bool GetTaggedPointerInfo(uint64_t *info_bits = nullptr,
67 bool GetTaggedPointerInfoSigned(uint64_t *info_bits = nullptr,
H A DAppleObjCRuntimeV2.cpp1072 uint64_t info_bits = 0; in DoExecute() local
1075 if (descriptor_sp->GetTaggedPointerInfo(&info_bits, &value_bits, in DoExecute()
1083 arg_addr, payload, value_bits, info_bits, in DoExecute()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DNSString.cpp90 uint8_t info_bits = process_sp->ReadUnsignedIntegerFromMemory( in NSStringSummaryProvider() local
95 bool is_mutable = (info_bits & 1) == 1; in NSStringSummaryProvider()
96 bool is_inline = (info_bits & 0x60) == 0; in NSStringSummaryProvider()
97 bool has_explicit_length = (info_bits & (1 | 4)) != 4; in NSStringSummaryProvider()
98 bool is_unicode = (info_bits & 0x10) == 0x10; in NSStringSummaryProvider()
100 bool has_null = (info_bits & 8) == 8; in NSStringSummaryProvider()
H A DNSIndexPath.cpp83 uint64_t info_bits(0), value_bits(0), payload(0); in Update() local
85 if (descriptor->GetTaggedPointerInfo(&info_bits, &value_bits, &payload)) { in Update()
H A DCocoa.cpp940 uint64_t info_bits = 0, value_bits = 0; in NSDateSummaryProvider() local
943 if (descriptor->GetTaggedPointerInfo(&info_bits, &value_bits)) { in NSDateSummaryProvider()
944 date_value_bits = ((value_bits << 8) | (info_bits << 4)); in NSDateSummaryProvider()
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/
H A DObjCLanguageRuntime.h102 virtual bool GetTaggedPointerInfo(uint64_t *info_bits = nullptr,
106 virtual bool GetTaggedPointerInfoSigned(uint64_t *info_bits = nullptr,