OSDN Git Service

(MOD[SD]I_LIBCALL): Call ots$rem, not ots$mod.
[pf3gnuchains/gcc-fork.git] / gcc / halfpic.h
1 /* OSF/rose half-pic support definitions.
2    Copyright (C) 1992, 1996 Free Software Foundation, Inc.
3
4 This file is part of GNU CC.
5
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING.  If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA.  */
20
21 #ifndef NO_HALF_PIC
22
23 /* Add prototype support.  */
24 /* ??? It would be nice to use gansidecl.h here but there's an extra
25    complication with NO_STDIO_H that must be dealt with.  */
26 #ifndef PROTO
27 #if defined (USE_PROTOTYPES) ? USE_PROTOTYPES : defined (__STDC__)
28 #define PROTO(ARGS) ARGS
29 #else
30 #define PROTO(ARGS) ()
31 #endif
32 #endif
33
34 #if !defined(STDIO_PROTO) && !defined(NO_STDIO_H)
35 #ifndef BUFSIZ
36 #include <stdio.h>
37 #endif
38
39 #define STDIO_PROTO(ARGS) PROTO(ARGS)
40 #endif
41
42 #if defined (USE_PROTOTYPES) ? USE_PROTOTYPES : defined (__STDC__)
43 union tree_node;                /* forward reference */
44 struct rtx_def;
45 #endif
46
47 /* Declare the variable flag_half_pic as 'int' instead of 'extern
48    int', so that BSS variables are created (even though this is not
49    strict ANSI).  This is because rtl.c now refers to the
50    CONSTANT_ADDRESS_P macro, which in turn refers to flag_half_pic,
51    and wants to call half_pic_address_p, whose address we also store
52    in in a BSS variable.  This way, the gen* programs won't get
53    unknown symbol errors when being linked (flag_half_pic will never
54    be true in the gen* programs).  */
55
56 int flag_half_pic;                      /* Global half-pic flag.  */
57 int (*ptr_half_pic_address_p) ();       /* ptr to half_pic_address_p () */
58
59 extern int  half_pic_number_ptrs;                               /* # distinct pointers found */
60 extern int  half_pic_number_refs;                               /* # half-pic references */
61 extern void half_pic_encode PROTO((union tree_node *));         /* encode whether half-pic */
62 extern void half_pic_declare PROTO((char *));                   /* declare object local */
63 extern void half_pic_external PROTO((char *));                  /* declare object external */
64 extern void half_pic_init PROTO((void));                        /* half_pic initialization */
65 extern int  half_pic_address_p PROTO((struct rtx_def *));       /* true if an address is half-pic */
66 extern struct rtx_def *half_pic_ptr PROTO((struct rtx_def *));  /* return RTX for half-pic pointer */
67 #ifdef STDIO_PROTO
68 extern void half_pic_finish STDIO_PROTO((FILE *));              /* half_pic termination */
69 #endif
70
71 /* Macros to provide access to the half-pic stuff (so they can easily
72    be stubbed out.  */
73
74 #define HALF_PIC_P()            (flag_half_pic)
75 #define HALF_PIC_NUMBER_PTRS    (half_pic_number_ptrs)
76 #define HALF_PIC_NUMBER_REFS    (half_pic_number_refs)
77
78 #define HALF_PIC_ENCODE(DECL)   half_pic_encode (DECL)
79 #define HALF_PIC_DECLARE(NAME)  half_pic_declare (NAME)
80 #define HALF_PIC_EXTERNAL(NAME) half_pic_external (NAME)
81 #define HALF_PIC_INIT()         half_pic_init ()
82 #define HALF_PIC_FINISH(STREAM) half_pic_finish (STREAM)
83 #define HALF_PIC_ADDRESS_P(X)   ((*ptr_half_pic_address_p) (X))
84 #define HALF_PIC_PTR(X)         half_pic_ptr (X)
85
86 /* Prefix for half-pic names */
87 #ifndef HALF_PIC_PREFIX
88 #define HALF_PIC_PREFIX "__pic_"
89 #endif
90
91 #endif /* NO_HALF_PIC */