pt.c 105 KB
Newer Older
mrs's avatar
mrs committed
1
/* Handle parameterized types (templates) for GNU C++.
mrs's avatar
mrs committed
2
   Copyright (C) 1992, 93, 94, 95, 1996 Free Software Foundation, Inc.
mrs's avatar
mrs committed
3
   Written by Ken Raeburn (raeburn@cygnus.com) while at Watchmaker Computing.
mrs's avatar
mrs committed
4
   Rewritten by Jason Merrill (jason@cygnus.com).
mrs's avatar
mrs committed
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19

This file is part of GNU CC.

GNU CC is free software; you can redistribute it and/or modify
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.

GNU CC is distributed in the hope that it will be useful,
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
along with GNU CC; see the file COPYING.  If not, write to
kenner's avatar
kenner committed
20 21
the Free Software Foundation, 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.  */
mrs's avatar
mrs committed
22 23

/* Known bugs or deficiencies include:
mrs's avatar
mrs committed
24 25 26 27 28 29

     templates for class static data don't work (methods only),
     duplicated method templates can crash the compiler,
     interface/impl data is taken from file defining the template,
     all methods must be provided in header files; can't use a source
     file that contains only the method templates and "just win".  */
mrs's avatar
mrs committed
30 31 32 33 34 35 36 37 38 39

#include "config.h"
#include <stdio.h>
#include "obstack.h"

#include "tree.h"
#include "flags.h"
#include "cp-tree.h"
#include "decl.h"
#include "parse.h"
mrs's avatar
mrs committed
40
#include "lex.h"
mrs's avatar
mrs committed
41
#include "output.h"
mrs's avatar
mrs committed
42
#include "defaults.h"
43 44 45 46 47
#include "except.h"

#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif
mrs's avatar
mrs committed
48 49 50 51 52 53 54

extern struct obstack permanent_obstack;

extern int lineno;
extern char *input_filename;
struct pending_inline *pending_template_expansions;

mrs's avatar
mrs committed
55 56
tree current_template_parms;
HOST_WIDE_INT processing_template_decl;
mrs's avatar
mrs committed
57

mrs's avatar
mrs committed
58 59 60
tree pending_templates;
static tree *template_tail = &pending_templates;

mrs's avatar
mrs committed
61 62 63
tree maybe_templates;
static tree *maybe_template_tail = &maybe_templates;

mrs's avatar
mrs committed
64
int minimal_parse_mode;
65

mrs's avatar
mrs committed
66 67 68
#define obstack_chunk_alloc xmalloc
#define obstack_chunk_free free

69 70 71 72 73 74
static int unify PROTO((tree, tree *, int, tree, tree, int *, int));
static void add_pending_template PROTO((tree));
static int push_tinst_level PROTO((tree));
static tree classtype_mangled_name PROTO((tree));
static char *mangle_class_name_for_template PROTO((char *, tree, tree));
static tree tsubst_expr_values PROTO((tree, tree));
mrs's avatar
mrs committed
75
static int comp_template_args PROTO((tree, tree));
76
static int list_eq PROTO((tree, tree));
mrs's avatar
mrs committed
77
static tree get_class_bindings PROTO((tree, tree, tree));
78
static tree coerce_template_parms PROTO((tree, tree, tree));
79
static tree tsubst_enum	PROTO((tree, tree, int, tree *));
80 81 82 83 84
static tree add_to_template_args PROTO((tree, tree));

/* Restore the template parameter context. */

void 
85 86
begin_member_template_processing (decl)
     tree decl;
87
{
88
  tree parms;
89 90
  int i;

91 92
  parms = DECL_INNERMOST_TEMPLATE_PARMS (DECL_TI_TEMPLATE (decl));

93 94 95 96
  ++processing_template_decl;
  current_template_parms 
    = tree_cons (build_int_2 (0, processing_template_decl),
		 parms, current_template_parms);
97
  pushlevel (0);
98 99
  for (i = 0; i < TREE_VEC_LENGTH (parms); ++i) 
    {
100 101 102
      tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
      my_friendly_assert (TREE_CODE_CLASS (TREE_CODE (parm)) == 'd', 0);
      
103 104
      switch (TREE_CODE (parm))
	{
105
	case TYPE_DECL:
106 107
	  pushdecl (parm);
	  break;
108 109 110 111 112 113 114 115 116 117 118

	case PARM_DECL:
	  {
	    /* Make a CONST_DECL as is done in process_template_parm. */
	    tree decl = build_decl (CONST_DECL, DECL_NAME (parm),
				    TREE_TYPE (parm));
	    DECL_INITIAL (decl) = DECL_INITIAL (parm);
	    pushdecl (decl);
	  }
	break;

119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
	default:
	  my_friendly_abort (0);
	}
    }
}

/* Undo the effects of begin_member_template_processing. */

void 
end_member_template_processing ()
{
  if (! processing_template_decl)
    return;

  --processing_template_decl;
  current_template_parms = TREE_CHAIN (current_template_parms);
135
  poplevel (0, 0, 0);
136 137 138 139 140 141 142 143 144 145 146
}

/* Returns non-zero iff T is a member template function.  Works if T
   is either a FUNCTION_DECL or a TEMPLATE_DECL.  */

int
is_member_template (t)
     tree t;
{
  int r = 0;

147 148 149 150 151 152
  if (TREE_CODE (t) != FUNCTION_DECL
      && !DECL_FUNCTION_TEMPLATE_P (t))
    /* Anything that isn't a template or a template functon is
       certainly not a member template.  */
    return 0;

153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238
  if (DECL_FUNCTION_MEMBER_P (t) ||
      (TREE_CODE (t) == TEMPLATE_DECL && 
       DECL_FUNCTION_MEMBER_P (DECL_TEMPLATE_RESULT (t))))
    {
      tree tmpl = NULL_TREE;

      if (DECL_FUNCTION_TEMPLATE_P (t))
	tmpl = t;
      else if (DECL_TEMPLATE_INFO (t) 
	       && DECL_FUNCTION_TEMPLATE_P (DECL_TI_TEMPLATE (t)))
	tmpl = DECL_TI_TEMPLATE (t);

      if (tmpl) 
	{
	  tree parms = DECL_TEMPLATE_PARMS (tmpl);
	  int parm_levels = list_length (parms);
	  int template_class_levels = 0;
	  tree ctx = DECL_CLASS_CONTEXT (t);

	  if (CLASSTYPE_TEMPLATE_INFO (ctx))
	    {
	      tree args;

	      /* Here, we should really count the number of levels
		 deep ctx is, making sure not to count any levels that
		 are just specializations.  Since there are no member
		 template classes yet, we don't have to do all that.  */

	      if (!CLASSTYPE_TEMPLATE_SPECIALIZATION (ctx))
		template_class_levels = 1;
	      else
		{
		  int i;

		  args = CLASSTYPE_TI_ARGS (ctx);

		  if (args == NULL_TREE)
		    template_class_levels = 1;
		  else 
		    for (i = 0; i < TREE_VEC_LENGTH (args); ++i)
		      if (uses_template_parms (TREE_VEC_ELT (args, i)))
			{
			  template_class_levels++;
			  break;
			}
		}
	    }

	  if (parm_levels > template_class_levels)
	    r = 1;
	}
    }

  return r;
}

/* Return a new template argument vector which contains all of ARGS,
   but has as its innermost set of arguments the EXTRA_ARGS.  */

tree
add_to_template_args (args, extra_args)
     tree args;
     tree extra_args;
{
  tree new_args;

  if (TREE_CODE (TREE_VEC_ELT (args, 0)) != TREE_VEC)
    {
      new_args = make_tree_vec (2);
      TREE_VEC_ELT (new_args, 0) = args;
    }
  else 
    {
      int i;

      new_args = make_tree_vec (TREE_VEC_LENGTH (args) - 1);

      for (i = 0; i < TREE_VEC_LENGTH (args); ++i)
	TREE_VEC_ELT (new_args, i) = TREE_VEC_ELT (args, i);
    }
	  
  TREE_VEC_ELT (new_args, 
		TREE_VEC_LENGTH (new_args) - 1) = extra_args;

  return new_args;
}
mrs's avatar
mrs committed
239 240 241

/* We've got a template header coming up; push to a new level for storing
   the parms.  */
mrs's avatar
mrs committed
242 243 244 245 246

void
begin_template_parm_list ()
{
  pushlevel (0);
mrs's avatar
mrs committed
247
  declare_pseudo_global_level ();
mrs's avatar
mrs committed
248
  ++processing_template_decl;
mrs's avatar
mrs committed
249 250 251
}

/* Process information from new template parameter NEXT and append it to the
mrs's avatar
mrs committed
252
   LIST being built.  */
mrs's avatar
mrs committed
253

mrs's avatar
mrs committed
254 255 256 257 258 259
tree
process_template_parm (list, next)
     tree list, next;
{
  tree parm;
  tree decl = 0;
mrs's avatar
mrs committed
260
  tree defval;
mrs's avatar
mrs committed
261
  int is_type, idx;
mrs's avatar
mrs committed
262 263
  parm = next;
  my_friendly_assert (TREE_CODE (parm) == TREE_LIST, 259);
mrs's avatar
mrs committed
264 265 266
  defval = TREE_PURPOSE (parm);
  parm = TREE_VALUE (parm);
  is_type = TREE_PURPOSE (parm) == class_type_node;
mrs's avatar
mrs committed
267 268 269 270 271 272 273 274 275 276 277 278 279 280

  if (list)
    {
      tree p = TREE_VALUE (tree_last (list));

      if (TREE_CODE (p) == TYPE_DECL)
	idx = TEMPLATE_TYPE_IDX (TREE_TYPE (p));
      else
	idx = TEMPLATE_CONST_IDX (DECL_INITIAL (p));
      ++idx;
    }
  else
    idx = 0;

mrs's avatar
mrs committed
281 282 283
  if (!is_type)
    {
      tree tinfo = 0;
mrs's avatar
mrs committed
284
      my_friendly_assert (TREE_CODE (TREE_PURPOSE (parm)) == TREE_LIST, 260);
mrs's avatar
mrs committed
285
      /* is a const-param */
mrs's avatar
mrs committed
286
      parm = grokdeclarator (TREE_VALUE (parm), TREE_PURPOSE (parm),
mrs's avatar
merging  
mrs committed
287
			     PARM, 0, NULL_TREE);
mrs's avatar
mrs committed
288 289
      /* A template parameter is not modifiable.  */
      TREE_READONLY (parm) = 1;
mrs's avatar
mrs committed
290 291
      if (IS_AGGR_TYPE (TREE_TYPE (parm))
	  && TREE_CODE (TREE_TYPE (parm)) != TEMPLATE_TYPE_PARM)
mrs's avatar
mrs committed
292
	{
mrs's avatar
mrs committed
293 294 295 296
	  cp_error ("`%#T' is not a valid type for a template constant parameter",
		    TREE_TYPE (parm));
	  if (DECL_NAME (parm) == NULL_TREE)
	    error ("  a template type parameter must begin with `class' or `typename'");
mrs's avatar
mrs committed
297 298
	  TREE_TYPE (parm) = void_type_node;
	}
mrs's avatar
mrs committed
299 300 301
      else if (pedantic
	       && (TREE_CODE (TREE_TYPE (parm)) == REAL_TYPE
		   || TREE_CODE (TREE_TYPE (parm)) == COMPLEX_TYPE))
mrs's avatar
mrs committed
302 303
	cp_pedwarn ("`%T' is not a valid type for a template constant parameter",
		    TREE_TYPE (parm));
mrs's avatar
mrs committed
304 305 306 307 308 309 310 311 312 313 314
      tinfo = make_node (TEMPLATE_CONST_PARM);
      my_friendly_assert (TREE_PERMANENT (tinfo), 260.5);
      if (TREE_PERMANENT (parm) == 0)
        {
	  parm = copy_node (parm);
	  TREE_PERMANENT (parm) = 1;
        }
      TREE_TYPE (tinfo) = TREE_TYPE (parm);
      decl = build_decl (CONST_DECL, DECL_NAME (parm), TREE_TYPE (parm));
      DECL_INITIAL (decl) = tinfo;
      DECL_INITIAL (parm) = tinfo;
mrs's avatar
mrs committed
315
      TEMPLATE_CONST_SET_INFO (tinfo, idx, processing_template_decl);
mrs's avatar
mrs committed
316 317 318
    }
  else
    {
mrs's avatar
mrs committed
319 320
      tree t = make_lang_type (TEMPLATE_TYPE_PARM);
      CLASSTYPE_GOT_SEMICOLON (t) = 1;
mrs's avatar
mrs committed
321
      decl = build_decl (TYPE_DECL, TREE_VALUE (parm), t);
mrs's avatar
mrs committed
322 323
      TYPE_NAME (t) = decl;
      TYPE_STUB_DECL (t) = decl;
mrs's avatar
mrs committed
324
      parm = decl;
mrs's avatar
mrs committed
325
      TEMPLATE_TYPE_SET_INFO (t, idx, processing_template_decl);
mrs's avatar
mrs committed
326
    }
mrs's avatar
mrs committed
327
  SET_DECL_ARTIFICIAL (decl);
mrs's avatar
mrs committed
328
  pushdecl (decl);
mrs's avatar
mrs committed
329
  parm = build_tree_list (defval, parm);
mrs's avatar
mrs committed
330 331 332 333 334 335 336 337 338 339 340 341
  return chainon (list, parm);
}

/* The end of a template parameter list has been reached.  Process the
   tree list into a parameter vector, converting each parameter into a more
   useful form.	 Type parameters are saved as IDENTIFIER_NODEs, and others
   as PARM_DECLs.  */

tree
end_template_parm_list (parms)
     tree parms;
{
mrs's avatar
mrs committed
342
  int nparms;
mrs's avatar
mrs committed
343
  tree parm;
mrs's avatar
mrs committed
344 345 346 347 348
  tree saved_parmlist = make_tree_vec (list_length (parms));

  current_template_parms
    = tree_cons (build_int_2 (0, processing_template_decl),
		 saved_parmlist, current_template_parms);
mrs's avatar
mrs committed
349 350

  for (parm = parms, nparms = 0; parm; parm = TREE_CHAIN (parm), nparms++)
mrs's avatar
mrs committed
351
    TREE_VEC_ELT (saved_parmlist, nparms) = parm;
mrs's avatar
mrs committed
352

mrs's avatar
mrs committed
353 354 355
  return saved_parmlist;
}

mrs's avatar
mrs committed
356 357
/* end_template_decl is called after a template declaration is seen.  */

mrs's avatar
mrs committed
358
void
mrs's avatar
mrs committed
359
end_template_decl ()
mrs's avatar
mrs committed
360
{
mrs's avatar
mrs committed
361
  if (! processing_template_decl)
mrs's avatar
mrs committed
362 363
    return;

mrs's avatar
mrs committed
364 365
  /* This matches the pushlevel in begin_template_parm_list.  */
  poplevel (0, 0, 0);
mrs's avatar
mrs committed
366

mrs's avatar
mrs committed
367 368 369 370
  --processing_template_decl;
  current_template_parms = TREE_CHAIN (current_template_parms);
  (void) get_pending_sizes ();	/* Why? */
}
mrs's avatar
mrs committed
371

mrs's avatar
mrs committed
372 373 374 375
/* Generate a valid set of template args from current_template_parms.  */

tree
current_template_args ()
mrs's avatar
mrs committed
376 377
{
  tree header = current_template_parms;
378 379 380 381
  int length = list_length (header);
  tree args = make_tree_vec (length);
  int l = length;

mrs's avatar
mrs committed
382
  while (header)
mrs's avatar
mrs committed
383
    {
mrs's avatar
mrs committed
384 385 386 387 388
      tree a = copy_node (TREE_VALUE (header));
      int i = TREE_VEC_LENGTH (a);
      TREE_TYPE (a) = NULL_TREE;
      while (i--)
	{
389 390 391 392 393 394 395 396 397 398 399 400 401 402 403
	  tree t = TREE_VEC_ELT (a, i);

	  /* t will be a list if we are called from within a
	     begin/end_template_parm_list pair, but a vector directly
	     if within a begin/end_member_template_processing pair.  */
	  if (TREE_CODE (t) == TREE_LIST) 
	    {
	      t = TREE_VALUE (t);
	      
	      if (TREE_CODE (t) == TYPE_DECL)
		t = TREE_TYPE (t);
	      else
		t = DECL_INITIAL (t);
	    }

mrs's avatar
mrs committed
404 405
	  TREE_VEC_ELT (a, i) = t;
	}
406
      TREE_VEC_ELT (args, --l) = a;
mrs's avatar
mrs committed
407
      header = TREE_CHAIN (header);
mrs's avatar
mrs committed
408 409
    }

mrs's avatar
mrs committed
410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431
  return args;
}
  
void
push_template_decl (decl)
     tree decl;
{
  tree tmpl;
  tree args = NULL_TREE;
  tree info;
  tree ctx = DECL_CONTEXT (decl) ? DECL_CONTEXT (decl) : current_class_type;
  int primary = 0;

  /* Kludge! */
  if (TREE_CODE (decl) == FUNCTION_DECL && DECL_FRIEND_P (decl)
      && DECL_CLASS_CONTEXT (decl))
    ;
  /* Note that this template is a "primary template" */
  else if (! ctx || ! CLASSTYPE_TEMPLATE_INFO (ctx)
      /* || (processing_template_decl > CLASSTYPE_TEMPLATE_LEVEL (ctx)) */)
    primary = 1;

mrs's avatar
mrs committed
432
  /* Partial specialization.  */
mrs's avatar
mrs committed
433
  if (TREE_CODE (decl) == TYPE_DECL && DECL_ARTIFICIAL (decl)
mrs's avatar
mrs committed
434 435 436 437 438 439 440 441 442 443 444 445 446 447 448
      && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
    {
      tree type = TREE_TYPE (decl);
      tree maintmpl = CLASSTYPE_TI_TEMPLATE (type);
      tree mainargs = CLASSTYPE_TI_ARGS (type);
      tree spec = DECL_TEMPLATE_SPECIALIZATIONS (maintmpl);

      for (; spec; spec = TREE_CHAIN (spec))
	{
	  /* purpose: args to main template
	     value: spec template */
	  if (comp_template_args (TREE_PURPOSE (spec), mainargs))
	    return;
	}

mrs's avatar
mrs committed
449 450 451
      DECL_TEMPLATE_SPECIALIZATIONS (maintmpl) = CLASSTYPE_TI_SPEC_INFO (type)
	= perm_tree_cons (mainargs, TREE_VALUE (current_template_parms),
			  DECL_TEMPLATE_SPECIALIZATIONS (maintmpl));
mrs's avatar
mrs committed
452 453 454 455
      TREE_TYPE (DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)) = type;
      return;
    }

mrs's avatar
mrs committed
456 457
  args = current_template_args ();

mrs's avatar
mrs committed
458
  if (! ctx || TYPE_BEING_DEFINED (ctx))
mrs's avatar
mrs committed
459
    {
mrs's avatar
mrs committed
460
      tmpl = build_lang_decl (TEMPLATE_DECL, DECL_NAME (decl), NULL_TREE);
461
      DECL_TEMPLATE_PARMS (tmpl) = current_template_parms;
mrs's avatar
mrs committed
462
      DECL_CONTEXT (tmpl) = DECL_CONTEXT (decl);
463
      if (DECL_LANG_SPECIFIC (decl))
464 465 466 467 468
	{
	  DECL_CLASS_CONTEXT (tmpl) = DECL_CLASS_CONTEXT (decl);
	  DECL_STATIC_FUNCTION_P (tmpl) = 
	    DECL_STATIC_FUNCTION_P (decl);
	}
mrs's avatar
mrs committed
469 470 471
    }
  else
    {
mrs's avatar
mrs committed
472
      tree t;
473
      tree a;
mrs's avatar
mrs committed
474

mrs's avatar
mrs committed
475 476 477
      if (CLASSTYPE_TEMPLATE_INSTANTIATION (ctx))
	cp_error ("must specialize `%#T' before defining member `%#D'",
		  ctx, decl);
mrs's avatar
mrs committed
478
      if (TREE_CODE (decl) == TYPE_DECL && DECL_ARTIFICIAL (decl))
mrs's avatar
mrs committed
479
	tmpl = CLASSTYPE_TI_TEMPLATE (TREE_TYPE (decl));
mrs's avatar
mrs committed
480
      else if (! DECL_TEMPLATE_INFO (decl))
mrs's avatar
mrs committed
481 482 483 484
	{
	  cp_error ("template definition of non-template `%#D'", decl);
	  return;
	}
mrs's avatar
mrs committed
485
      else
mrs's avatar
mrs committed
486
	tmpl = DECL_TI_TEMPLATE (decl);
487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509
      
      if (is_member_template (tmpl))
	{
	  a = TREE_VEC_ELT (args, TREE_VEC_LENGTH (args) - 1);
	  t = DECL_INNERMOST_TEMPLATE_PARMS (DECL_TI_TEMPLATE (decl));
	  if (TREE_VEC_LENGTH (t) 
	      != TREE_VEC_LENGTH (a))
	    {
	      cp_error ("got %d template parameters for `%#D'",
			TREE_VEC_LENGTH (a), decl);
	      cp_error ("  but %d required", TREE_VEC_LENGTH (t));
	    }
	  if (TREE_VEC_LENGTH (args) > 1)
	    /* Get the template parameters for the enclosing template
	       class.  */ 
	    a = TREE_VEC_ELT (args, TREE_VEC_LENGTH (args) - 2);
	  else
	    a = NULL_TREE;
	}
      else 
	a = TREE_VEC_ELT (args, TREE_VEC_LENGTH (args) - 1);

      t = NULL_TREE;
mrs's avatar
mrs committed
510 511

      if (CLASSTYPE_TEMPLATE_SPECIALIZATION (ctx))
512 513 514 515 516 517 518 519 520 521 522 523
	{
	  /* When processing an inline member template of a
	     specialized class, there is no CLASSTYPE_TI_SPEC_INFO.  */
	  if (CLASSTYPE_TI_SPEC_INFO (ctx))
	    t = TREE_VALUE (CLASSTYPE_TI_SPEC_INFO (ctx));
	}
      else if (CLASSTYPE_TEMPLATE_INFO (ctx))
	t = DECL_INNERMOST_TEMPLATE_PARMS (CLASSTYPE_TI_TEMPLATE (ctx));

      /* There should be template arguments if and only if there is a
	 template class.  */
      my_friendly_assert((a != NULL_TREE) == (t != NULL_TREE), 0);
mrs's avatar
mrs committed
524

525 526
      if (t != NULL_TREE 
	  && TREE_VEC_LENGTH (t) != TREE_VEC_LENGTH (a))
mrs's avatar
mrs committed
527 528
	{
	  cp_error ("got %d template parameters for `%#D'",
529
		    TREE_VEC_LENGTH (a), decl);
mrs's avatar
mrs committed
530 531
	  cp_error ("  but `%#T' has %d", ctx, TREE_VEC_LENGTH (t));
	}
mrs's avatar
mrs committed
532
    }
533 534
  /* Get the innermost set of template arguments. */
  args = TREE_VEC_ELT (args, TREE_VEC_LENGTH (args) - 1);
mrs's avatar
mrs committed
535

mrs's avatar
mrs committed
536 537
  DECL_TEMPLATE_RESULT (tmpl) = decl;
  TREE_TYPE (tmpl) = TREE_TYPE (decl);
mrs's avatar
mrs committed
538

mrs's avatar
mrs committed
539 540
  if (! ctx)
    tmpl = pushdecl_top_level (tmpl);
mrs's avatar
mrs committed
541

mrs's avatar
mrs committed
542
  if (primary)
543
    TREE_TYPE (DECL_INNERMOST_TEMPLATE_PARMS (tmpl)) = tmpl;
mrs's avatar
mrs committed
544 545 546

  info = perm_tree_cons (tmpl, args, NULL_TREE);

mrs's avatar
mrs committed
547
  if (TREE_CODE (decl) == TYPE_DECL && DECL_ARTIFICIAL (decl))
mrs's avatar
mrs committed
548
    {
mrs's avatar
mrs committed
549 550
      CLASSTYPE_TEMPLATE_INFO (TREE_TYPE (tmpl)) = info;
      DECL_NAME (decl) = classtype_mangled_name (TREE_TYPE (decl));
mrs's avatar
mrs committed
551
    }
mrs's avatar
mrs committed
552 553
  else if (! DECL_LANG_SPECIFIC (decl))
    cp_error ("template declaration of `%#D'", decl);
mrs's avatar
mrs committed
554
  else
mrs's avatar
mrs committed
555
    DECL_TEMPLATE_INFO (decl) = info;
mrs's avatar
mrs committed
556 557 558 559 560
}

/* Convert all template arguments to their appropriate types, and return
   a vector containing the resulting values.  If any error occurs, return
   error_mark_node.  */
mrs's avatar
mrs committed
561

mrs's avatar
mrs committed
562 563 564 565 566
static tree
coerce_template_parms (parms, arglist, in_decl)
     tree parms, arglist;
     tree in_decl;
{
mrs's avatar
mrs committed
567
  int nparms, nargs, i, lost = 0;
mrs's avatar
mrs committed
568 569
  tree vec;

mrs's avatar
mrs committed
570 571 572 573
  if (arglist == NULL_TREE)
    nargs = 0;
  else if (TREE_CODE (arglist) == TREE_VEC)
    nargs = TREE_VEC_LENGTH (arglist);
mrs's avatar
mrs committed
574
  else
mrs's avatar
mrs committed
575 576 577 578 579 580 581
    nargs = list_length (arglist);

  nparms = TREE_VEC_LENGTH (parms);

  if (nargs > nparms
      || (nargs < nparms
	  && TREE_PURPOSE (TREE_VEC_ELT (parms, nargs)) == NULL_TREE))
mrs's avatar
mrs committed
582 583
    {
      error ("incorrect number of parameters (%d, should be %d)",
mrs's avatar
mrs committed
584
	     nargs, nparms);
mrs's avatar
mrs committed
585 586 587 588 589
      if (in_decl)
	cp_error_at ("in template expansion for decl `%D'", in_decl);
      return error_mark_node;
    }

mrs's avatar
mrs committed
590
  if (arglist && TREE_CODE (arglist) == TREE_VEC)
mrs's avatar
mrs committed
591 592 593 594 595 596
    vec = copy_node (arglist);
  else
    {
      vec = make_tree_vec (nparms);
      for (i = 0; i < nparms; i++)
	{
mrs's avatar
mrs committed
597 598 599 600 601 602 603 604 605 606 607 608
	  tree arg;

	  if (arglist)
	    {
	      arg = arglist;
	      arglist = TREE_CHAIN (arglist);

	      if (arg == error_mark_node)
		lost++;
	      else
		arg = TREE_VALUE (arg);
	    }
mrs's avatar
mrs committed
609 610
	  else if (TREE_CODE (TREE_VALUE (TREE_VEC_ELT (parms, i)))
		   == TYPE_DECL)
mrs's avatar
mrs committed
611
	    arg = tsubst (TREE_PURPOSE (TREE_VEC_ELT (parms, i)),
612
			  vec, i, in_decl);
mrs's avatar
mrs committed
613 614
	  else
	    arg = tsubst_expr (TREE_PURPOSE (TREE_VEC_ELT (parms, i)),
615
			       vec, i, in_decl);
mrs's avatar
mrs committed
616

mrs's avatar
mrs committed
617 618 619 620 621 622
	  TREE_VEC_ELT (vec, i) = arg;
	}
    }
  for (i = 0; i < nparms; i++)
    {
      tree arg = TREE_VEC_ELT (vec, i);
mrs's avatar
mrs committed
623
      tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
mrs's avatar
mrs committed
624 625 626 627
      tree val = 0;
      int is_type, requires_type;

      is_type = TREE_CODE_CLASS (TREE_CODE (arg)) == 't';
mrs's avatar
mrs committed
628
      requires_type = TREE_CODE (parm) == TYPE_DECL;
mrs's avatar
mrs committed
629 630 631 632 633 634 635 636 637 638

      if (requires_type && ! is_type && TREE_CODE (arg) == SCOPE_REF
	  && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_TYPE_PARM)
	{
	  cp_pedwarn ("to refer to a type member of a template parameter,");
	  cp_pedwarn ("  use `typename %E'", arg);
	  arg = make_typename_type (TREE_OPERAND (arg, 0),
				    TREE_OPERAND (arg, 1));
	  is_type = 1;
	}
mrs's avatar
mrs committed
639 640 641
      if (is_type != requires_type)
	{
	  if (in_decl)
mrs's avatar
mrs committed
642 643 644 645 646 647 648 649 650
	    {
	      cp_error ("type/value mismatch at argument %d in template parameter list for `%D'",
			i, in_decl);
	      if (is_type)
		cp_error ("  expected a constant of type `%T', got `%T'",
			  TREE_TYPE (parm), arg);
	      else
		cp_error ("  expected a type, got `%E'", arg);
	    }
mrs's avatar
mrs committed
651 652 653 654 655
	  lost++;
	  TREE_VEC_ELT (vec, i) = error_mark_node;
	  continue;
	}
      if (is_type)
mrs's avatar
mrs committed
656 657
	{
	  val = groktypename (arg);
mrs's avatar
mrs committed
658
	  if (! processing_template_decl)
mrs's avatar
mrs committed
659 660 661 662 663 664 665 666 667 668
	    {
	      tree t = target_type (val);
	      if (IS_AGGR_TYPE (t)
		  && decl_function_context (TYPE_MAIN_DECL (t)))
		{
		  cp_error ("type `%T' composed from a local class is not a valid template-argument", val);
		  return error_mark_node;
		}
	    }
	}
mrs's avatar
mrs committed
669 670
      else
	{
671
	  tree t = tsubst (TREE_TYPE (parm), vec,
672
			   TREE_VEC_LENGTH (vec), in_decl);
mrs's avatar
mrs committed
673
	  if (processing_template_decl)
mrs's avatar
mrs committed
674 675 676
	    val = arg;
	  else
	    val = digest_init (t, arg, (tree *) 0);
mrs's avatar
mrs committed
677

mrs's avatar
mrs committed
678
	  if (val == error_mark_node || processing_template_decl)
mrs's avatar
mrs committed
679 680 681 682 683
	    ;

	  /* 14.2: Other template-arguments must be constant-expressions,
	     addresses of objects or functions with external linkage, or of
	     static class members.  */
mrs's avatar
mrs committed
684 685 686 687 688
	  else if (IS_AGGR_TYPE (TREE_TYPE (val)))
	    {
	      cp_error ("object `%E' cannot be used as template argument", arg);
	      val = error_mark_node;
	    }
mrs's avatar
mrs committed
689 690 691 692 693 694
	  else if (!TREE_CONSTANT (val))
	    {
	      cp_error ("non-const `%E' cannot be used as template argument",
			arg);
	      val = error_mark_node;
	    }
mrs's avatar
mrs committed
695 696 697 698
	  else if (POINTER_TYPE_P (TREE_TYPE (val))
		   && ! integer_zerop (val)
		   && TREE_CODE (TREE_TYPE (TREE_TYPE (val))) != OFFSET_TYPE
		   && TREE_CODE (TREE_TYPE (TREE_TYPE (val))) != METHOD_TYPE)
mrs's avatar
mrs committed
699
	    {
mrs's avatar
mrs committed
700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721
	      t = val;
	      STRIP_NOPS (t);
	      if (TREE_CODE (t) == ADDR_EXPR)
		{
		  tree a = TREE_OPERAND (t, 0);
		  STRIP_NOPS (a);
		  if (TREE_CODE (a) == STRING_CST)
		    {
		      cp_error ("string literal %E is not a valid template argument", a);
		      error ("because it is the address of an object with static linkage");
		      val = error_mark_node;
		    }
		  else if (TREE_CODE (a) != VAR_DECL
			   && TREE_CODE (a) != FUNCTION_DECL)
		    goto bad;
		  else if (! DECL_PUBLIC (a))
		    {
		      cp_error ("address of non-extern `%E' cannot be used as template argument", a);
		      val = error_mark_node;
		    }
		}
	      else
mrs's avatar
mrs committed
722
		{
mrs's avatar
mrs committed
723 724 725 726 727 728 729
		bad:
		  cp_error ("`%E' is not a valid template argument", t);
		  error ("it must be %s%s with external linkage",
			 TREE_CODE (TREE_TYPE (val)) == POINTER_TYPE
			 ? "a pointer to " : "",
			 TREE_CODE (TREE_TYPE (TREE_TYPE (val))) == FUNCTION_TYPE
			 ? "a function" : "an object");
mrs's avatar
mrs committed
730 731 732 733 734 735 736 737 738 739 740 741 742 743 744
		  val = error_mark_node;
		}
	    }
	}

      if (val == error_mark_node)
	lost++;

      TREE_VEC_ELT (vec, i) = val;
    }
  if (lost)
    return error_mark_node;
  return vec;
}

mrs's avatar
mrs committed
745
static int
mrs's avatar
mrs committed
746 747 748 749 750 751 752 753 754 755 756 757 758 759
comp_template_args (oldargs, newargs)
     tree oldargs, newargs;
{
  int i;

  for (i = 0; i < TREE_VEC_LENGTH (oldargs); ++i)
    {
      tree nt = TREE_VEC_ELT (newargs, i);
      tree ot = TREE_VEC_ELT (oldargs, i);

      if (nt == ot)
	continue;
      if (TREE_CODE (nt) != TREE_CODE (ot))
	return 0;
mrs's avatar
mrs committed
760 761 762 763 764 765
      if (TREE_CODE_CLASS (TREE_CODE (ot)) == 't')
	{
	  if (comptypes (ot, nt, 1))
	    continue;
	}
      else if (cp_tree_equal (ot, nt) > 0)
mrs's avatar
mrs committed
766 767 768 769 770 771
	continue;
      return 0;
    }
  return 1;
}

mrs's avatar
mrs committed
772 773
/* Given class template name and parameter list, produce a user-friendly name
   for the instantiation.  */
mrs's avatar
mrs committed
774

mrs's avatar
mrs committed
775 776 777 778 779 780 781 782 783 784
static char *
mangle_class_name_for_template (name, parms, arglist)
     char *name;
     tree parms, arglist;
{
  static struct obstack scratch_obstack;
  static char *scratch_firstobj;
  int i, nparms;

  if (!scratch_firstobj)
mrs's avatar
mrs committed
785
    gcc_obstack_init (&scratch_obstack);
mrs's avatar
mrs committed
786 787
  else
    obstack_free (&scratch_obstack, scratch_firstobj);
mrs's avatar
mrs committed
788
  scratch_firstobj = obstack_alloc (&scratch_obstack, 1);
mrs's avatar
mrs committed
789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808

#if 0
#define buflen	sizeof(buf)
#define check	if (bufp >= buf+buflen-1) goto too_long
#define ccat(c) *bufp++=(c); check
#define advance	bufp+=strlen(bufp); check
#define cat(s)	strncpy(bufp, s, buf+buflen-bufp-1); advance
#else
#define check
#define ccat(c)	obstack_1grow (&scratch_obstack, (c));
#define advance
#define cat(s)	obstack_grow (&scratch_obstack, (s), strlen (s))
#endif

  cat (name);
  ccat ('<');
  nparms = TREE_VEC_LENGTH (parms);
  my_friendly_assert (nparms == TREE_VEC_LENGTH (arglist), 268);
  for (i = 0; i < nparms; i++)
    {
mrs's avatar
mrs committed
809 810
      tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
      tree arg = TREE_VEC_ELT (arglist, i);
mrs's avatar
mrs committed
811 812 813 814

      if (i)
	ccat (',');

mrs's avatar
mrs committed
815
      if (TREE_CODE (parm) == TYPE_DECL)
mrs's avatar
mrs committed
816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848
	{
	  cat (type_as_string (arg, 0));
	  continue;
	}
      else
	my_friendly_assert (TREE_CODE (parm) == PARM_DECL, 269);

      if (TREE_CODE (arg) == TREE_LIST)
	{
	  /* New list cell was built because old chain link was in
	     use.  */
	  my_friendly_assert (TREE_PURPOSE (arg) == NULL_TREE, 270);
	  arg = TREE_VALUE (arg);
	}
      /* No need to check arglist against parmlist here; we did that
	 in coerce_template_parms, called from lookup_template_class.  */
      cat (expr_as_string (arg, 0));
    }
  {
    char *bufp = obstack_next_free (&scratch_obstack);
    int offset = 0;
    while (bufp[offset - 1] == ' ')
      offset--;
    obstack_blank_fast (&scratch_obstack, offset);

    /* B<C<char> >, not B<C<char>> */
    if (bufp[offset - 1] == '>')
      ccat (' ');
  }
  ccat ('>');
  ccat ('\0');
  return (char *) obstack_base (&scratch_obstack);

mrs's avatar
mrs committed
849
#if 0
mrs's avatar
mrs committed
850
 too_long:
mrs's avatar
mrs committed
851
#endif
mrs's avatar
mrs committed
852 853 854 855 856
  fatal ("out of (preallocated) string space creating template instantiation name");
  /* NOTREACHED */
  return NULL;
}

mrs's avatar
mrs committed
857
static tree
mrs's avatar
mrs committed
858 859 860 861 862 863 864 865 866
classtype_mangled_name (t)
     tree t;
{
  if (CLASSTYPE_TEMPLATE_INFO (t)
      && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (t)))
    {
      tree name = DECL_NAME (CLASSTYPE_TI_TEMPLATE (t));
      char *mangled_name = mangle_class_name_for_template
	(IDENTIFIER_POINTER (name),
867
	 DECL_INNERMOST_TEMPLATE_PARMS (CLASSTYPE_TI_TEMPLATE (t)),
mrs's avatar
mrs committed
868 869 870 871 872 873 874 875 876 877 878 879 880
	 CLASSTYPE_TI_ARGS (t));
      tree id = get_identifier (mangled_name);
      IDENTIFIER_TEMPLATE (id) = name;
      return id;
    }
  else
    return TYPE_IDENTIFIER (t);
}

static void
add_pending_template (d)
     tree d;
{
mrs's avatar
mrs committed
881 882 883 884 885 886 887
  tree ti;

  if (TREE_CODE_CLASS (TREE_CODE (d)) == 't')
    ti = CLASSTYPE_TEMPLATE_INFO (d);
  else
    ti = DECL_TEMPLATE_INFO (d);

mrs's avatar
mrs committed
888
  if (TI_PENDING_TEMPLATE_FLAG (ti))
mrs's avatar
mrs committed
889 890 891 892 893
    return;

  *template_tail = perm_tree_cons
    (current_function_decl, d, NULL_TREE);
  template_tail = &TREE_CHAIN (*template_tail);
mrs's avatar
mrs committed
894
  TI_PENDING_TEMPLATE_FLAG (ti) = 1;
mrs's avatar
mrs committed
895 896
}

mrs's avatar
mrs committed
897 898 899 900 901 902 903 904 905
/* Given an IDENTIFIER_NODE (type TEMPLATE_DECL) and a chain of
   parameters, find the desired type.

   D1 is the PTYPENAME terminal, and ARGLIST is the list of arguments.
   Since ARGLIST is build on the decl_obstack, we must copy it here
   to keep it from being reclaimed when the decl storage is reclaimed.

   IN_DECL, if non-NULL, is the template declaration we are trying to
   instantiate.  */
mrs's avatar
mrs committed
906

mrs's avatar
mrs committed
907 908 909 910 911 912 913
tree
lookup_template_class (d1, arglist, in_decl)
     tree d1, arglist;
     tree in_decl;
{
  tree template, parmlist;
  char *mangled_name;
mrs's avatar
mrs committed
914 915 916 917 918 919 920 921
  tree id, t;

  if (TREE_CODE (d1) == IDENTIFIER_NODE)
    {
      template = IDENTIFIER_GLOBAL_VALUE (d1); /* XXX */
      if (! template)
	template = IDENTIFIER_CLASS_VALUE (d1);
    }
mrs's avatar
mrs committed
922 923 924 925 926
  else if (TREE_CODE (d1) == TYPE_DECL && IS_AGGR_TYPE (TREE_TYPE (d1)))
    {
      template = CLASSTYPE_TI_TEMPLATE (TREE_TYPE (d1));
      d1 = DECL_NAME (template);
    }
mrs's avatar
mrs committed
927 928 929 930 931 932 933
  else if (TREE_CODE_CLASS (TREE_CODE (d1)) == 't' && IS_AGGR_TYPE (d1))
    {
      template = CLASSTYPE_TI_TEMPLATE (d1);
      d1 = DECL_NAME (template);
    }
  else
    my_friendly_abort (272);
mrs's avatar
mrs committed
934 935 936 937 938 939 940 941 942 943 944 945 946 947 948

  /* With something like `template <class T> class X class X { ... };'
     we could end up with D1 having nothing but an IDENTIFIER_LOCAL_VALUE.
     We don't want to do that, but we have to deal with the situation, so
     let's give them some syntax errors to chew on instead of a crash.  */
  if (! template)
    return error_mark_node;
  if (TREE_CODE (template) != TEMPLATE_DECL)
    {
      cp_error ("non-template type `%T' used as a template", d1);
      if (in_decl)
	cp_error_at ("for template declaration `%D'", in_decl);
      return error_mark_node;
    }

mrs's avatar
mrs committed
949
  if (PRIMARY_TEMPLATE_P (template))
mrs's avatar
mrs committed
950
    {
951
      parmlist = DECL_INNERMOST_TEMPLATE_PARMS (template);
mrs's avatar
mrs committed
952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982

      arglist = coerce_template_parms (parmlist, arglist, template);
      if (arglist == error_mark_node)
	return error_mark_node;
      if (uses_template_parms (arglist))
	{
	  tree found;
	  if (comp_template_args
	      (CLASSTYPE_TI_ARGS (TREE_TYPE (template)), arglist))
	    found = TREE_TYPE (template);
	  else
	    {
	      for (found = DECL_TEMPLATE_INSTANTIATIONS (template);
		   found; found = TREE_CHAIN (found))
		{
		  if (TI_USES_TEMPLATE_PARMS (found)
		      && comp_template_args (TREE_PURPOSE (found), arglist))
		    break;
		}
	      if (found)
		found = TREE_VALUE (found);
	    }

	  if (found)
	    {
	      if (can_free (&permanent_obstack, arglist))
		obstack_free (&permanent_obstack, arglist);
	      return found;
	    }
	}

mrs's avatar
mrs committed
983 984 985
      mangled_name = mangle_class_name_for_template (IDENTIFIER_POINTER (d1),
						     parmlist, arglist);
      id = get_identifier (mangled_name);
mrs's avatar
mrs committed
986
      IDENTIFIER_TEMPLATE (id) = d1;
mrs's avatar
mrs committed
987

mrs's avatar
mrs committed
988
      maybe_push_to_top_level (uses_template_parms (arglist));
mrs's avatar
mrs committed
989
      t = xref_tag_from_type (TREE_TYPE (template), id, 1);
mrs's avatar
mrs committed
990
      pop_from_top_level ();
mrs's avatar
mrs committed
991
    }
mrs's avatar
mrs committed
992
  else
mrs's avatar
mrs committed
993
    {
mrs's avatar
mrs committed
994 995 996 997
      tree ctx = lookup_template_class (TYPE_CONTEXT (TREE_TYPE (template)),
					arglist, in_decl);
      id = d1;
      arglist = CLASSTYPE_TI_ARGS (ctx);
mrs's avatar
mrs committed
998

mrs's avatar
mrs committed
999
      if (TYPE_BEING_DEFINED (ctx) && ctx == current_class_type)
mrs's avatar
mrs committed
1000
	{
mrs's avatar
mrs committed
1001 1002
	  int save_temp = processing_template_decl;
	  processing_template_decl = 0;
mrs's avatar
mrs committed
1003
	  t = xref_tag_from_type (TREE_TYPE (template), id, 0);
mrs's avatar
mrs committed
1004
	  processing_template_decl = save_temp;
mrs's avatar
mrs committed
1005 1006 1007
	}
      else
	{
mrs's avatar
mrs committed
1008 1009
	  t = lookup_nested_type_by_name (ctx, id);
	  my_friendly_assert (t != NULL_TREE, 42);
mrs's avatar
mrs committed
1010
	}
mrs's avatar
mrs committed
1011 1012
    }

mrs's avatar
mrs committed
1013
  /* Seems to be wanted.  */
mrs's avatar
mrs committed
1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027
  CLASSTYPE_GOT_SEMICOLON (t) = 1;

  if (! CLASSTYPE_TEMPLATE_INFO (t))
    {
      arglist = copy_to_permanent (arglist);
      CLASSTYPE_TEMPLATE_INFO (t)
	= perm_tree_cons (template, arglist, NULL_TREE);
      DECL_TEMPLATE_INSTANTIATIONS (template) = perm_tree_cons
	(arglist, t, DECL_TEMPLATE_INSTANTIATIONS (template));
      TI_USES_TEMPLATE_PARMS (DECL_TEMPLATE_INSTANTIATIONS (template))
	= uses_template_parms (arglist);

      SET_CLASSTYPE_IMPLICIT_INSTANTIATION (t);

mrs's avatar
mrs committed
1028
      /* We need to set this again after CLASSTYPE_TEMPLATE_INFO is set up.  */
mrs's avatar
mrs committed
1029 1030 1031 1032 1033 1034 1035 1036
      DECL_ASSEMBLER_NAME (TYPE_MAIN_DECL (t)) = id;
      if (! uses_template_parms (arglist))
	DECL_ASSEMBLER_NAME (TYPE_MAIN_DECL (t)) 
	  = get_identifier (build_overload_name (t, 1, 1));

      if (flag_external_templates && ! uses_template_parms (arglist)
	  && CLASSTYPE_INTERFACE_KNOWN (TREE_TYPE (template))
	  && ! CLASSTYPE_INTERFACE_ONLY (TREE_TYPE (template)))
mrs's avatar
mrs committed
1037
	add_pending_template (t);
mrs's avatar
mrs committed
1038 1039
    }

mrs's avatar
mrs committed
1040
  return t;
mrs's avatar
mrs committed
1041 1042
}

mrs's avatar
mrs committed
1043
/* Should be defined in parse.h.  */
mrs's avatar
mrs committed
1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063
extern int yychar;

int
uses_template_parms (t)
     tree t;
{
  if (!t)
    return 0;
  switch (TREE_CODE (t))
    {
    case INDIRECT_REF:
    case COMPONENT_REF:
      /* We assume that the object must be instantiated in order to build
	 the COMPONENT_REF, so we test only whether the type of the
	 COMPONENT_REF uses template parms.  */
      return uses_template_parms (TREE_TYPE (t));

    case IDENTIFIER_NODE:
      if (!IDENTIFIER_TEMPLATE (t))
	return 0;
mrs's avatar
mrs committed
1064
      my_friendly_abort (42);
mrs's avatar
mrs committed
1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085

      /* aggregates of tree nodes */
    case TREE_VEC:
      {
	int i = TREE_VEC_LENGTH (t);
	while (i--)
	  if (uses_template_parms (TREE_VEC_ELT (t, i)))
	    return 1;
	return 0;
      }
    case TREE_LIST:
      if (uses_template_parms (TREE_PURPOSE (t))
	  || uses_template_parms (TREE_VALUE (t)))
	return 1;
      return uses_template_parms (TREE_CHAIN (t));

      /* constructed type nodes */
    case POINTER_TYPE:
    case REFERENCE_TYPE:
      return uses_template_parms (TREE_TYPE (t));
    case RECORD_TYPE:
mrs's avatar
mrs committed
1086 1087
      if (TYPE_PTRMEMFUNC_FLAG (t))
	return uses_template_parms (TYPE_PTRMEMFUNC_FN_TYPE (t));
mrs's avatar
mrs committed
1088
    case UNION_TYPE:
mrs's avatar
mrs committed
1089
      if (! CLASSTYPE_TEMPLATE_INFO (t))
mrs's avatar
mrs committed
1090
	return 0;
mrs's avatar
mrs committed
1091
      return uses_template_parms (TREE_VALUE (CLASSTYPE_TEMPLATE_INFO (t)));
mrs's avatar
mrs committed
1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104
    case FUNCTION_TYPE:
      if (uses_template_parms (TYPE_ARG_TYPES (t)))
	return 1;
      return uses_template_parms (TREE_TYPE (t));
    case ARRAY_TYPE:
      if (uses_template_parms (TYPE_DOMAIN (t)))
	return 1;
      return uses_template_parms (TREE_TYPE (t));
    case OFFSET_TYPE:
      if (uses_template_parms (TYPE_OFFSET_BASETYPE (t)))
	return 1;
      return uses_template_parms (TREE_TYPE (t));
    case METHOD_TYPE:
1105
      if (uses_template_parms (TYPE_METHOD_BASETYPE (t)))
mrs's avatar
mrs committed
1106 1107 1108 1109 1110 1111 1112
	return 1;
      if (uses_template_parms (TYPE_ARG_TYPES (t)))
	return 1;
      return uses_template_parms (TREE_TYPE (t));

      /* decl nodes */
    case TYPE_DECL:
mrs's avatar
mrs committed
1113 1114
      return uses_template_parms (TREE_TYPE (t));

mrs's avatar
mrs committed
1115
    case FUNCTION_DECL:
mrs's avatar
mrs committed
1116 1117 1118 1119
    case VAR_DECL:
      /* ??? What about FIELD_DECLs?  */
      if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t)
	  && uses_template_parms (DECL_TI_ARGS (t)))
mrs's avatar
mrs committed
1120 1121
	return 1;
      /* fall through */
mrs's avatar
mrs committed
1122
    case CONST_DECL:
mrs's avatar
mrs committed
1123
    case PARM_DECL:
mrs's avatar
mrs committed
1124 1125
      if (uses_template_parms (TREE_TYPE (t)))
	return 1;
mrs's avatar
mrs committed
1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146
      if (DECL_CONTEXT (t) && uses_template_parms (DECL_CONTEXT (t)))
	return 1;
      return 0;

    case CALL_EXPR:
      return uses_template_parms (TREE_TYPE (t));
    case ADDR_EXPR:
      return uses_template_parms (TREE_OPERAND (t, 0));

      /* template parm nodes */
    case TEMPLATE_TYPE_PARM:
    case TEMPLATE_CONST_PARM:
      return 1;

      /* simple type nodes */
    case INTEGER_TYPE:
      if (uses_template_parms (TYPE_MIN_VALUE (t)))
	return 1;
      return uses_template_parms (TYPE_MAX_VALUE (t));

    case REAL_TYPE:
mrs's avatar
mrs committed
1147
    case COMPLEX_TYPE:
mrs's avatar
mrs committed
1148 1149
    case VOID_TYPE:
    case ENUMERAL_TYPE:
mrs's avatar
mrs committed
1150
    case BOOLEAN_TYPE:
mrs's avatar
mrs committed
1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164
      return 0;

      /* constants */
    case INTEGER_CST:
    case REAL_CST:
    case STRING_CST:
      return 0;

    case ERROR_MARK:
      /* Non-error_mark_node ERROR_MARKs are bad things.  */
      my_friendly_assert (t == error_mark_node, 274);
      /* NOTREACHED */
      return 0;

mrs's avatar
mrs committed
1165
    case LOOKUP_EXPR:
mrs's avatar
mrs committed
1166
    case TYPENAME_TYPE:
mrs's avatar
mrs committed
1167 1168
      return 1;

mrs's avatar
mrs committed
1169 1170 1171
    case SCOPE_REF:
      return uses_template_parms (TREE_OPERAND (t, 0));

mrs's avatar
mrs committed
1172 1173 1174
    case CONSTRUCTOR:
      if (TREE_TYPE (t) && TYPE_PTRMEMFUNC_P (TREE_TYPE (t)))
	return uses_template_parms (TYPE_PTRMEMFUNC_FN_TYPE (TREE_TYPE (t)));
mrs's avatar
mrs committed
1175
      return uses_template_parms (TREE_OPERAND (t, 1));
mrs's avatar
mrs committed
1176

brendan's avatar
brendan committed
1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188
    case MODOP_EXPR:
    case CAST_EXPR:
    case REINTERPRET_CAST_EXPR:
    case CONST_CAST_EXPR:
    case STATIC_CAST_EXPR:
    case DYNAMIC_CAST_EXPR:
    case SIZEOF_EXPR:
    case ARROW_EXPR:
    case DOTSTAR_EXPR:
    case TYPEID_EXPR:
      return 1;

mrs's avatar
mrs committed
1189 1190 1191 1192 1193
    default:
      switch (TREE_CODE_CLASS (TREE_CODE (t)))
	{
	case '1':
	case '2':
mrs's avatar
mrs committed
1194
	case 'e':
mrs's avatar
mrs committed
1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213
	case '<':
	  {
	    int i;
	    for (i = tree_code_length[(int) TREE_CODE (t)]; --i >= 0;)
	      if (uses_template_parms (TREE_OPERAND (t, i)))
		return 1;
	    return 0;
	  }
	default:
	  break;
	}
      sorry ("testing %s for template parms",
	     tree_code_name [(int) TREE_CODE (t)]);
      my_friendly_abort (82);
      /* NOTREACHED */
      return 0;
    }
}

mrs's avatar
mrs committed
1214 1215 1216
static struct tinst_level *current_tinst_level = 0;
static struct tinst_level *free_tinst_level = 0;
static int tinst_depth = 0;
mrs's avatar
mrs committed
1217
extern int max_tinst_depth;
mrs's avatar
mrs committed
1218 1219 1220
#ifdef GATHER_STATISTICS
int depth_reached = 0;
#endif
mrs's avatar
mrs committed
1221

mrs's avatar
mrs committed
1222
static int
mrs's avatar
mrs committed
1223 1224
push_tinst_level (d)
     tree d;
mrs's avatar
mrs committed
1225 1226 1227
{
  struct tinst_level *new;

mrs's avatar
mrs committed
1228 1229
  if (tinst_depth >= max_tinst_depth)
    {
mrs's avatar
mrs committed
1230 1231 1232 1233
      struct tinst_level *p = current_tinst_level;
      int line = lineno;
      char *file = input_filename;

mrs's avatar
mrs committed
1234 1235
      error ("template instantiation depth exceeds maximum of %d",
	     max_tinst_depth);
mrs's avatar
mrs committed
1236
      error (" (use -ftemplate-depth-NN to increase the maximum)");
mrs's avatar
mrs committed
1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249
      cp_error ("  instantiating `%D'", d);

      for (; p; p = p->next)
	{
	  cp_error ("  instantiated from `%D'", p->decl);
	  lineno = p->line;
	  input_filename = p->file;
	}
      error ("  instantiated from here");

      lineno = line;
      input_filename = file;

mrs's avatar
mrs committed
1250 1251 1252
      return 0;
    }

mrs's avatar
mrs committed
1253 1254 1255 1256 1257 1258 1259 1260
  if (free_tinst_level)
    {
      new = free_tinst_level;
      free_tinst_level = new->next;
    }
  else
    new = (struct tinst_level *) xmalloc (sizeof (struct tinst_level));

mrs's avatar
mrs committed
1261 1262 1263
  new->decl = d;
  new->line = lineno;
  new->file = input_filename;
mrs's avatar
mrs committed
1264 1265
  new->next = current_tinst_level;
  current_tinst_level = new;
mrs's avatar
mrs committed
1266

mrs's avatar
mrs committed
1267
  ++tinst_depth;
mrs's avatar
mrs committed
1268 1269 1270 1271 1272
#ifdef GATHER_STATISTICS
  if (tinst_depth > depth_reached)
    depth_reached = tinst_depth;
#endif

mrs's avatar
mrs committed
1273
  return 1;
mrs's avatar
mrs committed
1274 1275 1276 1277 1278 1279 1280 1281 1282 1283
}

void
pop_tinst_level ()
{
  struct tinst_level *old = current_tinst_level;

  current_tinst_level = old->next;
  old->next = free_tinst_level;
  free_tinst_level = old;
mrs's avatar
mrs committed
1284
  --tinst_depth;
mrs's avatar
mrs committed
1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298
}

struct tinst_level *
tinst_for_decl ()
{
  struct tinst_level *p = current_tinst_level;

  if (p)
    for (; p->next ; p = p->next )
      ;
  return p;
}

tree
mrs's avatar
mrs committed
1299 1300
instantiate_class_template (type)
     tree type;
mrs's avatar
mrs committed
1301
{
mrs's avatar
mrs committed
1302
  tree template, template_info, args, pattern, t, *field_chain;
mrs's avatar
mrs committed
1303

mrs's avatar
mrs committed
1304
  if (type == error_mark_node)
mrs's avatar
mrs committed
1305 1306
    return error_mark_node;

mrs's avatar
mrs committed
1307 1308 1309 1310 1311 1312 1313 1314
  template_info = CLASSTYPE_TEMPLATE_INFO (type);

  if (TYPE_BEING_DEFINED (type) || TYPE_SIZE (type))
    return type;

  template = TI_TEMPLATE (template_info);
  my_friendly_assert (TREE_CODE (template) == TEMPLATE_DECL, 279);
  args = TI_ARGS (template_info);
mrs's avatar
mrs committed
1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331

  t = most_specialized_class
    (DECL_TEMPLATE_SPECIALIZATIONS (template), args);

  if (t == error_mark_node)
    {
      char *str = "candidates are:";
      cp_error ("ambiguous class template instantiation for `%#T'", type);
      for (t = DECL_TEMPLATE_SPECIALIZATIONS (template); t; t = TREE_CHAIN (t))
	{
	  if (get_class_bindings (TREE_VALUE (t), TREE_PURPOSE (t), args))
	    {
	      cp_error_at ("%s %+#T", str, TREE_TYPE (t));
	      str = "               ";
	    }
	}
      TYPE_BEING_DEFINED (type) = 1;
mrs's avatar
mrs committed
1332
      return error_mark_node;
mrs's avatar
mrs committed
1333 1334 1335 1336 1337
    }
  else if (t)
    pattern = TREE_TYPE (t);
  else
    pattern = TREE_TYPE (template);
mrs's avatar
mrs committed
1338 1339

  if (TYPE_SIZE (pattern) == NULL_TREE)
mrs's avatar
mrs committed
1340
    return type;
mrs's avatar
mrs committed
1341

mrs's avatar
mrs committed
1342 1343 1344
  if (t)
    args = get_class_bindings (TREE_VALUE (t), TREE_PURPOSE (t), args);

mrs's avatar
mrs committed
1345 1346 1347 1348
  TYPE_BEING_DEFINED (type) = 1;

  if (! push_tinst_level (type))
    return type;
mrs's avatar
mrs committed
1349

mrs's avatar
mrs committed
1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373
  maybe_push_to_top_level (uses_template_parms (type));
  pushclass (type, 0);

  if (flag_external_templates)
    {
      if (flag_alt_external_templates)
	{
	  CLASSTYPE_INTERFACE_ONLY (type) = interface_only;
	  SET_CLASSTYPE_INTERFACE_UNKNOWN_X (type, interface_unknown);
	  CLASSTYPE_VTABLE_NEEDS_WRITING (type)
	    = ! CLASSTYPE_INTERFACE_ONLY (type)
	      && CLASSTYPE_INTERFACE_KNOWN (type);
	}
      else
	{
	  CLASSTYPE_INTERFACE_ONLY (type) = CLASSTYPE_INTERFACE_ONLY (pattern);
	  SET_CLASSTYPE_INTERFACE_UNKNOWN_X
	    (type, CLASSTYPE_INTERFACE_UNKNOWN (pattern));
	  CLASSTYPE_VTABLE_NEEDS_WRITING (type)
	    = ! CLASSTYPE_INTERFACE_ONLY (type)
	      && CLASSTYPE_INTERFACE_KNOWN (type);
	}
    }
  else
mrs's avatar
mrs committed
1374
    {
mrs's avatar
mrs committed
1375 1376
      SET_CLASSTYPE_INTERFACE_UNKNOWN (type);
      CLASSTYPE_VTABLE_NEEDS_WRITING (type) = 1;
mrs's avatar
mrs committed
1377 1378
    }

mrs's avatar
mrs committed
1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404
  TYPE_HAS_CONSTRUCTOR (type) = TYPE_HAS_CONSTRUCTOR (pattern);
  TYPE_HAS_DESTRUCTOR (type) = TYPE_HAS_DESTRUCTOR (pattern);
  TYPE_HAS_ASSIGNMENT (type) = TYPE_HAS_ASSIGNMENT (pattern);
  TYPE_OVERLOADS_CALL_EXPR (type) = TYPE_OVERLOADS_CALL_EXPR (pattern);
  TYPE_OVERLOADS_ARRAY_REF (type) = TYPE_OVERLOADS_ARRAY_REF (pattern);
  TYPE_OVERLOADS_ARROW (type) = TYPE_OVERLOADS_ARROW (pattern);
  TYPE_GETS_NEW (type) = TYPE_GETS_NEW (pattern);
  TYPE_GETS_DELETE (type) = TYPE_GETS_DELETE (pattern);
  TYPE_VEC_DELETE_TAKES_SIZE (type) = TYPE_VEC_DELETE_TAKES_SIZE (pattern);
  TYPE_HAS_ASSIGN_REF (type) = TYPE_HAS_ASSIGN_REF (pattern);
  TYPE_HAS_CONST_ASSIGN_REF (type) = TYPE_HAS_CONST_ASSIGN_REF (pattern);
  TYPE_HAS_ABSTRACT_ASSIGN_REF (type) = TYPE_HAS_ABSTRACT_ASSIGN_REF (pattern);
  TYPE_HAS_INIT_REF (type) = TYPE_HAS_INIT_REF (pattern);
  TYPE_HAS_CONST_INIT_REF (type) = TYPE_HAS_CONST_INIT_REF (pattern);
  TYPE_GETS_INIT_AGGR (type) = TYPE_GETS_INIT_AGGR (pattern);
  TYPE_HAS_DEFAULT_CONSTRUCTOR (type) = TYPE_HAS_DEFAULT_CONSTRUCTOR (pattern);
  TYPE_HAS_CONVERSION (type) = TYPE_HAS_CONVERSION (pattern);
  TYPE_USES_COMPLEX_INHERITANCE (type)
    = TYPE_USES_COMPLEX_INHERITANCE (pattern);
  TYPE_USES_MULTIPLE_INHERITANCE (type)
    = TYPE_USES_MULTIPLE_INHERITANCE (pattern);
  TYPE_USES_VIRTUAL_BASECLASSES (type)
    = TYPE_USES_VIRTUAL_BASECLASSES (pattern);
  TYPE_PACKED (type) = TYPE_PACKED (pattern);
  TYPE_ALIGN (type) = TYPE_ALIGN (pattern);

mrs's avatar
mrs committed
1405 1406 1407 1408 1409 1410 1411 1412 1413
  {
    tree binfo = TYPE_BINFO (type);
    tree pbases = TYPE_BINFO_BASETYPES (pattern);

    if (pbases)
      {
	tree bases;
	int i;
	int len = TREE_VEC_LENGTH (pbases);
mrs's avatar
mrs committed
1414
	bases = make_tree_vec (len);
mrs's avatar
mrs committed
1415 1416 1417 1418 1419
	for (i = 0; i < len; ++i)
	  {
	    tree elt;

	    TREE_VEC_ELT (bases, i) = elt
1420
	      = tsubst (TREE_VEC_ELT (pbases, i), args,
mrs's avatar
mrs committed
1421 1422 1423
			TREE_VEC_LENGTH (args), NULL_TREE);
	    BINFO_INHERITANCE_CHAIN (elt) = binfo;

mrs's avatar
mrs committed
1424 1425 1426 1427 1428 1429 1430
	    if (! IS_AGGR_TYPE (TREE_TYPE (elt)))
	      cp_error
		("base type `%T' of `%T' fails to be a struct or class type",
		 TREE_TYPE (elt), type);
	    else if (! uses_template_parms (type)
		     && (TYPE_SIZE (complete_type (TREE_TYPE (elt)))
			 == NULL_TREE))
mrs's avatar
mrs committed
1431 1432 1433
	      cp_error ("base class `%T' of `%T' has incomplete type",
			TREE_TYPE (elt), type);
	  }
mrs's avatar
mrs committed
1434 1435 1436
	/* Don't initialize this until the vector is filled out, or
	   lookups will crash.  */
	BINFO_BASETYPES (binfo) = bases;
mrs's avatar
mrs committed
1437 1438 1439 1440 1441 1442 1443 1444
      }
  }

  CLASSTYPE_LOCAL_TYPEDECLS (type) = CLASSTYPE_LOCAL_TYPEDECLS (pattern);

  field_chain = &TYPE_FIELDS (type);

  for (t = CLASSTYPE_TAGS (pattern); t; t = TREE_CHAIN (t))
mrs's avatar
mrs committed
1445
    {
mrs's avatar
mrs committed
1446 1447 1448
      tree name = TREE_PURPOSE (t);
      tree tag = TREE_VALUE (t);

mrs's avatar
mrs committed
1449
      /* These will add themselves to CLASSTYPE_TAGS for the new type.  */
mrs's avatar
mrs committed
1450
      if (TREE_CODE (tag) == ENUMERAL_TYPE)
mrs's avatar
mrs committed
1451
	{
1452
	  tree e, newtag = tsubst_enum (tag, args, 
1453
					TREE_VEC_LENGTH (args), field_chain);
mrs's avatar
mrs committed
1454 1455

	  while (*field_chain)
mrs's avatar
mrs committed
1456 1457 1458 1459
	    {
	      DECL_FIELD_CONTEXT (*field_chain) = type;
	      field_chain = &TREE_CHAIN (*field_chain);
	    }
mrs's avatar
mrs committed
1460
	}
mrs's avatar
mrs committed
1461
      else
1462
	tsubst (tag, args,
mrs's avatar
mrs committed
1463
		TREE_VEC_LENGTH (args), NULL_TREE);
mrs's avatar
mrs committed
1464 1465
    }

mrs's avatar
mrs committed
1466 1467 1468 1469
  /* Don't replace enum constants here.  */
  for (t = TYPE_FIELDS (pattern); t; t = TREE_CHAIN (t))
    if (TREE_CODE (t) != CONST_DECL)
      {
1470
	tree r = tsubst (t, args,
mrs's avatar
mrs committed
1471 1472 1473 1474 1475
			 TREE_VEC_LENGTH (args), NULL_TREE);
	if (TREE_CODE (r) == VAR_DECL)
	  {
	    if (! uses_template_parms (r))
	      pending_statics = perm_tree_cons (NULL_TREE, r, pending_statics);
mrs's avatar
mrs committed
1476
	    /* Perhaps I should do more of grokfield here.  */
mrs's avatar
mrs committed
1477 1478 1479 1480 1481 1482 1483 1484 1485
	    start_decl_1 (r);
	    DECL_IN_AGGR_P (r) = 1;
	    DECL_EXTERNAL (r) = 1;
	    cp_finish_decl (r, DECL_INITIAL (r), NULL_TREE, 0, 0);
	  }

	*field_chain = r;
	field_chain = &TREE_CHAIN (r);
      }
mrs's avatar
mrs committed
1486

mrs's avatar
mrs committed
1487
  TYPE_METHODS (type) = tsubst_chain (TYPE_METHODS (pattern), args);
mrs's avatar
mrs committed
1488 1489 1490 1491 1492 1493 1494
  for (t = TYPE_METHODS (type); t; t = TREE_CHAIN (t))
    {
      if (DECL_CONSTRUCTOR_P (t))
	grok_ctor_properties (type, t);
      else if (IDENTIFIER_OPNAME_P (DECL_NAME (t)))
	grok_op_properties (t, DECL_VIRTUAL_P (t), 0);
    }
mrs's avatar
mrs committed
1495

mrs's avatar
mrs committed
1496
  DECL_FRIENDLIST (TYPE_MAIN_DECL (type))
mrs's avatar
mrs committed
1497
    = tsubst (DECL_FRIENDLIST (TYPE_MAIN_DECL (pattern)),
1498
	      args, TREE_VEC_LENGTH (args), NULL_TREE);
mrs's avatar
mrs committed
1499 1500

  {
mrs's avatar
mrs committed
1501
    tree d = CLASSTYPE_FRIEND_CLASSES (type)
1502
      = tsubst (CLASSTYPE_FRIEND_CLASSES (pattern), args,
mrs's avatar
mrs committed
1503
		TREE_VEC_LENGTH (args), NULL_TREE);
mrs's avatar
mrs committed
1504 1505 1506 1507 1508

    /* This does injection for friend classes.  */
    for (; d; d = TREE_CHAIN (d))
      TREE_VALUE (d) = xref_tag_from_type (TREE_VALUE (d), NULL_TREE, 1);

1509
    d = tsubst (DECL_TEMPLATE_INJECT (template), args,
1510
		TREE_VEC_LENGTH (args), NULL_TREE);
mrs's avatar
mrs committed
1511 1512

    for (; d; d = TREE_CHAIN (d))
mrs's avatar
mrs committed
1513 1514 1515 1516 1517 1518 1519 1520
      {
	tree t = TREE_VALUE (d);

	if (TREE_CODE (t) == TYPE_DECL)
	  /* Already injected.  */;
	else
	  pushdecl (t);
      }
mrs's avatar
mrs committed
1521 1522 1523
  }

  if (! uses_template_parms (type))
mrs's avatar
mrs committed
1524
    {
mrs's avatar
mrs committed
1525 1526
      tree tmp;
      for (tmp = TYPE_FIELDS (type); tmp; tmp = TREE_CHAIN (tmp))
mrs's avatar
mrs committed
1527
	if (TREE_CODE (tmp) == FIELD_DECL)
mrs's avatar
mrs committed
1528 1529 1530 1531
	  {
	    TREE_TYPE (tmp) = complete_type (TREE_TYPE (tmp));
	    require_complete_type (tmp);
	  }
mrs's avatar
mrs committed
1532

mrs's avatar
mrs committed
1533
      type = finish_struct_1 (type, 0);
mrs's avatar
mrs committed
1534
      CLASSTYPE_GOT_SEMICOLON (type) = 1;
mrs's avatar
mrs committed
1535 1536

      repo_template_used (type);
1537 1538
      if (at_eof && TYPE_BINFO_VTABLE (type) != NULL_TREE)
	finish_prevtable_vardecl (NULL, TYPE_BINFO_VTABLE (type));
mrs's avatar
mrs committed
1539 1540 1541
    }
  else
    {
mrs's avatar
mrs committed
1542 1543 1544
      TYPE_SIZE (type) = integer_zero_node;
      CLASSTYPE_METHOD_VEC (type)
	= finish_struct_methods (type, TYPE_METHODS (type), 1);
mrs's avatar
mrs committed
1545 1546
    }

mrs's avatar
mrs committed
1547 1548 1549 1550 1551 1552 1553
  TYPE_BEING_DEFINED (type) = 0;
  popclass (0);

  pop_from_top_level ();
  pop_tinst_level ();

  return type;
mrs's avatar
mrs committed
1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571
}

static int
list_eq (t1, t2)
     tree t1, t2;
{
  if (t1 == NULL_TREE)
    return t2 == NULL_TREE;
  if (t2 == NULL_TREE)
    return 0;
  /* Don't care if one declares its arg const and the other doesn't -- the
     main variant of the arg type is all that matters.  */
  if (TYPE_MAIN_VARIANT (TREE_VALUE (t1))
      != TYPE_MAIN_VARIANT (TREE_VALUE (t2)))
    return 0;
  return list_eq (TREE_CHAIN (t1), TREE_CHAIN (t2));
}

mrs's avatar
mrs committed
1572
tree 
mrs's avatar
mrs committed
1573 1574 1575 1576 1577
lookup_nested_type_by_name (ctype, name)
        tree ctype, name;
{
  tree t;

mrs's avatar
mrs committed
1578 1579
  complete_type (ctype);

mrs's avatar
mrs committed
1580 1581
  for (t = CLASSTYPE_TAGS (ctype); t; t = TREE_CHAIN (t))
    {
1582 1583 1584
      if (name == TREE_PURPOSE (t)
	  /* this catches typedef enum { foo } bar; */
	  || name == TYPE_IDENTIFIER (TREE_VALUE (t)))
mrs's avatar
mrs committed
1585 1586
	return TREE_VALUE (t);
    }
mrs's avatar
mrs committed
1587 1588 1589
  return NULL_TREE;
}

1590
tree
mrs's avatar
mrs committed
1591
tsubst (t, args, nargs, in_decl)
1592
     tree t, args;
mrs's avatar
mrs committed
1593 1594 1595 1596 1597
     int nargs;
     tree in_decl;
{
  tree type;

mrs's avatar
mrs committed
1598 1599 1600 1601
  if (t == NULL_TREE || t == error_mark_node
      || t == integer_type_node
      || t == void_type_node
      || t == char_type_node)
mrs's avatar
mrs committed
1602 1603 1604
    return t;

  type = TREE_TYPE (t);
mrs's avatar
mrs committed
1605 1606
  if (type == unknown_type_node)
    my_friendly_abort (42);
mrs's avatar
mrs committed
1607 1608
  if (type && TREE_CODE (t) != FUNCTION_DECL
      && TREE_CODE (t) != TYPENAME_TYPE)
mrs's avatar
mrs committed
1609 1610
    type = tsubst (type, args, nargs, in_decl);

mrs's avatar
mrs committed
1611 1612 1613 1614
  switch (TREE_CODE (t))
    {
    case RECORD_TYPE:
      if (TYPE_PTRMEMFUNC_P (t))
mrs's avatar
mrs committed
1615 1616 1617 1618 1619 1620 1621
	{
	  tree r = build_ptrmemfunc_type
	    (tsubst (TYPE_PTRMEMFUNC_FN_TYPE (t), args, nargs, in_decl));
	  return cp_build_type_variant (r, TYPE_READONLY (t),
					TYPE_VOLATILE (t));
	}

mrs's avatar
mrs committed
1622
      /* else fall through */
mrs's avatar
mrs committed
1623 1624 1625 1626 1627 1628 1629 1630
    case UNION_TYPE:
      if (uses_template_parms (t))
	{
	  tree argvec = tsubst (CLASSTYPE_TI_ARGS (t), args, nargs, in_decl);
	  tree r = lookup_template_class (t, argvec, in_decl);
	  return cp_build_type_variant (r, TYPE_READONLY (t),
					TYPE_VOLATILE (t));
	}
mrs's avatar
mrs committed
1631

mrs's avatar
mrs committed
1632
      /* else fall through */
mrs's avatar
mrs committed
1633 1634 1635 1636 1637
    case ERROR_MARK:
    case IDENTIFIER_NODE:
    case OP_IDENTIFIER:
    case VOID_TYPE:
    case REAL_TYPE:
mrs's avatar
mrs committed
1638
    case COMPLEX_TYPE:
mrs's avatar
mrs committed
1639
    case BOOLEAN_TYPE:
mrs's avatar
mrs committed
1640 1641 1642 1643 1644
    case INTEGER_CST:
    case REAL_CST:
    case STRING_CST:
      return t;

mrs's avatar
mrs committed
1645 1646 1647 1648 1649
    case ENUMERAL_TYPE:
      {
	tree ctx = tsubst (TYPE_CONTEXT (t), args, nargs, in_decl);
	if (ctx == NULL_TREE)
	  return t;
mrs's avatar
mrs committed
1650 1651
	else if (ctx == current_function_decl)
	  return lookup_name (TYPE_IDENTIFIER (t), 1);
mrs's avatar
mrs committed
1652 1653 1654 1655
	else
	  return lookup_nested_type_by_name (ctx, TYPE_IDENTIFIER (t));
      }

mrs's avatar
mrs committed
1656 1657 1658 1659 1660 1661 1662
    case INTEGER_TYPE:
      if (t == integer_type_node)
	return t;

      if (TREE_CODE (TYPE_MIN_VALUE (t)) == INTEGER_CST
	  && TREE_CODE (TYPE_MAX_VALUE (t)) == INTEGER_CST)
	return t;
mrs's avatar
mrs committed
1663 1664

      {
mrs's avatar
mrs committed
1665 1666
	tree max = TREE_OPERAND (TYPE_MAX_VALUE (t), 0);
	max = tsubst_expr (max, args, nargs, in_decl);
mrs's avatar
mrs committed
1667
	if (processing_template_decl)
mrs's avatar
mrs committed
1668 1669 1670
	  {
	    tree itype = make_node (INTEGER_TYPE);
	    TYPE_MIN_VALUE (itype) = size_zero_node;
mrs's avatar
mrs committed
1671 1672
	    TYPE_MAX_VALUE (itype) = build_min (MINUS_EXPR, sizetype, max,
						integer_one_node);
mrs's avatar
mrs committed
1673 1674
	    return itype;
	  }
mrs's avatar
mrs committed
1675 1676

	max = fold (build_binary_op (MINUS_EXPR, max, integer_one_node, 1));
mrs's avatar
mrs committed
1677 1678
	return build_index_2_type (size_zero_node, max);
      }
mrs's avatar
mrs committed
1679 1680

    case TEMPLATE_TYPE_PARM:
1681
    case TEMPLATE_CONST_PARM:
mrs's avatar
mrs committed
1682
      {
1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728
	int idx;
	int level;

	if (TREE_CODE (t) == TEMPLATE_TYPE_PARM)
	  {
	    idx = TEMPLATE_TYPE_IDX (t);
	    level = TEMPLATE_TYPE_LEVEL (t);
	  }
	else
	  {
	    idx = TEMPLATE_CONST_IDX (t);
	    level = TEMPLATE_CONST_LEVEL (t);
	  }

	if (TREE_VEC_LENGTH (args) > 0) 
	  {
	    tree arg = NULL_TREE;

	    if (TREE_CODE (TREE_VEC_ELT (args, 0)) == TREE_VEC)
	      {
		if (TREE_VEC_LENGTH (args) >= level - 1)
		  arg = TREE_VEC_ELT
		    (TREE_VEC_ELT (args, level - 1), idx);
	      }
	    else if (level == 1)
	      arg = TREE_VEC_ELT (args, idx);

	    if (arg != NULL_TREE)
	      {
		if (TREE_CODE (t) == TEMPLATE_TYPE_PARM)
		  return cp_build_type_variant
		    (arg, TYPE_READONLY (arg) || TYPE_READONLY (t),
		     TYPE_VOLATILE (arg) || TYPE_VOLATILE (t));
		else
		  return arg;
	      }
	  }

	/* If we get here, we must have been looking at a parm for a
	   more deeply nested template.  */
	my_friendly_assert((TREE_CODE (t) == TEMPLATE_CONST_PARM 
			    && TEMPLATE_CONST_LEVEL (t) > 1) 
			   || (TREE_CODE (t) == TEMPLATE_TYPE_PARM
			       && TEMPLATE_TYPE_LEVEL (t) > 1),
			   0);
	return t;
mrs's avatar
mrs committed
1729
      }
mrs's avatar
mrs committed
1730

1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782
    case TEMPLATE_DECL:
      {
	/* We can get here when processing a member template function
	   of a template class.  */
	tree tmpl;
	tree decl = DECL_TEMPLATE_RESULT (t);
	tree new_decl;
	tree parms;
	int i;

	/* We might already have an instance of this template. */
	tree instances = DECL_TEMPLATE_INSTANTIATIONS (t);
	tree ctx = tsubst (DECL_CLASS_CONTEXT (t), args, nargs, in_decl); 
	  
	for (; instances; instances = TREE_CHAIN (instances))
	  if (DECL_CLASS_CONTEXT (TREE_VALUE (instances)) == ctx)
	    return TREE_VALUE (instances);

	/* Make a new template decl.  It will be similar to the
	   original, but will record the current template arguments. 
	   We also create a new function declaration, which is just
	   like the old one, but points to this new template, rather
	   than the old one.  */
	tmpl = copy_node (t);
	copy_lang_decl (tmpl);
	my_friendly_assert (DECL_LANG_SPECIFIC (tmpl) != 0, 0);
	DECL_CHAIN (tmpl) = NULL_TREE;
	TREE_CHAIN (tmpl) = NULL_TREE;
	DECL_TEMPLATE_INFO (tmpl) = build_tree_list (t, args);
	new_decl = tsubst (decl, args, nargs, in_decl);
	DECL_RESULT (tmpl) = new_decl;
	DECL_INITIAL (new_decl) = DECL_INITIAL (decl);
	DECL_TI_TEMPLATE (new_decl) = tmpl;
	TREE_TYPE (tmpl) = TREE_TYPE (new_decl);
	DECL_TEMPLATE_INSTANTIATIONS(tmpl) = NULL_TREE;

	/* The template parameters for this new template are all the
	   template parameters for the old template, except the
	   outermost level of parameters. */
	DECL_TEMPLATE_PARMS (tmpl)
	  = copy_node (DECL_TEMPLATE_PARMS (tmpl));
	for (parms = DECL_TEMPLATE_PARMS (tmpl);
	     TREE_CHAIN (parms) != NULL_TREE;
	     parms = TREE_CHAIN (parms))
	  TREE_CHAIN (parms) = copy_node (TREE_CHAIN (parms));

	/* Record this partial instantiation. */
	DECL_TEMPLATE_INSTANTIATIONS (t)
	  = perm_tree_cons (NULL_TREE, tmpl,
			    DECL_TEMPLATE_INSTANTIATIONS (t));
	return tmpl;
      }
mrs's avatar
mrs committed
1783 1784 1785

    case FUNCTION_DECL:
      {
mrs's avatar
mrs committed
1786 1787 1788 1789 1790
	tree r = NULL_TREE;
	tree arg_types, ctx;

	int member;

mrs's avatar
mrs committed
1791 1792 1793
	if (DECL_CONTEXT (t) != NULL_TREE
	    && TREE_CODE_CLASS (TREE_CODE (DECL_CONTEXT (t))) == 't')
	  {
mrs's avatar
mrs committed
1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806
	    if (DECL_NAME (t) == constructor_name (DECL_CONTEXT (t)))
	      member = 2;
	    else
	      member = 1;
	    ctx = tsubst (DECL_CLASS_CONTEXT (t), args, nargs, t);
	    type = tsubst (type, args, nargs, in_decl);
	  }
	else
	  {
	    member = 0;
	    ctx = NULL_TREE;
	    type = tsubst (type, args, nargs, in_decl);
	  }
mrs's avatar
mrs committed
1807

mrs's avatar
mrs committed
1808 1809
	if (type == TREE_TYPE (t)
	    && (! member || ctx == DECL_CLASS_CONTEXT (t)))
mrs's avatar
mrs committed
1810 1811 1812 1813 1814
	  {
	    t = copy_node (t);
	    copy_lang_decl (t);
	    return t;
	  }
mrs's avatar
mrs committed
1815

mrs's avatar
mrs committed
1816 1817 1818
	/* Do we already have this instantiation?  */
	if (DECL_TEMPLATE_INFO (t) != NULL_TREE)
	  {
1819
	    tree tmpl = DECL_TI_TEMPLATE (t);
mrs's avatar
mrs committed
1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830
	    tree decls = DECL_TEMPLATE_INSTANTIATIONS (tmpl);

	    for (; decls; decls = TREE_CHAIN (decls))
	      if (TREE_TYPE (TREE_VALUE (decls)) == type
		  && DECL_CLASS_CONTEXT (TREE_VALUE (decls)) == ctx)
		return TREE_VALUE (decls);
	  }

	/* We do NOT check for matching decls pushed separately at this
           point, as they may not represent instantiations of this
           template, and in any case are considered separate under the
mrs's avatar
mrs committed
1831
           discrete model.  Instead, see add_maybe_template.  */
mrs's avatar
mrs committed
1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865

	r = copy_node (t);
	copy_lang_decl (r);
	TREE_TYPE (r) = type;

	DECL_CONTEXT (r)
	  = tsubst (DECL_CONTEXT (t), args, nargs, t);
	DECL_CLASS_CONTEXT (r) = ctx;

	if (member && !strncmp (OPERATOR_TYPENAME_FORMAT,
				IDENTIFIER_POINTER (DECL_NAME (r)),
				sizeof (OPERATOR_TYPENAME_FORMAT) - 1))
	  {
	    /* Type-conversion operator.  Reconstruct the name, in
	       case it's the name of one of the template's parameters.  */
	    DECL_NAME (r) = build_typename_overload (TREE_TYPE (type));
	  }

	arg_types = TYPE_VALUES (type);

	if (member && TREE_CODE (type) == FUNCTION_TYPE)
	  arg_types = hash_tree_chain
	    (build_pointer_type (DECL_CONTEXT (r)), arg_types);

	if (DESTRUCTOR_NAME_P (DECL_ASSEMBLER_NAME (t)))
	  {
	    char *buf, *dbuf = build_overload_name (ctx, 1, 1);
	    int len = sizeof (DESTRUCTOR_DECL_PREFIX) - 1;
	    buf = (char *) alloca (strlen (dbuf)
				   + sizeof (DESTRUCTOR_DECL_PREFIX));
	    bcopy (DESTRUCTOR_DECL_PREFIX, buf, len);
	    buf[len] = '\0';
	    strcat (buf, dbuf);
	    DECL_ASSEMBLER_NAME (r) = get_identifier (buf);
mrs's avatar
mrs committed
1866 1867
	  }
	else
mrs's avatar
mrs committed
1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889
	  DECL_ASSEMBLER_NAME (r)
	    = build_decl_overload (DECL_NAME (r), arg_types, member);
	DECL_RTL (r) = 0;
	make_decl_rtl (r, NULL_PTR, 1);

	DECL_ARGUMENTS (r) = tsubst (DECL_ARGUMENTS (t), args, nargs, t);
	DECL_MAIN_VARIANT (r) = r;
	DECL_RESULT (r) = NULL_TREE;
	DECL_INITIAL (r) = NULL_TREE;

	TREE_STATIC (r) = 0;
	TREE_PUBLIC (r) = 1;
	DECL_EXTERNAL (r) = 1;
	DECL_INTERFACE_KNOWN (r) = 0;
	DECL_DEFER_OUTPUT (r) = 0;
	TREE_CHAIN (r) = NULL_TREE;
	DECL_CHAIN (r) = NULL_TREE;

	if (IDENTIFIER_OPNAME_P (DECL_NAME (r)))
	  grok_op_properties (r, DECL_VIRTUAL_P (r), DECL_FRIEND_P (r));

	/* Look for matching decls for the moment.  */
mrs's avatar
mrs committed
1890
	if (! member && ! flag_ansi_overloading)
mrs's avatar
mrs committed
1891
	  {
mrs's avatar
mrs committed
1892 1893 1894 1895 1896 1897 1898 1899
	    tree decls = lookup_name_nonclass (DECL_NAME (t));
	    tree d = NULL_TREE;
    
	    if (decls == NULL_TREE)
	      /* no match */;
	    else if (is_overloaded_fn (decls))
	      for (decls = get_first_fn (decls); decls;
		   decls = DECL_CHAIN (decls))
mrs's avatar
mrs committed
1900
		{
mrs's avatar
mrs committed
1901 1902
		  if (TREE_CODE (decls) == FUNCTION_DECL
		      && TREE_TYPE (decls) == type)
mrs's avatar
mrs committed
1903
		    {
mrs's avatar
mrs committed
1904 1905
		      d = decls;
		      break;
mrs's avatar
mrs committed
1906 1907 1908
		    }
		}

mrs's avatar
mrs committed
1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924
	    if (d)
	      {
		int dcl_only = ! DECL_INITIAL (d);
		if (dcl_only)
		  DECL_INITIAL (r) = error_mark_node;
		duplicate_decls (r, d);
		r = d;
		if (dcl_only)
		  DECL_INITIAL (r) = 0;
	      }
	  }

	if (DECL_TEMPLATE_INFO (t) != NULL_TREE)
	  {
	    tree tmpl = DECL_TI_TEMPLATE (t);
	    tree *declsp = &DECL_TEMPLATE_INSTANTIATIONS (tmpl);
1925 1926 1927 1928
	    tree argvec = tsubst (DECL_TI_ARGS (t), args, nargs, in_decl);

	    if (DECL_TEMPLATE_INFO (tmpl) && DECL_TI_ARGS (tmpl))
	      argvec = add_to_template_args (DECL_TI_ARGS (tmpl), argvec);
mrs's avatar
mrs committed
1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939

	    DECL_TEMPLATE_INFO (r) = perm_tree_cons (tmpl, argvec, NULL_TREE);
	    *declsp = perm_tree_cons (argvec, r, *declsp);

	    /* If we have a preexisting version of this function, don't expand
	       the template version, use the other instead.  */
	    if (TREE_STATIC (r) || DECL_TEMPLATE_SPECIALIZATION (r))
	      SET_DECL_TEMPLATE_SPECIALIZATION (r);
	    else
	      SET_DECL_IMPLICIT_INSTANTIATION (r);

mrs's avatar
mrs committed
1940 1941
	    DECL_TEMPLATE_INSTANTIATIONS (tmpl)
	      = tree_cons (argvec, r, DECL_TEMPLATE_INSTANTIATIONS (tmpl));
mrs's avatar
mrs committed
1942 1943
	  }

mrs's avatar
mrs committed
1944 1945 1946 1947 1948 1949
	/* Like grokfndecl.  If we don't do this, pushdecl will mess up our
	   TREE_CHAIN because it doesn't find a previous decl.  Sigh.  */
	if (member
	    && IDENTIFIER_GLOBAL_VALUE (DECL_ASSEMBLER_NAME (r)) == NULL_TREE)
	  IDENTIFIER_GLOBAL_VALUE (DECL_ASSEMBLER_NAME (r)) = r;

mrs's avatar
mrs committed
1950 1951 1952 1953 1954
	return r;
      }

    case PARM_DECL:
      {
mrs's avatar
mrs committed
1955 1956
	tree r = copy_node (t);
	TREE_TYPE (r) = type;
mrs's avatar
mrs committed
1957
	DECL_INITIAL (r) = TREE_TYPE (r);
mrs's avatar
mrs committed
1958
	DECL_CONTEXT (r) = NULL_TREE;
kenner's avatar
kenner committed
1959 1960 1961 1962 1963 1964
#ifdef PROMOTE_PROTOTYPES
	if ((TREE_CODE (type) == INTEGER_TYPE
	     || TREE_CODE (type) == ENUMERAL_TYPE)
	    && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
	  DECL_ARG_TYPE (r) = integer_type_node;
#endif
mrs's avatar
mrs committed
1965 1966 1967 1968 1969
	if (TREE_CHAIN (t))
	  TREE_CHAIN (r) = tsubst (TREE_CHAIN (t), args, nargs, TREE_CHAIN (t));
	return r;
      }

mrs's avatar
mrs committed
1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013
    case FIELD_DECL:
      {
	tree r = copy_node (t);
	TREE_TYPE (r) = type;
	copy_lang_decl (r);
#if 0
	DECL_FIELD_CONTEXT (r) = tsubst (DECL_FIELD_CONTEXT (t), args, nargs, in_decl);
#endif
	DECL_INITIAL (r) = tsubst_expr (DECL_INITIAL (t), args, nargs, in_decl);
	TREE_CHAIN (r) = NULL_TREE;
	return r;
      }

    case USING_DECL:
      {
	tree r = copy_node (t);
	DECL_INITIAL (r)
	  = tsubst_copy (DECL_INITIAL (t), args, nargs, in_decl);
	TREE_CHAIN (r) = NULL_TREE;
	return r;
      }

    case VAR_DECL:
      {
	tree r;
	tree ctx = tsubst_copy (DECL_CONTEXT (t), args, nargs, in_decl);

	/* Do we already have this instantiation?  */
	if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
	  {
	    tree tmpl = DECL_TI_TEMPLATE (t);
	    tree decls = DECL_TEMPLATE_INSTANTIATIONS (tmpl);

	    for (; decls; decls = TREE_CHAIN (decls))
	      if (DECL_CONTEXT (TREE_VALUE (decls)) == ctx)
		return TREE_VALUE (decls);
	  }

	r = copy_node (t);
	TREE_TYPE (r) = type;
	DECL_CONTEXT (r) = ctx;
	if (TREE_STATIC (r))
	  DECL_ASSEMBLER_NAME (r)
	    = build_static_name (DECL_CONTEXT (r), DECL_NAME (r));
mrs's avatar
mrs committed
2014 2015 2016 2017

	/* Don't try to expand the initializer until someone tries to use
	   this variable; otherwise we run into circular dependencies.  */
	DECL_INITIAL (r) = NULL_TREE;
mrs's avatar
mrs committed
2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031

	DECL_RTL (r) = 0;
	DECL_SIZE (r) = 0;

	if (DECL_LANG_SPECIFIC (r))
	  {
	    copy_lang_decl (r);
	    DECL_CLASS_CONTEXT (r) = DECL_CONTEXT (r);
	  }

	if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
	  {
	    tree tmpl = DECL_TI_TEMPLATE (t);
	    tree *declsp = &DECL_TEMPLATE_INSTANTIATIONS (tmpl);
2032
	    tree argvec = tsubst (DECL_TI_ARGS (t), args, nargs, in_decl);
mrs's avatar
mrs committed
2033 2034 2035 2036 2037 2038 2039 2040 2041 2042

	    DECL_TEMPLATE_INFO (r) = perm_tree_cons (tmpl, argvec, NULL_TREE);
	    *declsp = perm_tree_cons (argvec, r, *declsp);
	    SET_DECL_IMPLICIT_INSTANTIATION (r);
	  }
	TREE_CHAIN (r) = NULL_TREE;
	return r;
      }

    case TYPE_DECL:
mrs's avatar
mrs committed
2043 2044 2045
      if (t == TYPE_NAME (TREE_TYPE (t)))
	return TYPE_NAME (type);

mrs's avatar
mrs committed
2046 2047 2048
      {
	tree r = copy_node (t);
	TREE_TYPE (r) = type;
mrs's avatar
mrs committed
2049
	DECL_CONTEXT (r) = current_class_type;
mrs's avatar
mrs committed
2050 2051 2052 2053
	TREE_CHAIN (r) = NULL_TREE;
	return r;
      }	  

mrs's avatar
mrs committed
2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084
    case TREE_LIST:
      {
	tree purpose, value, chain, result;
	int via_public, via_virtual, via_protected;

	if (t == void_list_node)
	  return t;

	via_public = TREE_VIA_PUBLIC (t);
	via_protected = TREE_VIA_PROTECTED (t);
	via_virtual = TREE_VIA_VIRTUAL (t);

	purpose = TREE_PURPOSE (t);
	if (purpose)
	  purpose = tsubst (purpose, args, nargs, in_decl);
	value = TREE_VALUE (t);
	if (value)
	  value = tsubst (value, args, nargs, in_decl);
	chain = TREE_CHAIN (t);
	if (chain && chain != void_type_node)
	  chain = tsubst (chain, args, nargs, in_decl);
	if (purpose == TREE_PURPOSE (t)
	    && value == TREE_VALUE (t)
	    && chain == TREE_CHAIN (t))
	  return t;
	result = hash_tree_cons (via_public, via_virtual, via_protected,
				 purpose, value, chain);
	TREE_PARMLIST (result) = TREE_PARMLIST (t);
	return result;
      }
    case TREE_VEC:
mrs's avatar
mrs committed
2085 2086 2087 2088 2089 2090 2091 2092
      if (type != NULL_TREE)
	{
	  t = copy_node (t);

	  if (type == TREE_TYPE (t))
	    return t;

	  TREE_TYPE (t) = complete_type (type);
mrs's avatar
mrs committed
2093 2094 2095 2096 2097 2098 2099
	  if (IS_AGGR_TYPE (type))
	    {
	      BINFO_VTABLE (t) = TYPE_BINFO_VTABLE (type);
	      BINFO_VIRTUALS (t) = TYPE_BINFO_VIRTUALS (type);
	      if (TYPE_BINFO_BASETYPES (type) != NULL_TREE)
		BINFO_BASETYPES (t) = copy_node (TYPE_BINFO_BASETYPES (type));
	    }
mrs's avatar
mrs committed
2100 2101
	  return t;
	}
mrs's avatar
mrs committed
2102 2103 2104
      {
	int len = TREE_VEC_LENGTH (t), need_new = 0, i;
	tree *elts = (tree *) alloca (len * sizeof (tree));
mrs's avatar
mrs committed
2105

2106
	bzero ((char *) elts, len * sizeof (tree));
mrs's avatar
mrs committed
2107 2108 2109

	for (i = 0; i < len; i++)
	  {
mrs's avatar
mrs committed
2110
	    elts[i] = tsubst_expr (TREE_VEC_ELT (t, i), args, nargs, in_decl);
mrs's avatar
mrs committed
2111 2112 2113 2114 2115 2116 2117 2118 2119 2120
	    if (elts[i] != TREE_VEC_ELT (t, i))
	      need_new = 1;
	  }

	if (!need_new)
	  return t;

	t = make_tree_vec (len);
	for (i = 0; i < len; i++)
	  TREE_VEC_ELT (t, i) = elts[i];
mrs's avatar
mrs committed
2121
	
mrs's avatar
mrs committed
2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136
	return t;
      }
    case POINTER_TYPE:
    case REFERENCE_TYPE:
      {
	tree r;
	enum tree_code code;
	if (type == TREE_TYPE (t))
	  return t;

	code = TREE_CODE (t);
	if (code == POINTER_TYPE)
	  r = build_pointer_type (type);
	else
	  r = build_reference_type (type);
mrs's avatar
mrs committed
2137
	r = cp_build_type_variant (r, TYPE_READONLY (t), TYPE_VOLATILE (t));
mrs's avatar
mrs committed
2138 2139 2140 2141
	/* Will this ever be needed for TYPE_..._TO values?  */
	layout_type (r);
	return r;
      }
mrs's avatar
mrs committed
2142 2143 2144
    case OFFSET_TYPE:
      return build_offset_type
	(tsubst (TYPE_OFFSET_BASETYPE (t), args, nargs, in_decl), type);
mrs's avatar
mrs committed
2145 2146 2147
    case FUNCTION_TYPE:
    case METHOD_TYPE:
      {
2148
	tree values = TYPE_ARG_TYPES (t);
mrs's avatar
mrs committed
2149
	tree context = TYPE_CONTEXT (t);
mrs's avatar
merging  
mrs committed
2150 2151
	tree raises = TYPE_RAISES_EXCEPTIONS (t);
	tree fntype;
mrs's avatar
mrs committed
2152 2153 2154

	/* Don't bother recursing if we know it won't change anything.	*/
	if (values != void_list_node)
mrs's avatar
mrs committed
2155 2156 2157 2158 2159 2160 2161 2162 2163
	  {
	    /* This should probably be rewritten to use hash_tree_cons for
               the memory savings.  */
	    tree first = NULL_TREE;
	    tree last;

	    for (; values && values != void_list_node;
		 values = TREE_CHAIN (values))
	      {
mrs's avatar
mrs committed
2164 2165
		tree value = TYPE_MAIN_VARIANT (type_decays_to
		  (tsubst (TREE_VALUE (values), args, nargs, in_decl)));
mrs's avatar
mrs committed
2166 2167 2168
		/* Don't instantiate default args unless they are used.
		   Handle it in build_over_call instead.  */
		tree purpose = TREE_PURPOSE (values);
mrs's avatar
mrs committed
2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182
		tree x = build_tree_list (purpose, value);

		if (first)
		  TREE_CHAIN (last) = x;
		else
		  first = x;
		last = x;
	      }

	    if (values == void_list_node)
	      TREE_CHAIN (last) = void_list_node;

	    values = first;
	  }
mrs's avatar
mrs committed
2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197
	if (context)
	  context = tsubst (context, args, nargs, in_decl);
	/* Could also optimize cases where return value and
	   values have common elements (e.g., T min(const &T, const T&).  */

	/* If the above parameters haven't changed, just return the type.  */
	if (type == TREE_TYPE (t)
	    && values == TYPE_VALUES (t)
	    && context == TYPE_CONTEXT (t))
	  return t;

	/* Construct a new type node and return it.  */
	if (TREE_CODE (t) == FUNCTION_TYPE
	    && context == NULL_TREE)
	  {
mrs's avatar
merging  
mrs committed
2198
	    fntype = build_function_type (type, values);
mrs's avatar
mrs committed
2199 2200 2201 2202 2203
	  }
	else if (context == NULL_TREE)
	  {
	    tree base = tsubst (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (t))),
				args, nargs, in_decl);
mrs's avatar
merging  
mrs committed
2204 2205
	    fntype = build_cplus_method_type (base, type,
					      TREE_CHAIN (values));
mrs's avatar
mrs committed
2206 2207 2208
	  }
	else
	  {
mrs's avatar
merging  
mrs committed
2209 2210 2211 2212 2213 2214 2215
	    fntype = make_node (TREE_CODE (t));
	    TREE_TYPE (fntype) = type;
	    TYPE_CONTEXT (fntype) = context;
	    TYPE_VALUES (fntype) = values;
	    TYPE_SIZE (fntype) = TYPE_SIZE (t);
	    TYPE_ALIGN (fntype) = TYPE_ALIGN (t);
	    TYPE_MODE (fntype) = TYPE_MODE (t);
mrs's avatar
mrs committed
2216
	    if (TYPE_METHOD_BASETYPE (t))
mrs's avatar
merging  
mrs committed
2217 2218
	      TYPE_METHOD_BASETYPE (fntype) = tsubst (TYPE_METHOD_BASETYPE (t),
						      args, nargs, in_decl);
mrs's avatar
mrs committed
2219 2220 2221
	    /* Need to generate hash value.  */
	    my_friendly_abort (84);
	  }
mrs's avatar
merging  
mrs committed
2222 2223 2224 2225 2226 2227 2228 2229 2230
	fntype = build_type_variant (fntype,
				     TYPE_READONLY (t),
				     TYPE_VOLATILE (t));
	if (raises)
	  {
	    raises = tsubst (raises, args, nargs, in_decl);
	    fntype = build_exception_variant (fntype, raises);
	  }
	return fntype;
mrs's avatar
mrs committed
2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242
      }
    case ARRAY_TYPE:
      {
	tree domain = tsubst (TYPE_DOMAIN (t), args, nargs, in_decl);
	tree r;
	if (type == TREE_TYPE (t) && domain == TYPE_DOMAIN (t))
	  return t;
	r = build_cplus_array_type (type, domain);
	return r;
      }

    case PLUS_EXPR:
mrs's avatar
mrs committed
2243
    case MINUS_EXPR:
mrs's avatar
mrs committed
2244 2245 2246 2247 2248 2249 2250 2251 2252
      return fold (build (TREE_CODE (t), TREE_TYPE (t),
			  tsubst (TREE_OPERAND (t, 0), args, nargs, in_decl),
			  tsubst (TREE_OPERAND (t, 1), args, nargs, in_decl)));

    case NEGATE_EXPR:
    case NOP_EXPR:
      return fold (build1 (TREE_CODE (t), TREE_TYPE (t),
			   tsubst (TREE_OPERAND (t, 0), args, nargs, in_decl)));

mrs's avatar
mrs committed
2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272
    case TYPENAME_TYPE:
      {
	tree ctx = tsubst (TYPE_CONTEXT (t), args, nargs, in_decl);
	tree f = make_typename_type (ctx, TYPE_IDENTIFIER (t));
	return cp_build_type_variant
	  (f, TYPE_READONLY (f) || TYPE_READONLY (t),
	   TYPE_VOLATILE (f) || TYPE_VOLATILE (t));
      }

    case INDIRECT_REF:
      return make_pointer_declarator
	(type, tsubst (TREE_OPERAND (t, 0), args, nargs, in_decl));
      
    case ADDR_EXPR:
      return make_reference_declarator
	(type, tsubst (TREE_OPERAND (t, 0), args, nargs, in_decl));

    case ARRAY_REF:
      return build_parse_node
	(ARRAY_REF, tsubst (TREE_OPERAND (t, 0), args, nargs, in_decl),
mrs's avatar
mrs committed
2273
	 tsubst_expr (TREE_OPERAND (t, 1), args, nargs, in_decl));
mrs's avatar
mrs committed
2274 2275

    case CALL_EXPR:
mrs's avatar
merging  
mrs committed
2276 2277 2278 2279 2280
      return make_call_declarator
	(tsubst (TREE_OPERAND (t, 0), args, nargs, in_decl),
	 tsubst (TREE_OPERAND (t, 1), args, nargs, in_decl),
	 TREE_OPERAND (t, 2),
	 tsubst (TREE_TYPE (t), args, nargs, in_decl));
mrs's avatar
mrs committed
2281

mrs's avatar
mrs committed
2282 2283 2284 2285 2286
    case SCOPE_REF:
      return build_parse_node
	(TREE_CODE (t), tsubst (TREE_OPERAND (t, 0), args, nargs, in_decl),
	 tsubst (TREE_OPERAND (t, 1), args, nargs, in_decl));

mrs's avatar
mrs committed
2287
    default:
mrs's avatar
mrs committed
2288
      sorry ("use of `%s' in template",
mrs's avatar
mrs committed
2289 2290 2291 2292 2293
	     tree_code_name [(int) TREE_CODE (t)]);
      return error_mark_node;
    }
}

mrs's avatar
mrs committed
2294 2295 2296 2297 2298 2299 2300 2301 2302 2303
void
do_pushlevel ()
{
  emit_line_note (input_filename, lineno);
  pushlevel (0);
  clear_last_expr ();
  push_momentary ();
  expand_start_bindings (0);
}  

mrs's avatar
mrs committed
2304
tree
mrs's avatar
mrs committed
2305
do_poplevel ()
mrs's avatar
mrs committed
2306
{
mrs's avatar
mrs committed
2307
  tree t;
mrs's avatar
mrs committed
2308

mrs's avatar
mrs committed
2309 2310 2311 2312 2313
  expand_end_bindings (getdecls (), kept_level_p (), 1);
  t = poplevel (kept_level_p (), 1, 0);
  pop_momentary ();
  return t;
}
mrs's avatar
mrs committed
2314

mrs's avatar
mrs committed
2315 2316
tree
tsubst_copy (t, args, nargs, in_decl)
2317
     tree t, args;
mrs's avatar
mrs committed
2318 2319 2320 2321
     int nargs;
     tree in_decl;
{
  enum tree_code code;
mrs's avatar
mrs committed
2322

mrs's avatar
mrs committed
2323 2324 2325 2326
  if (t == NULL_TREE || t == error_mark_node)
    return t;

  code = TREE_CODE (t);
mrs's avatar
mrs committed
2327

mrs's avatar
mrs committed
2328 2329 2330 2331 2332 2333 2334 2335 2336 2337
  switch (code)
    {
    case PARM_DECL:
      return do_identifier (DECL_NAME (t), 0);

    case CONST_DECL:
    case FIELD_DECL:
      if (DECL_CONTEXT (t))
	{
	  tree ctx = tsubst (DECL_CONTEXT (t), args, nargs, in_decl);
mrs's avatar
mrs committed
2338 2339 2340
	  if (ctx == current_function_decl)
	    return lookup_name (DECL_NAME (t), 0);
	  else if (ctx != DECL_CONTEXT (t))
mrs's avatar
mrs committed
2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351
	    return lookup_field (ctx, DECL_NAME (t), 0, 0);
	}
      return t;

    case VAR_DECL:
    case FUNCTION_DECL:
      if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
	t = tsubst (t, args, nargs, in_decl);
      mark_used (t);
      return t;

2352 2353 2354 2355 2356 2357
    case TEMPLATE_DECL:
      if (is_member_template (t))
	return tsubst (t, args, nargs, in_decl);
      else
	return t;

mrs's avatar
mrs committed
2358 2359 2360 2361 2362 2363 2364
#if 0
    case IDENTIFIER_NODE:
      return do_identifier (t, 0);
#endif
      
    case CAST_EXPR:
    case REINTERPRET_CAST_EXPR:
mrs's avatar
mrs committed
2365 2366 2367
    case CONST_CAST_EXPR:
    case STATIC_CAST_EXPR:
    case DYNAMIC_CAST_EXPR:
mrs's avatar
mrs committed
2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378
      return build1
	(code, tsubst (TREE_TYPE (t), args, nargs, in_decl),
	 tsubst_copy (TREE_OPERAND (t, 0), args, nargs, in_decl));

    case INDIRECT_REF:
    case PREDECREMENT_EXPR:
    case PREINCREMENT_EXPR:
    case POSTDECREMENT_EXPR:
    case POSTINCREMENT_EXPR:
    case NEGATE_EXPR:
    case TRUTH_NOT_EXPR:
mrs's avatar
mrs committed
2379
    case BIT_NOT_EXPR:
mrs's avatar
mrs committed
2380 2381 2382 2383
    case ADDR_EXPR:
    case CONVERT_EXPR:      /* Unary + */
    case SIZEOF_EXPR:
    case ARROW_EXPR:
mrs's avatar
mrs committed
2384
    case THROW_EXPR:
mrs's avatar
mrs committed
2385
    case TYPEID_EXPR:
mrs's avatar
mrs committed
2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447
      return build1
	(code, NULL_TREE,
	 tsubst_copy (TREE_OPERAND (t, 0), args, nargs, in_decl));

    case PLUS_EXPR:
    case MINUS_EXPR:
    case MULT_EXPR:
    case TRUNC_DIV_EXPR:
    case CEIL_DIV_EXPR:
    case FLOOR_DIV_EXPR:
    case ROUND_DIV_EXPR:
    case EXACT_DIV_EXPR:
    case BIT_AND_EXPR:
    case BIT_ANDTC_EXPR:
    case BIT_IOR_EXPR:
    case BIT_XOR_EXPR:
    case TRUNC_MOD_EXPR:
    case FLOOR_MOD_EXPR:
    case TRUTH_ANDIF_EXPR:
    case TRUTH_ORIF_EXPR:
    case TRUTH_AND_EXPR:
    case TRUTH_OR_EXPR:
    case RSHIFT_EXPR:
    case LSHIFT_EXPR:
    case RROTATE_EXPR:
    case LROTATE_EXPR:
    case EQ_EXPR:
    case NE_EXPR:
    case MAX_EXPR:
    case MIN_EXPR:
    case LE_EXPR:
    case GE_EXPR:
    case LT_EXPR:
    case GT_EXPR:
    case COMPONENT_REF:
    case ARRAY_REF:
    case COMPOUND_EXPR:
    case SCOPE_REF:
    case DOTSTAR_EXPR:
    case MEMBER_REF:
      return build_nt
	(code, tsubst_copy (TREE_OPERAND (t, 0), args, nargs, in_decl),
	 tsubst_copy (TREE_OPERAND (t, 1), args, nargs, in_decl));

    case CALL_EXPR:
      {
	tree fn = TREE_OPERAND (t, 0);
	if (really_overloaded_fn (fn))
	  fn = tsubst_copy (TREE_VALUE (fn), args, nargs, in_decl);
	else
	  fn = tsubst_copy (fn, args, nargs, in_decl);
	return build_nt
	  (code, fn, tsubst_copy (TREE_OPERAND (t, 1), args, nargs, in_decl),
	   NULL_TREE);
      }

    case METHOD_CALL_EXPR:
      {
	tree name = TREE_OPERAND (t, 0);
	if (TREE_CODE (name) == BIT_NOT_EXPR)
	  {
	    name = tsubst_copy (TREE_OPERAND (name, 0), args, nargs, in_decl);
mrs's avatar
mrs committed
2448
	    name = build1 (BIT_NOT_EXPR, NULL_TREE, TYPE_MAIN_VARIANT (name));
mrs's avatar
mrs committed
2449 2450 2451 2452 2453 2454 2455
	  }
	else if (TREE_CODE (name) == SCOPE_REF
		 && TREE_CODE (TREE_OPERAND (name, 1)) == BIT_NOT_EXPR)
	  {
	    tree base = tsubst_copy (TREE_OPERAND (name, 0), args, nargs, in_decl);
	    name = TREE_OPERAND (name, 1);
	    name = tsubst_copy (TREE_OPERAND (name, 0), args, nargs, in_decl);
mrs's avatar
mrs committed
2456
	    name = build1 (BIT_NOT_EXPR, NULL_TREE, TYPE_MAIN_VARIANT (name));
mrs's avatar
mrs committed
2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531
	    name = build_nt (SCOPE_REF, base, name);
	  }
	else
	  name = tsubst_copy (TREE_OPERAND (t, 0), args, nargs, in_decl);
	return build_nt
	  (code, name, tsubst_copy (TREE_OPERAND (t, 1), args, nargs, in_decl),
	   tsubst_copy (TREE_OPERAND (t, 2), args, nargs, in_decl),
	   NULL_TREE);
      }

    case COND_EXPR:
    case MODOP_EXPR:
      return build_nt
	(code, tsubst_copy (TREE_OPERAND (t, 0), args, nargs, in_decl),
	 tsubst_copy (TREE_OPERAND (t, 1), args, nargs, in_decl),
	 tsubst_copy (TREE_OPERAND (t, 2), args, nargs, in_decl));

    case NEW_EXPR:
      {
	tree r = build_nt
	(code, tsubst_copy (TREE_OPERAND (t, 0), args, nargs, in_decl),
	 tsubst_copy (TREE_OPERAND (t, 1), args, nargs, in_decl),
	 tsubst_copy (TREE_OPERAND (t, 2), args, nargs, in_decl));
	NEW_EXPR_USE_GLOBAL (r) = NEW_EXPR_USE_GLOBAL (t);
	return r;
      }

    case DELETE_EXPR:
      {
	tree r = build_nt
	(code, tsubst_copy (TREE_OPERAND (t, 0), args, nargs, in_decl),
	 tsubst_copy (TREE_OPERAND (t, 1), args, nargs, in_decl));
	DELETE_EXPR_USE_GLOBAL (r) = DELETE_EXPR_USE_GLOBAL (t);
	DELETE_EXPR_USE_VEC (r) = DELETE_EXPR_USE_VEC (t);
	return r;
      }

    case TREE_LIST:
      {
	tree purpose, value, chain;

	if (t == void_list_node)
	  return t;

	purpose = TREE_PURPOSE (t);
	if (purpose)
	  purpose = tsubst_copy (purpose, args, nargs, in_decl);
	value = TREE_VALUE (t);
	if (value)
	  value = tsubst_copy (value, args, nargs, in_decl);
	chain = TREE_CHAIN (t);
	if (chain && chain != void_type_node)
	  chain = tsubst_copy (chain, args, nargs, in_decl);
	if (purpose == TREE_PURPOSE (t)
	    && value == TREE_VALUE (t)
	    && chain == TREE_CHAIN (t))
	  return t;
	return tree_cons (purpose, value, chain);
      }

    case RECORD_TYPE:
    case UNION_TYPE:
    case ENUMERAL_TYPE:
    case INTEGER_TYPE:
    case TEMPLATE_TYPE_PARM:
    case TEMPLATE_CONST_PARM:
    case POINTER_TYPE:
    case REFERENCE_TYPE:
    case OFFSET_TYPE:
    case FUNCTION_TYPE:
    case METHOD_TYPE:
    case ARRAY_TYPE:
    case TYPENAME_TYPE:
      return tsubst (t, args, nargs, in_decl);

mrs's avatar
mrs committed
2532 2533 2534 2535 2536 2537 2538
    case IDENTIFIER_NODE:
      if (IDENTIFIER_TYPENAME_P (t))
	return build_typename_overload
	  (tsubst (TREE_TYPE (t), args, nargs, in_decl));
      else
	return t;

mrs's avatar
mrs committed
2539 2540 2541 2542 2543
    case CONSTRUCTOR:
      return build
	(CONSTRUCTOR, tsubst (TREE_TYPE (t), args, nargs, in_decl), NULL_TREE,
	 tsubst_copy (CONSTRUCTOR_ELTS (t), args, nargs, in_decl));

mrs's avatar
mrs committed
2544 2545 2546 2547 2548 2549 2550
    default:
      return t;
    }
}

tree
tsubst_expr (t, args, nargs, in_decl)
2551
     tree t, args;
mrs's avatar
mrs committed
2552 2553 2554 2555 2556 2557
     int nargs;
     tree in_decl;
{
  if (t == NULL_TREE || t == error_mark_node)
    return t;

mrs's avatar
mrs committed
2558
  if (processing_template_decl)
mrs's avatar
mrs committed
2559 2560 2561
    return tsubst_copy (t, args, nargs, in_decl);

  switch (TREE_CODE (t))
mrs's avatar
mrs committed
2562
    {
mrs's avatar
mrs committed
2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587
    case RETURN_STMT:
      lineno = TREE_COMPLEXITY (t);
      emit_line_note (input_filename, lineno);
      c_expand_return
	(tsubst_expr (TREE_OPERAND (t, 0), args, nargs, in_decl));
      finish_stmt ();
      break;

    case EXPR_STMT:
      lineno = TREE_COMPLEXITY (t);
      emit_line_note (input_filename, lineno);
      t = tsubst_expr (TREE_OPERAND (t, 0), args, nargs, in_decl);
      /* Do default conversion if safe and possibly important,
	 in case within ({...}).  */
      if ((TREE_CODE (TREE_TYPE (t)) == ARRAY_TYPE && lvalue_p (t))
	  || TREE_CODE (TREE_TYPE (t)) == FUNCTION_TYPE)
	t = default_conversion (t);
      cplus_expand_expr_stmt (t);
      clear_momentary ();
      finish_stmt ();
      break;

    case DECL_STMT:
      {
	int i = suspend_momentary ();
mrs's avatar
mrs committed
2588
	tree dcl, init;
mrs's avatar
mrs committed
2589 2590 2591 2592 2593 2594

	lineno = TREE_COMPLEXITY (t);
	emit_line_note (input_filename, lineno);
	dcl = start_decl
	  (tsubst (TREE_OPERAND (t, 0), args, nargs, in_decl),
	   tsubst (TREE_OPERAND (t, 1), args, nargs, in_decl),
mrs's avatar
merging  
mrs committed
2595 2596
	   TREE_OPERAND (t, 2) != 0);
	init = tsubst_expr (TREE_OPERAND (t, 2), args, nargs, in_decl);
mrs's avatar
mrs committed
2597
	cp_finish_decl
mrs's avatar
mrs committed
2598
	  (dcl, init, NULL_TREE, 1, /*init ? LOOKUP_ONLYCONVERTING :*/ 0);
mrs's avatar
mrs committed
2599 2600 2601
	resume_momentary (i);
	return dcl;
      }
mrs's avatar
mrs committed
2602

mrs's avatar
mrs committed
2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614
    case FOR_STMT:
      {
	tree tmp;
	int init_scope = (flag_new_for_scope > 0 && TREE_OPERAND (t, 0)
			  && TREE_CODE (TREE_OPERAND (t, 0)) == DECL_STMT);
	int cond_scope = (TREE_OPERAND (t, 1)
			  && TREE_CODE (TREE_OPERAND (t, 1)) == DECL_STMT);

	lineno = TREE_COMPLEXITY (t);
	emit_line_note (input_filename, lineno);
	if (init_scope)
	  do_pushlevel ();
mrs's avatar
mrs committed
2615 2616
	for (tmp = TREE_OPERAND (t, 0); tmp; tmp = TREE_CHAIN (tmp))
	  tsubst_expr (tmp, args, nargs, in_decl);
mrs's avatar
mrs committed
2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644
	emit_nop ();
	emit_line_note (input_filename, lineno);
	expand_start_loop_continue_elsewhere (1); 

	if (cond_scope)
	  do_pushlevel ();
	tmp = tsubst_expr (TREE_OPERAND (t, 1), args, nargs, in_decl);
	emit_line_note (input_filename, lineno);
	if (tmp)
	  expand_exit_loop_if_false (0, condition_conversion (tmp));

	if (! cond_scope)
	  do_pushlevel ();
	tsubst_expr (TREE_OPERAND (t, 3), args, nargs, in_decl);
	do_poplevel ();

	emit_line_note (input_filename, lineno);
	expand_loop_continue_here ();
	tmp = tsubst_expr (TREE_OPERAND (t, 2), args, nargs, in_decl);
	if (tmp)
	  cplus_expand_expr_stmt (tmp);

	expand_end_loop ();
	if (init_scope)
	  do_poplevel ();
	finish_stmt ();
      }
      break;
mrs's avatar
mrs committed
2645

mrs's avatar
mrs committed
2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670
    case WHILE_STMT:
      {
	tree cond;

	lineno = TREE_COMPLEXITY (t);
	emit_nop ();
	emit_line_note (input_filename, lineno);
	expand_start_loop (1); 

	cond = TREE_OPERAND (t, 0);
	if (TREE_CODE (cond) == DECL_STMT)
	  do_pushlevel ();
	cond = tsubst_expr (cond, args, nargs, in_decl);
	emit_line_note (input_filename, lineno);
	expand_exit_loop_if_false (0, condition_conversion (cond));

	if (TREE_CODE (TREE_OPERAND (t, 0)) != DECL_STMT)
	  do_pushlevel ();
	tsubst_expr (TREE_OPERAND (t, 1), args, nargs, in_decl);
	do_poplevel ();

	expand_end_loop ();
	finish_stmt ();
      }
      break;
mrs's avatar
mrs committed
2671

mrs's avatar
mrs committed
2672 2673 2674
    case DO_STMT:
      {
	tree cond;
mrs's avatar
mrs committed
2675

mrs's avatar
mrs committed
2676 2677 2678 2679
	lineno = TREE_COMPLEXITY (t);
	emit_nop ();
	emit_line_note (input_filename, lineno);
	expand_start_loop_continue_elsewhere (1); 
mrs's avatar
mrs committed
2680

mrs's avatar
mrs committed
2681 2682
	tsubst_expr (TREE_OPERAND (t, 0), args, nargs, in_decl);
	expand_loop_continue_here ();
mrs's avatar
mrs committed
2683

mrs's avatar
mrs committed
2684 2685 2686 2687
	cond = tsubst_expr (TREE_OPERAND (t, 1), args, nargs, in_decl);
	emit_line_note (input_filename, lineno);
	expand_exit_loop_if_false (0, condition_conversion (cond));
	expand_end_loop ();
mrs's avatar
mrs committed
2688

mrs's avatar
mrs committed
2689 2690 2691 2692
	clear_momentary ();
	finish_stmt ();
      }
      break;
mrs's avatar
mrs committed
2693

mrs's avatar
mrs committed
2694
    case IF_STMT:
mrs's avatar
mrs committed
2695
      {
mrs's avatar
mrs committed
2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707
	tree tmp;
	int cond_scope = (TREE_CODE (TREE_OPERAND (t, 0)) == DECL_STMT);

	lineno = TREE_COMPLEXITY (t);
	if (cond_scope)
	  do_pushlevel ();
	tmp = tsubst_expr (TREE_OPERAND (t, 0), args, nargs, in_decl);
	emit_line_note (input_filename, lineno);
	expand_start_cond (condition_conversion (tmp), 0);
	
	if (tmp = TREE_OPERAND (t, 1), tmp)
	  tsubst_expr (tmp, args, nargs, in_decl);
mrs's avatar
mrs committed
2708

mrs's avatar
mrs committed
2709
	if (tmp = TREE_OPERAND (t, 2), tmp)
mrs's avatar
mrs committed
2710
	  {
mrs's avatar
mrs committed
2711 2712
	    expand_start_else ();
	    tsubst_expr (tmp, args, nargs, in_decl);
mrs's avatar
mrs committed
2713 2714
	  }

mrs's avatar
mrs committed
2715
	expand_end_cond ();
mrs's avatar
mrs committed
2716

mrs's avatar
mrs committed
2717 2718
	if (cond_scope)
	  do_poplevel ();
mrs's avatar
mrs committed
2719

mrs's avatar
mrs committed
2720
	finish_stmt ();
mrs's avatar
mrs committed
2721
      }
mrs's avatar
mrs committed
2722
      break;
mrs's avatar
mrs committed
2723

mrs's avatar
mrs committed
2724 2725 2726
    case COMPOUND_STMT:
      {
	tree substmt = TREE_OPERAND (t, 0);
mrs's avatar
mrs committed
2727

mrs's avatar
mrs committed
2728
	lineno = TREE_COMPLEXITY (t);
mrs's avatar
mrs committed
2729

mrs's avatar
mrs committed
2730 2731
	if (COMPOUND_STMT_NO_SCOPE (t) == 0)
	  do_pushlevel ();
mrs's avatar
mrs committed
2732

mrs's avatar
mrs committed
2733 2734
	for (; substmt; substmt = TREE_CHAIN (substmt))
	  tsubst_expr (substmt, args, nargs, in_decl);
mrs's avatar
mrs committed
2735

mrs's avatar
mrs committed
2736 2737 2738 2739
	if (COMPOUND_STMT_NO_SCOPE (t) == 0)
	  do_poplevel ();
      }
      break;
mrs's avatar
mrs committed
2740

mrs's avatar
mrs committed
2741 2742 2743 2744 2745 2746
    case BREAK_STMT:
      lineno = TREE_COMPLEXITY (t);
      emit_line_note (input_filename, lineno);
      if (! expand_exit_something ())
	error ("break statement not within loop or switch");
      break;
mrs's avatar
mrs committed
2747

mrs's avatar
mrs committed
2748 2749 2750 2751 2752 2753 2754
    case CONTINUE_STMT:
      lineno = TREE_COMPLEXITY (t);
      emit_line_note (input_filename, lineno);
      if (! expand_continue_loop (0))
	error ("continue statement not within a loop");
      break;

mrs's avatar
mrs committed
2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769
    case SWITCH_STMT:
      {
	tree val, tmp;
	int cond_scope = (TREE_CODE (TREE_OPERAND (t, 0)) == DECL_STMT);

	lineno = TREE_COMPLEXITY (t);
	if (cond_scope)
	  do_pushlevel ();
	val = tsubst_expr (TREE_OPERAND (t, 0), args, nargs, in_decl);
	emit_line_note (input_filename, lineno);
	c_expand_start_case (val);
	push_switch ();
	
	if (tmp = TREE_OPERAND (t, 1), tmp)
	  tsubst_expr (tmp, args, nargs, in_decl);
mrs's avatar
mrs committed
2770

mrs's avatar
mrs committed
2771 2772
	expand_end_case (val);
	pop_switch ();
mrs's avatar
mrs committed
2773

mrs's avatar
mrs committed
2774 2775
	if (cond_scope)
	  do_poplevel ();
mrs's avatar
mrs committed
2776

mrs's avatar
mrs committed
2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805
	finish_stmt ();
      }
      break;

    case CASE_LABEL:
      do_case (tsubst_expr (TREE_OPERAND (t, 0), args, nargs, in_decl),
	       tsubst_expr (TREE_OPERAND (t, 1), args, nargs, in_decl));
      break;

    case LABEL_DECL:
      t = define_label (DECL_SOURCE_FILE (t), DECL_SOURCE_LINE (t),
			DECL_NAME (t));
      if (t)
	expand_label (t);
      break;

    case GOTO_STMT:
      lineno = TREE_COMPLEXITY (t);
      emit_line_note (input_filename, lineno);
      if (TREE_CODE (TREE_OPERAND (t, 0)) == IDENTIFIER_NODE)
	{
	  tree decl = lookup_label (TREE_OPERAND (t, 0));
	  TREE_USED (decl) = 1;
	  expand_goto (decl);
	}
      else
	expand_computed_goto
	  (tsubst_expr (TREE_OPERAND (t, 0), args, nargs, in_decl));
      break;
mrs's avatar
mrs committed
2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837

    case TRY_BLOCK:
      lineno = TREE_COMPLEXITY (t);
      emit_line_note (input_filename, lineno);
      expand_start_try_stmts ();
      tsubst_expr (TREE_OPERAND (t, 0), args, nargs, in_decl);
      expand_start_all_catch ();
      {
	tree handler = TREE_OPERAND (t, 1);
	for (; handler; handler = TREE_CHAIN (handler))
	  tsubst_expr (handler, args, nargs, in_decl);
      }
      expand_end_all_catch ();
      break;

    case HANDLER:
      lineno = TREE_COMPLEXITY (t);
      do_pushlevel ();
      if (TREE_OPERAND (t, 0))
	{
	  tree d = TREE_OPERAND (t, 0);
	  expand_start_catch_block
	    (tsubst (TREE_OPERAND (d, 1), args, nargs, in_decl),
	     tsubst (TREE_OPERAND (d, 0), args, nargs, in_decl));
	}
      else
	expand_start_catch_block (NULL_TREE, NULL_TREE);
      tsubst_expr (TREE_OPERAND (t, 1), args, nargs, in_decl);
      expand_end_catch_block ();
      do_poplevel ();
      break;

mrs's avatar
mrs committed
2838 2839 2840 2841
    case TAG_DEFN:
      lineno = TREE_COMPLEXITY (t);
      t = TREE_TYPE (t);
      if (TREE_CODE (t) == ENUMERAL_TYPE)
2842
	tsubst_enum (t, args, nargs, NULL);
mrs's avatar
mrs committed
2843 2844
      break;

mrs's avatar
mrs committed
2845 2846 2847 2848
    default:
      return build_expr_from_tree (tsubst_copy (t, args, nargs, in_decl));
    }
  return NULL_TREE;
mrs's avatar
mrs committed
2849 2850
}

mrs's avatar
mrs committed
2851 2852
tree
instantiate_template (tmpl, targ_ptr)
2853
     tree tmpl, targ_ptr;
mrs's avatar
mrs committed
2854
{
mrs's avatar
mrs committed
2855 2856 2857 2858 2859 2860 2861 2862
  tree fndecl;
  int i, len;
  struct obstack *old_fmp_obstack;
  extern struct obstack *function_maybepermanent_obstack;

  push_obstacks (&permanent_obstack, &permanent_obstack);
  old_fmp_obstack = function_maybepermanent_obstack;
  function_maybepermanent_obstack = &permanent_obstack;
mrs's avatar
mrs committed
2863

mrs's avatar
mrs committed
2864
  my_friendly_assert (TREE_CODE (tmpl) == TEMPLATE_DECL, 283);
2865
  len = DECL_NTPARMS (tmpl);
mrs's avatar
mrs committed
2866

mrs's avatar
mrs committed
2867 2868
  i = len;
  while (i--)
mrs's avatar
mrs committed
2869
    {
2870
      tree t = TREE_VEC_ELT (targ_ptr, i);
mrs's avatar
mrs committed
2871 2872 2873
      if (TREE_CODE_CLASS (TREE_CODE (t)) == 't')
	{
	  tree nt = target_type (t);
mrs's avatar
mrs committed
2874
	  if (IS_AGGR_TYPE (nt) && decl_function_context (TYPE_MAIN_DECL (nt)))
mrs's avatar
mrs committed
2875 2876 2877 2878 2879 2880 2881
	    {
	      cp_error ("type `%T' composed from a local class is not a valid template-argument", t);
	      cp_error ("  trying to instantiate `%D'", tmpl);
	      fndecl = error_mark_node;
	      goto out;
	    }
	}
2882
      TREE_VEC_ELT (targ_ptr, i) = copy_to_permanent (t);
mrs's avatar
mrs committed
2883 2884
    }

2885 2886 2887
  if (DECL_TEMPLATE_INFO (tmpl) && DECL_TI_ARGS (tmpl))
    targ_ptr = add_to_template_args (DECL_TI_ARGS (tmpl), targ_ptr);

mrs's avatar
mrs committed
2888 2889
  /* substitute template parameters */
  fndecl = tsubst (DECL_RESULT (tmpl), targ_ptr, len, tmpl);
mrs's avatar
mrs committed
2890

mrs's avatar
mrs committed
2891 2892 2893
  if (flag_external_templates)
    add_pending_template (fndecl);

mrs's avatar
mrs committed
2894 2895 2896
 out:
  function_maybepermanent_obstack = old_fmp_obstack;
  pop_obstacks ();
mrs's avatar
mrs committed
2897

mrs's avatar
mrs committed
2898
  return fndecl;
mrs's avatar
mrs committed
2899
}
mrs's avatar
mrs committed
2900 2901

/* Push the name of the class template into the scope of the instantiation.  */
mrs's avatar
mrs committed
2902 2903

void
mrs's avatar
mrs committed
2904 2905
overload_template_name (type)
     tree type;
mrs's avatar
mrs committed
2906
{
mrs's avatar
mrs committed
2907 2908
  tree id = DECL_NAME (CLASSTYPE_TI_TEMPLATE (type));
  tree decl;
mrs's avatar
mrs committed
2909

mrs's avatar
mrs committed
2910 2911 2912
  if (IDENTIFIER_CLASS_VALUE (id)
      && TREE_TYPE (IDENTIFIER_CLASS_VALUE (id)) == type)
    return;
mrs's avatar
mrs committed
2913

mrs's avatar
mrs committed
2914 2915 2916
  decl = build_decl (TYPE_DECL, id, type);
  SET_DECL_ARTIFICIAL (decl);
  pushdecl_class_level (decl);
mrs's avatar
mrs committed
2917 2918
}

2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954
/* Like type_unfication but designed specially to handle conversion
   operators.  */

int
fn_type_unification (fn, targs, args, return_type, strict)
     tree fn, targs, args, return_type;
     int strict;
{
  int i, dummy = 0;
  tree fn_arg_types = TYPE_ARG_TYPES (TREE_TYPE (fn));
  tree decl_arg_types = args;

  my_friendly_assert (TREE_CODE (fn) == TEMPLATE_DECL, 0);

  if (IDENTIFIER_TYPENAME_P (DECL_NAME (fn))) 
    {
      /* This is a template conversion operator.  Use the return types
         as well as the argument types.  */
      fn_arg_types = tree_cons (NULL_TREE, 
				TREE_TYPE (TREE_TYPE (fn)),
				fn_arg_types);
      decl_arg_types = tree_cons (NULL_TREE,
				  return_type,
				  decl_arg_types);
    }

  i = type_unification (DECL_INNERMOST_TEMPLATE_PARMS (fn), 
			&TREE_VEC_ELT (targs, 0), 
			fn_arg_types,
			decl_arg_types,
			&dummy, 0, strict);

  return i;
}


mrs's avatar
mrs committed
2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972
/* Type unification.

   We have a function template signature with one or more references to
   template parameters, and a parameter list we wish to fit to this
   template.  If possible, produce a list of parameters for the template
   which will cause it to fit the supplied parameter list.

   Return zero for success, 2 for an incomplete match that doesn't resolve
   all the types, and 1 for complete failure.  An error message will be
   printed only for an incomplete match.

   TPARMS[NTPARMS] is an array of template parameter types;
   TARGS[NTPARMS] is the array of template parameter values.  PARMS is
   the function template's signature (using TEMPLATE_PARM_IDX nodes),
   and ARGS is the argument list we're trying to match against it.

   If SUBR is 1, we're being called recursively (to unify the arguments of
   a function or method parameter of a function template), so don't zero
mrs's avatar
mrs committed
2973 2974 2975 2976
   out targs and don't fail on an incomplete match.

   If STRICT is 1, the match must be exact (for casts of overloaded
   addresses, explicit instantiation, and more_specialized).  */
mrs's avatar
mrs committed
2977 2978

int
mrs's avatar
mrs committed
2979
type_unification (tparms, targs, parms, args, nsubsts, subr, strict)
mrs's avatar
mrs committed
2980
     tree tparms, *targs, parms, args;
mrs's avatar
mrs committed
2981
     int *nsubsts, subr, strict;
mrs's avatar
mrs committed
2982 2983 2984 2985 2986 2987 2988
{
  tree parm, arg;
  int i;
  int ntparms = TREE_VEC_LENGTH (tparms);

  my_friendly_assert (TREE_CODE (tparms) == TREE_VEC, 289);
  my_friendly_assert (TREE_CODE (parms) == TREE_LIST, 290);
mrs's avatar
mrs committed
2989
  /* ARGS could be NULL (via a call from parse.y to
mrs's avatar
mrs committed
2990 2991 2992 2993 2994 2995
     build_x_function_call).  */
  if (args)
    my_friendly_assert (TREE_CODE (args) == TREE_LIST, 291);
  my_friendly_assert (ntparms > 0, 292);

  if (!subr)
2996
    bzero ((char *) targs, sizeof (tree) * ntparms);
mrs's avatar
mrs committed
2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011

  while (parms
	 && parms != void_list_node
	 && args
	 && args != void_list_node)
    {
      parm = TREE_VALUE (parms);
      parms = TREE_CHAIN (parms);
      arg = TREE_VALUE (args);
      args = TREE_CHAIN (args);

      if (arg == error_mark_node)
	return 1;
      if (arg == unknown_type_node)
	return 1;
mrs's avatar
mrs committed
3012

3013 3014 3015 3016 3017
      /* Conversions will be performed on a function argument that
	 corresponds with a function parameter that contains only
	 non-deducible template parameters and explicitly specified
	 template parameters.  */
      if (! uses_template_parms (parm))
mrs's avatar
mrs committed
3018
	{
3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044
	  tree type;

	  if (TREE_CODE_CLASS (TREE_CODE (arg)) != 't')
	    type = TREE_TYPE (arg);
	  else
	    {
	      type = arg;
	      arg = NULL_TREE;
	    }

	  if (strict)
	    {
	      if (comptypes (parm, type, 1))
		continue;
	    }
	  else if (arg)
	    {
	      if (can_convert_arg (parm, type, arg))
		continue;
	    }
	  else
	    {
	      if (can_convert (parm, type))
		continue;
	    }

mrs's avatar
mrs committed
3045 3046 3047
	  return 1;
	}
	
mrs's avatar
mrs committed
3048 3049 3050 3051 3052 3053 3054 3055 3056
#if 0
      if (TREE_CODE (arg) == VAR_DECL)
	arg = TREE_TYPE (arg);
      else if (TREE_CODE_CLASS (TREE_CODE (arg)) == 'e')
	arg = TREE_TYPE (arg);
#else
      if (TREE_CODE_CLASS (TREE_CODE (arg)) != 't')
	{
	  my_friendly_assert (TREE_TYPE (arg) != NULL_TREE, 293);
mrs's avatar
mrs committed
3057 3058 3059 3060 3061 3062 3063 3064 3065 3066
	  if (TREE_CODE (arg) == TREE_LIST
	      && TREE_TYPE (arg) == unknown_type_node
	      && TREE_CODE (TREE_VALUE (arg)) == TEMPLATE_DECL)
	    {
	      int nsubsts, ntparms;
	      tree *targs;

	      /* Have to back unify here */
	      arg = TREE_VALUE (arg);
	      nsubsts = 0;
3067
	      ntparms = DECL_NTPARMS (arg);
mrs's avatar
mrs committed
3068 3069
	      targs = (tree *) alloca (sizeof (tree) * ntparms);
	      parm = tree_cons (NULL_TREE, parm, NULL_TREE);
3070 3071
	      return type_unification (DECL_INNERMOST_TEMPLATE_PARMS (arg), 
				       targs,
mrs's avatar
mrs committed
3072
				       TYPE_ARG_TYPES (TREE_TYPE (arg)),
mrs's avatar
mrs committed
3073
				       parm, &nsubsts, 0, strict);
mrs's avatar
mrs committed
3074
	    }
mrs's avatar
mrs committed
3075 3076 3077
	  arg = TREE_TYPE (arg);
	}
#endif
mrs's avatar
mrs committed
3078
      if (! subr && TREE_CODE (arg) == REFERENCE_TYPE)
mrs's avatar
mrs committed
3079 3080
	arg = TREE_TYPE (arg);

mrs's avatar
mrs committed
3081
      if (! subr && TREE_CODE (parm) != REFERENCE_TYPE)
3082 3083 3084 3085 3086 3087 3088 3089 3090
	{
	  if (TREE_CODE (arg) == FUNCTION_TYPE
	      || TREE_CODE (arg) == METHOD_TYPE)
	    arg = build_pointer_type (arg);
	  else if (TREE_CODE (arg) == ARRAY_TYPE)
	    arg = build_pointer_type (TREE_TYPE (arg));
	  else
	    arg = TYPE_MAIN_VARIANT (arg);
	}
mrs's avatar
mrs committed
3091

mrs's avatar
mrs committed
3092
      switch (unify (tparms, targs, ntparms, parm, arg, nsubsts, strict))
mrs's avatar
mrs committed
3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119
	{
	case 0:
	  break;
	case 1:
	  return 1;
	}
    }
  /* Fail if we've reached the end of the parm list, and more args
     are present, and the parm list isn't variadic.  */
  if (args && args != void_list_node && parms == void_list_node)
    return 1;
  /* Fail if parms are left and they don't have default values.	 */
  if (parms
      && parms != void_list_node
      && TREE_PURPOSE (parms) == NULL_TREE)
    return 1;
  if (!subr)
    for (i = 0; i < ntparms; i++)
      if (!targs[i])
	{
	  error ("incomplete type unification");
	  return 2;
	}
  return 0;
}

/* Tail recursion is your friend.  */
mrs's avatar
mrs committed
3120

mrs's avatar
mrs committed
3121
static int
mrs's avatar
mrs committed
3122
unify (tparms, targs, ntparms, parm, arg, nsubsts, strict)
mrs's avatar
mrs committed
3123
     tree tparms, *targs, parm, arg;
mrs's avatar
mrs committed
3124
     int *nsubsts, ntparms, strict;
mrs's avatar
mrs committed
3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146
{
  int idx;

  /* I don't think this will do the right thing with respect to types.
     But the only case I've seen it in so far has been array bounds, where
     signedness is the only information lost, and I think that will be
     okay.  */
  while (TREE_CODE (parm) == NOP_EXPR)
    parm = TREE_OPERAND (parm, 0);

  if (arg == error_mark_node)
    return 1;
  if (arg == unknown_type_node)
    return 1;
  if (arg == parm)
    return 0;

  switch (TREE_CODE (parm))
    {
    case TEMPLATE_TYPE_PARM:
      (*nsubsts)++;
      idx = TEMPLATE_TYPE_IDX (parm);
mrs's avatar
mrs committed
3147 3148 3149
      if (strict && (TYPE_READONLY (arg) < TYPE_READONLY (parm)
		     || TYPE_VOLATILE (arg) < TYPE_VOLATILE (parm)))
	return 1;
mrs's avatar
mrs committed
3150
#if 0
mrs's avatar
mrs committed
3151 3152 3153 3154 3155 3156 3157
      /* Template type parameters cannot contain cv-quals; i.e.
         template <class T> void f (T& a, T& b) will not generate
	 void f (const int& a, const int& b).  */
      if (TYPE_READONLY (arg) > TYPE_READONLY (parm)
	  || TYPE_VOLATILE (arg) > TYPE_VOLATILE (parm))
	return 1;
      arg = TYPE_MAIN_VARIANT (arg);
mrs's avatar
mrs committed
3158 3159 3160 3161 3162 3163 3164
#else
      {
	int constp = TYPE_READONLY (arg) > TYPE_READONLY (parm);
	int volatilep = TYPE_VOLATILE (arg) > TYPE_VOLATILE (parm);
	arg = cp_build_type_variant (arg, constp, volatilep);
      }
#endif
mrs's avatar
mrs committed
3165 3166 3167 3168 3169
      /* Simple cases: Value already set, does match or doesn't.  */
      if (targs[idx] == arg)
	return 0;
      else if (targs[idx])
	return 1;
mrs's avatar
mrs committed
3170 3171
      /* Check for mixed types and values.  */
      if (TREE_CODE (TREE_VALUE (TREE_VEC_ELT (tparms, idx))) != TYPE_DECL)
mrs's avatar
mrs committed
3172
	return 1;
mrs's avatar
mrs committed
3173 3174 3175 3176 3177
      targs[idx] = arg;
      return 0;
    case TEMPLATE_CONST_PARM:
      (*nsubsts)++;
      idx = TEMPLATE_CONST_IDX (parm);
mrs's avatar
mrs committed
3178
      if (targs[idx])
mrs's avatar
mrs committed
3179
	{
mrs's avatar
mrs committed
3180 3181 3182 3183 3184 3185 3186
	  int i = cp_tree_equal (targs[idx], arg);
	  if (i == 1)
	    return 0;
	  else if (i == 0)
	    return 1;
	  else
	    my_friendly_abort (42);
mrs's avatar
mrs committed
3187 3188 3189 3190 3191 3192
	}

      targs[idx] = copy_to_permanent (arg);
      return 0;

    case POINTER_TYPE:
mrs's avatar
mrs committed
3193 3194
      if (TREE_CODE (arg) == RECORD_TYPE && TYPE_PTRMEMFUNC_FLAG (arg))
	return unify (tparms, targs, ntparms, parm,
mrs's avatar
mrs committed
3195
		      TYPE_PTRMEMFUNC_FN_TYPE (arg), nsubsts, strict);
mrs's avatar
mrs committed
3196

mrs's avatar
mrs committed
3197 3198 3199
      if (TREE_CODE (arg) != POINTER_TYPE)
	return 1;
      return unify (tparms, targs, ntparms, TREE_TYPE (parm), TREE_TYPE (arg),
mrs's avatar
mrs committed
3200
		    nsubsts, strict);
mrs's avatar
mrs committed
3201 3202

    case REFERENCE_TYPE:
mrs's avatar
mrs committed
3203 3204
      if (TREE_CODE (arg) == REFERENCE_TYPE)
	arg = TREE_TYPE (arg);
mrs's avatar
mrs committed
3205 3206
      return unify (tparms, targs, ntparms, TREE_TYPE (parm), arg,
		    nsubsts, strict);
mrs's avatar
mrs committed
3207 3208 3209 3210 3211

    case ARRAY_TYPE:
      if (TREE_CODE (arg) != ARRAY_TYPE)
	return 1;
      if (unify (tparms, targs, ntparms, TYPE_DOMAIN (parm), TYPE_DOMAIN (arg),
mrs's avatar
mrs committed
3212
		 nsubsts, strict) != 0)
mrs's avatar
mrs committed
3213 3214
	return 1;
      return unify (tparms, targs, ntparms, TREE_TYPE (parm), TREE_TYPE (arg),
mrs's avatar
mrs committed
3215
		    nsubsts, strict);
mrs's avatar
mrs committed
3216 3217

    case REAL_TYPE:
mrs's avatar
mrs committed
3218
    case COMPLEX_TYPE:
mrs's avatar
mrs committed
3219
    case INTEGER_TYPE:
brendan's avatar
brendan committed
3220
    case BOOLEAN_TYPE:
mrs's avatar
mrs committed
3221 3222 3223 3224
      if (TREE_CODE (arg) != TREE_CODE (parm))
	return 1;

      if (TREE_CODE (parm) == INTEGER_TYPE)
mrs's avatar
mrs committed
3225 3226
	{
	  if (TYPE_MIN_VALUE (parm) && TYPE_MIN_VALUE (arg)
mrs's avatar
mrs committed
3227 3228
	      && unify (tparms, targs, ntparms, TYPE_MIN_VALUE (parm),
			TYPE_MIN_VALUE (arg), nsubsts, strict))
mrs's avatar
mrs committed
3229 3230
	    return 1;
	  if (TYPE_MAX_VALUE (parm) && TYPE_MAX_VALUE (arg)
mrs's avatar
mrs committed
3231 3232
	      && unify (tparms, targs, ntparms, TYPE_MAX_VALUE (parm),
			TYPE_MAX_VALUE (arg), nsubsts, strict))
mrs's avatar
mrs committed
3233 3234
	    return 1;
	}
3235 3236 3237 3238
      else if (TREE_CODE (parm) == REAL_TYPE
	       && TYPE_MAIN_VARIANT (arg) != TYPE_MAIN_VARIANT (parm))
	return 1;

mrs's avatar
mrs committed
3239 3240 3241 3242 3243
      /* As far as unification is concerned, this wins.	 Later checks
	 will invalidate it if necessary.  */
      return 0;

      /* Types INTEGER_CST and MINUS_EXPR can come from array bounds.  */
mrs's avatar
mrs committed
3244
      /* Type INTEGER_CST can come from ordinary constant template args.  */
mrs's avatar
mrs committed
3245
    case INTEGER_CST:
mrs's avatar
mrs committed
3246 3247 3248
      while (TREE_CODE (arg) == NOP_EXPR)
	arg = TREE_OPERAND (arg, 0);

mrs's avatar
mrs committed
3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259
      if (TREE_CODE (arg) != INTEGER_CST)
	return 1;
      return !tree_int_cst_equal (parm, arg);

    case MINUS_EXPR:
      {
	tree t1, t2;
	t1 = TREE_OPERAND (parm, 0);
	t2 = TREE_OPERAND (parm, 1);
	return unify (tparms, targs, ntparms, t1,
		      fold (build (PLUS_EXPR, integer_type_node, arg, t2)),
mrs's avatar
mrs committed
3260
		      nsubsts, strict);
mrs's avatar
mrs committed
3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272
      }

    case TREE_VEC:
      {
	int i;
	if (TREE_CODE (arg) != TREE_VEC)
	  return 1;
	if (TREE_VEC_LENGTH (parm) != TREE_VEC_LENGTH (arg))
	  return 1;
	for (i = TREE_VEC_LENGTH (parm) - 1; i >= 0; i--)
	  if (unify (tparms, targs, ntparms,
		     TREE_VEC_ELT (parm, i), TREE_VEC_ELT (arg, i),
mrs's avatar
mrs committed
3273
		     nsubsts, strict))
mrs's avatar
mrs committed
3274 3275 3276 3277 3278
	    return 1;
	return 0;
      }

    case RECORD_TYPE:
mrs's avatar
mrs committed
3279
      if (TYPE_PTRMEMFUNC_FLAG (parm))
mrs's avatar
mrs committed
3280
	return unify (tparms, targs, ntparms, TYPE_PTRMEMFUNC_FN_TYPE (parm),
mrs's avatar
mrs committed
3281
		      arg, nsubsts, strict);
mrs's avatar
mrs committed
3282

mrs's avatar
mrs committed
3283
      /* Allow trivial conversions.  */
mrs's avatar
mrs committed
3284
      if (TREE_CODE (arg) != RECORD_TYPE
mrs's avatar
mrs committed
3285 3286 3287
	  || TYPE_READONLY (parm) < TYPE_READONLY (arg)
	  || TYPE_VOLATILE (parm) < TYPE_VOLATILE (arg))
	return 1;
mrs's avatar
mrs committed
3288

mrs's avatar
mrs committed
3289
      if (CLASSTYPE_TEMPLATE_INFO (parm) && uses_template_parms (parm))
mrs's avatar
mrs committed
3290
	{
mrs's avatar
mrs committed
3291
	  tree t = NULL_TREE;
mrs's avatar
mrs committed
3292
	  if (flag_ansi_overloading && ! strict)
mrs's avatar
mrs committed
3293
	    t = get_template_base (CLASSTYPE_TI_TEMPLATE (parm), arg);
mrs's avatar
mrs committed
3294 3295 3296
	  else if
	    (CLASSTYPE_TEMPLATE_INFO (arg)
	     && CLASSTYPE_TI_TEMPLATE (parm) == CLASSTYPE_TI_TEMPLATE (arg))
mrs's avatar
mrs committed
3297 3298
	    t = arg;
	  if (! t || t == error_mark_node)
mrs's avatar
mrs committed
3299
	    return 1;
mrs's avatar
mrs committed
3300

mrs's avatar
mrs committed
3301
	  return unify (tparms, targs, ntparms, CLASSTYPE_TI_ARGS (parm),
mrs's avatar
mrs committed
3302
			CLASSTYPE_TI_ARGS (t), nsubsts, strict);
mrs's avatar
mrs committed
3303 3304 3305
	}
      else if (TYPE_MAIN_VARIANT (parm) != TYPE_MAIN_VARIANT (arg))
	return 1;
mrs's avatar
mrs committed
3306
      return 0;
mrs's avatar
mrs committed
3307 3308 3309 3310 3311 3312 3313 3314 3315 3316

    case METHOD_TYPE:
      if (TREE_CODE (arg) != METHOD_TYPE)
	return 1;
      goto check_args;

    case FUNCTION_TYPE:
      if (TREE_CODE (arg) != FUNCTION_TYPE)
	return 1;
     check_args:
mrs's avatar
mrs committed
3317
      if (unify (tparms, targs, ntparms, TREE_TYPE (parm),
mrs's avatar
mrs committed
3318
		 TREE_TYPE (arg), nsubsts, strict))
mrs's avatar
mrs committed
3319
	return 1;
mrs's avatar
mrs committed
3320
      return type_unification (tparms, targs, TYPE_ARG_TYPES (parm),
mrs's avatar
mrs committed
3321
			       TYPE_ARG_TYPES (arg), nsubsts, 1, strict);
mrs's avatar
mrs committed
3322 3323 3324 3325 3326

    case OFFSET_TYPE:
      if (TREE_CODE (arg) != OFFSET_TYPE)
	return 1;
      if (unify (tparms, targs, ntparms, TYPE_OFFSET_BASETYPE (parm),
mrs's avatar
mrs committed
3327
		 TYPE_OFFSET_BASETYPE (arg), nsubsts, strict))
mrs's avatar
mrs committed
3328 3329
	return 1;
      return unify (tparms, targs, ntparms, TREE_TYPE (parm),
mrs's avatar
mrs committed
3330
		    TREE_TYPE (arg), nsubsts, strict);
mrs's avatar
mrs committed
3331

jason's avatar
merge  
jason committed
3332 3333 3334 3335 3336
    case CONST_DECL:
      if (arg != decl_constant_value (parm))
	return 1;
      return 0;

mrs's avatar
mrs committed
3337 3338 3339 3340 3341 3342 3343
    default:
      sorry ("use of `%s' in template type unification",
	     tree_code_name [(int) TREE_CODE (parm)]);
      return 1;
    }
}

mrs's avatar
mrs committed
3344
void
mrs's avatar
mrs committed
3345
mark_decl_instantiated (result, extern_p)
mrs's avatar
mrs committed
3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357
     tree result;
     int extern_p;
{
  if (DECL_TEMPLATE_INSTANTIATION (result))
    SET_DECL_EXPLICIT_INSTANTIATION (result);
  TREE_PUBLIC (result) = 1;

  if (! extern_p)
    {
      DECL_INTERFACE_KNOWN (result) = 1;
      DECL_NOT_REALLY_EXTERN (result) = 1;
    }
mrs's avatar
mrs committed
3358 3359
  else if (TREE_CODE (result) == FUNCTION_DECL)
    mark_inline_for_output (result);
mrs's avatar
mrs committed
3360 3361
}

mrs's avatar
mrs committed
3362 3363 3364 3365 3366 3367 3368 3369 3370 3371
/* Given two function templates PAT1 and PAT2, return:

   1 if PAT1 is more specialized than PAT2 as described in [temp.func.order].
   -1 if PAT2 is more specialized than PAT1.
   0 if neither is more specialized.  */
   
int
more_specialized (pat1, pat2)
     tree pat1, pat2;
{
3372
  tree targs;
mrs's avatar
mrs committed
3373
  int winner = 0;
mrs's avatar
mrs committed
3374

mrs's avatar
mrs committed
3375 3376 3377 3378 3379
  targs = get_bindings (pat1, pat2);
  if (targs)
    {
      --winner;
    }
mrs's avatar
mrs committed
3380

mrs's avatar
mrs committed
3381 3382 3383 3384 3385
  targs = get_bindings (pat2, pat1);
  if (targs)
    {
      ++winner;
    }
mrs's avatar
mrs committed
3386

mrs's avatar
mrs committed
3387 3388
  return winner;
}
mrs's avatar
mrs committed
3389

mrs's avatar
mrs committed
3390
/* Given two class template specialization list nodes PAT1 and PAT2, return:
mrs's avatar
mrs committed
3391

mrs's avatar
mrs committed
3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410
   1 if PAT1 is more specialized than PAT2 as described in [temp.class.order].
   -1 if PAT2 is more specialized than PAT1.
   0 if neither is more specialized.  */
   
int
more_specialized_class (pat1, pat2)
     tree pat1, pat2;
{
  tree targs;
  int winner = 0;

  targs = get_class_bindings
    (TREE_VALUE (pat1), TREE_PURPOSE (pat1), TREE_PURPOSE (pat2));
  if (targs)
    --winner;

  targs = get_class_bindings
    (TREE_VALUE (pat2), TREE_PURPOSE (pat2), TREE_PURPOSE (pat1));
  if (targs)
mrs's avatar
mrs committed
3411 3412 3413 3414
    ++winner;

  return winner;
}
mrs's avatar
mrs committed
3415 3416 3417 3418

/* Return the template arguments that will produce the function signature
   DECL from the function template FN.  */

3419
tree 
mrs's avatar
mrs committed
3420 3421 3422
get_bindings (fn, decl)
     tree fn, decl;
{
3423 3424 3425 3426 3427 3428 3429 3430 3431
  int ntparms = DECL_NTPARMS (fn);
  tree targs = make_tree_vec (ntparms);
  int i;

  i = fn_type_unification (fn, targs, 
			   TYPE_ARG_TYPES (TREE_TYPE (decl)), 
			   TREE_TYPE (TREE_TYPE (decl)),
			   1);

mrs's avatar
mrs committed
3432 3433 3434 3435 3436
  if (i == 0)
    return targs;
  return 0;
}

mrs's avatar
mrs committed
3437
static tree
mrs's avatar
mrs committed
3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470
get_class_bindings (tparms, parms, args)
     tree tparms, parms, args;
{
  int i, dummy, ntparms = TREE_VEC_LENGTH (tparms);
  tree vec = make_temp_vec (ntparms);

  for (i = 0; i < TREE_VEC_LENGTH (parms); ++i)
    {
      switch (unify (tparms, &TREE_VEC_ELT (vec, 0), ntparms,
		     TREE_VEC_ELT (parms, i), TREE_VEC_ELT (args, i),
		     &dummy, 1))
	{
	case 0:
	  break;
	case 1:
	  return NULL_TREE;
	}
    }

  for (i =  0; i < ntparms; ++i)
    if (! TREE_VEC_ELT (vec, i))
      return NULL_TREE;

  return vec;
}

/* Return the most specialized of the list of templates in FNS that can
   produce an instantiation matching DECL.  */

tree
most_specialized (fns, decl)
     tree fns, decl;
{
3471
  tree fn, champ, args, *p;
mrs's avatar
mrs committed
3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570
  int fate;

  for (p = &fns; *p; )
    {
      args = get_bindings (TREE_VALUE (*p), decl);
      if (args)
	{
	  p = &TREE_CHAIN (*p);
	}
      else
	*p = TREE_CHAIN (*p);
    }

  if (! fns)
    return NULL_TREE;

  fn = fns;
  champ = TREE_VALUE (fn);
  fn = TREE_CHAIN (fn);
  for (; fn; fn = TREE_CHAIN (fn))
    {
      fate = more_specialized (champ, TREE_VALUE (fn));
      if (fate == 1)
	;
      else
	{
	  if (fate == 0)
	    {
	      fn = TREE_CHAIN (fn);
	      if (! fn)
		return error_mark_node;
	    }
	  champ = TREE_VALUE (fn);
	}
    }

  for (fn = fns; fn && TREE_VALUE (fn) != champ; fn = TREE_CHAIN (fn))
    {
      fate = more_specialized (champ, TREE_VALUE (fn));
      if (fate != 1)
	return error_mark_node;
    }

  return champ;
}

/* Return the most specialized of the class template specializations in
   SPECS that can produce an instantiation matching ARGS.  */

tree
most_specialized_class (specs, mainargs)
     tree specs, mainargs;
{
  tree list = NULL_TREE, t, args, champ;
  int fate;

  for (t = specs; t; t = TREE_CHAIN (t))
    {
      args = get_class_bindings (TREE_VALUE (t), TREE_PURPOSE (t), mainargs);
      if (args)
	{
	  list = decl_tree_cons (TREE_PURPOSE (t), TREE_VALUE (t), list);
	  TREE_TYPE (list) = TREE_TYPE (t);
	}
    }

  if (! list)
    return NULL_TREE;

  t = list;
  champ = t;
  t = TREE_CHAIN (t);
  for (; t; t = TREE_CHAIN (t))
    {
      fate = more_specialized_class (champ, t);
      if (fate == 1)
	;
      else
	{
	  if (fate == 0)
	    {
	      t = TREE_CHAIN (t);
	      if (! t)
		return error_mark_node;
	    }
	  champ = t;
	}
    }

  for (t = list; t && t != champ; t = TREE_CHAIN (t))
    {
      fate = more_specialized (champ, t);
      if (fate != 1)
	return error_mark_node;
    }

  return champ;
}

mrs's avatar
mrs committed
3571
/* called from the parser.  */
mrs's avatar
mrs committed
3572

mrs's avatar
mrs committed
3573
void
mrs's avatar
mrs committed
3574
do_decl_instantiation (declspecs, declarator, storage)
mrs's avatar
mrs committed
3575
     tree declspecs, declarator, storage;
mrs's avatar
mrs committed
3576
{
mrs's avatar
merging  
mrs committed
3577
  tree decl = grokdeclarator (declarator, declspecs, NORMAL, 0, NULL_TREE);
mrs's avatar
mrs committed
3578 3579
  tree name;
  tree fn;
mrs's avatar
mrs committed
3580
  tree result = NULL_TREE;
mrs's avatar
mrs committed
3581
  int extern_p = 0;
3582
  tree templates = NULL_TREE;
mrs's avatar
mrs committed
3583

mrs's avatar
mrs committed
3584 3585 3586 3587 3588 3589
  if (! DECL_LANG_SPECIFIC (decl))
    {
      cp_error ("explicit instantiation of non-template `%#D'", decl);
      return;
    }

mrs's avatar
mrs committed
3590
  /* If we've already seen this template instance, use it.  */
mrs's avatar
mrs committed
3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602
  if (TREE_CODE (decl) == VAR_DECL)
    {
      result = lookup_field (DECL_CONTEXT (decl), DECL_NAME (decl), 0, 0);
      if (result && TREE_CODE (result) != VAR_DECL)
	result = NULL_TREE;
    }
  else if (TREE_CODE (decl) != FUNCTION_DECL)
    {
      cp_error ("explicit instantiation of `%#D'", decl);
      return;
    }
  else if (DECL_FUNCTION_MEMBER_P (decl))
mrs's avatar
mrs committed
3603 3604 3605 3606 3607 3608 3609
    {
      if (DECL_TEMPLATE_INSTANTIATION (decl))
	result = decl;
      else if (name = DECL_ASSEMBLER_NAME (decl),
	       fn = IDENTIFIER_GLOBAL_VALUE (name),
	       fn && DECL_TEMPLATE_INSTANTIATION (fn))
	result = fn;
3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629
      else 
	{
	  /* Maybe this is an instantiation of a member template
	     function.  */
	  tree ctype = DECL_CONTEXT (decl);

	  name = DECL_NAME (decl);
	  fn = lookup_fnfields (TYPE_BINFO (ctype), name, 1);
	  if (fn)
	    fn = TREE_VALUE (fn);

	  for (; fn; fn = DECL_CHAIN (fn))
	    if (decls_match (fn, decl) && DECL_DEFER_OUTPUT (fn))
	      {
		result = fn;
		break;
	      }
	    else if (TREE_CODE (fn) == TEMPLATE_DECL)
	      templates = decl_tree_cons (NULL_TREE, fn, templates);
	}
mrs's avatar
mrs committed
3630
    }
mrs's avatar
mrs committed
3631
  else if (name = DECL_NAME (decl), fn = IDENTIFIER_GLOBAL_VALUE (name), fn)
mrs's avatar
mrs committed
3632 3633
    {
      for (fn = get_first_fn (fn); fn; fn = DECL_CHAIN (fn))
3634
	if (decls_match (fn, decl) && DECL_DEFER_OUTPUT (fn))
mrs's avatar
mrs committed
3635 3636 3637 3638 3639
	  {
	    result = fn;
	    break;
	  }
	else if (TREE_CODE (fn) == TEMPLATE_DECL)
mrs's avatar
mrs committed
3640
	  templates = decl_tree_cons (NULL_TREE, fn, templates);
3641
    }
mrs's avatar
mrs committed
3642

3643 3644 3645 3646 3647
  if (templates && !result)
    {
      tree args;
      result = most_specialized (templates, decl);
      if (result == error_mark_node)
mrs's avatar
mrs committed
3648
	{
3649 3650 3651
	  char *str = "candidates are:";
	  cp_error ("ambiguous template instantiation for `%D' requested", decl);
	  for (fn = templates; fn; fn = TREE_CHAIN (fn))
mrs's avatar
mrs committed
3652
	    {
3653 3654
	      cp_error_at ("%s %+#D", str, TREE_VALUE (fn));
	      str = "               ";
mrs's avatar
mrs committed
3655
	    }
3656 3657 3658 3659 3660 3661
	  return;
	}
      else if (result)
	{
	  args = get_bindings (result, decl);
	  result = instantiate_template (result, args);
mrs's avatar
mrs committed
3662
	}
mrs's avatar
mrs committed
3663
    }
3664

mrs's avatar
mrs committed
3665
  if (! result)
mrs's avatar
mrs committed
3666 3667 3668 3669
    {
      cp_error ("no matching template for `%D' found", decl);
      return;
    }
mrs's avatar
mrs committed
3670

mrs's avatar
mrs committed
3671 3672 3673 3674 3675 3676
  if (! DECL_TEMPLATE_INFO (result))
    {
      cp_pedwarn ("explicit instantiation of non-template `%#D'", result);
      return;
    }

mrs's avatar
mrs committed
3677 3678 3679
  if (flag_external_templates)
    return;

mrs's avatar
mrs committed
3680
  if (storage == NULL_TREE)
mrs's avatar
mrs committed
3681
    ;
mrs's avatar
mrs committed
3682 3683
  else if (storage == ridpointers[(int) RID_EXTERN])
    extern_p = 1;
mrs's avatar
mrs committed
3684 3685 3686
  else
    cp_error ("storage class `%D' applied to template instantiation",
	      storage);
mrs's avatar
mrs committed
3687 3688

  mark_decl_instantiated (result, extern_p);
mrs's avatar
mrs committed
3689
  repo_template_instantiated (result, extern_p);
mrs's avatar
mrs committed
3690 3691
  if (! extern_p)
    instantiate_decl (result);
mrs's avatar
mrs committed
3692 3693
}

mrs's avatar
mrs committed
3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709
void
mark_class_instantiated (t, extern_p)
     tree t;
     int extern_p;
{
  SET_CLASSTYPE_EXPLICIT_INSTANTIATION (t);
  SET_CLASSTYPE_INTERFACE_KNOWN (t);
  CLASSTYPE_INTERFACE_ONLY (t) = extern_p;
  CLASSTYPE_VTABLE_NEEDS_WRITING (t) = ! extern_p;
  TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (t)) = extern_p;
  if (! extern_p)
    {
      CLASSTYPE_DEBUG_REQUESTED (t) = 1;
      rest_of_type_compilation (t, 1);
    }
}     
mrs's avatar
mrs committed
3710

mrs's avatar
mrs committed
3711
void
3712 3713
do_type_instantiation (t, storage)
     tree t, storage;
mrs's avatar
mrs committed
3714
{
mrs's avatar
mrs committed
3715 3716
  int extern_p = 0;
  int nomem_p = 0;
mrs's avatar
mrs committed
3717 3718
  int static_p = 0;

3719 3720 3721 3722 3723 3724 3725 3726 3727
  if (TREE_CODE (t) == TYPE_DECL)
    t = TREE_TYPE (t);

  if (! IS_AGGR_TYPE (t) || ! CLASSTYPE_TEMPLATE_INFO (t))
    {
      cp_error ("explicit instantiation of non-template type `%T'", t);
      return;
    }

mrs's avatar
mrs committed
3728
  complete_type (t);
mrs's avatar
mrs committed
3729

mrs's avatar
mrs committed
3730 3731
  /* With -fexternal-templates, explicit instantiations are treated the same
     as implicit ones.  */
mrs's avatar
mrs committed
3732 3733 3734
  if (flag_external_templates)
    return;

mrs's avatar
mrs committed
3735 3736 3737 3738 3739 3740 3741 3742
  if (TYPE_SIZE (t) == NULL_TREE)
    {
      cp_error ("explicit instantiation of `%#T' before definition of template",
		t);
      return;
    }

  if (storage == NULL_TREE)
mrs's avatar
mrs committed
3743 3744 3745
    /* OK */;
  else if (storage == ridpointers[(int) RID_INLINE])
    nomem_p = 1;
mrs's avatar
mrs committed
3746 3747
  else if (storage == ridpointers[(int) RID_EXTERN])
    extern_p = 1;
mrs's avatar
mrs committed
3748 3749
  else if (storage == ridpointers[(int) RID_STATIC])
    static_p = 1;
mrs's avatar
mrs committed
3750 3751 3752 3753 3754 3755 3756
  else
    {
      cp_error ("storage class `%D' applied to template instantiation",
		storage);
      extern_p = 0;
    }

mrs's avatar
mrs committed
3757
  /* We've already instantiated this.  */
mrs's avatar
mrs committed
3758 3759 3760
  if (CLASSTYPE_EXPLICIT_INSTANTIATION (t) && ! CLASSTYPE_INTERFACE_ONLY (t)
      && extern_p)
    return;
mrs's avatar
mrs committed
3761

mrs's avatar
mrs committed
3762
  if (! CLASSTYPE_TEMPLATE_SPECIALIZATION (t))
mrs's avatar
mrs committed
3763 3764 3765 3766
    {
      mark_class_instantiated (t, extern_p);
      repo_template_instantiated (t, extern_p);
    }
mrs's avatar
mrs committed
3767 3768 3769 3770

  if (nomem_p)
    return;

mrs's avatar
mrs committed
3771
  {
mrs's avatar
mrs committed
3772
    tree tmp;
mrs's avatar
mrs committed
3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785

    if (! static_p)
      for (tmp = TYPE_METHODS (t); tmp; tmp = TREE_CHAIN (tmp))
	if (DECL_TEMPLATE_INSTANTIATION (tmp))
	  {
	    mark_decl_instantiated (tmp, extern_p);
	    repo_template_instantiated (tmp, extern_p);
	    if (! extern_p)
	      instantiate_decl (tmp);
	  }

    for (tmp = TYPE_FIELDS (t); tmp; tmp = TREE_CHAIN (tmp))
      if (TREE_CODE (tmp) == VAR_DECL && DECL_TEMPLATE_INSTANTIATION (tmp))
mrs's avatar
mrs committed
3786
	{
mrs's avatar
mrs committed
3787
	  mark_decl_instantiated (tmp, extern_p);
mrs's avatar
mrs committed
3788
	  repo_template_instantiated (tmp, extern_p);
mrs's avatar
mrs committed
3789 3790
	  if (! extern_p)
	    instantiate_decl (tmp);
mrs's avatar
mrs committed
3791
	}
mrs's avatar
mrs committed
3792

mrs's avatar
mrs committed
3793
    for (tmp = CLASSTYPE_TAGS (t); tmp; tmp = TREE_CHAIN (tmp))
mrs's avatar
mrs committed
3794 3795
      if (IS_AGGR_TYPE (TREE_VALUE (tmp)))
	do_type_instantiation (TYPE_MAIN_DECL (TREE_VALUE (tmp)), storage);
mrs's avatar
mrs committed
3796
  }
mrs's avatar
mrs committed
3797
}
mrs's avatar
mrs committed
3798 3799

tree
mrs's avatar
mrs committed
3800 3801
instantiate_decl (d)
     tree d;
mrs's avatar
mrs committed
3802
{
mrs's avatar
mrs committed
3803 3804 3805 3806 3807 3808 3809 3810 3811
  tree ti = DECL_TEMPLATE_INFO (d);
  tree tmpl = TI_TEMPLATE (ti);
  tree args = TI_ARGS (ti);
  tree td;
  tree pattern = DECL_TEMPLATE_RESULT (tmpl);
  tree save_ti;
  int nested = in_function_p ();
  int d_defined;
  int pattern_defined;
mrs's avatar
mrs committed
3812 3813
  int line = lineno;
  char *file = input_filename;
mrs's avatar
mrs committed
3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827

  if (TREE_CODE (d) == FUNCTION_DECL)
    {
      d_defined = (DECL_INITIAL (d) != NULL_TREE);
      pattern_defined = (DECL_INITIAL (pattern) != NULL_TREE);
    }
  else
    {
      d_defined = ! DECL_IN_AGGR_P (d);
      pattern_defined = ! DECL_IN_AGGR_P (pattern);
    }

  if (d_defined)
    return d;
mrs's avatar
mrs committed
3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843

  /* This needs to happen before any tsubsting.  */
  if (! push_tinst_level (d))
    return d;

  push_to_top_level ();
  lineno = DECL_SOURCE_LINE (d);
  input_filename = DECL_SOURCE_FILE (d);

  /* We need to set up DECL_INITIAL regardless of pattern_defined if the
     variable is a static const initialized in the class body.  */
  if (TREE_CODE (d) == VAR_DECL
      && ! DECL_INITIAL (d) && DECL_INITIAL (pattern))
    {
      pushclass (DECL_CONTEXT (d), 2);
      DECL_INITIAL (d) = tsubst_expr
3844
	(DECL_INITIAL (pattern), args,
mrs's avatar
mrs committed
3845 3846 3847 3848 3849 3850
	 TREE_VEC_LENGTH (args), tmpl);
      popclass (1);
    }

  /* import_export_decl has to happen after DECL_INITIAL is set up.  */
  if (pattern_defined)
mrs's avatar
mrs committed
3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869
    {
      repo_template_used (d);

      if (flag_external_templates && ! DECL_INTERFACE_KNOWN (d))
	{
	  if (flag_alt_external_templates)
	    {
	      if (interface_unknown)
		warn_if_unknown_interface (d);
	    }
	  else if (DECL_INTERFACE_KNOWN (pattern))
	    {
	      DECL_INTERFACE_KNOWN (d) = 1;
	      DECL_NOT_REALLY_EXTERN (d) = ! DECL_EXTERNAL (pattern);
	    }
	  else
	    warn_if_unknown_interface (pattern);
	}

mrs's avatar
mrs committed
3870
      if (at_eof)
mrs's avatar
mrs committed
3871 3872 3873 3874 3875 3876
	import_export_decl (d);
    }

  if (! pattern_defined
      || (TREE_CODE (d) == FUNCTION_DECL && ! DECL_INLINE (d)
	  && (! DECL_INTERFACE_KNOWN (d)
mrs's avatar
mrs committed
3877 3878 3879 3880 3881 3882
	      || ! DECL_NOT_REALLY_EXTERN (d)))
      /* Kludge: if we compile a constructor in the middle of processing a
         toplevel declaration, we blow away the declspecs in
         temp_decl_obstack when we call permanent_allocation in
         finish_function.  So don't compile it yet.  */
      || (TREE_CODE (d) == FUNCTION_DECL && ! nested && ! at_eof))
mrs's avatar
mrs committed
3883 3884
    {
      add_pending_template (d);
mrs's avatar
mrs committed
3885
      goto out;
mrs's avatar
mrs committed
3886 3887
    }

mrs's avatar
mrs committed
3888 3889 3890
  lineno = DECL_SOURCE_LINE (d);
  input_filename = DECL_SOURCE_FILE (d);

mrs's avatar
mrs committed
3891 3892 3893
  /* Trick tsubst into giving us a new decl in case the template changed.  */
  save_ti = DECL_TEMPLATE_INFO (pattern);
  DECL_TEMPLATE_INFO (pattern) = NULL_TREE;
3894
  td = tsubst (pattern, args, TREE_VEC_LENGTH (args), tmpl);
mrs's avatar
mrs committed
3895 3896
  DECL_TEMPLATE_INFO (pattern) = save_ti;

mrs's avatar
mrs committed
3897 3898
  /* And set up DECL_INITIAL, since tsubst doesn't.  */
  if (TREE_CODE (td) == VAR_DECL)
mrs's avatar
mrs committed
3899 3900 3901
    {
      pushclass (DECL_CONTEXT (d), 2);
      DECL_INITIAL (td) = tsubst_expr
3902
	(DECL_INITIAL (pattern), args,
mrs's avatar
mrs committed
3903 3904 3905
	 TREE_VEC_LENGTH (args), tmpl);
      popclass (1);
    }
mrs's avatar
mrs committed
3906

mrs's avatar
mrs committed
3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929
  /* Convince duplicate_decls to use the DECL_ARGUMENTS from the new decl.  */
  if (TREE_CODE (d) == FUNCTION_DECL)
    DECL_INITIAL (td) = error_mark_node;
  duplicate_decls (td, d);
  if (TREE_CODE (d) == FUNCTION_DECL)
    DECL_INITIAL (td) = 0;

  if (TREE_CODE (d) == VAR_DECL)
    {
      DECL_IN_AGGR_P (d) = 0;
      if (DECL_INTERFACE_KNOWN (d))
	DECL_EXTERNAL (d) = ! DECL_NOT_REALLY_EXTERN (d);
      else
	{
	  DECL_EXTERNAL (d) = 1;
	  DECL_NOT_REALLY_EXTERN (d) = 1;
	}
      cp_finish_decl (d, DECL_INITIAL (d), NULL_TREE, 0, 0);
    }
  else if (TREE_CODE (d) == FUNCTION_DECL)
    {
      tree t = DECL_SAVED_TREE (pattern);

mrs's avatar
merging  
mrs committed
3930
      start_function (NULL_TREE, d, NULL_TREE, 1);
mrs's avatar
mrs committed
3931 3932
      store_parm_decls ();

mrs's avatar
mrs committed
3933 3934 3935 3936
      if (t && TREE_CODE (t) == RETURN_INIT)
	{
	  store_return_init
	    (TREE_OPERAND (t, 0),
3937
	     tsubst_expr (TREE_OPERAND (t, 1), args,
mrs's avatar
mrs committed
3938 3939 3940 3941
			  TREE_VEC_LENGTH (args), tmpl));
	  t = TREE_CHAIN (t);
	}

mrs's avatar
mrs committed
3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957
      if (t && TREE_CODE (t) == CTOR_INITIALIZER)
	{
	  current_member_init_list
	    = tsubst_expr_values (TREE_OPERAND (t, 0), args);
	  current_base_init_list
	    = tsubst_expr_values (TREE_OPERAND (t, 1), args);
	  t = TREE_CHAIN (t);
	}

      setup_vtbl_ptr ();
      /* Always keep the BLOCK node associated with the outermost
	 pair of curley braces of a function.  These are needed
	 for correct operation of dwarfout.c.  */
      keep_next_level ();

      my_friendly_assert (TREE_CODE (t) == COMPOUND_STMT, 42);
3958
      tsubst_expr (t, args, TREE_VEC_LENGTH (args), tmpl);
mrs's avatar
mrs committed
3959

mrs's avatar
mrs committed
3960 3961 3962
      finish_function (lineno, 0, nested);
    }

mrs's avatar
mrs committed
3963
out:
mrs's avatar
mrs committed
3964 3965 3966
  lineno = line;
  input_filename = file;

mrs's avatar
mrs committed
3967 3968
  pop_from_top_level ();
  pop_tinst_level ();
mrs's avatar
mrs committed
3969 3970 3971

  return d;
}
mrs's avatar
mrs committed
3972 3973 3974 3975 3976 3977 3978

tree
tsubst_chain (t, argvec)
     tree t, argvec;
{
  if (t)
    {
3979
      tree first = tsubst (t, argvec,
mrs's avatar
mrs committed
3980 3981 3982 3983 3984
			   TREE_VEC_LENGTH (argvec), NULL_TREE);
      tree last = first;

      for (t = TREE_CHAIN (t); t; t = TREE_CHAIN (t))
	{
3985
	  tree x = tsubst (t, argvec, TREE_VEC_LENGTH (argvec), NULL_TREE);
mrs's avatar
mrs committed
3986 3987 3988 3989 3990 3991 3992 3993 3994
	  TREE_CHAIN (last) = x;
	  last = x;
	}

      return first;
    }
  return NULL_TREE;
}

mrs's avatar
mrs committed
3995
static tree
mrs's avatar
mrs committed
3996 3997 3998 3999 4000 4001 4002 4003
tsubst_expr_values (t, argvec)
     tree t, argvec;
{
  tree first = NULL_TREE;
  tree *p = &first;

  for (; t; t = TREE_CHAIN (t))
    {
4004
      tree pur = tsubst_copy (TREE_PURPOSE (t), argvec,
mrs's avatar
mrs committed
4005
			      TREE_VEC_LENGTH (argvec), NULL_TREE);
4006
      tree val = tsubst_expr (TREE_VALUE (t), argvec,
mrs's avatar
mrs committed
4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021
			      TREE_VEC_LENGTH (argvec), NULL_TREE);
      *p = build_tree_list (pur, val);
      p = &TREE_CHAIN (*p);
    }
  return first;
}

tree last_tree;

void
add_tree (t)
     tree t;
{
  last_tree = TREE_CHAIN (last_tree) = t;
}
mrs's avatar
mrs committed
4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049

/* D is an undefined function declaration in the presence of templates with
   the same name, listed in FNS.  If one of them can produce D as an
   instantiation, remember this so we can instantiate it at EOF if D has
   not been defined by that time.  */

void
add_maybe_template (d, fns)
     tree d, fns;
{
  tree t;

  if (DECL_MAYBE_TEMPLATE (d))
    return;

  t = most_specialized (fns, d);
  if (! t)
    return;
  if (t == error_mark_node)
    {
      cp_error ("ambiguous template instantiation for `%D'", d);
      return;
    }

  *maybe_template_tail = perm_tree_cons (t, d, NULL_TREE);
  maybe_template_tail = &TREE_CHAIN (*maybe_template_tail);
  DECL_MAYBE_TEMPLATE (d) = 1;
}
mrs's avatar
mrs committed
4050 4051 4052 4053 4054

/* Instantiate an enumerated type.  Used by instantiate_class_template and
   tsubst_expr.  */

static tree
4055
tsubst_enum (tag, args, nargs, field_chain)
4056
     tree tag, args;
mrs's avatar
mrs committed
4057
     int nargs;
4058
     tree * field_chain;
mrs's avatar
mrs committed
4059
{
4060 4061 4062
  extern tree current_local_enum;
  tree prev_local_enum = current_local_enum;

mrs's avatar
mrs committed
4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076
  tree newtag = start_enum (TYPE_IDENTIFIER (tag));
  tree e, values = NULL_TREE;

  for (e = TYPE_VALUES (tag); e; e = TREE_CHAIN (e))
    {
      tree elt = build_enumerator (TREE_PURPOSE (e),
				   tsubst_expr (TREE_VALUE (e), args,
						nargs, NULL_TREE));
      TREE_CHAIN (elt) = values;
      values = elt;
    }

  finish_enum (newtag, values);

4077 4078 4079 4080 4081
  if (NULL != field_chain)
    *field_chain = grok_enum_decls (newtag, NULL_TREE);

  current_local_enum = prev_local_enum;

mrs's avatar
mrs committed
4082 4083
  return newtag;
}