OSDN Git Service

* simplify-rtx.c: Rename macro SIGN_EXTEND to HWI_SIGN_EXTEND.
[pf3gnuchains/gcc-fork.git] / gcc / c-common.h
index d416770..0d25b2a 100644 (file)
@@ -1,5 +1,6 @@
 /* Definitions for c-common.c.
-   Copyright (C) 1987, 93, 94, 95, 97, 98, 1999 Free Software Foundation, Inc.
+   Copyright (C) 1987, 1993, 1994, 1995, 1997, 1998,
+   1999, 2000 Free Software Foundation, Inc.
 
 This file is part of GNU CC.
 
@@ -44,7 +45,12 @@ enum c_tree_index
     CTI_VOID_FTYPE_PTR,
     CTI_INT_FTYPE_INT,
     CTI_PTR_FTYPE_SIZETYPE,
-    
+
+    CTI_G77_INTEGER_TYPE,
+    CTI_G77_UINTEGER_TYPE,
+    CTI_G77_LONGINT_TYPE,
+    CTI_G77_ULONGINT_TYPE,
+
     CTI_MAX
 };
 
@@ -73,57 +79,64 @@ extern tree c_global_trees[CTI_MAX];
 #define int_ftype_int                  c_global_trees[CTI_INT_FTYPE_INT]
 #define ptr_ftype_sizetype             c_global_trees[CTI_PTR_FTYPE_SIZETYPE]
 
-extern void declare_function_name              PROTO((void));
-extern void decl_attributes                    PROTO((tree, tree, tree));
-extern void init_function_format_info          PROTO((void));
-extern void check_function_format              PROTO((tree, tree, tree));
-extern void c_apply_type_quals_to_decl         PROTO((int, tree));
-extern int c_get_alias_set                     PROTO((tree));
+/* g77 integer types, which which must be kept in sync with f/com.h */
+#define g77_integer_type_node          c_global_trees[CTI_G77_INTEGER_TYPE]
+#define g77_uinteger_type_node         c_global_trees[CTI_G77_UINTEGER_TYPE]
+#define g77_longint_type_node          c_global_trees[CTI_G77_LONGINT_TYPE]
+#define g77_ulongint_type_node         c_global_trees[CTI_G77_ULONGINT_TYPE]
+
+/* Pointer to function to generate the VAR_DECL for __FUNCTION__ etc.
+   ID is the identifier to use, NAME is the string.
+   TYPE_DEP indicates whether it depends on type of the function or not
+   (i.e. __PRETTY_FUNCTION__).  */
+
+extern tree (*make_fname_decl)                  PARAMS ((tree, const char *, int));
+
+extern void declare_function_name              PARAMS ((void));
+extern void decl_attributes                    PARAMS ((tree, tree, tree));
+extern void init_function_format_info          PARAMS ((void));
+extern void check_function_format              PARAMS ((tree, tree, tree));
+extern void c_apply_type_quals_to_decl         PARAMS ((int, tree));
+extern int c_get_alias_set                     PARAMS ((tree));
 /* Print an error message for invalid operands to arith operation CODE.
    NOP_EXPR is used as a special case (see truthvalue_conversion).  */
-extern void binary_op_error                    PROTO((enum tree_code));
-extern void c_expand_expr_stmt                 PROTO((tree));
-extern void c_expand_start_cond                        PROTO((tree, int, int));
-extern void c_expand_start_else                        PROTO((void));
-extern void c_expand_end_cond                  PROTO((void));
+extern void binary_op_error                    PARAMS ((enum tree_code));
+extern void c_expand_expr_stmt                 PARAMS ((tree));
+extern void c_expand_start_cond                        PARAMS ((tree, int, int));
+extern void c_expand_start_else                        PARAMS ((void));
+extern void c_expand_end_cond                  PARAMS ((void));
 /* Validate the expression after `case' and apply default promotions.  */
-extern tree check_case_value                   PROTO((tree));
+extern tree check_case_value                   PARAMS ((tree));
 /* Concatenate a list of STRING_CST nodes into one STRING_CST.  */
-extern tree combine_strings                    PROTO((tree));
-extern void constant_expression_warning                PROTO((tree));
-extern tree convert_and_check                  PROTO((tree, tree));
-extern void overflow_warning                   PROTO((tree));
-extern void unsigned_conversion_warning                PROTO((tree, tree));
+extern tree combine_strings                    PARAMS ((tree));
+extern void constant_expression_warning                PARAMS ((tree));
+extern tree convert_and_check                  PARAMS ((tree, tree));
+extern void overflow_warning                   PARAMS ((tree));
+extern void unsigned_conversion_warning                PARAMS ((tree, tree));
 /* Read the rest of the current #-directive line.  */
 #if USE_CPPLIB
-extern char *get_directive_line                        PROTO((void));
+extern char *get_directive_line                        PARAMS ((void));
 #define GET_DIRECTIVE_LINE() get_directive_line ()
 #else
-extern char *get_directive_line                        PROTO((FILE *));
+extern char *get_directive_line                        PARAMS ((FILE *));
 #define GET_DIRECTIVE_LINE() get_directive_line (finput)
 #endif
 
 /* Subroutine of build_binary_op, used for comparison operations.
    See if the operands have both been converted from subword integer types
    and, if so, perhaps change them both back to their original type.  */
-extern tree shorten_compare                    PROTO((tree *, tree *, tree *, enum tree_code *));
+extern tree shorten_compare                    PARAMS ((tree *, tree *, tree *, enum tree_code *));
 /* Prepare expr to be an argument of a TRUTH_NOT_EXPR,
    or validate its data type for an `if' or `while' statement or ?..: exp. */
-extern tree truthvalue_conversion              PROTO((tree));
-extern tree type_for_mode                      PROTO((enum machine_mode, int));
-extern tree type_for_size                      PROTO((unsigned, int));
-
-/* Declare a predefined function.  Return the declaration.  This function is
-   provided by each language frontend.  */
-extern tree builtin_function                   PROTO((const char *, tree, enum built_in_function, const char *));
+extern tree truthvalue_conversion              PARAMS ((tree));
+extern tree type_for_mode                      PARAMS ((enum machine_mode, int));
+extern tree type_for_size                      PARAMS ((unsigned, int));
 
 /* Build tree nodes and builtin functions common to both C and C++ language
    frontends.  */
-extern void c_common_nodes_and_builtins                PROTO((int, int, int));
-
-extern tree build_va_arg                       PROTO((tree, tree));
+extern void c_common_nodes_and_builtins                PARAMS ((int, int, int));
 
-extern tree initializer_constant_valid_p       PROTO((tree, tree));
+extern tree build_va_arg                       PARAMS ((tree, tree));
 
 /* Nonzero if the type T promotes to itself.
    ANSI C states explicitly the list of types that promote;
@@ -136,5 +149,5 @@ extern tree initializer_constant_valid_p    PROTO((tree, tree));
        || TYPE_MAIN_VARIANT (t) == short_integer_type_node     \
        || TYPE_MAIN_VARIANT (t) == short_unsigned_type_node))
 
-extern int self_promoting_args_p               PROTO((tree));
-extern tree simple_type_promotes_to            PROTO((tree));
+extern int self_promoting_args_p               PARAMS ((tree));
+extern tree simple_type_promotes_to            PARAMS ((tree));