This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |
| Other format: | [Raw text] | |
Whether or not the information corresponding to a given dump keyword will be shown may be specified by an option, e.g., if I would like to see just scev-related information of medium importance or higher, I would use
-fdump-tree-all-scev/2
Additionally, there are some options that do not specify what
information will be dumped, but affect its formating (TDF_BLOCKS,
TDF_VOPS, TDF_STMTADDR and such). We do not use keywords for these, but
instead we just keep their bitmap as we do now (so they do not have the
four levels, they can be just on or off) -- I will call these "dump
qualifiers". This makes it possible to use the qualifiers in the same
way as it is done now, pass their sets as function arguments, alter it
locally, etc. The dump flags that are only used internally (TDF_TREE,
TDF_RTL, ...) are handled the same way, except that we do not assign any
option for setting them.
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |