diff options
author | Sandra Loosemore <sandra@codesourcery.com> | 2023-08-24 17:34:59 +0000 |
---|---|---|
committer | Sandra Loosemore <sandra@codesourcery.com> | 2023-08-25 19:42:50 +0000 |
commit | a62c8324e7e31ae6614f549bdf9d8a653233f8fc (patch) | |
tree | 6ccf1478da5711f0c7b4ada9a9789d4213ad0347 /gcc/doc/gimple.texi | |
parent | b41d7eb0e14785ff0ad6e6922cbd4c880e680bf9 (diff) | |
download | gcc-a62c8324e7e31ae6614f549bdf9d8a653233f8fc.zip gcc-a62c8324e7e31ae6614f549bdf9d8a653233f8fc.tar.gz gcc-a62c8324e7e31ae6614f549bdf9d8a653233f8fc.tar.bz2 |
OpenMP: Add OMP_STRUCTURED_BLOCK and GIMPLE_OMP_STRUCTURED_BLOCK.
In order to detect invalid jumps in and out of intervening code in
imperfectly-nested loops, the front ends need to insert some sort of
marker to identify the structured block sequences that they push into
the inner body of the loop. The error checking happens in the
diagnose_omp_blocks pass, between gimplification and OMP lowering, so
we need both GENERIC and GIMPLE representations of these markers.
They are removed in OMP lowering so no subsequent passes need to know
about them.
This patch doesn't include any front-end changes to generate the new
data structures.
gcc/cp/ChangeLog
* constexpr.cc (cxx_eval_constant_expression): Handle
OMP_STRUCTURED_BLOCK.
* pt.cc (tsubst_expr): Likewise.
gcc/ChangeLog
* doc/generic.texi (OpenMP): Document OMP_STRUCTURED_BLOCK.
* doc/gimple.texi (GIMPLE instruction set): Add
GIMPLE_OMP_STRUCTURED_BLOCK.
(GIMPLE_OMP_STRUCTURED_BLOCK): New subsection.
* gimple-low.cc (lower_stmt): Error on GIMPLE_OMP_STRUCTURED_BLOCK.
* gimple-pretty-print.cc (dump_gimple_omp_block): Handle
GIMPLE_OMP_STRUCTURED_BLOCK.
(pp_gimple_stmt_1): Likewise.
* gimple-walk.cc (walk_gimple_stmt): Likewise.
* gimple.cc (gimple_build_omp_structured_block): New.
* gimple.def (GIMPLE_OMP_STRUCTURED_BLOCK): New.
* gimple.h (gimple_build_omp_structured_block): Declare.
(gimple_has_substatements): Handle GIMPLE_OMP_STRUCTURED_BLOCK.
(CASE_GIMPLE_OMP): Likewise.
* gimplify.cc (is_gimple_stmt): Handle OMP_STRUCTURED_BLOCK.
(gimplify_expr): Likewise.
* omp-expand.cc (GIMPLE_OMP_STRUCTURED_BLOCK): Error on
GIMPLE_OMP_STRUCTURED_BLOCK.
* omp-low.cc (scan_omp_1_stmt): Handle GIMPLE_OMP_STRUCTURED_BLOCK.
(lower_omp_1): Likewise.
(diagnose_sb_1): Likewise.
(diagnose_sb_2): Likewise.
* tree-inline.cc (remap_gimple_stmt): Handle
GIMPLE_OMP_STRUCTURED_BLOCK.
(estimate_num_insns): Likewise.
* tree-nested.cc (convert_nonlocal_reference_stmt): Likewise.
(convert_local_reference_stmt): Likewise.
(convert_gimple_call): Likewise.
* tree-pretty-print.cc (dump_generic_node): Handle
OMP_STRUCTURED_BLOCK.
* tree.def (OMP_STRUCTURED_BLOCK): New.
* tree.h (OMP_STRUCTURED_BLOCK_BODY): New.
Diffstat (limited to 'gcc/doc/gimple.texi')
-rw-r--r-- | gcc/doc/gimple.texi | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gcc/doc/gimple.texi b/gcc/doc/gimple.texi index 322c760..a3ade15 100644 --- a/gcc/doc/gimple.texi +++ b/gcc/doc/gimple.texi @@ -468,6 +468,7 @@ The following table briefly describes the GIMPLE instruction set. @item @code{GIMPLE_OMP_SECTIONS_SWITCH} @tab x @tab x @item @code{GIMPLE_OMP_SINGLE} @tab x @tab x @item @code{GIMPLE_PHI} @tab @tab x +@item @code{GIMPLE_OMP_STRUCTURED_BLOCK} @tab x @tab @item @code{GIMPLE_RESX} @tab @tab x @item @code{GIMPLE_RETURN} @tab x @tab x @item @code{GIMPLE_SWITCH} @tab x @tab x @@ -1040,6 +1041,7 @@ Return a deep copy of statement @code{STMT}. * @code{GIMPLE_OMP_SECTION}:: * @code{GIMPLE_OMP_SECTIONS}:: * @code{GIMPLE_OMP_SINGLE}:: +* @code{GIMPLE_OMP_STRUCTURED_BLOCK}:: * @code{GIMPLE_PHI}:: * @code{GIMPLE_RESX}:: * @code{GIMPLE_RETURN}:: @@ -2160,6 +2162,23 @@ Set @code{CLAUSES} to be the clauses associated with @code{OMP_SINGLE} @code{G}. @end deftypefn +@node @code{GIMPLE_OMP_STRUCTURED_BLOCK} +@subsection @code{GIMPLE_OMP_STRUCTURED_BLOCK} +@cindex @code{GIMPLE_OMP_STRUCTURED_BLOCK} + +Like the GENERIC equivalent @code{OMP_STRUCTURED_BLOCK}, this GIMPLE +statement does not correspond directly to an OpenMP directive, and +exists only to permit error checking of transfers of control +in/out of structured block sequences (the @code{diagnose_omp_blocks} pass +in @file{omp-low.cc}). All @code{GIMPLE_OMP_STRUCTURED_BLOCK} +nodes are eliminated during OpenMP lowering. + +@deftypefn {GIMPLE function} gimple gimple_build_omp_structured_block (gimple_seq body) +Build a @code{GIMPLE_OMP_STRUCTURED_BLOCK} statement. +@code{BODY} is the sequence of statements in the structured block sequence. +@end deftypefn + + @node @code{GIMPLE_PHI} @subsection @code{GIMPLE_PHI} @cindex @code{GIMPLE_PHI} |