gccint: GIMPLE_OMP_FOR

1 
1 12.8.16 'GIMPLE_OMP_FOR'
1 ------------------------
1 
1  -- GIMPLE function: gomp_for *gimple_build_omp_for (gimple_seq body,
1           tree clauses, tree index, tree initial, tree final, tree incr,
1           gimple_seq pre_body, enum tree_code omp_for_cond)
1      Build a 'GIMPLE_OMP_FOR' statement.  'BODY' is sequence of
1      statements inside the for loop.  'CLAUSES', are any of the loop
1      construct's clauses.  'PRE_BODY' is the sequence of statements that
1      are loop invariant.  'INDEX' is the index variable.  'INITIAL' is
1      the initial value of 'INDEX'.  'FINAL' is final value of 'INDEX'.
1      OMP_FOR_COND is the predicate used to compare 'INDEX' and 'FINAL'.
1      'INCR' is the increment expression.
1 
1  -- GIMPLE function: tree gimple_omp_for_clauses (gimple g)
1      Return the clauses associated with 'OMP_FOR' 'G'.
1 
1  -- GIMPLE function: tree * gimple_omp_for_clauses_ptr (gimple g)
1      Return a pointer to the 'OMP_FOR' 'G'.
1 
1  -- GIMPLE function: void gimple_omp_for_set_clauses (gimple g, tree
1           clauses)
1      Set 'CLAUSES' to be the list of clauses associated with 'OMP_FOR'
1      'G'.
1 
1  -- GIMPLE function: tree gimple_omp_for_index (gimple g)
1      Return the index variable for 'OMP_FOR' 'G'.
1 
1  -- GIMPLE function: tree * gimple_omp_for_index_ptr (gimple g)
1      Return a pointer to the index variable for 'OMP_FOR' 'G'.
1 
1  -- GIMPLE function: void gimple_omp_for_set_index (gimple g, tree
1           index)
1      Set 'INDEX' to be the index variable for 'OMP_FOR' 'G'.
1 
1  -- GIMPLE function: tree gimple_omp_for_initial (gimple g)
1      Return the initial value for 'OMP_FOR' 'G'.
1 
1  -- GIMPLE function: tree * gimple_omp_for_initial_ptr (gimple g)
1      Return a pointer to the initial value for 'OMP_FOR' 'G'.
1 
1  -- GIMPLE function: void gimple_omp_for_set_initial (gimple g, tree
1           initial)
1      Set 'INITIAL' to be the initial value for 'OMP_FOR' 'G'.
1 
1  -- GIMPLE function: tree gimple_omp_for_final (gimple g)
1      Return the final value for 'OMP_FOR' 'G'.
1 
1  -- GIMPLE function: tree * gimple_omp_for_final_ptr (gimple g)
1      turn a pointer to the final value for 'OMP_FOR' 'G'.
1 
1  -- GIMPLE function: void gimple_omp_for_set_final (gimple g, tree
1           final)
1      Set 'FINAL' to be the final value for 'OMP_FOR' 'G'.
1 
1  -- GIMPLE function: tree gimple_omp_for_incr (gimple g)
1      Return the increment value for 'OMP_FOR' 'G'.
1 
1  -- GIMPLE function: tree * gimple_omp_for_incr_ptr (gimple g)
1      Return a pointer to the increment value for 'OMP_FOR' 'G'.
1 
1  -- GIMPLE function: void gimple_omp_for_set_incr (gimple g, tree incr)
1      Set 'INCR' to be the increment value for 'OMP_FOR' 'G'.
1 
1  -- GIMPLE function: gimple_seq gimple_omp_for_pre_body (gimple g)
1      Return the sequence of statements to execute before the 'OMP_FOR'
1      statement 'G' starts.
1 
1  -- GIMPLE function: void gimple_omp_for_set_pre_body (gimple g,
1           gimple_seq pre_body)
1      Set 'PRE_BODY' to be the sequence of statements to execute before
1      the 'OMP_FOR' statement 'G' starts.
1 
1  -- GIMPLE function: void gimple_omp_for_set_cond (gimple g, enum
1           tree_code cond)
1      Set 'COND' to be the condition code for 'OMP_FOR' 'G'.
1 
1  -- GIMPLE function: enum tree_code gimple_omp_for_cond (gimple g)
1      Return the condition code associated with 'OMP_FOR' 'G'.
1