/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/ |
H A D | GenericBitset.cpp | 114 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 D | pt_tnt_cache.c | 71 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 D | pt_packet.c | 182 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 D | pt_encoder.c | 327 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 D | UdtRecordCompleter.cpp | 56 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 D | UdtRecordCompleter.h | 86 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 D | TypeSystemClang.cpp | 738 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 D | TypeSystemClang.h | 207 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 D | ABIMacOSX_i386.cpp | 168 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 D | ABISysV_i386.cpp | 185 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 D | ABIWindows_x86_64.cpp | 278 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 D | ABISysV_x86_64.cpp | 271 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 D | DWARFExpression.cpp | 1892 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 D | ABISysV_s390x.cpp | 359 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 D | ABIMacOSX_arm64.cpp | 145 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 D | ABISysV_arm64.cpp | 150 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 D | DWARFASTParserClang.h | 261 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 D | DWARFASTParserClang.cpp | 2155 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 D | ABISysV_ppc.cpp | 398 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 D | ABISysV_ppc64.cpp | 275 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 D | ClangASTImporter.cpp | 754 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 D | ClangASTImporter.h | 72 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 D | ptunit-tnt_cache.c | 169 packet.bit_size = 4ull; in update_tnt()
|
/freebsd/contrib/llvm-project/lldb/source/Utility/ |
H A D | Scalar.cpp | 797 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 D | ABIMacOSX_arm.cpp | 1456 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()
|