1 |
282 |
jeremybenn |
/* Prototypes.
|
2 |
|
|
Copyright (C) 2001, 2002, 2003, 2004, 2005, 2007, 2008
|
3 |
|
|
Free Software Foundation, Inc.
|
4 |
|
|
|
5 |
|
|
This file is part of GCC.
|
6 |
|
|
|
7 |
|
|
GCC is free software; you can redistribute it and/or modify
|
8 |
|
|
it under the terms of the GNU General Public License as published by
|
9 |
|
|
the Free Software Foundation; either version 3, or (at your option)
|
10 |
|
|
any later version.
|
11 |
|
|
|
12 |
|
|
GCC 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
|
18 |
|
|
along with GCC; see the file COPYING3. If not see
|
19 |
|
|
<http://www.gnu.org/licenses/>. */
|
20 |
|
|
|
21 |
|
|
extern void darwin_init_sections (void);
|
22 |
|
|
extern int name_needs_quotes (const char *);
|
23 |
|
|
|
24 |
|
|
extern void machopic_validate_stub_or_non_lazy_ptr (const char *);
|
25 |
|
|
|
26 |
|
|
extern void machopic_output_function_base_name (FILE *);
|
27 |
|
|
extern const char *machopic_indirection_name (rtx, bool);
|
28 |
|
|
extern const char *machopic_mcount_stub_name (void);
|
29 |
|
|
|
30 |
|
|
#ifdef RTX_CODE
|
31 |
|
|
|
32 |
|
|
extern rtx machopic_gen_offset (rtx);
|
33 |
|
|
extern int machopic_operand_p (rtx);
|
34 |
|
|
extern enum machopic_addr_class machopic_classify_symbol (rtx);
|
35 |
|
|
|
36 |
|
|
extern rtx machopic_indirect_data_reference (rtx, rtx);
|
37 |
|
|
extern rtx machopic_indirect_call_target (rtx);
|
38 |
|
|
extern rtx machopic_legitimize_pic_address (rtx, enum machine_mode, rtx);
|
39 |
|
|
|
40 |
|
|
extern void machopic_asm_out_constructor (rtx, int);
|
41 |
|
|
extern void machopic_asm_out_destructor (rtx, int);
|
42 |
|
|
#endif /* RTX_CODE */
|
43 |
|
|
|
44 |
|
|
#ifdef TREE_CODE
|
45 |
|
|
|
46 |
|
|
extern void machopic_define_symbol (rtx);
|
47 |
|
|
extern void darwin_encode_section_info (tree, rtx, int);
|
48 |
|
|
extern void darwin_set_default_type_attributes (tree);
|
49 |
|
|
|
50 |
|
|
#endif /* TREE_CODE */
|
51 |
|
|
|
52 |
|
|
extern void machopic_finish (FILE *);
|
53 |
|
|
|
54 |
|
|
extern int machopic_reloc_rw_mask (void);
|
55 |
|
|
extern section *machopic_select_section (tree, int, unsigned HOST_WIDE_INT);
|
56 |
|
|
extern section *machopic_select_rtx_section (enum machine_mode, rtx,
|
57 |
|
|
unsigned HOST_WIDE_INT);
|
58 |
|
|
|
59 |
|
|
extern void darwin_unique_section (tree decl, int reloc);
|
60 |
|
|
extern void darwin_asm_named_section (const char *, unsigned int, tree);
|
61 |
|
|
extern void darwin_non_lazy_pcrel (FILE *, rtx);
|
62 |
|
|
|
63 |
|
|
extern void darwin_emit_unwind_label (FILE *, tree, int, int);
|
64 |
|
|
extern void darwin_emit_except_table_label (FILE *);
|
65 |
|
|
|
66 |
|
|
extern void darwin_pragma_ignore (struct cpp_reader *);
|
67 |
|
|
extern void darwin_pragma_options (struct cpp_reader *);
|
68 |
|
|
extern void darwin_pragma_unused (struct cpp_reader *);
|
69 |
|
|
extern void darwin_pragma_ms_struct (struct cpp_reader *);
|
70 |
|
|
|
71 |
|
|
extern void darwin_file_start (void);
|
72 |
|
|
extern void darwin_file_end (void);
|
73 |
|
|
|
74 |
|
|
extern void darwin_asm_lto_start (void);
|
75 |
|
|
extern void darwin_asm_lto_end (void);
|
76 |
|
|
|
77 |
|
|
extern void darwin_mark_decl_preserved (const char *);
|
78 |
|
|
|
79 |
|
|
extern tree darwin_handle_kext_attribute (tree *, tree, tree, int, bool *);
|
80 |
|
|
extern tree darwin_handle_weak_import_attribute (tree *node, tree name,
|
81 |
|
|
tree args, int flags,
|
82 |
|
|
bool * no_add_attrs);
|
83 |
|
|
extern void machopic_output_stub (FILE *, const char *, const char *);
|
84 |
|
|
extern void darwin_globalize_label (FILE *, const char *);
|
85 |
|
|
extern void darwin_assemble_visibility (tree, int);
|
86 |
|
|
extern void darwin_asm_output_dwarf_delta (FILE *, int, const char *,
|
87 |
|
|
const char *);
|
88 |
|
|
extern void darwin_asm_output_dwarf_offset (FILE *, int, const char *,
|
89 |
|
|
section *);
|
90 |
|
|
extern bool darwin_binds_local_p (const_tree);
|
91 |
|
|
extern void darwin_cpp_builtins (struct cpp_reader *);
|
92 |
|
|
extern void darwin_asm_output_anchor (rtx symbol);
|
93 |
|
|
extern bool darwin_kextabi_p (void);
|
94 |
|
|
extern void darwin_override_options (void);
|
95 |
|
|
extern void darwin_patch_builtins (void);
|