1996-09-18 05:35:50 +00:00
|
|
|
|
/* Separate lexical analyzer for GNU C++.
|
2002-02-01 18:16:02 +00:00
|
|
|
|
Copyright (C) 1987, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
|
2007-05-19 01:19:51 +00:00
|
|
|
|
1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
|
1996-09-18 05:35:50 +00:00
|
|
|
|
Hacked by Michael Tiemann (tiemann@cygnus.com)
|
|
|
|
|
|
2004-07-28 03:11:36 +00:00
|
|
|
|
This file is part of GCC.
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2004-07-28 03:11:36 +00:00
|
|
|
|
GCC is free software; you can redistribute it and/or modify
|
1996-09-18 05:35:50 +00:00
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
|
any later version.
|
|
|
|
|
|
2004-07-28 03:11:36 +00:00
|
|
|
|
GCC is distributed in the hope that it will be useful,
|
1996-09-18 05:35:50 +00:00
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2004-07-28 03:11:36 +00:00
|
|
|
|
along with GCC; see the file COPYING. If not, write to
|
2007-05-19 01:19:51 +00:00
|
|
|
|
the Free Software Foundation, 51 Franklin Street, Fifth Floor,
|
|
|
|
|
Boston, MA 02110-1301, USA. */
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* This file is the lexical analyzer for GNU C++. */
|
|
|
|
|
|
|
|
|
|
#include "config.h"
|
1999-08-26 09:30:50 +00:00
|
|
|
|
#include "system.h"
|
2004-07-28 03:11:36 +00:00
|
|
|
|
#include "coretypes.h"
|
|
|
|
|
#include "tm.h"
|
1996-09-18 05:35:50 +00:00
|
|
|
|
#include "input.h"
|
|
|
|
|
#include "tree.h"
|
|
|
|
|
#include "cp-tree.h"
|
2002-02-01 18:16:02 +00:00
|
|
|
|
#include "cpplib.h"
|
1996-09-18 05:35:50 +00:00
|
|
|
|
#include "flags.h"
|
|
|
|
|
#include "c-pragma.h"
|
1999-08-26 09:30:50 +00:00
|
|
|
|
#include "toplev.h"
|
|
|
|
|
#include "output.h"
|
2002-02-01 18:16:02 +00:00
|
|
|
|
#include "tm_p.h"
|
|
|
|
|
#include "timevar.h"
|
1999-08-26 09:30:50 +00:00
|
|
|
|
|
2004-07-28 03:11:36 +00:00
|
|
|
|
static int interface_strcmp (const char *);
|
|
|
|
|
static void init_cp_pragma (void);
|
2002-02-01 18:16:02 +00:00
|
|
|
|
|
2004-07-28 03:11:36 +00:00
|
|
|
|
static tree parse_strconst_pragma (const char *, int);
|
|
|
|
|
static void handle_pragma_vtable (cpp_reader *);
|
|
|
|
|
static void handle_pragma_unit (cpp_reader *);
|
|
|
|
|
static void handle_pragma_interface (cpp_reader *);
|
|
|
|
|
static void handle_pragma_implementation (cpp_reader *);
|
|
|
|
|
static void handle_pragma_java_exceptions (cpp_reader *);
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2004-07-28 03:11:36 +00:00
|
|
|
|
static void init_operators (void);
|
|
|
|
|
static void copy_lang_type (tree);
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
/* A constraint that can be tested at compile time. */
|
|
|
|
|
#define CONSTRAINT(name, expr) extern int constraint_##name [(expr) ? 1 : -1]
|
|
|
|
|
|
|
|
|
|
/* Functions and data structures for #pragma interface.
|
|
|
|
|
|
|
|
|
|
`#pragma implementation' means that the main file being compiled
|
|
|
|
|
is considered to implement (provide) the classes that appear in
|
|
|
|
|
its main body. I.e., if this is file "foo.cc", and class `bar'
|
|
|
|
|
is defined in "foo.cc", then we say that "foo.cc implements bar".
|
|
|
|
|
|
|
|
|
|
All main input files "implement" themselves automagically.
|
|
|
|
|
|
|
|
|
|
`#pragma interface' means that unless this file (of the form "foo.h"
|
|
|
|
|
is not presently being included by file "foo.cc", the
|
|
|
|
|
CLASSTYPE_INTERFACE_ONLY bit gets set. The effect is that none
|
|
|
|
|
of the vtables nor any of the inline functions defined in foo.h
|
|
|
|
|
will ever be output.
|
|
|
|
|
|
|
|
|
|
There are cases when we want to link files such as "defs.h" and
|
|
|
|
|
"main.cc". In this case, we give "defs.h" a `#pragma interface',
|
|
|
|
|
and "main.cc" has `#pragma implementation "defs.h"'. */
|
|
|
|
|
|
|
|
|
|
struct impl_files
|
|
|
|
|
{
|
|
|
|
|
const char *filename;
|
|
|
|
|
struct impl_files *next;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static struct impl_files *impl_file_chain;
|
|
|
|
|
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
|
|
|
|
void
|
2004-07-28 03:11:36 +00:00
|
|
|
|
cxx_finish (void)
|
1996-09-18 05:35:50 +00:00
|
|
|
|
{
|
2002-02-01 18:16:02 +00:00
|
|
|
|
c_common_finish ();
|
1996-09-18 05:35:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
/* A mapping from tree codes to operator name information. */
|
|
|
|
|
operator_name_info_t operator_name_info[(int) LAST_CPLUS_TREE_CODE];
|
|
|
|
|
/* Similar, but for assignment operators. */
|
|
|
|
|
operator_name_info_t assignment_operator_name_info[(int) LAST_CPLUS_TREE_CODE];
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
/* Initialize data structures that keep track of operator names. */
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
#define DEF_OPERATOR(NAME, C, M, AR, AP) \
|
|
|
|
|
CONSTRAINT (C, sizeof "operator " + sizeof NAME <= 256);
|
|
|
|
|
#include "operators.def"
|
|
|
|
|
#undef DEF_OPERATOR
|
1999-08-26 09:30:50 +00:00
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
static void
|
2004-07-28 03:11:36 +00:00
|
|
|
|
init_operators (void)
|
2002-02-01 18:16:02 +00:00
|
|
|
|
{
|
|
|
|
|
tree identifier;
|
|
|
|
|
char buffer[256];
|
|
|
|
|
struct operator_name_info_t *oni;
|
|
|
|
|
|
|
|
|
|
#define DEF_OPERATOR(NAME, CODE, MANGLING, ARITY, ASSN_P) \
|
|
|
|
|
sprintf (buffer, ISALPHA (NAME[0]) ? "operator %s" : "operator%s", NAME); \
|
|
|
|
|
identifier = get_identifier (buffer); \
|
|
|
|
|
IDENTIFIER_OPNAME_P (identifier) = 1; \
|
|
|
|
|
\
|
|
|
|
|
oni = (ASSN_P \
|
|
|
|
|
? &assignment_operator_name_info[(int) CODE] \
|
|
|
|
|
: &operator_name_info[(int) CODE]); \
|
|
|
|
|
oni->identifier = identifier; \
|
|
|
|
|
oni->name = NAME; \
|
2007-05-19 01:19:51 +00:00
|
|
|
|
oni->mangled_name = MANGLING; \
|
2003-07-11 03:40:53 +00:00
|
|
|
|
oni->arity = ARITY;
|
2002-02-01 18:16:02 +00:00
|
|
|
|
|
|
|
|
|
#include "operators.def"
|
|
|
|
|
#undef DEF_OPERATOR
|
|
|
|
|
|
|
|
|
|
operator_name_info[(int) ERROR_MARK].identifier
|
|
|
|
|
= get_identifier ("<invalid operator>");
|
|
|
|
|
|
|
|
|
|
/* Handle some special cases. These operators are not defined in
|
|
|
|
|
the language, but can be produced internally. We may need them
|
|
|
|
|
for error-reporting. (Eventually, we should ensure that this
|
|
|
|
|
does not happen. Error messages involving these operators will
|
|
|
|
|
be confusing to users.) */
|
|
|
|
|
|
|
|
|
|
operator_name_info [(int) INIT_EXPR].name
|
|
|
|
|
= operator_name_info [(int) MODIFY_EXPR].name;
|
|
|
|
|
operator_name_info [(int) EXACT_DIV_EXPR].name = "(ceiling /)";
|
|
|
|
|
operator_name_info [(int) CEIL_DIV_EXPR].name = "(ceiling /)";
|
|
|
|
|
operator_name_info [(int) FLOOR_DIV_EXPR].name = "(floor /)";
|
|
|
|
|
operator_name_info [(int) ROUND_DIV_EXPR].name = "(round /)";
|
|
|
|
|
operator_name_info [(int) CEIL_MOD_EXPR].name = "(ceiling %)";
|
|
|
|
|
operator_name_info [(int) FLOOR_MOD_EXPR].name = "(floor %)";
|
|
|
|
|
operator_name_info [(int) ROUND_MOD_EXPR].name = "(round %)";
|
|
|
|
|
operator_name_info [(int) ABS_EXPR].name = "abs";
|
|
|
|
|
operator_name_info [(int) TRUTH_AND_EXPR].name = "strict &&";
|
|
|
|
|
operator_name_info [(int) TRUTH_OR_EXPR].name = "strict ||";
|
|
|
|
|
operator_name_info [(int) RANGE_EXPR].name = "...";
|
2007-05-19 01:19:51 +00:00
|
|
|
|
operator_name_info [(int) UNARY_PLUS_EXPR].name = "+";
|
2002-02-01 18:16:02 +00:00
|
|
|
|
|
|
|
|
|
assignment_operator_name_info [(int) EXACT_DIV_EXPR].name
|
|
|
|
|
= "(exact /=)";
|
|
|
|
|
assignment_operator_name_info [(int) CEIL_DIV_EXPR].name
|
|
|
|
|
= "(ceiling /=)";
|
|
|
|
|
assignment_operator_name_info [(int) FLOOR_DIV_EXPR].name
|
|
|
|
|
= "(floor /=)";
|
|
|
|
|
assignment_operator_name_info [(int) ROUND_DIV_EXPR].name
|
|
|
|
|
= "(round /=)";
|
|
|
|
|
assignment_operator_name_info [(int) CEIL_MOD_EXPR].name
|
|
|
|
|
= "(ceiling %=)";
|
|
|
|
|
assignment_operator_name_info [(int) FLOOR_MOD_EXPR].name
|
|
|
|
|
= "(floor %=)";
|
|
|
|
|
assignment_operator_name_info [(int) ROUND_MOD_EXPR].name
|
|
|
|
|
= "(round %=)";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* The reserved keyword table. */
|
|
|
|
|
struct resword
|
|
|
|
|
{
|
|
|
|
|
const char *const word;
|
2004-07-28 03:11:36 +00:00
|
|
|
|
ENUM_BITFIELD(rid) const rid : 16;
|
2002-02-01 18:16:02 +00:00
|
|
|
|
const unsigned int disable : 16;
|
|
|
|
|
};
|
1999-10-16 06:09:09 +00:00
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
/* Disable mask. Keywords are disabled if (reswords[i].disable & mask) is
|
|
|
|
|
_true_. */
|
|
|
|
|
#define D_EXT 0x01 /* GCC extension */
|
|
|
|
|
#define D_ASM 0x02 /* in C99, but has a switch to turn it off */
|
2007-05-19 01:19:51 +00:00
|
|
|
|
#define D_OBJC 0x04 /* Objective C++ only */
|
2002-02-01 18:16:02 +00:00
|
|
|
|
|
|
|
|
|
CONSTRAINT(ridbits_fit, RID_LAST_MODIFIER < sizeof(unsigned long) * CHAR_BIT);
|
|
|
|
|
|
|
|
|
|
static const struct resword reswords[] =
|
|
|
|
|
{
|
|
|
|
|
{ "_Complex", RID_COMPLEX, 0 },
|
|
|
|
|
{ "__FUNCTION__", RID_FUNCTION_NAME, 0 },
|
|
|
|
|
{ "__PRETTY_FUNCTION__", RID_PRETTY_FUNCTION_NAME, 0 },
|
2007-05-19 01:19:51 +00:00
|
|
|
|
{ "__alignof", RID_ALIGNOF, 0 },
|
2002-02-01 18:16:02 +00:00
|
|
|
|
{ "__alignof__", RID_ALIGNOF, 0 },
|
|
|
|
|
{ "__asm", RID_ASM, 0 },
|
|
|
|
|
{ "__asm__", RID_ASM, 0 },
|
|
|
|
|
{ "__attribute", RID_ATTRIBUTE, 0 },
|
|
|
|
|
{ "__attribute__", RID_ATTRIBUTE, 0 },
|
2007-05-19 01:19:51 +00:00
|
|
|
|
{ "__builtin_offsetof", RID_OFFSETOF, 0 },
|
2002-02-01 18:16:02 +00:00
|
|
|
|
{ "__builtin_va_arg", RID_VA_ARG, 0 },
|
|
|
|
|
{ "__complex", RID_COMPLEX, 0 },
|
|
|
|
|
{ "__complex__", RID_COMPLEX, 0 },
|
|
|
|
|
{ "__const", RID_CONST, 0 },
|
|
|
|
|
{ "__const__", RID_CONST, 0 },
|
|
|
|
|
{ "__extension__", RID_EXTENSION, 0 },
|
|
|
|
|
{ "__func__", RID_C99_FUNCTION_NAME, 0 },
|
|
|
|
|
{ "__imag", RID_IMAGPART, 0 },
|
|
|
|
|
{ "__imag__", RID_IMAGPART, 0 },
|
|
|
|
|
{ "__inline", RID_INLINE, 0 },
|
|
|
|
|
{ "__inline__", RID_INLINE, 0 },
|
|
|
|
|
{ "__label__", RID_LABEL, 0 },
|
|
|
|
|
{ "__null", RID_NULL, 0 },
|
|
|
|
|
{ "__real", RID_REALPART, 0 },
|
|
|
|
|
{ "__real__", RID_REALPART, 0 },
|
|
|
|
|
{ "__restrict", RID_RESTRICT, 0 },
|
|
|
|
|
{ "__restrict__", RID_RESTRICT, 0 },
|
|
|
|
|
{ "__signed", RID_SIGNED, 0 },
|
|
|
|
|
{ "__signed__", RID_SIGNED, 0 },
|
2003-07-11 03:40:53 +00:00
|
|
|
|
{ "__thread", RID_THREAD, 0 },
|
2002-02-01 18:16:02 +00:00
|
|
|
|
{ "__typeof", RID_TYPEOF, 0 },
|
|
|
|
|
{ "__typeof__", RID_TYPEOF, 0 },
|
|
|
|
|
{ "__volatile", RID_VOLATILE, 0 },
|
|
|
|
|
{ "__volatile__", RID_VOLATILE, 0 },
|
|
|
|
|
{ "asm", RID_ASM, D_ASM },
|
|
|
|
|
{ "auto", RID_AUTO, 0 },
|
|
|
|
|
{ "bool", RID_BOOL, 0 },
|
|
|
|
|
{ "break", RID_BREAK, 0 },
|
|
|
|
|
{ "case", RID_CASE, 0 },
|
|
|
|
|
{ "catch", RID_CATCH, 0 },
|
|
|
|
|
{ "char", RID_CHAR, 0 },
|
|
|
|
|
{ "class", RID_CLASS, 0 },
|
|
|
|
|
{ "const", RID_CONST, 0 },
|
|
|
|
|
{ "const_cast", RID_CONSTCAST, 0 },
|
|
|
|
|
{ "continue", RID_CONTINUE, 0 },
|
|
|
|
|
{ "default", RID_DEFAULT, 0 },
|
|
|
|
|
{ "delete", RID_DELETE, 0 },
|
|
|
|
|
{ "do", RID_DO, 0 },
|
|
|
|
|
{ "double", RID_DOUBLE, 0 },
|
|
|
|
|
{ "dynamic_cast", RID_DYNCAST, 0 },
|
|
|
|
|
{ "else", RID_ELSE, 0 },
|
|
|
|
|
{ "enum", RID_ENUM, 0 },
|
|
|
|
|
{ "explicit", RID_EXPLICIT, 0 },
|
|
|
|
|
{ "export", RID_EXPORT, 0 },
|
|
|
|
|
{ "extern", RID_EXTERN, 0 },
|
|
|
|
|
{ "false", RID_FALSE, 0 },
|
|
|
|
|
{ "float", RID_FLOAT, 0 },
|
|
|
|
|
{ "for", RID_FOR, 0 },
|
|
|
|
|
{ "friend", RID_FRIEND, 0 },
|
|
|
|
|
{ "goto", RID_GOTO, 0 },
|
|
|
|
|
{ "if", RID_IF, 0 },
|
|
|
|
|
{ "inline", RID_INLINE, 0 },
|
|
|
|
|
{ "int", RID_INT, 0 },
|
|
|
|
|
{ "long", RID_LONG, 0 },
|
|
|
|
|
{ "mutable", RID_MUTABLE, 0 },
|
|
|
|
|
{ "namespace", RID_NAMESPACE, 0 },
|
|
|
|
|
{ "new", RID_NEW, 0 },
|
|
|
|
|
{ "operator", RID_OPERATOR, 0 },
|
|
|
|
|
{ "private", RID_PRIVATE, 0 },
|
|
|
|
|
{ "protected", RID_PROTECTED, 0 },
|
|
|
|
|
{ "public", RID_PUBLIC, 0 },
|
|
|
|
|
{ "register", RID_REGISTER, 0 },
|
|
|
|
|
{ "reinterpret_cast", RID_REINTCAST, 0 },
|
|
|
|
|
{ "return", RID_RETURN, 0 },
|
|
|
|
|
{ "short", RID_SHORT, 0 },
|
|
|
|
|
{ "signed", RID_SIGNED, 0 },
|
|
|
|
|
{ "sizeof", RID_SIZEOF, 0 },
|
|
|
|
|
{ "static", RID_STATIC, 0 },
|
|
|
|
|
{ "static_cast", RID_STATCAST, 0 },
|
|
|
|
|
{ "struct", RID_STRUCT, 0 },
|
|
|
|
|
{ "switch", RID_SWITCH, 0 },
|
|
|
|
|
{ "template", RID_TEMPLATE, 0 },
|
|
|
|
|
{ "this", RID_THIS, 0 },
|
|
|
|
|
{ "throw", RID_THROW, 0 },
|
|
|
|
|
{ "true", RID_TRUE, 0 },
|
|
|
|
|
{ "try", RID_TRY, 0 },
|
|
|
|
|
{ "typedef", RID_TYPEDEF, 0 },
|
|
|
|
|
{ "typename", RID_TYPENAME, 0 },
|
|
|
|
|
{ "typeid", RID_TYPEID, 0 },
|
|
|
|
|
{ "typeof", RID_TYPEOF, D_ASM|D_EXT },
|
|
|
|
|
{ "union", RID_UNION, 0 },
|
|
|
|
|
{ "unsigned", RID_UNSIGNED, 0 },
|
|
|
|
|
{ "using", RID_USING, 0 },
|
|
|
|
|
{ "virtual", RID_VIRTUAL, 0 },
|
|
|
|
|
{ "void", RID_VOID, 0 },
|
|
|
|
|
{ "volatile", RID_VOLATILE, 0 },
|
2007-05-19 01:19:51 +00:00
|
|
|
|
{ "wchar_t", RID_WCHAR, 0 },
|
2002-02-01 18:16:02 +00:00
|
|
|
|
{ "while", RID_WHILE, 0 },
|
1999-10-16 06:09:09 +00:00
|
|
|
|
|
2007-05-19 01:19:51 +00:00
|
|
|
|
/* The remaining keywords are specific to Objective-C++. NB:
|
|
|
|
|
All of them will remain _disabled_, since they are context-
|
|
|
|
|
sensitive. */
|
|
|
|
|
|
|
|
|
|
/* These ObjC keywords are recognized only immediately after
|
|
|
|
|
an '@'. NB: The following C++ keywords double as
|
|
|
|
|
ObjC keywords in this context: RID_CLASS, RID_PRIVATE,
|
|
|
|
|
RID_PROTECTED, RID_PUBLIC, RID_THROW, RID_TRY and RID_CATCH. */
|
|
|
|
|
{ "compatibility_alias", RID_AT_ALIAS, D_OBJC },
|
|
|
|
|
{ "defs", RID_AT_DEFS, D_OBJC },
|
|
|
|
|
{ "encode", RID_AT_ENCODE, D_OBJC },
|
|
|
|
|
{ "end", RID_AT_END, D_OBJC },
|
|
|
|
|
{ "implementation", RID_AT_IMPLEMENTATION, D_OBJC },
|
|
|
|
|
{ "interface", RID_AT_INTERFACE, D_OBJC },
|
|
|
|
|
{ "protocol", RID_AT_PROTOCOL, D_OBJC },
|
|
|
|
|
{ "selector", RID_AT_SELECTOR, D_OBJC },
|
|
|
|
|
{ "finally", RID_AT_FINALLY, D_OBJC },
|
|
|
|
|
{ "synchronized", RID_AT_SYNCHRONIZED, D_OBJC },
|
|
|
|
|
/* These are recognized only in protocol-qualifier context. */
|
|
|
|
|
{ "bycopy", RID_BYCOPY, D_OBJC },
|
|
|
|
|
{ "byref", RID_BYREF, D_OBJC },
|
|
|
|
|
{ "in", RID_IN, D_OBJC },
|
|
|
|
|
{ "inout", RID_INOUT, D_OBJC },
|
|
|
|
|
{ "oneway", RID_ONEWAY, D_OBJC },
|
|
|
|
|
{ "out", RID_OUT, D_OBJC },
|
2002-02-01 18:16:02 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void
|
2004-07-28 03:11:36 +00:00
|
|
|
|
init_reswords (void)
|
2002-02-01 18:16:02 +00:00
|
|
|
|
{
|
|
|
|
|
unsigned int i;
|
|
|
|
|
tree id;
|
2003-07-11 03:40:53 +00:00
|
|
|
|
int mask = ((flag_no_asm ? D_ASM : 0)
|
2007-05-19 01:19:51 +00:00
|
|
|
|
| D_OBJC
|
2002-02-01 18:16:02 +00:00
|
|
|
|
| (flag_no_gnu_keywords ? D_EXT : 0));
|
|
|
|
|
|
2007-05-19 01:19:51 +00:00
|
|
|
|
ridpointers = GGC_CNEWVEC (tree, (int) RID_MAX);
|
2003-07-11 03:40:53 +00:00
|
|
|
|
for (i = 0; i < ARRAY_SIZE (reswords); i++)
|
1999-08-26 09:30:50 +00:00
|
|
|
|
{
|
2002-02-01 18:16:02 +00:00
|
|
|
|
id = get_identifier (reswords[i].word);
|
|
|
|
|
C_RID_CODE (id) = reswords[i].rid;
|
|
|
|
|
ridpointers [(int) reswords[i].rid] = id;
|
|
|
|
|
if (! (reswords[i].disable & mask))
|
|
|
|
|
C_IS_RESERVED_WORD (id) = 1;
|
1999-08-26 09:30:50 +00:00
|
|
|
|
}
|
2002-02-01 18:16:02 +00:00
|
|
|
|
}
|
1999-08-26 09:30:50 +00:00
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
static void
|
2004-07-28 03:11:36 +00:00
|
|
|
|
init_cp_pragma (void)
|
2002-02-01 18:16:02 +00:00
|
|
|
|
{
|
2004-07-28 03:11:36 +00:00
|
|
|
|
c_register_pragma (0, "vtable", handle_pragma_vtable);
|
|
|
|
|
c_register_pragma (0, "unit", handle_pragma_unit);
|
|
|
|
|
c_register_pragma (0, "interface", handle_pragma_interface);
|
|
|
|
|
c_register_pragma (0, "implementation", handle_pragma_implementation);
|
|
|
|
|
c_register_pragma ("GCC", "interface", handle_pragma_interface);
|
|
|
|
|
c_register_pragma ("GCC", "implementation", handle_pragma_implementation);
|
|
|
|
|
c_register_pragma ("GCC", "java_exceptions", handle_pragma_java_exceptions);
|
2002-02-01 18:16:02 +00:00
|
|
|
|
}
|
2004-07-28 03:11:36 +00:00
|
|
|
|
|
2007-05-19 01:19:51 +00:00
|
|
|
|
/* TRUE if a code represents a statement. */
|
|
|
|
|
|
|
|
|
|
bool statement_code_p[MAX_TREE_CODES];
|
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
/* Initialize the C++ front end. This function is very sensitive to
|
|
|
|
|
the exact order that things are done here. It would be nice if the
|
|
|
|
|
initialization done by this routine were moved to its subroutines,
|
|
|
|
|
and the ordering dependencies clarified and reduced. */
|
2004-07-28 03:11:36 +00:00
|
|
|
|
bool
|
|
|
|
|
cxx_init (void)
|
2002-02-01 18:16:02 +00:00
|
|
|
|
{
|
2007-05-19 01:19:51 +00:00
|
|
|
|
unsigned int i;
|
2004-07-28 03:11:36 +00:00
|
|
|
|
static const enum tree_code stmt_codes[] = {
|
2007-05-19 01:19:51 +00:00
|
|
|
|
CTOR_INITIALIZER, TRY_BLOCK, HANDLER,
|
|
|
|
|
EH_SPEC_BLOCK, USING_STMT, TAG_DEFN,
|
|
|
|
|
IF_STMT, CLEANUP_STMT, FOR_STMT,
|
|
|
|
|
WHILE_STMT, DO_STMT, BREAK_STMT,
|
|
|
|
|
CONTINUE_STMT, SWITCH_STMT, EXPR_STMT
|
2004-07-28 03:11:36 +00:00
|
|
|
|
};
|
|
|
|
|
|
2007-05-19 01:19:51 +00:00
|
|
|
|
memset (&statement_code_p, 0, sizeof (statement_code_p));
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE (stmt_codes); i++)
|
|
|
|
|
statement_code_p[stmt_codes[i]] = true;
|
2004-07-28 03:11:36 +00:00
|
|
|
|
|
|
|
|
|
/* We cannot just assign to input_filename because it has already
|
|
|
|
|
been initialized and will be used later as an N_BINCL for stabs+
|
|
|
|
|
debugging. */
|
2007-05-19 01:19:51 +00:00
|
|
|
|
#ifdef USE_MAPPED_LOCATION
|
|
|
|
|
push_srcloc (BUILTINS_LOCATION);
|
|
|
|
|
#else
|
|
|
|
|
push_srcloc ("<built-in>", 0);
|
|
|
|
|
#endif
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
init_reswords ();
|
|
|
|
|
init_tree ();
|
|
|
|
|
init_cp_semantics ();
|
|
|
|
|
init_operators ();
|
1996-09-18 05:35:50 +00:00
|
|
|
|
init_method ();
|
|
|
|
|
init_error ();
|
|
|
|
|
|
|
|
|
|
current_function_decl = NULL;
|
|
|
|
|
|
2004-07-28 03:11:36 +00:00
|
|
|
|
class_type_node = ridpointers[(int) RID_CLASS];
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
cxx_init_decl_processing ();
|
|
|
|
|
|
2007-05-19 01:19:51 +00:00
|
|
|
|
/* The fact that G++ uses COMDAT for many entities (inline
|
|
|
|
|
functions, template instantiations, virtual tables, etc.) mean
|
|
|
|
|
that it is fundamentally unreliable to try to make decisions
|
|
|
|
|
about whether or not to output a particular entity until the end
|
|
|
|
|
of the compilation. However, the inliner requires that functions
|
|
|
|
|
be provided to the back end if they are to be inlined.
|
|
|
|
|
Therefore, we always use unit-at-a-time mode; in that mode, we
|
|
|
|
|
can provide entities to the back end and it will decide what to
|
|
|
|
|
emit based on what is actually needed. */
|
|
|
|
|
flag_unit_at_a_time = 1;
|
1999-08-26 09:30:50 +00:00
|
|
|
|
|
2004-07-28 03:11:36 +00:00
|
|
|
|
if (c_common_init () == false)
|
1996-09-18 05:35:50 +00:00
|
|
|
|
{
|
2004-07-28 03:11:36 +00:00
|
|
|
|
pop_srcloc();
|
|
|
|
|
return false;
|
1996-09-18 05:35:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-07-28 03:11:36 +00:00
|
|
|
|
init_cp_pragma ();
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2007-05-19 01:19:51 +00:00
|
|
|
|
init_repo ();
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2004-07-28 03:11:36 +00:00
|
|
|
|
pop_srcloc();
|
|
|
|
|
return true;
|
1996-09-18 05:35:50 +00:00
|
|
|
|
}
|
2004-07-28 03:11:36 +00:00
|
|
|
|
|
1996-09-18 05:35:50 +00:00
|
|
|
|
/* Return nonzero if S is not considered part of an
|
|
|
|
|
INTERFACE/IMPLEMENTATION pair. Otherwise, return 0. */
|
1999-08-26 09:30:50 +00:00
|
|
|
|
|
1996-09-18 05:35:50 +00:00
|
|
|
|
static int
|
2004-07-28 03:11:36 +00:00
|
|
|
|
interface_strcmp (const char* s)
|
1996-09-18 05:35:50 +00:00
|
|
|
|
{
|
|
|
|
|
/* Set the interface/implementation bits for this scope. */
|
|
|
|
|
struct impl_files *ifiles;
|
1999-10-16 06:09:09 +00:00
|
|
|
|
const char *s1;
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
|
|
|
|
for (ifiles = impl_file_chain; ifiles; ifiles = ifiles->next)
|
|
|
|
|
{
|
1999-10-16 06:09:09 +00:00
|
|
|
|
const char *t1 = ifiles->filename;
|
1996-09-18 05:35:50 +00:00
|
|
|
|
s1 = s;
|
|
|
|
|
|
|
|
|
|
if (*s1 != *t1 || *s1 == 0)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
while (*s1 == *t1 && *s1 != 0)
|
|
|
|
|
s1++, t1++;
|
|
|
|
|
|
|
|
|
|
/* A match. */
|
|
|
|
|
if (*s1 == *t1)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
/* Don't get faked out by xxx.yyy.cc vs xxx.zzz.cc. */
|
2002-02-01 18:16:02 +00:00
|
|
|
|
if (strchr (s1, '.') || strchr (t1, '.'))
|
1996-09-18 05:35:50 +00:00
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
if (*s1 == '\0' || s1[-1] != '.' || t1[-1] != '.')
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
/* A match. */
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* No matches. */
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
/* Parse a #pragma whose sole argument is a string constant.
|
|
|
|
|
If OPT is true, the argument is optional. */
|
|
|
|
|
static tree
|
2004-07-28 03:11:36 +00:00
|
|
|
|
parse_strconst_pragma (const char* name, int opt)
|
1996-09-18 05:35:50 +00:00
|
|
|
|
{
|
2002-02-01 18:16:02 +00:00
|
|
|
|
tree result, x;
|
|
|
|
|
enum cpp_ttype t;
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2007-05-19 01:19:51 +00:00
|
|
|
|
t = pragma_lex (&result);
|
2002-02-01 18:16:02 +00:00
|
|
|
|
if (t == CPP_STRING)
|
1996-09-18 05:35:50 +00:00
|
|
|
|
{
|
2007-05-19 01:19:51 +00:00
|
|
|
|
if (pragma_lex (&x) != CPP_EOF)
|
|
|
|
|
warning (0, "junk at end of #pragma %s", name);
|
2002-02-01 18:16:02 +00:00
|
|
|
|
return result;
|
1996-09-18 05:35:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
if (t == CPP_EOF && opt)
|
2007-05-19 01:19:51 +00:00
|
|
|
|
return NULL_TREE;
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
error ("invalid #pragma %s", name);
|
2007-05-19 01:19:51 +00:00
|
|
|
|
return error_mark_node;
|
1996-09-18 05:35:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
static void
|
2004-07-28 03:11:36 +00:00
|
|
|
|
handle_pragma_vtable (cpp_reader* dfile ATTRIBUTE_UNUSED )
|
1996-09-18 05:35:50 +00:00
|
|
|
|
{
|
2002-02-01 18:16:02 +00:00
|
|
|
|
parse_strconst_pragma ("vtable", 0);
|
|
|
|
|
sorry ("#pragma vtable no longer supported");
|
1996-09-18 05:35:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
static void
|
2004-07-28 03:11:36 +00:00
|
|
|
|
handle_pragma_unit (cpp_reader* dfile ATTRIBUTE_UNUSED )
|
2002-02-01 18:16:02 +00:00
|
|
|
|
{
|
|
|
|
|
/* Validate syntax, but don't do anything. */
|
|
|
|
|
parse_strconst_pragma ("unit", 0);
|
|
|
|
|
}
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
static void
|
2004-07-28 03:11:36 +00:00
|
|
|
|
handle_pragma_interface (cpp_reader* dfile ATTRIBUTE_UNUSED )
|
2002-02-01 18:16:02 +00:00
|
|
|
|
{
|
|
|
|
|
tree fname = parse_strconst_pragma ("interface", 1);
|
|
|
|
|
struct c_fileinfo *finfo;
|
2007-05-19 01:19:51 +00:00
|
|
|
|
const char *filename;
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2007-05-19 01:19:51 +00:00
|
|
|
|
if (fname == error_mark_node)
|
2002-02-01 18:16:02 +00:00
|
|
|
|
return;
|
|
|
|
|
else if (fname == 0)
|
2007-05-19 01:19:51 +00:00
|
|
|
|
filename = lbasename (input_filename);
|
2002-02-01 18:16:02 +00:00
|
|
|
|
else
|
2007-05-19 01:19:51 +00:00
|
|
|
|
filename = ggc_strdup (TREE_STRING_POINTER (fname));
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
finfo = get_fileinfo (input_filename);
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
if (impl_file_chain == 0)
|
|
|
|
|
{
|
|
|
|
|
/* If this is zero at this point, then we are
|
|
|
|
|
auto-implementing. */
|
|
|
|
|
if (main_input_filename == 0)
|
|
|
|
|
main_input_filename = input_filename;
|
|
|
|
|
}
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2007-05-19 01:19:51 +00:00
|
|
|
|
finfo->interface_only = interface_strcmp (filename);
|
|
|
|
|
/* If MULTIPLE_SYMBOL_SPACES is set, we cannot assume that we can see
|
|
|
|
|
a definition in another file. */
|
|
|
|
|
if (!MULTIPLE_SYMBOL_SPACES || !finfo->interface_only)
|
|
|
|
|
finfo->interface_unknown = 0;
|
2002-02-01 18:16:02 +00:00
|
|
|
|
}
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
/* Note that we have seen a #pragma implementation for the key MAIN_FILENAME.
|
|
|
|
|
We used to only allow this at toplevel, but that restriction was buggy
|
|
|
|
|
in older compilers and it seems reasonable to allow it in the headers
|
|
|
|
|
themselves, too. It only needs to precede the matching #p interface.
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2007-05-19 01:19:51 +00:00
|
|
|
|
We don't touch finfo->interface_only or finfo->interface_unknown;
|
|
|
|
|
the user must specify a matching #p interface for this to have
|
|
|
|
|
any effect. */
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
static void
|
2004-07-28 03:11:36 +00:00
|
|
|
|
handle_pragma_implementation (cpp_reader* dfile ATTRIBUTE_UNUSED )
|
2002-02-01 18:16:02 +00:00
|
|
|
|
{
|
|
|
|
|
tree fname = parse_strconst_pragma ("implementation", 1);
|
2007-05-19 01:19:51 +00:00
|
|
|
|
const char *filename;
|
2002-02-01 18:16:02 +00:00
|
|
|
|
struct impl_files *ifiles = impl_file_chain;
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2007-05-19 01:19:51 +00:00
|
|
|
|
if (fname == error_mark_node)
|
2002-02-01 18:16:02 +00:00
|
|
|
|
return;
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
if (fname == 0)
|
|
|
|
|
{
|
|
|
|
|
if (main_input_filename)
|
2007-05-19 01:19:51 +00:00
|
|
|
|
filename = main_input_filename;
|
2002-02-01 18:16:02 +00:00
|
|
|
|
else
|
2007-05-19 01:19:51 +00:00
|
|
|
|
filename = input_filename;
|
|
|
|
|
filename = lbasename (filename);
|
1996-09-18 05:35:50 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
2002-02-01 18:16:02 +00:00
|
|
|
|
{
|
2007-05-19 01:19:51 +00:00
|
|
|
|
filename = ggc_strdup (TREE_STRING_POINTER (fname));
|
|
|
|
|
#if 0
|
|
|
|
|
/* We currently cannot give this diagnostic, as we reach this point
|
|
|
|
|
only after cpplib has scanned the entire translation unit, so
|
|
|
|
|
cpp_included always returns true. A plausible fix is to compare
|
|
|
|
|
the current source-location cookie with the first source-location
|
|
|
|
|
cookie (if any) of the filename, but this requires completing the
|
|
|
|
|
--enable-mapped-location project first. See PR 17577. */
|
|
|
|
|
if (cpp_included (parse_in, filename))
|
|
|
|
|
warning (0, "#pragma implementation for %qs appears after "
|
|
|
|
|
"file is included", filename);
|
|
|
|
|
#endif
|
2002-02-01 18:16:02 +00:00
|
|
|
|
}
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
for (; ifiles; ifiles = ifiles->next)
|
1999-08-26 09:30:50 +00:00
|
|
|
|
{
|
2007-05-19 01:19:51 +00:00
|
|
|
|
if (! strcmp (ifiles->filename, filename))
|
2002-02-01 18:16:02 +00:00
|
|
|
|
break;
|
1999-08-26 09:30:50 +00:00
|
|
|
|
}
|
2002-02-01 18:16:02 +00:00
|
|
|
|
if (ifiles == 0)
|
1999-08-26 09:30:50 +00:00
|
|
|
|
{
|
2007-05-19 01:19:51 +00:00
|
|
|
|
ifiles = XNEW (struct impl_files);
|
|
|
|
|
ifiles->filename = filename;
|
2002-02-01 18:16:02 +00:00
|
|
|
|
ifiles->next = impl_file_chain;
|
|
|
|
|
impl_file_chain = ifiles;
|
1999-08-26 09:30:50 +00:00
|
|
|
|
}
|
2002-02-01 18:16:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Indicate that this file uses Java-personality exception handling. */
|
|
|
|
|
static void
|
2007-05-19 01:19:51 +00:00
|
|
|
|
handle_pragma_java_exceptions (cpp_reader* dfile ATTRIBUTE_UNUSED)
|
2002-02-01 18:16:02 +00:00
|
|
|
|
{
|
|
|
|
|
tree x;
|
2007-05-19 01:19:51 +00:00
|
|
|
|
if (pragma_lex (&x) != CPP_EOF)
|
|
|
|
|
warning (0, "junk at end of #pragma GCC java_exceptions");
|
2002-02-01 18:16:02 +00:00
|
|
|
|
|
|
|
|
|
choose_personality_routine (lang_java);
|
1996-09-18 05:35:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2003-07-11 03:40:53 +00:00
|
|
|
|
/* Issue an error message indicating that the lookup of NAME (an
|
2004-07-28 03:11:36 +00:00
|
|
|
|
IDENTIFIER_NODE) failed. Returns the ERROR_MARK_NODE. */
|
2003-07-11 03:40:53 +00:00
|
|
|
|
|
2004-07-28 03:11:36 +00:00
|
|
|
|
tree
|
2003-07-11 03:40:53 +00:00
|
|
|
|
unqualified_name_lookup_error (tree name)
|
|
|
|
|
{
|
|
|
|
|
if (IDENTIFIER_OPNAME_P (name))
|
|
|
|
|
{
|
|
|
|
|
if (name != ansi_opname (ERROR_MARK))
|
2007-05-19 01:19:51 +00:00
|
|
|
|
error ("%qD not defined", name);
|
2003-07-11 03:40:53 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2007-05-19 01:19:51 +00:00
|
|
|
|
error ("%qD was not declared in this scope", name);
|
2006-08-26 21:29:10 +00:00
|
|
|
|
/* Prevent repeated error messages by creating a VAR_DECL with
|
|
|
|
|
this NAME in the innermost block scope. */
|
|
|
|
|
if (current_function_decl)
|
2003-07-11 03:40:53 +00:00
|
|
|
|
{
|
2006-08-26 21:29:10 +00:00
|
|
|
|
tree decl;
|
|
|
|
|
decl = build_decl (VAR_DECL, name, error_mark_node);
|
|
|
|
|
DECL_CONTEXT (decl) = current_function_decl;
|
|
|
|
|
push_local_binding (name, decl, 0);
|
2007-05-19 01:19:51 +00:00
|
|
|
|
/* Mark the variable as used so that we do not get warnings
|
|
|
|
|
about it being unused later. */
|
|
|
|
|
TREE_USED (decl) = 1;
|
2003-07-11 03:40:53 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2002-02-01 18:16:02 +00:00
|
|
|
|
|
2004-07-28 03:11:36 +00:00
|
|
|
|
return error_mark_node;
|
1996-09-18 05:35:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-07-28 03:11:36 +00:00
|
|
|
|
/* Like unqualified_name_lookup_error, but NAME is an unqualified-id
|
|
|
|
|
used as a function. Returns an appropriate expression for
|
|
|
|
|
NAME. */
|
|
|
|
|
|
1999-08-26 09:30:50 +00:00
|
|
|
|
tree
|
2004-07-28 03:11:36 +00:00
|
|
|
|
unqualified_fn_lookup_error (tree name)
|
1999-08-26 09:30:50 +00:00
|
|
|
|
{
|
2002-02-01 18:16:02 +00:00
|
|
|
|
if (processing_template_decl)
|
|
|
|
|
{
|
2004-07-28 03:11:36 +00:00
|
|
|
|
/* In a template, it is invalid to write "f()" or "f(3)" if no
|
|
|
|
|
declaration of "f" is available. Historically, G++ and most
|
|
|
|
|
other compilers accepted that usage since they deferred all name
|
|
|
|
|
lookup until instantiation time rather than doing unqualified
|
2007-05-19 01:19:51 +00:00
|
|
|
|
name lookup at template definition time; explain to the user what
|
2004-07-28 03:11:36 +00:00
|
|
|
|
is going wrong.
|
|
|
|
|
|
|
|
|
|
Note that we have the exact wording of the following message in
|
|
|
|
|
the manual (trouble.texi, node "Name lookup"), so they need to
|
|
|
|
|
be kept in synch. */
|
2007-05-19 01:19:51 +00:00
|
|
|
|
pedwarn ("there are no arguments to %qD that depend on a template "
|
|
|
|
|
"parameter, so a declaration of %qD must be available",
|
2004-07-28 03:11:36 +00:00
|
|
|
|
name, name);
|
2007-05-19 01:19:51 +00:00
|
|
|
|
|
2004-07-28 03:11:36 +00:00
|
|
|
|
if (!flag_permissive)
|
1996-09-18 05:35:50 +00:00
|
|
|
|
{
|
2004-07-28 03:11:36 +00:00
|
|
|
|
static bool hint;
|
|
|
|
|
if (!hint)
|
|
|
|
|
{
|
2007-05-19 01:19:51 +00:00
|
|
|
|
error ("(if you use %<-fpermissive%>, G++ will accept your "
|
|
|
|
|
"code, but allowing the use of an undeclared name is "
|
2004-07-28 03:11:36 +00:00
|
|
|
|
"deprecated)");
|
|
|
|
|
hint = true;
|
|
|
|
|
}
|
1996-09-18 05:35:50 +00:00
|
|
|
|
}
|
2004-07-28 03:11:36 +00:00
|
|
|
|
return name;
|
2002-02-01 18:16:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-07-28 03:11:36 +00:00
|
|
|
|
return unqualified_name_lookup_error (name);
|
1999-08-26 09:30:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
1996-09-18 05:35:50 +00:00
|
|
|
|
tree
|
2004-07-28 03:11:36 +00:00
|
|
|
|
build_lang_decl (enum tree_code code, tree name, tree type)
|
1996-09-18 05:35:50 +00:00
|
|
|
|
{
|
2002-02-01 18:16:02 +00:00
|
|
|
|
tree t;
|
|
|
|
|
|
|
|
|
|
t = build_decl (code, name, type);
|
1999-10-16 06:09:09 +00:00
|
|
|
|
retrofit_lang_decl (t);
|
2002-02-01 18:16:02 +00:00
|
|
|
|
|
2007-05-19 01:19:51 +00:00
|
|
|
|
/* All nesting of C++ functions is lexical; there is never a "static
|
|
|
|
|
chain" in the sense of GNU C nested functions. */
|
|
|
|
|
if (code == FUNCTION_DECL)
|
|
|
|
|
DECL_NO_STATIC_CHAIN (t) = 1;
|
|
|
|
|
|
1999-10-16 06:09:09 +00:00
|
|
|
|
return t;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Add DECL_LANG_SPECIFIC info to T. Called from build_lang_decl
|
|
|
|
|
and pushdecl (for functions generated by the backend). */
|
|
|
|
|
|
|
|
|
|
void
|
2004-07-28 03:11:36 +00:00
|
|
|
|
retrofit_lang_decl (tree t)
|
1999-10-16 06:09:09 +00:00
|
|
|
|
{
|
2002-02-01 18:16:02 +00:00
|
|
|
|
struct lang_decl *ld;
|
|
|
|
|
size_t size;
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
if (CAN_HAVE_FULL_LANG_DECL_P (t))
|
|
|
|
|
size = sizeof (struct lang_decl);
|
1996-09-18 05:35:50 +00:00
|
|
|
|
else
|
2002-02-01 18:16:02 +00:00
|
|
|
|
size = sizeof (struct lang_decl_flags);
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2007-05-19 01:19:51 +00:00
|
|
|
|
ld = GGC_CNEWVAR (struct lang_decl, size);
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2003-07-11 03:40:53 +00:00
|
|
|
|
ld->decl_flags.can_be_full = CAN_HAVE_FULL_LANG_DECL_P (t) ? 1 : 0;
|
|
|
|
|
ld->decl_flags.u1sel = TREE_CODE (t) == NAMESPACE_DECL ? 1 : 0;
|
|
|
|
|
ld->decl_flags.u2sel = 0;
|
|
|
|
|
if (ld->decl_flags.can_be_full)
|
|
|
|
|
ld->u.f.u3sel = TREE_CODE (t) == FUNCTION_DECL ? 1 : 0;
|
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
DECL_LANG_SPECIFIC (t) = ld;
|
2004-07-28 03:11:36 +00:00
|
|
|
|
if (current_lang_name == lang_name_cplusplus
|
|
|
|
|
|| decl_linkage (t) == lk_none)
|
2002-02-01 18:16:02 +00:00
|
|
|
|
SET_DECL_LANGUAGE (t, lang_cplusplus);
|
1996-09-18 05:35:50 +00:00
|
|
|
|
else if (current_lang_name == lang_name_c)
|
2002-02-01 18:16:02 +00:00
|
|
|
|
SET_DECL_LANGUAGE (t, lang_c);
|
1999-08-26 09:30:50 +00:00
|
|
|
|
else if (current_lang_name == lang_name_java)
|
2002-02-01 18:16:02 +00:00
|
|
|
|
SET_DECL_LANGUAGE (t, lang_java);
|
2007-05-19 01:19:51 +00:00
|
|
|
|
else
|
|
|
|
|
gcc_unreachable ();
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
|
|
|
|
#ifdef GATHER_STATISTICS
|
|
|
|
|
tree_node_counts[(int)lang_decl] += 1;
|
2002-02-01 18:16:02 +00:00
|
|
|
|
tree_node_sizes[(int)lang_decl] += size;
|
1996-09-18 05:35:50 +00:00
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
void
|
2004-07-28 03:11:36 +00:00
|
|
|
|
cxx_dup_lang_specific_decl (tree node)
|
1996-09-18 05:35:50 +00:00
|
|
|
|
{
|
2002-02-01 18:16:02 +00:00
|
|
|
|
int size;
|
|
|
|
|
struct lang_decl *ld;
|
|
|
|
|
|
|
|
|
|
if (! DECL_LANG_SPECIFIC (node))
|
|
|
|
|
return;
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
if (!CAN_HAVE_FULL_LANG_DECL_P (node))
|
|
|
|
|
size = sizeof (struct lang_decl_flags);
|
1996-09-18 05:35:50 +00:00
|
|
|
|
else
|
2002-02-01 18:16:02 +00:00
|
|
|
|
size = sizeof (struct lang_decl);
|
2007-05-19 01:19:51 +00:00
|
|
|
|
ld = GGC_NEWVAR (struct lang_decl, size);
|
2002-02-01 18:16:02 +00:00
|
|
|
|
memcpy (ld, DECL_LANG_SPECIFIC (node), size);
|
|
|
|
|
DECL_LANG_SPECIFIC (node) = ld;
|
|
|
|
|
|
|
|
|
|
#ifdef GATHER_STATISTICS
|
|
|
|
|
tree_node_counts[(int)lang_decl] += 1;
|
|
|
|
|
tree_node_sizes[(int)lang_decl] += size;
|
|
|
|
|
#endif
|
|
|
|
|
}
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
/* Copy DECL, including any language-specific parts. */
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
tree
|
2004-07-28 03:11:36 +00:00
|
|
|
|
copy_decl (tree decl)
|
2002-02-01 18:16:02 +00:00
|
|
|
|
{
|
|
|
|
|
tree copy;
|
|
|
|
|
|
|
|
|
|
copy = copy_node (decl);
|
2003-07-11 03:40:53 +00:00
|
|
|
|
cxx_dup_lang_specific_decl (copy);
|
2002-02-01 18:16:02 +00:00
|
|
|
|
return copy;
|
1996-09-18 05:35:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
/* Replace the shared language-specific parts of NODE with a new copy. */
|
|
|
|
|
|
|
|
|
|
static void
|
2004-07-28 03:11:36 +00:00
|
|
|
|
copy_lang_type (tree node)
|
1996-09-18 05:35:50 +00:00
|
|
|
|
{
|
|
|
|
|
int size;
|
2002-02-01 18:16:02 +00:00
|
|
|
|
struct lang_type *lt;
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
if (! TYPE_LANG_SPECIFIC (node))
|
1999-08-26 09:30:50 +00:00
|
|
|
|
return;
|
|
|
|
|
|
2003-07-11 03:40:53 +00:00
|
|
|
|
if (TYPE_LANG_SPECIFIC (node)->u.h.is_lang_type_class)
|
|
|
|
|
size = sizeof (struct lang_type);
|
|
|
|
|
else
|
|
|
|
|
size = sizeof (struct lang_type_ptrmem);
|
2007-05-19 01:19:51 +00:00
|
|
|
|
lt = GGC_NEWVAR (struct lang_type, size);
|
2002-02-01 18:16:02 +00:00
|
|
|
|
memcpy (lt, TYPE_LANG_SPECIFIC (node), size);
|
|
|
|
|
TYPE_LANG_SPECIFIC (node) = lt;
|
|
|
|
|
|
|
|
|
|
#ifdef GATHER_STATISTICS
|
|
|
|
|
tree_node_counts[(int)lang_type] += 1;
|
|
|
|
|
tree_node_sizes[(int)lang_type] += size;
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Copy TYPE, including any language-specific parts. */
|
|
|
|
|
|
|
|
|
|
tree
|
2004-07-28 03:11:36 +00:00
|
|
|
|
copy_type (tree type)
|
2002-02-01 18:16:02 +00:00
|
|
|
|
{
|
|
|
|
|
tree copy;
|
|
|
|
|
|
|
|
|
|
copy = copy_node (type);
|
|
|
|
|
copy_lang_type (copy);
|
|
|
|
|
return copy;
|
1996-09-18 05:35:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
tree
|
2004-07-28 03:11:36 +00:00
|
|
|
|
cxx_make_type (enum tree_code code)
|
1996-09-18 05:35:50 +00:00
|
|
|
|
{
|
2004-07-28 03:11:36 +00:00
|
|
|
|
tree t = make_node (code);
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
/* Create lang_type structure. */
|
|
|
|
|
if (IS_AGGR_TYPE_CODE (code)
|
|
|
|
|
|| code == BOUND_TEMPLATE_TEMPLATE_PARM)
|
1999-10-16 06:09:09 +00:00
|
|
|
|
{
|
2007-05-19 01:19:51 +00:00
|
|
|
|
struct lang_type *pi = GGC_CNEW (struct lang_type);
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
TYPE_LANG_SPECIFIC (t) = pi;
|
2003-07-11 03:40:53 +00:00
|
|
|
|
pi->u.c.h.is_lang_type_class = 1;
|
1999-10-16 06:09:09 +00:00
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
#ifdef GATHER_STATISTICS
|
|
|
|
|
tree_node_counts[(int)lang_type] += 1;
|
|
|
|
|
tree_node_sizes[(int)lang_type] += sizeof (struct lang_type);
|
|
|
|
|
#endif
|
|
|
|
|
}
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
/* Set up some flags that give proper default behavior. */
|
|
|
|
|
if (IS_AGGR_TYPE_CODE (code))
|
|
|
|
|
{
|
2007-05-19 01:19:51 +00:00
|
|
|
|
struct c_fileinfo *finfo = get_fileinfo (input_filename);
|
|
|
|
|
SET_CLASSTYPE_INTERFACE_UNKNOWN_X (t, finfo->interface_unknown);
|
|
|
|
|
CLASSTYPE_INTERFACE_ONLY (t) = finfo->interface_only;
|
1999-10-16 06:09:09 +00:00
|
|
|
|
}
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
|
|
|
|
return t;
|
|
|
|
|
}
|
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
tree
|
2004-07-28 03:11:36 +00:00
|
|
|
|
make_aggr_type (enum tree_code code)
|
1996-09-18 05:35:50 +00:00
|
|
|
|
{
|
2003-07-11 03:40:53 +00:00
|
|
|
|
tree t = cxx_make_type (code);
|
2002-02-01 18:16:02 +00:00
|
|
|
|
|
|
|
|
|
if (IS_AGGR_TYPE_CODE (code))
|
|
|
|
|
SET_IS_AGGR_TYPE (t, 1);
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
return t;
|
1996-09-18 05:35:50 +00:00
|
|
|
|
}
|
2011-03-10 13:59:17 +00:00
|
|
|
|
|
|
|
|
|
/* Returns true if we are currently in the main source file, or in a
|
|
|
|
|
template instantiation started from the main source file. */
|
|
|
|
|
|
|
|
|
|
bool
|
|
|
|
|
in_main_input_context (void)
|
|
|
|
|
{
|
|
|
|
|
tree tl = outermost_tinst_level();
|
|
|
|
|
|
|
|
|
|
if (tl)
|
|
|
|
|
return strcmp (main_input_filename,
|
|
|
|
|
LOCATION_FILE (TINST_LOCATION (tl))) == 0;
|
|
|
|
|
else
|
|
|
|
|
return strcmp (main_input_filename, input_filename) == 0;
|
|
|
|
|
}
|