Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:Modifier

572   /// Set if the monotonic schedule modifier was present.
574 /// Set if the nonmonotonic schedule modifier was present.
2679 int Modifier = 0;
2682 Modifier = OMP_sch_modifier_monotonic;
2685 Modifier = OMP_sch_modifier_nonmonotonic;
2697 Modifier = OMP_sch_modifier_monotonic;
2700 Modifier = OMP_sch_modifier_nonmonotonic;
2712 // specified, and if the nonmonotonic modifier is not specified, the effect is
2713 // as if the monotonic modifier is specified. Otherwise, unless the monotonic
2714 // modifier is specified, the effect is as if the nonmonotonic modifier is
2716 if (CGM.getLangOpts().OpenMP >= 50 && Modifier == 0) {
2722 Modifier = OMP_sch_modifier_nonmonotonic;
2724 return Schedule | Modifier;
4378 if (const Expr *Modifier = C->getModifier()) {
4379 const auto *IE = cast<OMPIteratorExpr>(Modifier->IgnoreParenImpCasts());
4463 const Expr *Modifier = C->getModifier();
4464 if (!Modifier)
4467 CGF, cast_or_null<OMPIteratorExpr>(Modifier->IgnoreParenImpCasts()));
7342 /// Return the corresponding bits for a given map clause modifier. Add
7452 // (to add to the ones that come from the map type and modifier).
8737 // If any element has the present modifier, then make sure the runtime
9398 // If there's a present map type modifier, it must not be applied to the end
10092 "Expected device_num modifier.");