Searched refs:modesize (Results 1 – 5 of 5) sorted by relevance
/openbsd/gnu/usr.bin/gcc/gcc/ |
H A D | varasm.c | 601 unsigned int modesize; local 607 modesize = GET_MODE_BITSIZE (mode); 608 if (modesize >= 8 && modesize <= 256 609 && (modesize & (modesize - 1)) == 0) 611 if (align < modesize) 612 align = modesize; 629 sprintf (name, ".rodata.str%d.%d", modesize / 8, 631 flags |= (modesize / 8) | SECTION_MERGE | SECTION_STRINGS; 632 if (!i && modesize < align) 669 unsigned int modesize = GET_MODE_BITSIZE (mode); local [all …]
|
H A D | fold-const.c | 3455 int modesize = GET_MODE_BITSIZE (TYPE_MODE (type)); local 3458 if (p == modesize || unsignedp) 3476 temp = const_binop (LSHIFT_EXPR, temp, size_int (modesize - 1), 0); 3477 temp = const_binop (RSHIFT_EXPR, temp, size_int (modesize - p - 1), 0);
|
/openbsd/gnu/gcc/gcc/ |
H A D | varasm.c | 667 unsigned int modesize; in mergeable_string_section() local 674 modesize = GET_MODE_BITSIZE (mode); in mergeable_string_section() 675 if (modesize >= 8 && modesize <= 256 in mergeable_string_section() 676 && (modesize & (modesize - 1)) == 0) in mergeable_string_section() 678 if (align < modesize) in mergeable_string_section() 679 align = modesize; in mergeable_string_section() 695 sprintf (name, ".rodata.str%d.%d", modesize / 8, in mergeable_string_section() 697 flags |= (modesize / 8) | SECTION_MERGE | SECTION_STRINGS; in mergeable_string_section() 713 unsigned int modesize = GET_MODE_BITSIZE (mode); in mergeable_constant_section() local 718 && modesize <= align in mergeable_constant_section()
|
H A D | fold-const.c | 4960 int modesize = GET_MODE_BITSIZE (TYPE_MODE (type)); in unextend() local 4963 if (p == modesize || unsignedp) in unextend() 4981 temp = const_binop (LSHIFT_EXPR, temp, size_int (modesize - 1), 0); in unextend() 4982 temp = const_binop (RSHIFT_EXPR, temp, size_int (modesize - p - 1), 0); in unextend()
|
/openbsd/gnu/gcc/gcc/config/s390/ |
H A D | s390.c | 638 HOST_WIDE_INT modesize = GET_MODE_BITSIZE (GET_MODE (inner)); in s390_canonicalize_comparison() local 642 if (len > 0 && len < modesize in s390_canonicalize_comparison() 643 && pos >= 0 && pos + len <= modesize in s390_canonicalize_comparison() 644 && modesize <= HOST_BITS_PER_WIDE_INT) in s390_canonicalize_comparison() 648 block <<= modesize - pos - len; in s390_canonicalize_comparison()
|