x86: Move x86-specific linker options to elf_linker_x86_params
[deliverable/binutils-gdb.git] / gdb / cli-out.h
CommitLineData
8b93c638 1/* Output generating routines for GDB CLI.
42a4f53d 2 Copyright (C) 1999-2019 Free Software Foundation, Inc.
8b93c638
JM
3 Contributed by Cygnus Solutions.
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
8b93c638
JM
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
8b93c638
JM
19
20#ifndef CLI_OUT_H
21#define CLI_OUT_H
22
b9b118c3 23#include <vector>
0a8fce9a 24
d55e5aa6
TT
25/* Local non-gdb includes. */
26#include "ui-out.h"
27
112e8700
SM
28class cli_ui_out : public ui_out
29{
30public:
0a8fce9a 31
112e8700
SM
32 explicit cli_ui_out (ui_file *stream, ui_out_flags flags);
33 virtual ~cli_ui_out ();
0a8fce9a 34
112e8700 35 ui_file *set_stream (ui_file *stream);
0a8fce9a 36
112e8700 37protected:
da3331ec 38
112e8700 39 virtual void do_table_begin (int nbrofcols, int nr_rows,
e427af18 40 const char *tblid) override;
112e8700
SM
41 virtual void do_table_body () override;
42 virtual void do_table_end () override;
43 virtual void do_table_header (int width, ui_align align,
e427af18
TT
44 const std::string &col_name,
45 const std::string &col_hdr) override;
112e8700
SM
46 /* Note: level 0 is the top-level so LEVEL is always greater than
47 zero. */
48 virtual void do_begin (ui_out_type type, const char *id) override;
49 virtual void do_end (ui_out_type type) override;
50 virtual void do_field_int (int fldno, int width, ui_align align,
e427af18 51 const char *fldname, int value) override;
112e8700 52 virtual void do_field_skip (int fldno, int width, ui_align align,
e427af18 53 const char *fldname) override;
112e8700 54 virtual void do_field_string (int fldno, int width, ui_align align,
e427af18 55 const char *fldname,
cbe56571
TT
56 const char *string,
57 ui_out_style_kind style) override;
112e8700 58 virtual void do_field_fmt (int fldno, int width, ui_align align,
e427af18
TT
59 const char *fldname, const char *format,
60 va_list args)
112e8700
SM
61 override ATTRIBUTE_PRINTF (6,0);
62 virtual void do_spaces (int numspaces) override;
63 virtual void do_text (const char *string) override;
64 virtual void do_message (const char *format, va_list args) override
65 ATTRIBUTE_PRINTF (2,0);
66 virtual void do_wrap_hint (const char *identstring) override;
67 virtual void do_flush () override;
7becfd03 68 virtual void do_redirect (struct ui_file *outstream) override;
8b93c638 69
112e8700
SM
70 bool suppress_output ()
71 { return m_suppress_output; }
0a8fce9a 72
112e8700
SM
73private:
74
75 void field_separator ();
112e8700
SM
76
77 std::vector<ui_file *> m_streams;
78 bool m_suppress_output;
79};
80
81extern cli_ui_out *cli_out_new (struct ui_file *stream);
4389a95a 82
82083d6d
DE
83extern void cli_display_match_list (char **matches, int len, int max);
84
8b93c638 85#endif
This page took 1.404472 seconds and 4 git commands to generate.