mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-04 05:48:20 +08:00
bfd
binutils
config
cpu
elfcpp
etc
gas
gdb
gold
gprof
po
.gdbinit
.gitignore
ChangeLog
ChangeLog-2004
ChangeLog-2005
ChangeLog-2006
ChangeLog-2007
ChangeLog-2008
ChangeLog-2009
ChangeLog-2010
ChangeLog-2011
ChangeLog-2012
ChangeLog-9203
MAINTAINERS
Makefile.am
Makefile.in
README
TEST
TODO
aarch64.c
aclocal.m4
alpha.c
basic_blocks.c
basic_blocks.h
bb_exit_func.c
bbconv.pl
bsd_callg_bl.m
call_graph.c
call_graph.h
cg_arcs.c
cg_arcs.h
cg_dfn.c
cg_dfn.h
cg_print.c
cg_print.h
configure
configure.in
corefile.c
corefile.h
dep-in.sed
fdl.texi
flat_bl.m
fsf_callg_bl.m
gconfig.in
gen-c-prog.awk
gmon.h
gmon_io.c
gmon_io.h
gmon_out.h
gprof.c
gprof.h
gprof.texi
hertz.c
hertz.h
hist.c
hist.h
i386.c
mips.c
search_list.c
search_list.h
source.c
source.h
sparc.c
stamp-h.in
sym_ids.c
sym_ids.h
symtab.c
symtab.h
tahoe.c
utils.c
utils.h
vax.c
include
intl
ld
libdecnumber
libiberty
opcodes
readline
sim
texinfo
.cvsignore
.gitignore
COPYING
COPYING.LIB
COPYING.LIBGLOSS
COPYING.NEWLIB
COPYING3
COPYING3.LIB
ChangeLog
MAINTAINERS
Makefile.def
Makefile.in
Makefile.tpl
README
README-maintainer-mode
compile
config-ml.in
config.guess
config.rpath
config.sub
configure
configure.ac
depcomp
djunpack.bat
install-sh
libtool.m4
ltgcc.m4
ltmain.sh
ltoptions.m4
ltsugar.m4
ltversion.m4
lt~obsolete.m4
makefile.vms
missing
mkdep
mkinstalldirs
move-if-change
setup.com
src-release
symlink-tree
ylwrap
64 lines
2.3 KiB
C
64 lines
2.3 KiB
C
/* source.h
|
||
|
||
Copyright 2000, 2001, 2002, 2004, 2007 Free Software Foundation, Inc.
|
||
|
||
This file is part of GNU Binutils.
|
||
|
||
This program is free software; you can redistribute it and/or modify
|
||
it under the terms of the GNU General Public License as published by
|
||
the Free Software Foundation; either version 3 of the License, or
|
||
(at your option) any later version.
|
||
|
||
This program is distributed in the hope that it will be useful,
|
||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
GNU General Public License for more details.
|
||
|
||
You should have received a copy of the GNU General Public License
|
||
along with this program; if not, write to the Free Software
|
||
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
|
||
MA 02110-1301, USA. */
|
||
|
||
#ifndef source_h
|
||
#define source_h
|
||
|
||
typedef struct source_file
|
||
{
|
||
struct source_file *next;
|
||
const char *name; /* Name of source file. */
|
||
unsigned long ncalls; /* # of "calls" to this file. */
|
||
int num_lines; /* # of lines in file. */
|
||
int nalloced; /* Number of lines allocated. */
|
||
void **line; /* Usage-dependent per-line data. */
|
||
}
|
||
Source_File;
|
||
|
||
/* Options. */
|
||
|
||
/* Create annotated output files? */
|
||
extern bfd_boolean create_annotation_files;
|
||
|
||
/* List of directories to search for source files. */
|
||
extern Search_List src_search_list;
|
||
|
||
/* Chain of source-file descriptors. */
|
||
extern Source_File *first_src_file;
|
||
|
||
/* Returns pointer to source file descriptor for PATH/FILENAME. */
|
||
extern Source_File *source_file_lookup_path (const char *);
|
||
extern Source_File *source_file_lookup_name (const char *);
|
||
|
||
/* Read source file SF output annotated source. The annotation is at
|
||
MAX_WIDTH characters wide and for each source-line an annotation is
|
||
obtained by invoking function ANNOTE. ARG is an argument passed to
|
||
ANNOTE that is left uninterpreted by annotate_source().
|
||
|
||
Returns a pointer to the output file (which maybe stdout) such
|
||
that summary statistics can be printed. If the returned file
|
||
is not stdout, it should be closed when done with it. */
|
||
extern FILE *annotate_source
|
||
(Source_File *sf, unsigned int max_width,
|
||
void (*annote) (char *, unsigned int, int, PTR arg),
|
||
PTR arg);
|
||
#endif /* source_h */
|