Lines Matching refs:nowrap
14160 NOWRAP specifies whether all outer operations in TYPE should
14162 as a barrier and we will fall back to NOWRAP being false.
14163 NOWRAP is mostly used to treat expressions in TYPE_SIZE and friends
14167 multiple_of_p (tree type, const_tree top, const_tree bottom, bool nowrap)
14185 return (multiple_of_p (type, TREE_OPERAND (top, 1), bottom, nowrap)
14186 || multiple_of_p (type, TREE_OPERAND (top, 0), bottom, nowrap));
14192 if (!nowrap
14204 if (multiple_of_p (type, op2, bottom, nowrap))
14207 if (multiple_of_p (type, bottom, op2, nowrap))
14214 return multiple_of_p (type, op1, op2, nowrap);
14217 return multiple_of_p (type, op1, bottom, nowrap);
14220 return (multiple_of_p (type, TREE_OPERAND (top, 1), bottom, nowrap)
14221 || multiple_of_p (type, TREE_OPERAND (top, 0), bottom, nowrap));
14234 nowrap);
14244 if (!nowrap
14254 && nowrap
14263 return (multiple_of_p (type, op1, bottom, nowrap)
14264 && multiple_of_p (type, TREE_OPERAND (top, 0), bottom, nowrap));
14272 /* NOWRAP only extends to operations in the outermost type so
14278 return multiple_of_p (type, TREE_OPERAND (top, 0), bottom, nowrap);
14281 return (multiple_of_p (type, TREE_OPERAND (top, 1), bottom, nowrap)
14282 && multiple_of_p (type, TREE_OPERAND (top, 2), bottom, nowrap));