| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc/ |
| H A D | ABISysV_ppc.cpp | 315 static bool ReadIntegerArgument(Scalar &scalar, unsigned int bit_width, in ReadIntegerArgument() argument 320 if (bit_width > 64) in ReadIntegerArgument() 328 scalar.SignExtend(bit_width); in ReadIntegerArgument() 330 uint32_t byte_size = (bit_width + (8 - 1)) / 8; in ReadIntegerArgument() 469 llvm::Optional<uint64_t> bit_width = in SetReturnValueObject() local 471 if (!bit_width) { in SetReturnValueObject() 475 if (*bit_width <= 64) { in SetReturnValueObject() 665 llvm::Optional<uint64_t> bit_width = return_compiler_type.GetBitSize(&thread); in GetReturnValueObjectImpl() local 666 if (!bit_width) in GetReturnValueObjectImpl() 671 if (*bit_width <= 128) { in GetReturnValueObjectImpl()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-s390x/ |
| H A D | ABISysV_s390x.cpp | 301 static bool ReadIntegerArgument(Scalar &scalar, unsigned int bit_width, in ReadIntegerArgument() argument 306 if (bit_width > 64) in ReadIntegerArgument() 314 scalar.SignExtend(bit_width); in ReadIntegerArgument() 316 uint32_t byte_size = (bit_width + (8 - 1)) / 8; in ReadIntegerArgument() 449 llvm::Optional<uint64_t> bit_width = in SetReturnValueObject() local 451 if (!bit_width) { in SetReturnValueObject() 455 if (*bit_width <= 64) { in SetReturnValueObject()
|
| /freebsd-12.1/contrib/llvm/lib/IR/ |
| H A D | DataLayout.cpp | 108 unsigned pref_align, uint32_t bit_width) { in get() argument 114 retval.TypeBitWidth = bit_width; in get() 457 unsigned pref_align, uint32_t bit_width) { in setAlignment() argument 458 if (!isUInt<24>(bit_width)) in setAlignment() 473 AlignmentsTy::iterator I = findAlignmentLowerBound(align_type, bit_width); in setAlignment() 475 I->AlignType == (unsigned)align_type && I->TypeBitWidth == bit_width) { in setAlignment() 482 pref_align, bit_width)); in setAlignment()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-x86_64/ |
| H A D | ABISysV_x86_64.cpp | 1185 static bool ReadIntegerArgument(Scalar &scalar, unsigned int bit_width, in ReadIntegerArgument() argument 1190 if (bit_width > 64) in ReadIntegerArgument() 1198 scalar.SignExtend(bit_width); in ReadIntegerArgument() 1200 uint32_t byte_size = (bit_width + (8 - 1)) / 8; in ReadIntegerArgument() 1336 llvm::Optional<uint64_t> bit_width = in SetReturnValueObject() local 1338 if (!bit_width) { in SetReturnValueObject() 1342 if (*bit_width <= 64) { in SetReturnValueObject() 1578 llvm::Optional<uint64_t> bit_width = return_compiler_type.GetBitSize(&thread); in GetReturnValueObjectImpl() local 1579 if (!bit_width) in GetReturnValueObjectImpl() 1584 if (*bit_width <= 128) { in GetReturnValueObjectImpl()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm/ |
| H A D | ABISysV_arm.cpp | 1473 size_t bit_width = 0; in GetArgumentValues() local 1477 bit_width = *size; in GetArgumentValues() 1483 if (bit_width <= (exe_ctx.GetProcessRef().GetAddressByteSize() * 8)) { in GetArgumentValues() 1494 reg_value.SignExtend(bit_width); in GetArgumentValues() 1510 const uint32_t arg_byte_size = (bit_width + (8 - 1)) / 8; in GetArgumentValues() 1583 llvm::Optional<uint64_t> bit_width = compiler_type.GetBitSize(&thread); in GetReturnValueObjectImpl() local 1585 if (!bit_width || !byte_size) in GetReturnValueObjectImpl() 1589 switch (*bit_width) { in GetReturnValueObjectImpl() 1657 switch (*bit_width) { in GetReturnValueObjectImpl() 1707 } else if (!GetReturnValuePassedInMemory(thread, reg_ctx, *bit_width / 8, in GetReturnValueObjectImpl()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm/ |
| H A D | ABIMacOSX_arm.cpp | 1472 size_t bit_width = 0; in GetArgumentValues() local 1477 bit_width = *bit_size; in GetArgumentValues() 1479 bit_width = *bit_size; in GetArgumentValues() 1484 if (bit_width <= (exe_ctx.GetProcessRef().GetAddressByteSize() * 8)) { in GetArgumentValues() 1515 reg_value.SignExtend(bit_width); in GetArgumentValues() 1531 const uint32_t arg_byte_size = (bit_width + (8 - 1)) / 8; in GetArgumentValues() 1579 llvm::Optional<uint64_t> bit_width = compiler_type.GetBitSize(&thread); in GetReturnValueObjectImpl() local 1580 if (!bit_width) in GetReturnValueObjectImpl() 1583 switch (*bit_width) { in GetReturnValueObjectImpl()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc64/ |
| H A D | ABISysV_ppc64.cpp | 208 static bool ReadIntegerArgument(Scalar &scalar, unsigned int bit_width, in ReadIntegerArgument() argument 213 if (bit_width > 64) in ReadIntegerArgument() 221 scalar.SignExtend(bit_width); in ReadIntegerArgument() 223 uint32_t byte_size = (bit_width + (8 - 1)) / 8; in ReadIntegerArgument() 353 llvm::Optional<uint64_t> bit_width = in SetReturnValueObject() local 355 if (!bit_width) { in SetReturnValueObject() 359 if (*bit_width <= 64) { in SetReturnValueObject()
|
| /freebsd-12.1/contrib/llvm/include/llvm/IR/ |
| H A D | DataLayout.h | 79 unsigned pref_align, uint32_t bit_width); 167 unsigned pref_align, uint32_t bit_width); 168 unsigned getAlignmentInfo(AlignTypeEnum align_type, uint32_t bit_width,
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-i386/ |
| H A D | ABIMacOSX_i386.cpp | 784 static bool ReadIntegerArgument(Scalar &scalar, unsigned int bit_width, in ReadIntegerArgument() argument 788 uint32_t byte_size = (bit_width + (8 - 1)) / 8; in ReadIntegerArgument() 936 llvm::Optional<uint64_t> bit_width = compiler_type.GetBitSize(&thread); in GetReturnValueObjectImpl() local 937 if (!bit_width) in GetReturnValueObjectImpl() 944 switch (*bit_width) { in GetReturnValueObjectImpl()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips/ |
| H A D | ABISysV_mips.cpp | 815 llvm::Optional<uint64_t> bit_width = return_compiler_type.GetBitSize(&thread); in GetReturnValueObjectImpl() local 816 if (!bit_width) in GetReturnValueObjectImpl() 819 switch (*bit_width) { in GetReturnValueObjectImpl() 878 switch (*bit_width) { in GetReturnValueObjectImpl() 910 switch (*bit_width) { in GetReturnValueObjectImpl()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/ |
| H A D | CompilerType.cpp | 920 llvm::Optional<uint64_t> bit_width = GetBitSize(nullptr); in SetValueFromScalar() local 921 if (!bit_width) in SetValueFromScalar() 925 if ((*bit_width % 8) != 0) in SetValueFromScalar() 928 const uint64_t byte_size = (*bit_width + 7) / 8; in SetValueFromScalar()
|
| H A D | ClangASTContext.cpp | 7896 clang::Expr *bit_width = nullptr; in AddFieldToRecordType() local 7900 bit_width = new (*clang_ast) in AddFieldToRecordType() 7913 bit_width, // BitWidth in AddFieldToRecordType() 7956 ConvertAccessTypeToObjCIvarAccessControl(access), bit_width, in AddFieldToRecordType()
|
| /freebsd-12.1/sys/xen/interface/ |
| H A D | platform.h | 384 uint32_t bit_width; member 427 uint8_t bit_width; member
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm64/ |
| H A D | ABISysV_arm64.cpp | 1769 size_t bit_width = 0; in GetArgumentValues() local 1774 bit_width = *bit_size; in GetArgumentValues() 1776 bit_width = *bit_size; in GetArgumentValues() 1782 if (bit_width <= (exe_ctx.GetProcessRef().GetAddressByteSize() * 8)) { in GetArgumentValues() 1794 reg_value.SignExtend(bit_width); in GetArgumentValues() 1811 const uint32_t arg_byte_size = (bit_width + (8 - 1)) / 8; in GetArgumentValues()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm64/ |
| H A D | ABIMacOSX_arm64.cpp | 1770 size_t bit_width = 0; in GetArgumentValues() local 1772 bit_width = *bit_size; in GetArgumentValues() 1774 bit_width = *bit_size; in GetArgumentValues() 1780 if (bit_width <= (exe_ctx.GetProcessRef().GetAddressByteSize() * 8)) { in GetArgumentValues() 1823 reg_value.SignExtend(bit_width); in GetArgumentValues() 1839 const uint32_t arg_byte_size = (bit_width + (8 - 1)) / 8; in GetArgumentValues()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-i386/ |
| H A D | ABISysV_i386.cpp | 270 static bool ReadIntegerArgument(Scalar &scalar, unsigned int bit_width, in ReadIntegerArgument() argument 273 uint32_t byte_size = (bit_width + (8 - 1)) / 8; in ReadIntegerArgument()
|
| /freebsd-12.1/sys/dev/qlnx/qlnxe/ |
| H A D | ecore_dbg_fw_funcs.c | 3373 u32 bit_width, in ecore_grc_dump_mem_hdr() argument 3386 if (bit_width) in ecore_grc_dump_mem_hdr() 3420 if (bit_width) in ecore_grc_dump_mem_hdr() 3421 offset += ecore_dump_num_param(dump_buf + offset, dump, "width", bit_width); in ecore_grc_dump_mem_hdr() 3454 u32 bit_width, in ecore_grc_dump_mem() argument 3462 …offset += ecore_grc_dump_mem_hdr(p_hwfn, dump_buf + offset, dump, name, addr, len, bit_width, pack… in ecore_grc_dump_mem()
|
| /freebsd-12.1/sys/dev/drm2/radeon/ |
| H A D | si.c | 1439 static u32 si_create_bitmask(u32 bit_width) in si_create_bitmask() argument 1443 for (i = 0; i < bit_width; i++) { in si_create_bitmask()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/ |
| H A D | SemaExpr.cpp | 3410 unsigned bit_width = Context.getTypeInfo(Ty).Width; in ActOnNumericConstant() local 3412 llvm::APInt Val(bit_width, 0, isSigned); in ActOnNumericConstant()
|