source: trunk/third/gcc/halfpic.h @ 11288

Revision 11288, 3.0 KB checked in by ghudson, 26 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r11287, which included commits to RCS files with non-trunk default branches.
Line 
1/* OSF/rose half-pic support definitions.
2   Copyright (C) 1992, 1996, 1997 Free Software Foundation, Inc.
3
4This file is part of GNU CC.
5
6GNU CC is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2, or (at your option)
9any later version.
10
11GNU CC is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU CC; see the file COPYING.  If not, write to
18the Free Software Foundation, 59 Temple Place - Suite 330,
19Boston, MA 02111-1307, USA.  */
20
21#ifndef NO_HALF_PIC
22
23#include "gansidecl.h"
24
25#if defined (USE_PROTOTYPES) ? USE_PROTOTYPES : defined (__STDC__)
26union tree_node;                /* forward reference */
27struct rtx_def;
28#endif
29
30/* Declare the variable flag_half_pic as 'int' instead of 'extern
31   int', so that BSS variables are created (even though this is not
32   strict ANSI).  This is because rtl.c now refers to the
33   CONSTANT_ADDRESS_P macro, which in turn refers to flag_half_pic,
34   and wants to call half_pic_address_p, whose address we also store
35   in in a BSS variable.  This way, the gen* programs won't get
36   unknown symbol errors when being linked (flag_half_pic will never
37   be true in the gen* programs).  */
38
39int flag_half_pic;                      /* Global half-pic flag.  */
40int (*ptr_half_pic_address_p) ();       /* ptr to half_pic_address_p () */
41
42extern int  half_pic_number_ptrs;                               /* # distinct pointers found */
43extern int  half_pic_number_refs;                               /* # half-pic references */
44extern void half_pic_encode PROTO((union tree_node *));         /* encode whether half-pic */
45extern void half_pic_declare PROTO((char *));                   /* declare object local */
46extern void half_pic_external PROTO((char *));                  /* declare object external */
47extern void half_pic_init PROTO((void));                        /* half_pic initialization */
48extern int  half_pic_address_p PROTO((struct rtx_def *));       /* true if an address is half-pic */
49extern struct rtx_def *half_pic_ptr PROTO((struct rtx_def *));  /* return RTX for half-pic pointer */
50/* Can't use prototype since FILE isn't defined yet.  */
51extern void half_pic_finish (/* FILE * */);             /* half_pic termination */
52
53/* Macros to provide access to the half-pic stuff (so they can easily
54   be stubbed out.  */
55
56#define HALF_PIC_P()            (flag_half_pic)
57#define HALF_PIC_NUMBER_PTRS    (half_pic_number_ptrs)
58#define HALF_PIC_NUMBER_REFS    (half_pic_number_refs)
59
60#define HALF_PIC_ENCODE(DECL)   half_pic_encode (DECL)
61#define HALF_PIC_DECLARE(NAME)  half_pic_declare (NAME)
62#define HALF_PIC_EXTERNAL(NAME) half_pic_external (NAME)
63#define HALF_PIC_INIT()         half_pic_init ()
64#define HALF_PIC_FINISH(STREAM) half_pic_finish (STREAM)
65#define HALF_PIC_ADDRESS_P(X)   ((*ptr_half_pic_address_p) (X))
66#define HALF_PIC_PTR(X)         half_pic_ptr (X)
67
68/* Prefix for half-pic names */
69#ifndef HALF_PIC_PREFIX
70#define HALF_PIC_PREFIX "__pic_"
71#endif
72
73#endif /* NO_HALF_PIC */
Note: See TracBrowser for help on using the repository browser.