2007-03-01 Paul Brook <paul@codesourcery.com>
[official-gcc.git] / gcc / tree-nomudflap.c
blobc3f2bf041c1e19672f84a213db374d502827d020
1 /* Mudflap: narrow-pointer bounds-checking by tree rewriting.
2 Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc.
3 Contributed by Frank Ch. Eigler <fche@redhat.com>
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 2, or (at your option) any later
10 version.
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
15 for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
20 02110-1301, USA. */
23 #include "config.h"
24 #include "system.h"
25 #include "coretypes.h"
26 #include "tm.h"
27 #include "tree.h"
28 #include "tree-inline.h"
29 #include "c-tree.h"
30 #include "c-common.h"
31 #include "tree-gimple.h"
32 #include "diagnostic.h"
33 #include "hashtab.h"
34 #include "output.h"
35 #include "varray.h"
36 #include "langhooks.h"
37 #include "tree-mudflap.h"
38 #include "tree-pass.h"
39 #include "ggc.h"
40 #include "toplev.h"
44 /* This file contains placeholder functions, to be used only for
45 language processors that cannot handle tree-mudflap.c directly.
46 (e.g. Fortran). */
48 static void
49 nogo (void)
51 internal_error ("mudflap: this language is not supported");
54 void
55 mudflap_enqueue_decl (tree obj ATTRIBUTE_UNUSED)
57 nogo ();
60 void
61 mudflap_enqueue_constant (tree obj ATTRIBUTE_UNUSED)
63 nogo ();
66 void
67 mudflap_finish_file (void)
69 nogo ();
72 int
73 mf_marked_p (tree t ATTRIBUTE_UNUSED)
75 nogo ();
76 return 0;
79 tree
80 mf_mark (tree t ATTRIBUTE_UNUSED)
82 nogo ();
83 return NULL;
86 /* The pass structures must exist, but need not do anything. */
88 struct tree_opt_pass pass_mudflap_1 =
90 "mudflap1", /* name */
91 NULL, /* gate */
92 NULL, /* execute */
93 NULL, /* sub */
94 NULL, /* next */
95 0, /* static_pass_number */
96 0, /* tv_id */
97 0, /* properties_required */
98 0, /* properties_provided */
99 0, /* properties_destroyed */
100 0, /* todo_flags_start */
101 0, /* todo_flags_finish */
102 0 /* letter */
105 struct tree_opt_pass pass_mudflap_2 =
107 "mudflap2", /* name */
108 NULL, /* gate */
109 NULL, /* execute */
110 NULL, /* sub */
111 NULL, /* next */
112 0, /* static_pass_number */
113 0, /* tv_id */
114 0, /* properties_required */
115 0, /* properties_provided */
116 0, /* properties_destroyed */
117 0, /* todo_flags_start */
118 0, /* todo_flags_finish */
119 0 /* letter */
122 /* Instead of:
123 #include "gt-tree-mudflap.h"
124 We prepare a little dummy struct here.
127 const struct ggc_root_tab gt_ggc_r_gt_tree_mudflap_h[] = {
128 LAST_GGC_ROOT_TAB