diff options
author | Steven Bosscher <steven@gcc.gnu.org> | 2013-03-30 14:54:34 +0000 |
---|---|---|
committer | Steven Bosscher <steven@gcc.gnu.org> | 2013-03-30 14:54:34 +0000 |
commit | da5c6bdecf7ee060fc516e5741155301044a1118 (patch) | |
tree | 223c18f88f2884e72c3243b3d45ff8c2cd198553 /gcc/doc/rtl.texi | |
parent | 397186076bb729eee63191034adbd7bc2528b22b (diff) | |
download | gcc-da5c6bdecf7ee060fc516e5741155301044a1118.zip gcc-da5c6bdecf7ee060fc516e5741155301044a1118.tar.gz gcc-da5c6bdecf7ee060fc516e5741155301044a1118.tar.bz2 |
md.texi (Standard Names): Update documentation for JUMP_TABLE_DATA changes.
* doc/md.texi (Standard Names) <casesi>: Update documentation for
JUMP_TABLE_DATA changes.
* doc/tm.texi.in (Dispatch Tables) <ASM_OUTPUT_CASE_LABEL>: Likewise.
* doc/rtl.texi (Flags) <INSN_DELETED_P, SCHED_GROUP_P>: Likewise.
(Insns) <jump_table_data>: New entry.
* doc/tm.texi: Regenerate.
From-SVN: r197267
Diffstat (limited to 'gcc/doc/rtl.texi')
-rw-r--r-- | gcc/doc/rtl.texi | 24 |
1 files changed, 19 insertions, 5 deletions
diff --git a/gcc/doc/rtl.texi b/gcc/doc/rtl.texi index d82c72c..a9890f8 100644 --- a/gcc/doc/rtl.texi +++ b/gcc/doc/rtl.texi @@ -623,12 +623,13 @@ printed as @samp{/u}. @cindex @code{call_insn} and @samp{/v} @cindex @code{jump_insn} and @samp{/v} @cindex @code{code_label} and @samp{/v} +@cindex @code{jump_table_data} and @samp{/v} @cindex @code{barrier} and @samp{/v} @cindex @code{note} and @samp{/v} -@cindex @code{volatil}, in @code{insn}, @code{call_insn}, @code{jump_insn}, @code{code_label}, @code{barrier}, and @code{note} +@cindex @code{volatil}, in @code{insn}, @code{call_insn}, @code{jump_insn}, @code{code_label}, @code{jump_table_data}, @code{barrier}, and @code{note} @item INSN_DELETED_P (@var{x}) In an @code{insn}, @code{call_insn}, @code{jump_insn}, @code{code_label}, -@code{barrier}, or @code{note}, +@code{jump_table_data}, @code{barrier}, or @code{note}, nonzero if the insn has been deleted. Stored in the @code{volatil} field and printed as @samp{/v}. @@ -782,10 +783,11 @@ Stored in the @code{unchanging} field and printed as @samp{/u}. @cindex @code{insn} and @samp{/s} @cindex @code{call_insn} and @samp{/s} @cindex @code{jump_insn} and @samp{/s} -@cindex @code{in_struct}, in @code{insn}, @code{jump_insn} and @code{call_insn} +@cindex @code{jump_table_data} and @samp{/s} +@cindex @code{in_struct}, in @code{insn}, @code{call_insn}, @code{jump_insn} and @code{jump_table_data} @item SCHED_GROUP_P (@var{x}) -During instruction scheduling, in an @code{insn}, @code{call_insn} or -@code{jump_insn}, indicates that the +During instruction scheduling, in an @code{insn}, @code{call_insn}, +@code{jump_insn} or @code{jump_table_data}, indicates that the previous insn must be scheduled together with this insn. This is used to ensure that certain groups of instructions will not be split up by the instruction scheduling pass, for example, @code{use} insns before @@ -3537,6 +3539,18 @@ them, is the function @code{output_alternate_entry_point}, in To set the kind of a label, use the @code{SET_LABEL_KIND} macro. +@findex jump_table_data +@item jump_table_data +A @code{jump_table_data} insn is a placeholder for the jump-table data +of a @code{casesi} or @code{tablejump} insn. They are placed after +a @code{tablejump_p} insn. A @code{jump_table_data} insn is not part o +a basic blockm but it is associated with the basic block that ends with +the @code{tablejump_p} insn. The @code{PATTERN} of a @code{jump_table_data} +is always either an @code{addr_vec} or an @code{addr_diff_vec}, and a +@code{jump_table_data} insn is always preceded by a @code{code_label}. +The @code{tablejump_p} insn refers to that @code{code_label} via its +@code{JUMP_LABEL}. + @findex barrier @item barrier Barriers are placed in the instruction stream when control cannot flow |