diff options
author | Richard Henderson <rth@redhat.com> | 2002-08-14 18:03:43 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2002-08-14 18:03:43 -0700 |
commit | d1f1cc6a0fbea6eafd29bf13a02705ccb9e4f45e (patch) | |
tree | 98f95ebf444eb6c313ed44d7aaf8dfa76160648b /gcc/rtl.def | |
parent | 55ae9079933065d00adfac121e8b5b6a18b61939 (diff) | |
download | gcc-d1f1cc6a0fbea6eafd29bf13a02705ccb9e4f45e.tar.gz |
ggc-page.c (RTL_SIZE): New.
* ggc-page.c (RTL_SIZE): New.
(extra_order_size_table): Add specializations for 2 and 10 rtl slots.
* rtl.def (BARRIER, NOTE): Pad to 9 slots.
From-SVN: r56337
Diffstat (limited to 'gcc/rtl.def')
-rw-r--r-- | gcc/rtl.def | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/gcc/rtl.def b/gcc/rtl.def index 2934188c70b..5608676f205 100644 --- a/gcc/rtl.def +++ b/gcc/rtl.def @@ -566,22 +566,24 @@ DEF_RTL_EXPR(JUMP_INSN, "jump_insn", "iuuBteiee0", 'i') DEF_RTL_EXPR(CALL_INSN, "call_insn", "iuuBteieee", 'i') /* A marker that indicates that control will not flow through. */ -DEF_RTL_EXPR(BARRIER, "barrier", "iuu", 'x') +DEF_RTL_EXPR(BARRIER, "barrier", "iuu000000", 'x') /* Holds a label that is followed by instructions. Operand: - 4: is used in jump.c for the use-count of the label. - 5: is used in flow.c to point to the chain of label_ref's to this label. - 6: is a number that is unique in the entire compilation. - 7: is the user-given name of the label, if any. */ + 5: is used in jump.c for the use-count of the label. + 6: is used in flow.c to point to the chain of label_ref's to this label. + 7: is a number that is unique in the entire compilation. + 8: is the user-given name of the label, if any. */ DEF_RTL_EXPR(CODE_LABEL, "code_label", "iuuB00is", 'x') /* Say where in the code a source line starts, for symbol table's sake. Operand: - 4: filename, if line number > 0, note-specific data otherwise. - 5: line number if > 0, enum note_insn otherwise. - 6: unique number if line number == note_insn_deleted_label. */ -DEF_RTL_EXPR(NOTE, "note", "iuuB0ni", 'x') + 5: filename, if line number > 0, note-specific data otherwise. + 6: line number if > 0, enum note_insn otherwise. + 7: unique number if line number == note_insn_deleted_label. + 8-9: padding so that notes and insns are the same size, and thus + allocated from the same page ordering. */ +DEF_RTL_EXPR(NOTE, "note", "iuuB0ni00", 'x') /* ---------------------------------------------------------------------- Top level constituents of INSN, JUMP_INSN and CALL_INSN. |