GIMPLE_OMP_SECTIONS#
-
gomp_sections *gimple_build_omp_sections(gimple_seq body, tree clauses)#
Build a
GIMPLE_OMP_SECTIONSstatement.BODYis a sequence of section statements.CLAUSESare any of theOMPsections construct’s clauses: private, firstprivate, lastprivate, reduction, and nowait.
-
gimple gimple_build_omp_sections_switch(void)#
Build a
GIMPLE_OMP_SECTIONS_SWITCHstatement.
-
tree gimple_omp_sections_control(gimple g)#
Return the control variable associated with the
GIMPLE_OMP_SECTIONSinG.
-
tree *gimple_omp_sections_control_ptr(gimple g)#
Return a pointer to the clauses associated with the
GIMPLE_OMP_SECTIONSinG.
-
void gimple_omp_sections_set_control(gimple g, tree control)#
Set
CONTROLto be the set of clauses associated with theGIMPLE_OMP_SECTIONSinG.
-
tree gimple_omp_sections_clauses(gimple g)#
Return the clauses associated with
OMP_SECTIONSG.
-
tree *gimple_omp_sections_clauses_ptr(gimple g)#
Return a pointer to the clauses associated with
OMP_SECTIONSG.
-
void gimple_omp_sections_set_clauses(gimple g, tree clauses)#
Set
CLAUSESto be the set of clauses associated withOMP_SECTIONSG.