Next: <code>GIMPLE_OMP_MASTER</code>, Previous: <code>GIMPLE_OMP_CRITICAL</code>, Up: Tuple specific accessors
GIMPLE_OMP_FORBuild a
GIMPLE_OMP_FORstatement.BODYis sequence of statements inside the for loop.CLAUSES, are any of theOMPloop construct's clauses: private, firstprivate, lastprivate, reductions, ordered, schedule, and nowait.PRE_BODYis the sequence of statements that are loop invariant.INDEXis the index variable.INITIALis the initial value ofINDEX.FINALis final value ofINDEX. OMP_FOR_COND is the predicate used to compareINDEXandFINAL.INCRis the increment expression.
Return the clauses associated with
OMP_FORG.
Set
CLAUSESto be the list of clauses associated withOMP_FORG.
Return a pointer to the index variable for
OMP_FORG.
Set
INDEXto be the index variable forOMP_FORG.
Return a pointer to the initial value for
OMP_FORG.
Set
INITIALto be the initial value forOMP_FORG.
turn a pointer to the final value for
OMP_FORG.
Set
FINALto be the final value forOMP_FORG.
Return a pointer to the increment value for
OMP_FORG.
Set
INCRto be the increment value forOMP_FORG.
Return the sequence of statements to execute before the
OMP_FORstatementGstarts.
Set
PRE_BODYto be the sequence of statements to execute before theOMP_FORstatementGstarts.