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

/netbsd-current/external/gpl3/gcc/dist/gcc/
H A Dtree-ssa-dse.cc422 unsigned int align_units = align_bits / BITS_PER_UNIT; local
423 if (align_units > 16)
424 align_units = 16;
425 while ((first_live | (align_units - 1)) > (unsigned int)last_live)
426 align_units >>= 1;
430 unsigned int pos = first_live & (align_units - 1);
431 for (unsigned int i = 1; i <= align_units; i <<= 1)
434 unsigned int bytes = align_units - (pos & mask);
445 unsigned int pos = last_live & (align_units - 1);
446 for (unsigned int i = 1; i <= align_units;
[all...]

Completed in 98 milliseconds