2 Copyright 2009, 2010 Free Software Foundation, Inc.
3 Contributed by CodeSourcery, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
27 typedef struct lto_file_struct
29 /* The name of the file. */
31 /* The offset for the object inside an ar archive file (or zero). */
36 extern const char *resolution_file_name
;
39 extern void lto_main (int);
40 extern void lto_read_all_file_options (void);
42 /* In lto-elf.c or lto-coff.c */
43 extern lto_file
*lto_obj_file_open (const char *filename
, bool writable
);
44 extern void lto_obj_file_close (lto_file
*file
);
45 extern htab_t
lto_obj_build_section_table (lto_file
*file
);
46 extern void lto_obj_begin_section (const char *name
);
47 extern void lto_obj_append_data (const void *data
, size_t len
, void *block
);
48 extern void lto_obj_end_section (void);
49 extern lto_file
*lto_set_current_out_file (lto_file
*file
);
50 extern lto_file
*lto_get_current_out_file (void);
52 /* Hash table entry to hold the start offset and length of an LTO
53 section in a .o file. */
54 struct lto_section_slot
61 int64_t lto_parse_hex (const char *p
);