* config/xtensa/xtensa.c (xtensa_va_arg): Handle complex values as
[official-gcc.git] / gcc / input.h
blobe1289e56a7c3f3821db7ee911eff739e7249338b
1 /* Declarations for variables relating to reading the source file.
2 Used by parsers, lexical analyzers, and error message routines.
3 Copyright (C) 1993, 1997, 1998, 2000, 2003, 2004 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 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, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA. */
22 #ifndef GCC_INPUT_H
23 #define GCC_INPUT_H
25 #include "line-map.h"
27 extern struct line_maps line_table;
29 /* The data structure used to record a location in a translation unit. */
30 /* Long-term, we want to get rid of this and typedef fileline location_t. */
31 struct location_s GTY (())
33 /* The name of the source file involved. */
34 const char *file;
36 /* The line-location in the source file. */
37 int line;
39 typedef struct location_s location_t;
41 struct file_stack
43 struct file_stack *next;
44 location_t location;
47 /* Top-level source file. */
48 extern const char *main_input_filename;
50 extern location_t input_location;
51 #define input_line (input_location.line)
52 #define input_filename (input_location.file)
54 /* Stack of currently pending input files.
55 The line member is not accurate for the innermost file on the stack. */
56 extern struct file_stack *input_file_stack;
58 /* Stack of EXPR_WITH_FILE_LOCATION nested expressions. */
59 extern struct file_stack *expr_wfl_stack;
61 /* Incremented on each change to input_file_stack. */
62 extern int input_file_stack_tick;
64 extern void push_srcloc (const char *name, int line);
65 extern void pop_srcloc (void);
67 #endif