tree-stdarg.h revision 169689
1132718Skan/* Header for a pass computing data for optimizing stdarg functions.
2132718Skan   Copyright (C) 2004, 2005 Free Software Foundation, Inc.
3132718Skan   Contributed by Jakub Jelinek <jakub@redhat.com>
4132718Skan
5132718SkanThis file is part of GCC.
6132718Skan
7132718SkanGCC is free software; you can redistribute it and/or modify
8132718Skanit under the terms of the GNU General Public License as published by
9132718Skanthe Free Software Foundation; either version 2, or (at your option)
10132718Skanany later version.
11132718Skan
12132718SkanGCC is distributed in the hope that it will be useful,
13132718Skanbut WITHOUT ANY WARRANTY; without even the implied warranty of
14132718SkanMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15132718SkanGNU General Public License for more details.
16132718Skan
17132718SkanYou should have received a copy of the GNU General Public License
18169689Skanalong with GCC; see the file COPYING.  If not, write to
19169689Skanthe Free Software Foundation, 51 Franklin Street, Fifth Floor,
20132718SkanBoston, MA 02110-1301, USA.  */
21132718Skan
22132718Skan#ifndef GCC_TREE_STDARG_H
23132718Skan#define GCC_TREE_STDARG_H 1
24132718Skan
25132718Skanstruct stdarg_info
26132718Skan{
27132718Skan  bitmap va_list_vars, va_list_escape_vars;
28132718Skan  basic_block bb;
29  int compute_sizes, va_start_count;
30  bool va_list_escapes;
31  int *offsets;
32  /* These 2 fields are only meaningful if va_start_count == 1.  */
33  basic_block va_start_bb;
34  tree va_start_ap;
35};
36
37#endif
38