Searched refs:low_bits (Results 1 - 12 of 12) sorted by relevance

/haiku-buildtools/legacy/gcc/gcc/config/sparc/
H A Dsparc.c1434 sparc_emit_set_const64_quick1 (op0, temp, low_bits, is_neg)
1437 unsigned HOST_WIDE_INT low_bits;
1443 high_bits = (~low_bits) & 0xffffffff;
1445 high_bits = low_bits;
1458 if ((low_bits & 0x3ff) == 0x3ff)
1467 (-0x400 | (low_bits & 0x3ff)))));
1519 sparc_emit_set_const64_longway (op0, temp, high_bits, low_bits)
1523 unsigned HOST_WIDE_INT low_bits;
1558 sparc_emit_set_safe_HIGH64 (temp2, low_bits);
1559 if ((low_bits
1747 unsigned HOST_WIDE_INT high_bits, low_bits; local
[all...]
/haiku-buildtools/legacy/binutils/bfd/
H A Dtekhex.c583 bfd_vma low_bits = addr & CHUNK_MASK; local
591 if (d->chunk_init[low_bits])
592 *location = d->chunk_data[low_bits];
598 d->chunk_data[low_bits] = *location;
599 d->chunk_init[low_bits] = (*location != 0);
H A Dcoff-arm.c951 unsigned int low_bits;
957 low_bits = rel_off & 0x000007FF; /* The bottom 11 bits. */
961 br_insn = LOW_HI_ORDER | (low_bits << 16) | high_bits;
963 br_insn = HI_LOW_ORDER | (high_bits << 16) | low_bits;
950 unsigned int low_bits; local
H A Delfxx-mips.c7858 bfd_vma low_bits;
7876 low_bits = sign_bits;
7881 low_bits = addend;
7884 bfd_put_32 (input_bfd, low_bits,
7978 bfd_vma low_bits;
7998 low_bits = sign_bits;
8003 low_bits = value;
8006 bfd_put_32 (input_bfd, low_bits,
7826 bfd_vma low_bits; local
7946 bfd_vma low_bits; local
H A Delf32-arm.c2630 unsigned int low_bits; local
2636 low_bits = rel_off & 0x000007FF; /* The bottom 11 bits. */
2640 br_insn = LOW_HI_ORDER | (low_bits << 16) | high_bits;
2642 br_insn = HI_LOW_ORDER | (high_bits << 16) | low_bits;
/haiku-buildtools/binutils/bfd/
H A Dtekhex.c639 bfd_vma low_bits = addr & CHUNK_MASK; local
652 *location = d->chunk_data[low_bits];
658 d->chunk_data[low_bits] = *location;
659 d->chunk_init[low_bits / CHUNK_SPAN] = 1;
H A Dcoff-arm.c991 unsigned int low_bits;
997 low_bits = rel_off & 0x000007FF; /* The bottom 11 bits. */
1001 br_insn = LOW_HI_ORDER | (low_bits << 16) | high_bits;
1003 br_insn = HI_LOW_ORDER | (high_bits << 16) | low_bits;
990 unsigned int low_bits; local
H A Delfxx-mips.c10369 bfd_vma low_bits;
10387 low_bits = sign_bits;
10392 low_bits = addend;
10395 bfd_put_32 (input_bfd, low_bits,
10526 bfd_vma low_bits;
10546 low_bits = sign_bits;
10551 low_bits = value;
10554 bfd_put_32 (input_bfd, low_bits,
10334 bfd_vma low_bits; local
10491 bfd_vma low_bits; local
/haiku-buildtools/gcc/gcc/
H A Dtree-vect-generic.c217 tree low_bits, high_bits, a_low, b_low, result_low, signs; local
220 low_bits = build_replicated_const (word_type, inner_type, max >> 1);
227 b_low = gimplify_build2 (gsi, BIT_AND_EXPR, word_type, b, low_bits);
229 a_low = gimplify_build2 (gsi, BIT_AND_EXPR, word_type, a, low_bits);
249 tree low_bits, high_bits, b_low, result_low, signs; local
252 low_bits = build_replicated_const (word_type, inner_type, max >> 1);
257 b_low = gimplify_build2 (gsi, BIT_AND_EXPR, word_type, b, low_bits);
H A Dcombine.c12232 unsigned HOST_WIDE_INT low_bits
12236 if (low_bits == 0 || !equality_comparison_p)
12244 if (low_bits != 0
12191 unsigned HOST_WIDE_INT low_bits local
/haiku-buildtools/gcc/gcc/config/sparc/
H A Dsparc.c2202 unsigned HOST_WIDE_INT low_bits, int is_neg)
2207 high_bits = (~low_bits) & 0xffffffff;
2209 high_bits = low_bits;
2222 if ((low_bits & 0x3ff) == 0x3ff)
2232 | (low_bits & 0x3ff)))));
2283 unsigned HOST_WIDE_INT low_bits)
2316 emit_insn (gen_safe_HIGH64 (temp2, low_bits));
2317 if ((low_bits & ~0xfffffc00) != 0)
2320 gen_safe_OR64 (temp2, (low_bits & 0x3ff))));
2332 rtx low1 = GEN_INT ((low_bits >> (3
2198 sparc_emit_set_const64_quick1(rtx op0, rtx temp, unsigned HOST_WIDE_INT low_bits, int is_neg) argument
2278 sparc_emit_set_const64_longway(rtx op0, rtx temp, unsigned HOST_WIDE_INT high_bits, unsigned HOST_WIDE_INT low_bits) argument
2381 analyze_64bit_constant(unsigned HOST_WIDE_INT high_bits, unsigned HOST_WIDE_INT low_bits, int *hbsp, int *lbsp, int *abbasp) argument
2445 const64_is_2insns(unsigned HOST_WIDE_INT high_bits, unsigned HOST_WIDE_INT low_bits) argument
2474 create_simple_focus_bits(unsigned HOST_WIDE_INT high_bits, unsigned HOST_WIDE_INT low_bits, int lowest_bit_set, int shift) argument
2501 unsigned HOST_WIDE_INT high_bits, low_bits; local
[all...]
/haiku-buildtools/binutils/binutils/
H A Ddwarf.c1473 add64 (dwarf_vma * high_bits, dwarf_vma * low_bits, dwarf_vma inc) argument
1475 dwarf_vma tmp = * low_bits;
1485 if (tmp < * low_bits)
1496 * low_bits = tmp;

Completed in 476 milliseconds