Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/examples/python/
H A Ddiagnose_nsstring.py113 info_bits = dumped.GetChildMemberWithName("_cfinfo").GetChildAtIndex(
115 is_mutable = (info_bits & 1) == 1
116 is_inline = (info_bits & 0x60) == 0
117 has_explicit_length = (info_bits & (1 | 4)) != 4
118 is_unicode = (info_bits & 0x10) == 0x10
122 has_null = (info_bits & 8) == 8
125 …(info_bits, "yes" if is_mutable else "no", "yes" if is_inline else "no", "yes" if has_explicit_len…
/llvm-project-15.0.7/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCClassDescriptorV2.h38 bool GetTaggedPointerInfo(uint64_t *info_bits = nullptr,
44 bool GetTaggedPointerInfoSigned(uint64_t *info_bits = nullptr,
305 bool GetTaggedPointerInfo(uint64_t *info_bits = nullptr,
308 if (info_bits)
309 *info_bits = GetInfoBits();
317 bool GetTaggedPointerInfoSigned(uint64_t *info_bits = nullptr,
320 if (info_bits)
321 *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.cpp1076 uint64_t info_bits = 0; in DoExecute() local
1079 if (descriptor_sp->GetTaggedPointerInfo(&info_bits, &value_bits, in DoExecute()
1087 arg_addr, payload, value_bits, info_bits, in DoExecute()
/llvm-project-15.0.7/lldb/examples/summaries/cocoa/
H A DNSNumber.py36 def __init__(self, valobj, info_bits, data, params): argument
40 self.info_bits = info_bits
54 if self.info_bits == 0:
57 if self.info_bits == 4:
60 if self.info_bits == 8:
63 if self.info_bits == 12:
66 return 'unexpected value:(info=' + str(self.info_bits) + \
227 valobj, class_data.info_bits(), class_data.value(), class_data.sys_params)
H A DCFString.py305 return (self.info_bits & 1) == 1
309 return (self.info_bits & 0x60) == 0
316 return (self.info_bits & (1 | 4)) != 4
324 return self.info_bits == 0
328 return (self.info_bits & 0x10) == 0x10
343 self.info_bits = self.read_info_bits()
344 if self.info_bits is None:
H A DNSDate.py71 def __init__(self, valobj, info_bits, data, params): argument
78 self.data = ((data << 8) | (info_bits << 4))
230 valobj, class_data.info_bits(), class_data.value(), class_data.sys_params)
H A Dobjc_runtime.py561 def info_bits(self): member in TaggedClass_Data
/llvm-project-15.0.7/lldb/source/Plugins/Language/ObjC/
H A DNSString.cpp85 uint8_t info_bits = process_sp->ReadUnsignedIntegerFromMemory( in NSStringSummaryProvider() local
90 bool is_mutable = (info_bits & 1) == 1; in NSStringSummaryProvider()
91 bool is_inline = (info_bits & 0x60) == 0; in NSStringSummaryProvider()
92 bool has_explicit_length = (info_bits & (1 | 4)) != 4; in NSStringSummaryProvider()
93 bool is_unicode = (info_bits & 0x10) == 0x10; in NSStringSummaryProvider()
95 bool has_null = (info_bits & 8) == 8; in NSStringSummaryProvider()
H A DNSIndexPath.cpp81 uint64_t info_bits(0), value_bits(0), payload(0); in Update() local
83 if (descriptor->GetTaggedPointerInfo(&info_bits, &value_bits, &payload)) { in Update()
H A DCocoa.cpp930 uint64_t info_bits = 0, value_bits = 0; in NSDateSummaryProvider() local
933 if (descriptor->GetTaggedPointerInfo(&info_bits, &value_bits)) { in NSDateSummaryProvider()
934 date_value_bits = ((value_bits << 8) | (info_bits << 4)); in NSDateSummaryProvider()
/llvm-project-15.0.7/lldb/source/Plugins/LanguageRuntime/ObjC/
H A DObjCLanguageRuntime.h94 virtual bool GetTaggedPointerInfo(uint64_t *info_bits = nullptr,
98 virtual bool GetTaggedPointerInfoSigned(uint64_t *info_bits = nullptr,