aboutsummaryrefslogtreecommitdiff
path: root/backendC/CleanCompilerSources/overloading_2.c
blob: ed5a04e706d98f80e2ff6fa97237d8d01f4c8ffc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/*
	Version 1.0 - 24 okt 1994

	Author:  Sjaak Smetsers
*/

#include "system.h"

#include "settings.h"
#include "syntaxtr.t"
#include "comsupport.h"

#include "scanner.h"
#include "comparser.h"
#include "sizes.h"
#include "checker.h"
#include "checksupport.h"
#include "transform.h"
#include "sa.h"
#include "statesgen.h"
#include "tctypes.t"
#include "typechecker.h"
#include "typechecker2.h"
#include "typeconv.h"
#include "tcsupport.h"
#include "refcountanal.h"
#include "overloading.h"
#include "buildtree.h"

#ifdef _DEBUG_
	static char *OV = "overloading";
#endif

PolyList NewPolyListElem (void *elem, PolyList next, HeapDescr hd)
{
	PolyList new = TH_AllocType (hd, struct poly_list);
	new -> pl_elem = elem;
	new -> pl_next = next;
	return new;
	
} /* NewPolyListElem */

void InsertSymbolInSymbolList (SymbolList *symbols, SymbDef new_symbol, Bool take_icl_def, void *alloc (SizeT size))
{
	SymbolList new_elem;

	for (; *symbols; symbols = & (*symbols) -> sl_next)
	{	int cmp = strcmp ((*symbols) -> sl_symbol -> sdef_ident -> ident_name, new_symbol -> sdef_ident -> ident_name);
		if (cmp == 0)
			return;
		else if (cmp > 0)
			break;
	}

	new_elem 	= (SymbolListS *) alloc (SizeOf (SymbolListS));

	if (take_icl_def && new_symbol -> sdef_main_dcl)
		new_elem -> sl_symbol = new_symbol -> sdef_dcl_icl;
	else
		new_elem -> sl_symbol = new_symbol;

	new_elem -> sl_kind		= SLK_Symbol;
	new_elem -> sl_next		= *symbols;

	*symbols = new_elem;

} /* InsertSymbolInSymbolList */

void ConvertClassSymbolTreeToList (SymbolList symbols, SymbolList * result_list, void *alloc (SizeT size))
{
	SymbolList next_symbol;
	for (next_symbol = symbols; next_symbol -> sl_kind == SLK_TreeOfLists; next_symbol = next_symbol -> sl_next_tree)
		ConvertClassSymbolTreeToList (next_symbol -> sl_next, result_list, alloc);
	if (next_symbol -> sl_kind == SLK_ListNumber)
		next_symbol = next_symbol -> sl_next;
	for (; next_symbol; next_symbol = next_symbol -> sl_next)
		InsertSymbolInSymbolList (result_list, next_symbol -> sl_symbol, cTakeIclDef, alloc);		

} /* ConvertClassSymbolTreeToList */