| /openbsd-src/gnu/usr.bin/gcc/gcc/ |
| H A D | expmed.c | 288 store_bit_field (str_rtx, bitsize, bitnum, fieldmode, value, total_size) in store_bit_field() argument 290 unsigned HOST_WIDE_INT bitsize; 346 && bitsize == GET_MODE_BITSIZE (fieldmode) 352 || (offset * BITS_PER_UNIT % bitsize == 0 416 && (BYTES_BIG_ENDIAN ? bitpos + bitsize == unit : bitpos == 0) 417 && bitsize == GET_MODE_BITSIZE (fieldmode) 458 if (bitsize > BITS_PER_WORD) 467 unsigned int nwords = (bitsize + (BITS_PER_WORD - 1)) / BITS_PER_WORD; 483 ? MAX ((int) bitsize - ((int) i + 1) 489 bitsize - i * BITS_PER_WORD), [all …]
|
| H A D | expr.c | 2571 unsigned HOST_WIDE_INT bitsize = MIN (TYPE_ALIGN (type), BITS_PER_WORD); local 2606 bitpos += bitsize, xbitpos += bitsize) 2623 store_bit_field (dst, bitsize, bitpos % BITS_PER_WORD, word_mode, 2624 extract_bit_field (src, bitsize, 4104 HOST_WIDE_INT bitsize, bitpos; local 4112 tem = get_inner_reference (to, &bitsize, &bitpos, &offset, &mode1, 4143 && bitsize > 0 4144 && (bitpos % bitsize) == 0 4145 && (bitsize % GET_MODE_ALIGNMENT (mode1)) == 0 4194 result = store_field (to_rtx, bitsize, bitpos, mode1, from, [all …]
|
| /openbsd-src/gnu/gcc/gcc/ |
| H A D | expmed.c | 346 store_bit_field (rtx str_rtx, unsigned HOST_WIDE_INT bitsize, in store_bit_field() argument 401 && bitsize == GET_MODE_BITSIZE (GET_MODE_INNER (GET_MODE (op0))) in store_bit_field() 453 && bitsize == GET_MODE_BITSIZE (fieldmode) in store_bit_field() 459 || (offset * BITS_PER_UNIT % bitsize == 0 in store_bit_field() 510 && (BYTES_BIG_ENDIAN ? bitpos + bitsize == unit : bitpos == 0) in store_bit_field() 511 && bitsize == GET_MODE_BITSIZE (fieldmode) in store_bit_field() 550 if (bitsize > BITS_PER_WORD) in store_bit_field() 559 unsigned int nwords = (bitsize + (BITS_PER_WORD - 1)) / BITS_PER_WORD; in store_bit_field() 577 ? MAX ((int) bitsize - ((int) i + 1) in store_bit_field() 583 bitsize - i * BITS_PER_WORD), in store_bit_field() [all …]
|
| H A D | tree-vect-generic.c | 105 tree t, tree bitsize, tree bitpos) in tree_vec_extract() argument 108 return gimplify_build3 (bsi, BIT_FIELD_REF, type, t, bitsize, bitpos); in tree_vec_extract() 115 tree b ATTRIBUTE_UNUSED, tree bitpos, tree bitsize, in do_unop() argument 118 a = tree_vec_extract (bsi, inner_type, a, bitsize, bitpos); in do_unop() 124 tree bitpos, tree bitsize, enum tree_code code) in do_binop() argument 126 a = tree_vec_extract (bsi, inner_type, a, bitsize, bitpos); in do_binop() 127 b = tree_vec_extract (bsi, inner_type, b, bitsize, bitpos); in do_binop() 146 tree bitpos ATTRIBUTE_UNUSED, tree bitsize ATTRIBUTE_UNUSED, in do_plus_minus() 157 a = tree_vec_extract (bsi, word_type, a, bitsize, bitpos); in do_plus_minus() 158 b = tree_vec_extract (bsi, word_type, b, bitsize, bitpos); in do_plus_minus() [all …]
|
| H A D | expr.c | 2066 unsigned HOST_WIDE_INT bitsize = MIN (TYPE_ALIGN (type), BITS_PER_WORD); in copy_blkmode_from_reg() local 2108 bitpos += bitsize, xbitpos += bitsize) in copy_blkmode_from_reg() 2125 store_bit_field (dst, bitsize, bitpos % BITS_PER_WORD, word_mode, in copy_blkmode_from_reg() 2126 extract_bit_field (src, bitsize, in copy_blkmode_from_reg() 3879 optimize_bitfield_assignment_op (unsigned HOST_WIDE_INT bitsize, in optimize_bitfield_assignment_op() argument 3891 || bitsize >= BITS_PER_WORD in optimize_bitfield_assignment_op() 3915 str_mode = get_best_mode (bitsize, bitpos, in optimize_bitfield_assignment_op() 3931 if (bitsize >= str_bitsize) in optimize_bitfield_assignment_op() 3935 if (bitpos + bitsize > str_bitsize) in optimize_bitfield_assignment_op() 3939 bitpos = str_bitsize - bitpos - bitsize; in optimize_bitfield_assignment_op() [all …]
|
| H A D | tree-dfa.c | 865 HOST_WIDE_INT bitsize = -1; in get_ref_base_and_extent() local 884 bitsize = GET_MODE_BITSIZE (mode); in get_ref_base_and_extent() 889 bitsize = -1; in get_ref_base_and_extent() 891 bitsize = TREE_INT_CST_LOW (size_tree); in get_ref_base_and_extent() 896 maxsize = bitsize; in get_ref_base_and_extent() 994 bitsize_int (bitsize)); in get_ref_base_and_extent() 1028 *psize = bitsize; in get_ref_base_and_extent()
|
| H A D | stor-layout.c | 1047 HOST_WIDE_INT bitsize = tree_low_cst (DECL_SIZE (field), 1); in place_field() local 1049 if (rli->remaining_in_alignment < bitsize) in place_field() 1058 if (typesize < bitsize) in place_field() 1061 rli->remaining_in_alignment = typesize - bitsize; in place_field() 1064 rli->remaining_in_alignment -= bitsize; in place_field() 1126 HOST_WIDE_INT bitsize = tree_low_cst (DECL_SIZE (field), 1); in place_field() local 1130 if (typesize < bitsize) in place_field() 1133 rli->remaining_in_alignment = typesize - bitsize; in place_field() 2128 get_best_mode (int bitsize, int bitpos, unsigned int align, in get_best_mode() argument 2139 if ((bitpos % unit) + bitsize <= unit) in get_best_mode() [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/SystemZ/ |
| H A D | SystemZOperands.td | 92 class AddressAsmOperand<string format, string bitsize, string dispsize, 95 let Name = format#bitsize#"Disp"#dispsize#length; 96 let ParserMethod = "parse"#format#bitsize; 104 class AddressOperand<string bitsize, string dispsize, string length, 106 : Operand<!cast<ValueType>("i"#bitsize)> { 110 "decode"#format#bitsize#"Disp"#dispsize#length#"Operand"; 114 !cast<AddressAsmOperand>(format#bitsize#"Disp"#dispsize#length); 126 class AddressingMode<string seltype, string bitsize, string dispsize, 129 : ComplexPattern<!cast<ValueType>("i"#bitsize), numops, 132 AddressOperand<bitsize, dispsize, length, format, operands>; [all …]
|
| /openbsd-src/gnu/usr.bin/binutils/gdb/ |
| H A D | values.c | 437 int bitsize, struct value *newval) in set_internalvar_component() argument 441 if (bitsize) in set_internalvar_component() 443 bitpos, bitsize); in set_internalvar_component() 1036 int bitsize = TYPE_FIELD_BITSIZE (type, fieldno); in unpack_field_as_long() local 1047 lsbcount = (sizeof val * 8 - bitpos % 8 - bitsize); in unpack_field_as_long() 1055 if ((bitsize > 0) && (bitsize < 8 * (int) sizeof (val))) in unpack_field_as_long() 1057 valmask = (((ULONGEST) 1) << bitsize) - 1; in unpack_field_as_long() 1076 modify_field (char *addr, LONGEST fieldval, int bitpos, int bitsize) in modify_field() argument 1082 if (bitsize < (8 * (int) sizeof (fieldval)) in modify_field() 1083 && (~fieldval & ~((1 << (bitsize - 1)) - 1)) == 0) in modify_field() [all …]
|
| H A D | ada-typeprint.c | 366 int bitsize; in print_array_type() local 369 bitsize = 0; in print_array_type() 390 bitsize = 0; in print_array_type() 400 bitsize = TYPE_FIELD_BITSIZE (arr_type, 0); in print_array_type() 416 bitsize = TYPE_FIELD_BITSIZE (arr_type, 0); in print_array_type() 432 if (bitsize > 0) in print_array_type() 433 fprintf_filtered (stream, " <packed: %d-bit elements>", bitsize); in print_array_type()
|
| H A D | ada-valprint.c | 150 unsigned long bitsize = TYPE_FIELD_BITSIZE (type, 0); in val_print_packed_array_elements() local 188 (i0 * bitsize) / HOST_CHAR_BIT, in val_print_packed_array_elements() 189 (i0 * bitsize) % HOST_CHAR_BIT, in val_print_packed_array_elements() 190 bitsize, elttype); in val_print_packed_array_elements() 197 (i * bitsize) / HOST_CHAR_BIT, in val_print_packed_array_elements() 198 (i * bitsize) % HOST_CHAR_BIT, in val_print_packed_array_elements() 199 bitsize, elttype); in val_print_packed_array_elements()
|
| H A D | value.h | 74 int bitsize; member 222 #define VALUE_BITSIZE(val) (val)->bitsize 455 int bitpos, int bitsize, 497 int bitsize);
|
| /openbsd-src/gnu/usr.bin/binutils-2.17/bfd/ |
| H A D | elf32-d30v.c | 114 if (howto->pc_relative && howto->bitsize == 32) in bfd_elf_d30v_reloc() 213 mask = (1 << howto->bitsize) - 1; in bfd_elf_d30v_reloc_21() 214 if (howto->bitsize == 6) in bfd_elf_d30v_reloc_21() 216 max = (1 << (howto->bitsize + 2)) - 1; in bfd_elf_d30v_reloc_21() 220 if (howto->bitsize == 6) in bfd_elf_d30v_reloc_21() 243 if (howto->bitsize == 6) in bfd_elf_d30v_reloc_21()
|
| H A D | cpu-ns32k.c | 392 bfd_signed_vma reloc_signed_max = (1 << (howto->bitsize - 1)) - 1; 413 (((1 << (howto->bitsize - 1)) - 1) << 1) | 1; 424 bfd_vma reloc_bits = (((1 << (howto->bitsize - 1)) - 1) << 1) | 1; 693 bfd_signed_vma reloc_signed_max = (1 << (howto->bitsize - 1)) - 1; 707 (((1 << (howto->bitsize - 1)) - 1) << 1) | 1; 718 bfd_vma reloc_bits = (((1 << (howto->bitsize - 1)) - 1) << 1) | 1;
|
| H A D | coff-apollo.c | 81 switch (internal->bitsize) 90 switch (internal->bitsize)
|
| H A D | nlm32-ppc.c | 496 && ((l_rtype >> 8) & 0x1f) == rel->howto->bitsize - 1); in nlm_powerpc_read_reloc() 672 || rel->howto->bitsize != 32 in nlm_powerpc_write_import() 779 && howto->bitsize == rel->howto->bitsize in nlm_powerpc_write_reloc() 801 l_rtype |= (howto->bitsize - 1) << 8; in nlm_powerpc_write_reloc()
|
| H A D | nlm32-i386.c | 157 || rel->howto->bitsize != 32 in nlm_i386_write_import() 281 && rel->howto->bitsize == 32 in nlm_i386_mangle_relocs() 305 && rel->howto->bitsize == 32 in nlm_i386_mangle_relocs()
|
| H A D | reloc.c | 492 unsigned int bitsize, in bfd_check_overflow() argument 504 fieldmask = N_ONES (bitsize); in bfd_check_overflow() 806 howto->bitsize, in bfd_perform_relocation() 1185 howto->bitsize, in bfd_install_relocation() 1434 fieldmask = N_ONES (howto->bitsize); in _bfd_relocate_contents()
|
| /openbsd-src/gnu/usr.bin/binutils/bfd/ |
| H A D | elf32-d30v.c | 336 if (howto->pc_relative && howto->bitsize == 32) 436 mask = (1 << howto->bitsize) - 1; 437 if (howto->bitsize == 6) 439 max = (1 << (howto->bitsize + 2)) - 1; 443 if (howto->bitsize == 6) 466 if (howto->bitsize == 6)
|
| H A D | cpu-ns32k.c | 394 bfd_signed_vma reloc_signed_max = (1 << (howto->bitsize - 1)) - 1; 415 (((1 << (howto->bitsize - 1)) - 1) << 1) | 1; 426 bfd_vma reloc_bits = (((1 << (howto->bitsize - 1)) - 1) << 1) | 1; 695 bfd_signed_vma reloc_signed_max = (1 << (howto->bitsize - 1)) - 1; 709 (((1 << (howto->bitsize - 1)) - 1) << 1) | 1; 720 bfd_vma reloc_bits = (((1 << (howto->bitsize - 1)) - 1) << 1) | 1;
|
| H A D | coff-apollo.c | 81 switch (internal->bitsize) 90 switch (internal->bitsize)
|
| H A D | nlm32-ppc.c | 617 && ((l_rtype >> 8) & 0x1f) == rel->howto->bitsize - 1); 721 || rel->howto->bitsize != 32 829 && howto->bitsize == rel->howto->bitsize 851 l_rtype |= (howto->bitsize - 1) << 8;
|
| H A D | reloc.c | 491 unsigned int bitsize, in bfd_check_overflow() argument 505 fieldmask = N_ONES (bitsize); in bfd_check_overflow() 814 howto->bitsize, in bfd_perform_relocation() 1193 howto->bitsize, in bfd_install_relocation() 1442 fieldmask = N_ONES (howto->bitsize); in _bfd_relocate_contents()
|
| H A D | nlm32-i386.c | 172 || rel->howto->bitsize != 32 297 && rel->howto->bitsize == 32 321 && rel->howto->bitsize == 32
|
| /openbsd-src/gnu/llvm/lldb/docs/ |
| H A D | lldb-gdb-remote.txt | 599 read packet: $name:rax;bitsize:64;offset:0;encoding:uint;format:hex;set:General Purpose Registers;g… 601 read packet: $name:rbx;bitsize:64;offset:8;encoding:uint;format:hex;set:General Purpose Registers;g… 603 read packet: $name:rcx;bitsize:64;offset:16;encoding:uint;format:hex;set:General Purpose Registers;… 605 read packet: $name:rdx;bitsize:64;offset:24;encoding:uint;format:hex;set:General Purpose Registers;… 607 read packet: $name:rdi;bitsize:64;offset:32;encoding:uint;format:hex;set:General Purpose Registers;… 609 read packet: $name:rsi;bitsize:64;offset:40;encoding:uint;format:hex;set:General Purpose Registers;… 611 read packet: $name:rbp;alt-name:fp;bitsize:64;offset:48;encoding:uint;format:hex;set:General Purpos… 613 read packet: $name:rsp;alt-name:sp;bitsize:64;offset:56;encoding:uint;format:hex;set:General Purpos… 615 read packet: $name:r8;bitsize:64;offset:64;encoding:uint;format:hex;set:General Purpose Registers;g… 617 read packet: $name:r9;bitsize:64;offset:72;encoding:uint;format:hex;set:General Purpose Registers;g… [all …]
|