| GNU Compiler Collection (GCC) Internals: GIMPLE_OMP_FOR |
|---|
Next:
GIMPLE_OMP_MASTER
, Previous:
GIMPLE_OMP_CRITICAL
, Up: Tuple specific accessors [Contents][Index]
GIMPLE_OMP_FOR
Build a GIMPLE_OMP_FOR statement. BODY is sequence of statements
inside the for loop. CLAUSES, are any of the loop
construct’s clauses. PRE_BODY is the
sequence of statements that are loop invariant. INDEX is the
index variable. INITIAL is the initial value of INDEX. FINAL is
final value of INDEX. OMP_FOR_COND is the predicate used to
compare INDEX and FINAL. INCR is the increment expression.
Return the clauses associated with OMP_FOR G.
Set CLAUSES to be the list of clauses associated with OMP_FOR G.
Return a pointer to the index variable for OMP_FOR G.
Set INDEX to be the index variable for OMP_FOR G.
Return a pointer to the initial value for OMP_FOR G.
Set INITIAL to be the initial value for OMP_FOR G.
turn a pointer to the final value for OMP_FOR G.
Set FINAL to be the final value for OMP_FOR G.
Return a pointer to the increment value for OMP_FOR G.
Set INCR to be the increment value for OMP_FOR G.
Return the sequence of statements to execute before the OMP_FOR
statement G starts.
Set PRE_BODY to be the sequence of statements to execute before
the OMP_FOR statement G starts.
Set COND to be the condition code for OMP_FOR G.
Return the condition code associated with OMP_FOR G.
Next:
GIMPLE_OMP_MASTER
, Previous:
GIMPLE_OMP_CRITICAL
, Up: Tuple specific accessors [Contents][Index]