Mercurial > hg > CbC > CbC_gcc
comparison gcc/integrate.h @ 0:a06113de4d67
first commit
author | kent <kent@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Fri, 17 Jul 2009 14:47:48 +0900 |
parents | |
children | b7f97abdc517 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:a06113de4d67 |
---|---|
1 /* Function integration definitions for GCC | |
2 Copyright (C) 1990, 1995, 1998, 1999, 2000, 2001, 2003, 2004, 2005, | |
3 2007, 2008 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 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 | |
10 version. | |
11 | |
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. | |
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 #include "varray.h" | |
22 | |
23 extern rtx get_hard_reg_initial_val (enum machine_mode, unsigned int); | |
24 extern rtx has_hard_reg_initial_val (enum machine_mode, unsigned int); | |
25 /* If a pseudo represents an initial hard reg (or expression), return | |
26 it, else return NULL_RTX. */ | |
27 extern rtx get_hard_reg_initial_reg (rtx); | |
28 /* Called from rest_of_compilation. */ | |
29 extern unsigned int emit_initial_value_sets (void); | |
30 extern void allocate_initial_values (rtx *); | |
31 | |
32 /* Check whether there's any attribute in a function declaration that | |
33 makes the function uninlinable. Returns false if it finds any, | |
34 true otherwise. */ | |
35 extern bool function_attribute_inlinable_p (const_tree); | |
36 |