00001 /* Mudflap: narrow-pointer bounds-checking by tree rewriting. 00002 Copyright (C) 2001, 2002, 2003, 2005 Free Software Foundation, Inc. 00003 Contributed by Frank Ch. Eigler <fche@redhat.com> 00004 00005 This file is part of GCC. 00006 00007 GCC is free software; you can redistribute it and/or modify it under 00008 the terms of the GNU General Public License as published by the Free 00009 Software Foundation; either version 2, or (at your option) any later 00010 version. 00011 00012 GCC is distributed in the hope that it will be useful, but WITHOUT ANY 00013 WARRANTY; without even the implied warranty of MERCHANTABILITY or 00014 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 00015 for more details. 00016 00017 You should have received a copy of the GNU General Public License 00018 along with GCC; see the file COPYING. If not, write to the Free 00019 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 00020 02110-1301, USA. */ 00021 00022 #ifndef TREE_MUDFLAP_H 00023 #define TREE_MUDFLAP_H 00024 00025 /* Instrumentation. */ 00026 extern void mudflap_init (void); 00027 extern void mudflap_enqueue_decl (tree); 00028 extern void mudflap_enqueue_constant (tree); 00029 extern void mudflap_finish_file (void); 00030 00031 /* Tree node marking. */ 00032 extern int mf_marked_p (tree); 00033 extern tree mf_mark (tree); 00034 00035 #endif /* TREE_MUDFLAP_H */
1.5.6