OSDN Git Service

* cp/cp-tree.h (struct cp_language_function): Remove x_result_rtx.
[pf3gnuchains/gcc-fork.git] / gcc / cp / expr.c
1 /* Convert language-specific tree expression to rtl instructions,
2    for GNU compiler.
3    Copyright (C) 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
4    2000 Free Software Foundation, Inc.
5
6 This file is part of GNU CC.
7
8 GNU CC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
11 any later version.
12
13 GNU CC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GNU CC; see the file COPYING.  If not, write to
20 the Free Software Foundation, 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA.  */
22
23
24 #include "config.h"
25 #include "system.h"
26 #include "rtl.h"
27 #include "tree.h"
28 #include "flags.h"
29 #include "expr.h"
30 #include "cp-tree.h"
31 #include "toplev.h"
32 #include "except.h"
33 #include "tm_p.h"
34
35 static rtx cplus_expand_expr PARAMS ((tree, rtx, enum machine_mode,
36                                     enum expand_modifier));
37
38 /* Hook used by output_constant to expand language-specific
39    constants.  */
40
41 tree
42 cplus_expand_constant (cst)
43      tree cst;
44 {
45   switch (TREE_CODE (cst))
46     {
47     case PTRMEM_CST:
48       {
49         tree type = TREE_TYPE (cst);
50         tree member;
51       
52         /* Find the member.  */
53         member = PTRMEM_CST_MEMBER (cst);
54
55         if (TREE_CODE (member) == FIELD_DECL) 
56           {
57             /* Find the offset for the field.  */
58             tree offset = byte_position (member);
59
60             if (flag_new_abi)
61               /* Under the new ABI, we use -1 to represent the NULL
62                  pointer; non-NULL values simply contain the offset of
63                  the data member.  */
64               ;
65             else
66               /* We offset all pointer to data members by 1 so that we
67                  can distinguish between a null pointer to data member
68                  and the first data member of a structure.  */
69               offset = size_binop (PLUS_EXPR, offset, size_one_node);
70
71             cst = fold (build1 (NOP_EXPR, type, offset));
72           }
73         else
74           {
75             tree delta, idx, pfn, delta2;
76
77             expand_ptrmemfunc_cst (cst, &delta, &idx, &pfn, &delta2);
78             cst = build_ptrmemfunc1 (type, delta, idx, pfn, delta2);
79           }
80       }
81       break;
82
83     default:
84       /* There's nothing to do.  */
85       break;
86     }
87
88   return cst;
89 }
90
91 /* Hook used by expand_expr to expand language-specific tree codes.  */
92
93 static rtx
94 cplus_expand_expr (exp, target, tmode, modifier)
95      tree exp;
96      rtx target;
97      enum machine_mode tmode;
98      enum expand_modifier modifier;
99 {
100   tree type = TREE_TYPE (exp);
101   register enum machine_mode mode = TYPE_MODE (type);
102   register enum tree_code code = TREE_CODE (exp);
103   int ignore = target == const0_rtx;
104
105   if (ignore)
106     target = 0;
107
108   /* No sense saving up arithmetic to be done
109      if it's all in the wrong mode to form part of an address.
110      And force_operand won't know whether to sign-extend or zero-extend.  */
111
112   if (mode != Pmode && modifier == EXPAND_SUM)
113     modifier = EXPAND_NORMAL;
114
115   switch (code)
116     {
117     case PTRMEM_CST:
118       return expand_expr (cplus_expand_constant (exp),
119                           target, tmode, modifier);
120
121     case OFFSET_REF:
122       {
123         return expand_expr (default_conversion (resolve_offset_ref (exp)),
124                             target, tmode, EXPAND_NORMAL);
125       }
126
127     case THROW_EXPR:
128       expand_expr (TREE_OPERAND (exp, 0), const0_rtx, VOIDmode, 0);
129       expand_internal_throw ();
130       return NULL;
131
132     case EMPTY_CLASS_EXPR:
133       /* We don't need to generate any code for an empty class.  */
134       return const0_rtx;
135
136     default:
137       return c_expand_expr (exp, target, tmode, modifier);
138     }
139   my_friendly_abort (40);
140   /* NOTREACHED */
141   return NULL;
142 }
143
144 void
145 init_cplus_expand ()
146 {
147   lang_expand_expr = cplus_expand_expr;
148   lang_expand_constant = cplus_expand_constant;
149 }
150
151 int
152 extract_init (decl, init)
153      tree decl ATTRIBUTE_UNUSED, init ATTRIBUTE_UNUSED;
154 {
155   return 0;
156 }
157