GCC主要数据结构之pretty_printer

GCC:gcc/pretty-printer.h

/* The data structure that contains the bare minimum required to do    proper pretty-printing.  Clients may derived from this structure    and add additional fields they need.  */ struct pretty_printer {   // Default construct a pretty printer with specified prefix   // and a maximum line length cut off limit.   explicit pretty_printer (const char* = NULL, int = 0);

  virtual ~pretty_printer ();

  /* Where we print external representation of ENTITY.  */   output_buffer *buffer;

  /* The prefix for each new line.  */   const char *prefix;

  /* Where to put whitespace around the entity being formatted.  */   pp_padding padding;

  /* The real upper bound of number of characters per line, taking into      account the case of a very very looong prefix.  */   int maximum_length;

  /* Indentation count.  */   int indent_skip;

  /* Current wrapping mode.  */   pp_wrapping_mode_t wrapping;

  /* If non-NULL, this function formats a TEXT into the BUFFER.  When called,      TEXT->format_spec points to a format code.  FORMAT_DECODER should call      pp_string (and related functions) to add data to the BUFFER.      FORMAT_DECODER can read arguments from *TEXT->args_pts using VA_ARG.      If the BUFFER needs additional characters from the format string, it      should advance the TEXT->format_spec as it goes.  When FORMAT_DECODER      returns, TEXT->format_spec should point to the last character processed.   */   printer_fn format_decoder;

  /* Nonzero if current PREFIX was emitted at least once.  */   bool emitted_prefix;

  /* Nonzero means one should emit a newline before outputting anything.  */   bool need_newline;

  /* Nonzero means identifiers are translated to the locale character      set on output.  */   bool translate_identifiers;

  /* Nonzero means that text should be colorized.  */   bool show_color; };

 
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值