Lines Matching full:division
27 ; No explicit division appears in the input, but a division is generated during
28 ; vectorization, and that division is a division-by-0 when the input 'count'
102 ; // Division is loop invariant, and denominator is guaranteed non-zero:
114 ; division from the inner loop to the preheader.
175 ; and so it is illegal to hoist the division because if 'start1' is 0, hoisting
234 ; This version is has a clearly safe division by a non-zero constant (16). The
235 ; division is transformed to a logical-shift-right of 4, and it is safely
238 ; Verify that the division-operation is hoisted, and that it appears as a
239 ; right-shift ('lshr') rather than an explicit division.
296 ; This version is has a clearly safe division by a non-zero constant (17). The
297 ; division is safely hoisted, as it was in the 'DivBy16Hoist' verison, but here
298 ; it remains a division, rather than being transformed to a right-shift.
300 ; Verify that the division-operation is hoisted.