xref: /openbsd-src/gnu/usr.bin/binutils/gprof/basic_blocks.h (revision c074d1c999f3e07019cd5e9a2f190b057ef3b935)
1b55d4692Sfgsch /* basic_blocks.h
2*c074d1c9Sdrahn    Copyright 2000, 2002 Free Software Foundation, Inc.
3b55d4692Sfgsch 
4b55d4692Sfgsch This file is part of GNU Binutils.
5b55d4692Sfgsch 
6b55d4692Sfgsch This program is free software; you can redistribute it and/or modify
7b55d4692Sfgsch it under the terms of the GNU General Public License as published by
8b55d4692Sfgsch the Free Software Foundation; either version 2 of the License, or
9b55d4692Sfgsch (at your option) any later version.
10b55d4692Sfgsch 
11b55d4692Sfgsch This program is distributed in the hope that it will be useful,
12b55d4692Sfgsch but WITHOUT ANY WARRANTY; without even the implied warranty of
13b55d4692Sfgsch MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14b55d4692Sfgsch GNU General Public License for more details.
15b55d4692Sfgsch 
16b55d4692Sfgsch You should have received a copy of the GNU General Public License
17b55d4692Sfgsch along with this program; if not, write to the Free Software
18b55d4692Sfgsch Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
19b55d4692Sfgsch 
202159047fSniklas #ifndef basic_blocks_h
212159047fSniklas #define basic_blocks_h
222159047fSniklas 
23b55d4692Sfgsch /* Options:  */
24*c074d1c9Sdrahn extern bfd_boolean bb_annotate_all_lines; /* Force annotation of all lines?  */
25b55d4692Sfgsch extern int bb_table_length;		/* Length of most-used bb table.  */
26b55d4692Sfgsch extern unsigned long bb_min_calls;	/* Minimum execution count.  */
272159047fSniklas 
28b55d4692Sfgsch extern void bb_read_rec             PARAMS ((FILE *, const char *));
29b55d4692Sfgsch extern void bb_write_blocks         PARAMS ((FILE *, const char *));
302159047fSniklas extern void bb_create_syms          PARAMS ((void));
312159047fSniklas extern void print_annotated_source  PARAMS ((void));
322159047fSniklas extern void print_exec_counts       PARAMS ((void));
332159047fSniklas #endif /* basic_blocks_h */
34