Home
last modified time | relevance | path

Searched refs:bit_size (Results 1 – 25 of 37) sorted by relevance

12

/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DGenericBitset.cpp114 std::optional<uint64_t> bit_size = in GetChildAtIndex() local
116 if (!bit_size || *bit_size == 0) in GetChildAtIndex()
118 chunk = m_first->GetChildAtIndex(idx / *bit_size); in GetChildAtIndex()
126 std::optional<uint64_t> bit_size = in GetChildAtIndex() local
128 if (!bit_size || *bit_size == 0) in GetChildAtIndex()
130 size_t chunk_idx = idx % *bit_size; in GetChildAtIndex()
/freebsd/contrib/processor-trace/libipt/src/
H A Dpt_tnt_cache.c71 uint8_t bit_size; in pt_tnt_cache_update_tnt() local
81 bit_size = packet->bit_size; in pt_tnt_cache_update_tnt()
82 if (!bit_size) in pt_tnt_cache_update_tnt()
86 cache->index = 1ull << (bit_size - 1); in pt_tnt_cache_update_tnt()
H A Dpt_packet.c182 uint8_t bit_size; in pt_pkt_read_tnt() local
187 bit_size = pt_pkt_tnt_bit_size(payload); in pt_pkt_read_tnt()
188 if (!bit_size) in pt_pkt_read_tnt()
192 payload &= ~(1ull << bit_size); in pt_pkt_read_tnt()
195 packet->bit_size = bit_size; in pt_pkt_read_tnt()
H A Dpt_encoder.c327 if (packet->payload.tnt.bit_size >= 7) in pt_enc_next()
334 stop = packet->payload.tnt.bit_size + pt_opm_tnt_8_shr; in pt_enc_next()
351 if (packet->payload.tnt.bit_size >= pt_pl_tnt_64_bits) in pt_enc_next()
354 stop = 1ull << packet->payload.tnt.bit_size; in pt_enc_next()
736 packet.payload.tnt.bit_size = (uint8_t) size; in pt_encode_tnt_8()
747 packet.payload.tnt.bit_size = (uint8_t) size; in pt_encode_tnt_64()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DUdtRecordCompleter.cpp56 m_layout.bit_size = m_cvr.ur.getSize() * 8; in UdtRecordCompleter()
63 m_layout.bit_size = m_cvr.cr.getSize() * 8; in UdtRecordCompleter()
350 uint64_t bit_size = 0; in AddMember() local
356 bit_size = field->bit_size; in AddMember()
380 bit_size = std::max(bit_size, member_offset + member_bit_size); in AddMember()
382 bit_size = std::max(bit_size, member_bit_size); in AddMember()
384 layout.bit_size = bit_size; in AddMember()
401 return bit_size; in AddMember()
475 uint64_t end_offset = offset + fields.back()->bit_size; in ConstructRecord()
494 int64_t bit_size = field->bit_size; in ConstructRecord() local
[all …]
H A DUdtRecordCompleter.h86 uint64_t bit_size; member
96 : kind(kind), name(), bit_offset(0), bit_size(0), qt(), in Member()
98 Member(llvm::StringRef name, uint64_t bit_offset, uint64_t bit_size, in Member()
100 : kind(Field), name(name), bit_offset(bit_offset), bit_size(bit_size), in Member()
106 fields.push_back(std::make_unique<Member>(name, bit_offset, bit_size, qt, in ConvertToStruct()
111 bit_offset = bit_size = bitfield_width = 0; in ConvertToStruct()
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp738 static inline bool QualTypeMatchesBitSize(const uint64_t bit_size, in QualTypeMatchesBitSize() argument
741 return qual_type_bit_size == bit_size; in QualTypeMatchesBitSize()
746 size_t bit_size) { in GetBuiltinTypeForEncodingAndBitSize() argument
750 if (QualTypeMatchesBitSize(bit_size, ast, ast.VoidPtrTy)) in GetBuiltinTypeForEncodingAndBitSize()
755 if (QualTypeMatchesBitSize(bit_size, ast, ast.UnsignedCharTy)) in GetBuiltinTypeForEncodingAndBitSize()
757 if (QualTypeMatchesBitSize(bit_size, ast, ast.UnsignedShortTy)) in GetBuiltinTypeForEncodingAndBitSize()
759 if (QualTypeMatchesBitSize(bit_size, ast, ast.UnsignedIntTy)) in GetBuiltinTypeForEncodingAndBitSize()
761 if (QualTypeMatchesBitSize(bit_size, ast, ast.UnsignedLongTy)) in GetBuiltinTypeForEncodingAndBitSize()
763 if (QualTypeMatchesBitSize(bit_size, ast, ast.UnsignedLongLongTy)) in GetBuiltinTypeForEncodingAndBitSize()
765 if (QualTypeMatchesBitSize(bit_size, ast, ast.UnsignedInt128Ty)) in GetBuiltinTypeForEncodingAndBitSize()
[all …]
H A DTypeSystemClang.h207 size_t bit_size) override;
215 uint32_t dw_ate, uint32_t bit_size);
513 CompilerType GetIntTypeFromBitSize(size_t bit_size, bool is_signed);
520 size_t bit_size);
835 if (std::optional<uint64_t> bit_size = GetBitSize(type, exe_scope)) in GetByteSize() local
836 return (*bit_size + 7) / 8; in GetByteSize()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/X86/
H A DABIMacOSX_i386.cpp168 std::optional<uint64_t> bit_size = compiler_type.GetBitSize(&thread); in GetArgumentValues() local
169 if (bit_size) { in GetArgumentValues()
172 ReadIntegerArgument(value->GetScalar(), *bit_size, is_signed, in GetArgumentValues()
175 ReadIntegerArgument(value->GetScalar(), *bit_size, false, in GetArgumentValues()
H A DABISysV_i386.cpp185 std::optional<uint64_t> bit_size = compiler_type.GetBitSize(&thread); in GetArgumentValues() local
186 if (bit_size) { in GetArgumentValues()
189 ReadIntegerArgument(value->GetScalar(), *bit_size, is_signed, in GetArgumentValues()
192 ReadIntegerArgument(value->GetScalar(), *bit_size, false, in GetArgumentValues()
H A DABIWindows_x86_64.cpp278 std::optional<uint64_t> bit_size = compiler_type.GetBitSize(&thread); in GetArgumentValues() local
279 if (!bit_size) in GetArgumentValues()
284 ReadIntegerArgument(value->GetScalar(), *bit_size, is_signed, thread, in GetArgumentValues()
288 ReadIntegerArgument(value->GetScalar(), *bit_size, false, thread, in GetArgumentValues()
H A DABISysV_x86_64.cpp271 std::optional<uint64_t> bit_size = compiler_type.GetBitSize(&thread); in GetArgumentValues() local
272 if (!bit_size) in GetArgumentValues()
277 ReadIntegerArgument(value->GetScalar(), *bit_size, is_signed, thread, in GetArgumentValues()
281 ReadIntegerArgument(value->GetScalar(), *bit_size, false, thread, in GetArgumentValues()
/freebsd/contrib/llvm-project/lldb/source/Expression/
H A DDWARFExpression.cpp1892 uint32_t bit_size = piece_byte_size * 8; in Evaluate() local
1895 bit_size, bit_offset)) { in Evaluate()
1906 assert(ap_int.getBitWidth() >= bit_size); in Evaluate()
1909 curr_piece.GetScalar() = Scalar(llvm::APInt(bit_size, buf)); in Evaluate()
2088 uint64_t bit_size; in Evaluate() local
2097 bit_size = module_sp->GetArchitecture().GetAddressByteSize() * 8; in Evaluate()
2098 if (!bit_size) in Evaluate()
2111 bit_size = die.GetAttributeValueAsUnsigned(DW_AT_byte_size, 0) * 8; in Evaluate()
2112 if (!bit_size) in Evaluate()
2113 bit_size = die.GetAttributeValueAsUnsigned(DW_AT_bit_size, 0); in Evaluate()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/SystemZ/
H A DABISysV_s390x.cpp359 std::optional<uint64_t> bit_size = compiler_type.GetBitSize(&thread); in GetArgumentValues() local
360 if (!bit_size) in GetArgumentValues()
365 ReadIntegerArgument(value->GetScalar(), *bit_size, is_signed, thread, in GetArgumentValues()
369 ReadIntegerArgument(value->GetScalar(), *bit_size, false, thread, in GetArgumentValues()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/AArch64/
H A DABIMacOSX_arm64.cpp145 std::optional<uint64_t> bit_size = value_type.GetBitSize(&thread); in GetArgumentValues() local
146 if (!bit_size) in GetArgumentValues()
152 bit_width = *bit_size; in GetArgumentValues()
154 bit_width = *bit_size; in GetArgumentValues()
H A DABISysV_arm64.cpp150 std::optional<uint64_t> bit_size = value_type.GetBitSize(&thread); in GetArgumentValues() local
151 if (!bit_size) in GetArgumentValues()
154 bit_width = *bit_size; in GetArgumentValues()
156 bit_width = *bit_size; in GetArgumentValues()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.h261 uint64_t bit_size = 0; member
277 return (bit_size + bit_offset) <= next_bit_offset; in NextBitfieldOffsetIsValid()
292 size_t bit_size = 0; member
H A DDWARFASTParserClang.cpp2155 layout_info.bit_size = type->GetByteSize(nullptr).value_or(0) * 8; in CompleteRecordType()
2156 if (layout_info.bit_size == 0) in CompleteRecordType()
2157 layout_info.bit_size = in CompleteRecordType()
2588 bit_size = form_value.Unsigned(); in MemberAttributes()
2634 bit_size = 0; in MemberAttributes()
2895 if (attrs.bit_size > 0) { in ParseSingleMember()
2898 this_field_info.bit_size = attrs.bit_size; in ParseSingleMember()
2910 this_field_info.bit_offset -= (attrs.bit_offset + attrs.bit_size); in ParseSingleMember()
2955 last_field_info.bit_offset + last_field_info.bit_size; in ParseSingleMember()
2969 unnamed_field_info->bit_size = in ParseSingleMember()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/PowerPC/
H A DABISysV_ppc.cpp398 std::optional<uint64_t> bit_size = compiler_type.GetBitSize(&thread); in GetArgumentValues() local
399 if (!bit_size) in GetArgumentValues()
403 ReadIntegerArgument(value->GetScalar(), *bit_size, is_signed, thread, in GetArgumentValues()
407 ReadIntegerArgument(value->GetScalar(), *bit_size, false, thread, in GetArgumentValues()
H A DABISysV_ppc64.cpp275 std::optional<uint64_t> bit_size = compiler_type.GetBitSize(&thread); in GetArgumentValues() local
276 if (!bit_size) in GetArgumentValues()
281 ReadIntegerArgument(value->GetScalar(), *bit_size, is_signed, thread, in GetArgumentValues()
285 ReadIntegerArgument(value->GetScalar(), *bit_size, false, thread, in GetArgumentValues()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangASTImporter.cpp754 const clang::RecordDecl *record_decl, uint64_t &bit_size, in LayoutRecordType() argument
766 bit_size = pos->second.bit_size; in LayoutRecordType()
779 if (importRecordLayoutFromOrigin(record_decl, bit_size, alignment, in LayoutRecordType()
784 bit_size = 0; in LayoutRecordType()
H A DClangASTImporter.h72 uint64_t bit_size = 0; member
123 const clang::RecordDecl *record_decl, uint64_t &bit_size,
/freebsd/contrib/processor-trace/libipt/test/src/
H A Dptunit-tnt_cache.c169 packet.bit_size = 4ull; in update_tnt()
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DScalar.cpp797 bool Scalar::ExtractBitfield(uint32_t bit_size, uint32_t bit_offset) { in ExtractBitfield() argument
798 if (bit_size == 0) in ExtractBitfield()
808 m_integer = m_integer.extOrTrunc(bit_size).extOrTrunc(8 * GetByteSize()); in ExtractBitfield()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/ARM/
H A DABIMacOSX_arm.cpp1456 std::optional<uint64_t> bit_size = compiler_type.GetBitSize(&thread); in GetArgumentValues() local
1457 if (!bit_size) in GetArgumentValues()
1460 bit_width = *bit_size; in GetArgumentValues()
1462 bit_width = *bit_size; in GetArgumentValues()

12