Home | History | Annotate | Download | only in gcc

Lines Matching refs:INDENT

54 #define INDENT(SPACE)							\
76 INDENT (spc);
208 INDENT (spc);
242 'S' - outputs a gimple_seq with indent of spc + 2,
248 '+' - increases indent by 2 then outputs a newline,
249 '-' - decreases indent by 2 then outputs a newline. */
1150 spaces of indent. FLAGS specifies details to show in the dump (see
1174 spaces of indent. FLAGS specifies details to show in the dump (see
1190 spaces of indent. FLAGS specifies details to show in the dump (see
1224 indent. FLAGS specifies details to show in the dump (see TDF_* in
1299 indent. FLAGS specifies details to show in the dump (see TDF_* in
1316 indent. FLAGS specifies details to show in the dump (see TDF_* in
1350 indent. FLAGS specifies details to show in the dump (see TDF_* in
1369 indent. FLAGS specifies details to show in the dump (see TDF_* in
1398 of indent. FLAGS specifies details to show in the dump (see TDF_*
2155 indent. FLAGS specifies details to show in the dump (see TDF_* in
2312 SPC spaces of indent. */
2441 of indent. FLAGS specifies details to show in the dump (see TDF_* in
2495 of indent. FLAGS specifies details to show in the dump (see TDF_* in
2557 spaces of indent. FLAGS specifies details to show in the dump (see TDF_*
2592 spaces of indent. FLAGS specifies details to show in the dump (see TDF_*
2653 spaces of indent. FLAGS specifies details to show in the dump (see
2879 /* Dumps header of basic block BB to OUTF indented by INDENT
2883 dump_gimple_bb_header (FILE *outf, basic_block bb, int indent,
2899 indent, "", get_lineno (gsi_stmt (gsi)));
2911 fprintf (outf, "%*s__BB(%d", indent, "", bb->index);
2922 indent, "", bb->index, dump_profile (bb->count));
2927 /* Dumps end of basic block BB to buffer BUFFER indented by INDENT
2933 int indent ATTRIBUTE_UNUSED,
2942 by FLAGS and indented by INDENT spaces. */
2945 dump_phi_nodes (pretty_printer *buffer, basic_block bb, int indent,
2955 INDENT (indent);
2956 dump_gimple_phi (buffer, phi, indent,
2998 by INDENT spaces, with details given by FLAGS. */
3001 dump_implicit_edges (pretty_printer *buffer, basic_block bb, int indent,
3020 INDENT (indent + 2);
3022 newline_and_indent (buffer, indent);
3024 newline_and_indent (buffer, indent + 2);
3036 INDENT (indent);
3049 indented by INDENT spaces. */
3052 gimple_dump_bb_buff (pretty_printer *buffer, basic_block bb, int indent,
3057 int label_indent = indent - 2;
3062 dump_phi_nodes (buffer, bb, indent, flags);
3070 curr_indent = gimple_code (stmt) == GIMPLE_LABEL ? label_indent : indent;
3072 INDENT (curr_indent);
3080 dump_implicit_edges (buffer, bb, indent, flags);
3086 indented by INDENT spaces. */
3089 gimple_dump_bb (FILE *file, basic_block bb, int indent, dump_flags_t flags)
3091 dump_gimple_bb_header (file, bb, indent, flags);
3097 gimple_dump_bb_buff (&buffer, bb, indent, flags);
3099 dump_gimple_bb_footer (file, bb, indent, flags);