Searched refs:bit_width (Results 1 - 18 of 18) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ABI/X86/
H A DABIWindows_x86_64.cpp204 static bool ReadIntegerArgument(Scalar &scalar, unsigned int bit_width, argument
209 if (bit_width > 64)
217 scalar.SignExtend(bit_width);
220 uint32_t byte_size = (bit_width + (CHAR_BIT - 1)) / CHAR_BIT;
346 llvm::Optional<uint64_t> bit_width = local
348 if (!bit_width) {
352 if (*bit_width <= 64) {
613 llvm::Optional<uint64_t> bit_width = return_compiler_type.GetBitSize(&thread); local
614 if (!bit_width) {
635 bool is_memory = *bit_width > max_register_value_bit_widt
[all...]
H A DABIMacOSX_i386.cpp124 static bool ReadIntegerArgument(Scalar &scalar, unsigned int bit_width, argument
128 uint32_t byte_size = (bit_width + (8 - 1)) / 8;
276 llvm::Optional<uint64_t> bit_width = compiler_type.GetBitSize(&thread); local
277 if (!bit_width)
284 switch (*bit_width) {
H A DABISysV_x86_64.cpp188 static bool ReadIntegerArgument(Scalar &scalar, unsigned int bit_width, argument
193 if (bit_width > 64)
201 scalar.SignExtend(bit_width);
203 uint32_t byte_size = (bit_width + (8 - 1)) / 8;
339 llvm::Optional<uint64_t> bit_width = local
341 if (!bit_width) {
345 if (*bit_width <= 64) {
632 llvm::Optional<uint64_t> bit_width = return_compiler_type.GetBitSize(&thread);
633 if (!bit_width)
642 *bit_width <
[all...]
H A DABISysV_i386.cpp143 static bool ReadIntegerArgument(Scalar &scalar, unsigned int bit_width, argument
146 uint32_t byte_size = (bit_width + (8 - 1)) / 8;
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SystemZ/
H A DABISysV_s390x.cpp295 static bool ReadIntegerArgument(Scalar &scalar, unsigned int bit_width, argument
300 if (bit_width > 64)
308 scalar.SignExtend(bit_width);
310 uint32_t byte_size = (bit_width + (8 - 1)) / 8;
443 llvm::Optional<uint64_t> bit_width = local
445 if (!bit_width) {
449 if (*bit_width <= 64) {
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ABI/PowerPC/
H A DABISysV_ppc.cpp311 static bool ReadIntegerArgument(Scalar &scalar, unsigned int bit_width, argument
316 if (bit_width > 64)
324 scalar.SignExtend(bit_width);
326 uint32_t byte_size = (bit_width + (8 - 1)) / 8;
465 llvm::Optional<uint64_t> bit_width = local
467 if (!bit_width) {
471 if (*bit_width <= 64) {
661 llvm::Optional<uint64_t> bit_width = return_compiler_type.GetBitSize(&thread);
662 if (!bit_width)
667 if (*bit_width <
[all...]
H A DABISysV_ppc64.cpp198 static bool ReadIntegerArgument(Scalar &scalar, unsigned int bit_width, argument
203 if (bit_width > 64)
211 scalar.SignExtend(bit_width);
213 uint32_t byte_size = (bit_width + (8 - 1)) / 8;
343 llvm::Optional<uint64_t> bit_width = local
345 if (!bit_width) {
349 if (*bit_width <= 64) {
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ABI/AArch64/
H A DABIMacOSX_arm64.cpp148 size_t bit_width = 0; local
150 bit_width = *bit_size;
152 bit_width = *bit_size;
158 if (bit_width <= (exe_ctx.GetProcessRef().GetAddressByteSize() * 8)) {
201 reg_value.SignExtend(bit_width);
217 const uint32_t arg_byte_size = (bit_width + (8 - 1)) / 8;
H A DABISysV_arm64.cpp147 size_t bit_width = 0; local
152 bit_width = *bit_size;
154 bit_width = *bit_size;
160 if (bit_width <= (exe_ctx.GetProcessRef().GetAddressByteSize() * 8)) {
172 reg_value.SignExtend(bit_width);
189 const uint32_t arg_byte_size = (bit_width + (8 - 1)) / 8;
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ABI/ARM/
H A DABISysV_arm.cpp1473 size_t bit_width = 0; local
1477 bit_width = *size;
1483 if (bit_width <= (exe_ctx.GetProcessRef().GetAddressByteSize() * 8)) {
1494 reg_value.SignExtend(bit_width);
1510 const uint32_t arg_byte_size = (bit_width + (8 - 1)) / 8;
1583 llvm::Optional<uint64_t> bit_width = compiler_type.GetBitSize(&thread); local
1585 if (!bit_width || !byte_size)
1589 switch (*bit_width) {
1657 switch (*bit_width) {
1707 } else if (!GetReturnValuePassedInMemory(thread, reg_ctx, *bit_width /
[all...]
H A DABIMacOSX_arm.cpp1470 size_t bit_width = 0; local
1475 bit_width = *bit_size;
1477 bit_width = *bit_size;
1482 if (bit_width <= (exe_ctx.GetProcessRef().GetAddressByteSize() * 8)) {
1513 reg_value.SignExtend(bit_width);
1529 const uint32_t arg_byte_size = (bit_width + (8 - 1)) / 8;
1577 llvm::Optional<uint64_t> bit_width = compiler_type.GetBitSize(&thread); local
1578 if (!bit_width)
1581 switch (*bit_width) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DDataLayout.cpp103 Align pref_align, uint32_t bit_width) {
109 retval.TypeBitWidth = bit_width;
491 Align pref_align, uint32_t bit_width) {
497 if (!isUInt<24>(bit_width))
503 AlignmentsTy::iterator I = findAlignmentLowerBound(align_type, bit_width);
505 I->AlignType == (unsigned)align_type && I->TypeBitWidth == bit_width) {
512 pref_align, bit_width));
102 get(AlignTypeEnum align_type, Align abi_align, Align pref_align, uint32_t bit_width) argument
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DDataLayout.h79 Align pref_align, uint32_t bit_width);
178 uint32_t bit_width);
179 Align getAlignmentInfo(AlignTypeEnum align_type, uint32_t bit_width,
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ABI/Mips/
H A DABISysV_mips.cpp808 llvm::Optional<uint64_t> bit_width = return_compiler_type.GetBitSize(&thread); local
809 if (!bit_width)
812 switch (*bit_width) {
871 switch (*bit_width) {
903 switch (*bit_width) {
/freebsd-13-stable/sys/xen/interface/
H A Dplatform.h390 uint32_t bit_width; member in struct:xen_power_register
433 uint8_t bit_width; member in struct:xen_pct_register
/freebsd-13-stable/sys/dev/qlnx/qlnxe/
H A Decore_dbg_fw_funcs.c3357 u32 bit_width,
3370 if (bit_width)
3402 if (bit_width)
3403 offset += ecore_dump_num_param(dump_buf + offset, dump, "width", bit_width);
3436 u32 bit_width,
3444 offset += ecore_grc_dump_mem_hdr(p_hwfn, dump_buf + offset, dump, name, addr, len, bit_width, packed, mem_group, is_storm, storm_letter);
3351 ecore_grc_dump_mem_hdr(struct ecore_hwfn *p_hwfn, u32 *dump_buf, bool dump, const char *name, u32 addr, u32 len, u32 bit_width, bool packed, const char *mem_group, bool is_storm, char storm_letter) argument
3428 ecore_grc_dump_mem(struct ecore_hwfn *p_hwfn, struct ecore_ptt *p_ptt, u32 *dump_buf, bool dump, const char *name, u32 addr, u32 len, bool wide_bus, u32 bit_width, bool packed, const char *mem_group, bool is_storm, char storm_letter) argument
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp7085 clang::Expr *bit_width = nullptr; local
7089 bit_width = new (clang_ast)
7100 if (bit_width)
7101 field->setBitWidth(bit_width);
7140 if (bit_width)
7141 ivar->setBitWidth(bit_width);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaExpr.cpp3765 unsigned bit_width = Context.getTypeInfo(Ty).Width; local
3767 llvm::APInt Val(bit_width, 0, isSigned);

Completed in 449 milliseconds