2010-07-27 Paolo Carlini <paolo.carlini@oracle.com>
[official-gcc/alias-decl.git] / gcc / integrate.h
blob7c562f9daef2d7bf3a0cf9b3d73081547d80f08a
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.
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
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 COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 extern rtx get_hard_reg_initial_val (enum machine_mode, unsigned int);
22 extern rtx has_hard_reg_initial_val (enum machine_mode, unsigned int);
23 /* If a pseudo represents an initial hard reg (or expression), return
24 it, else return NULL_RTX. */
25 extern rtx get_hard_reg_initial_reg (rtx);
26 /* Called from rest_of_compilation. */
27 extern unsigned int emit_initial_value_sets (void);
28 extern void allocate_initial_values (rtx *);
30 /* Check whether there's any attribute in a function declaration that
31 makes the function uninlinable. Returns false if it finds any,
32 true otherwise. */
33 extern bool function_attribute_inlinable_p (const_tree);