574bca6a5b428942d3de5dc1eae938a8330bd96e
[sdk] / compiler / bootstrap / libec / bootstrap / pass0.c
1 #if defined(__GNUC__)
2 typedef long long int64;
3 typedef unsigned long long uint64;
4 #ifndef _WIN32
5 #define __declspec(x)
6 #endif
7 #elif defined(__TINYC__)
8 #include <stdarg.h>
9 #define __builtin_va_list va_list
10 #define __builtin_va_start va_start
11 #define __builtin_va_end va_end
12 #ifdef _WIN32
13 #define strcasecmp stricmp
14 #define strncasecmp strnicmp
15 #define __declspec(x) __attribute__((x))
16 #else
17 #define __declspec(x)
18 #endif
19 typedef long long int64;
20 typedef unsigned long long uint64;
21 #else
22 typedef __int64 int64;
23 typedef unsigned __int64 uint64;
24 #endif
25 #ifdef __BIG_ENDIAN__
26 #define __ENDIAN_PAD(x) (8 - (x))
27 #else
28 #define __ENDIAN_PAD(x) 0
29 #endif
30 #include <stdint.h>
31 #include <sys/types.h>
32
33 #if /*defined(_W64) || */(defined(__WORDSIZE) && __WORDSIZE == 8) || defined(__x86_64__)
34 #define _64BIT 1
35 #else
36 #define _64BIT 0
37 #endif
38
39 #define arch_PointerSize                  sizeof(void *)
40 #define structSize_Instance               (_64BIT ? 24 : 12)
41 #define structSize_Module                 (_64BIT ? 560 : 300)
42
43 extern void *  __ecereNameSpace__ecere__com__eSystem_New(unsigned int size);
44
45 extern void *  __ecereNameSpace__ecere__com__eSystem_New0(unsigned int size);
46
47 extern void *  __ecereNameSpace__ecere__com__eSystem_Renew(void *  memory, unsigned int size);
48
49 extern void *  __ecereNameSpace__ecere__com__eSystem_Renew0(void *  memory, unsigned int size);
50
51 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__sys__BTNode;
52
53 struct __ecereNameSpace__ecere__sys__BTNode;
54
55 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__sys__BinaryTree;
56
57 struct __ecereNameSpace__ecere__sys__BinaryTree
58 {
59 struct __ecereNameSpace__ecere__sys__BTNode * root;
60 int count;
61 int (*  CompareKey)(struct __ecereNameSpace__ecere__sys__BinaryTree * tree, uintptr_t a, uintptr_t b);
62 void (*  FreeKey)(void *  key);
63 } __attribute__ ((gcc_struct));
64
65 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__sys__OldList;
66
67 struct __ecereNameSpace__ecere__sys__OldList
68 {
69 void *  first;
70 void *  last;
71 int count;
72 unsigned int offset;
73 unsigned int circ;
74 } __attribute__ ((gcc_struct));
75
76 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__Method;
77
78 struct __ecereNameSpace__ecere__com__Method
79 {
80 char *  name;
81 struct __ecereNameSpace__ecere__com__Method * parent;
82 struct __ecereNameSpace__ecere__com__Method * left;
83 struct __ecereNameSpace__ecere__com__Method * right;
84 int depth;
85 int (*  function)();
86 int vid;
87 int type;
88 struct __ecereNameSpace__ecere__com__Class * _class;
89 void *  symbol;
90 char *  dataTypeString;
91 struct Type * dataType;
92 int memberAccess;
93 } __attribute__ ((gcc_struct));
94
95 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__Property;
96
97 struct __ecereNameSpace__ecere__com__Property
98 {
99 struct __ecereNameSpace__ecere__com__Property * prev;
100 struct __ecereNameSpace__ecere__com__Property * next;
101 char *  name;
102 unsigned int isProperty;
103 int memberAccess;
104 int id;
105 struct __ecereNameSpace__ecere__com__Class * _class;
106 char *  dataTypeString;
107 struct __ecereNameSpace__ecere__com__Class * dataTypeClass;
108 struct Type * dataType;
109 void (*  Set)(void * , int);
110 int (*  Get)(void * );
111 unsigned int (*  IsSet)(void * );
112 void *  data;
113 void *  symbol;
114 int vid;
115 unsigned int conversion;
116 unsigned int watcherOffset;
117 char *  category;
118 unsigned int compiled;
119 unsigned int selfWatchable;
120 unsigned int isWatchable;
121 } __attribute__ ((gcc_struct));
122
123 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_CodePosition;
124
125 struct CodePosition
126 {
127 int line;
128 int charPos;
129 int pos;
130 unsigned int included;
131 } __attribute__ ((gcc_struct));
132
133 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Location;
134
135 struct Location
136 {
137 struct CodePosition start;
138 struct CodePosition end;
139 } __attribute__ ((gcc_struct));
140
141 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Attrib;
142
143 struct Attrib;
144
145 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_ExtDecl;
146
147 struct ExtDecl;
148
149 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_ClassDefinition;
150
151 struct ClassDefinition
152 {
153 struct ClassDefinition * prev;
154 struct ClassDefinition * next;
155 struct Location loc;
156 struct Specifier * _class;
157 struct __ecereNameSpace__ecere__sys__OldList *  baseSpecs;
158 struct __ecereNameSpace__ecere__sys__OldList *  definitions;
159 struct Symbol * symbol;
160 struct Location blockStart;
161 struct Location nameLoc;
162 int endid;
163 int declMode;
164 unsigned int deleteWatchable;
165 } __attribute__ ((gcc_struct));
166
167 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Context;
168
169 struct Context
170 {
171 struct Context * parent;
172 struct __ecereNameSpace__ecere__sys__BinaryTree types;
173 struct __ecereNameSpace__ecere__sys__BinaryTree classes;
174 struct __ecereNameSpace__ecere__sys__BinaryTree symbols;
175 struct __ecereNameSpace__ecere__sys__BinaryTree structSymbols;
176 int nextID;
177 int simpleID;
178 struct __ecereNameSpace__ecere__sys__BinaryTree templateTypes;
179 struct ClassDefinition * classDef;
180 unsigned int templateTypesOnly;
181 unsigned int hasNameSpace;
182 } __attribute__ ((gcc_struct));
183
184 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Instantiation;
185
186 struct Instantiation
187 {
188 struct Instantiation * prev;
189 struct Instantiation * next;
190 struct Location loc;
191 struct Specifier * _class;
192 struct Expression * exp;
193 struct __ecereNameSpace__ecere__sys__OldList *  members;
194 struct Symbol * symbol;
195 unsigned int fullSet;
196 unsigned int isConstant;
197 unsigned char *  data;
198 struct Location nameLoc;
199 struct Location insideLoc;
200 unsigned int built;
201 } __attribute__ ((gcc_struct));
202
203 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Declaration;
204
205 struct Declaration
206 {
207 struct Declaration * prev;
208 struct Declaration * next;
209 struct Location loc;
210 int type;
211 union
212 {
213 struct
214 {
215 struct __ecereNameSpace__ecere__sys__OldList *  specifiers;
216 struct __ecereNameSpace__ecere__sys__OldList *  declarators;
217 } __attribute__ ((gcc_struct));
218 struct Instantiation * inst;
219 struct
220 {
221 struct Identifier * id;
222 struct Expression * exp;
223 } __attribute__ ((gcc_struct));
224 } __attribute__ ((gcc_struct));
225 struct Specifier * extStorage;
226 struct Symbol * symbol;
227 int declMode;
228 } __attribute__ ((gcc_struct));
229
230 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Statement;
231
232 struct Statement
233 {
234 struct Statement * prev;
235 struct Statement * next;
236 struct Location loc;
237 int type;
238 union
239 {
240 struct __ecereNameSpace__ecere__sys__OldList *  expressions;
241 struct
242 {
243 struct Identifier * id;
244 struct Statement * stmt;
245 } __attribute__ ((gcc_struct)) labeled;
246 struct
247 {
248 struct Expression * exp;
249 struct Statement * stmt;
250 } __attribute__ ((gcc_struct)) caseStmt;
251 struct
252 {
253 struct __ecereNameSpace__ecere__sys__OldList * declarations;
254 struct __ecereNameSpace__ecere__sys__OldList * statements;
255 struct Context * context;
256 unsigned int isSwitch;
257 } __attribute__ ((gcc_struct)) compound;
258 struct
259 {
260 struct __ecereNameSpace__ecere__sys__OldList * exp;
261 struct Statement * stmt;
262 struct Statement * elseStmt;
263 } __attribute__ ((gcc_struct)) ifStmt;
264 struct
265 {
266 struct __ecereNameSpace__ecere__sys__OldList * exp;
267 struct Statement * stmt;
268 } __attribute__ ((gcc_struct)) switchStmt;
269 struct
270 {
271 struct __ecereNameSpace__ecere__sys__OldList * exp;
272 struct Statement * stmt;
273 } __attribute__ ((gcc_struct)) whileStmt;
274 struct
275 {
276 struct __ecereNameSpace__ecere__sys__OldList * exp;
277 struct Statement * stmt;
278 } __attribute__ ((gcc_struct)) doWhile;
279 struct
280 {
281 struct Statement * init;
282 struct Statement * check;
283 struct __ecereNameSpace__ecere__sys__OldList * increment;
284 struct Statement * stmt;
285 } __attribute__ ((gcc_struct)) forStmt;
286 struct
287 {
288 struct Identifier * id;
289 } __attribute__ ((gcc_struct)) gotoStmt;
290 struct
291 {
292 struct Specifier * spec;
293 char * statements;
294 struct __ecereNameSpace__ecere__sys__OldList * inputFields;
295 struct __ecereNameSpace__ecere__sys__OldList * outputFields;
296 struct __ecereNameSpace__ecere__sys__OldList * clobberedFields;
297 } __attribute__ ((gcc_struct)) asmStmt;
298 struct
299 {
300 struct Expression * watcher;
301 struct Expression * object;
302 struct __ecereNameSpace__ecere__sys__OldList * watches;
303 } __attribute__ ((gcc_struct)) _watch;
304 struct
305 {
306 struct Identifier * id;
307 struct __ecereNameSpace__ecere__sys__OldList * exp;
308 struct __ecereNameSpace__ecere__sys__OldList * filter;
309 struct Statement * stmt;
310 } __attribute__ ((gcc_struct)) forEachStmt;
311 struct Declaration * decl;
312 } __attribute__ ((gcc_struct));
313 } __attribute__ ((gcc_struct));
314
315 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_TypeName;
316
317 struct TypeName
318 {
319 struct TypeName * prev;
320 struct TypeName * next;
321 struct Location loc;
322 struct __ecereNameSpace__ecere__sys__OldList *  qualifiers;
323 struct Declarator * declarator;
324 int classObjectType;
325 struct Expression * bitCount;
326 } __attribute__ ((gcc_struct));
327
328 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Initializer;
329
330 struct Initializer
331 {
332 struct Initializer * prev;
333 struct Initializer * next;
334 struct Location loc;
335 int type;
336 union
337 {
338 struct Expression * exp;
339 struct __ecereNameSpace__ecere__sys__OldList *  list;
340 } __attribute__ ((gcc_struct));
341 unsigned int isConstant;
342 } __attribute__ ((gcc_struct));
343
344 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__DataValue;
345
346 struct __ecereNameSpace__ecere__com__DataValue
347 {
348 union
349 {
350 char c;
351 unsigned char uc;
352 short s;
353 unsigned short us;
354 int i;
355 unsigned int ui;
356 void *  p;
357 float f;
358 double d;
359 long long i64;
360 uint64 ui64;
361 } __attribute__ ((gcc_struct));
362 } __attribute__ ((gcc_struct));
363
364 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Expression;
365
366 struct Expression
367 {
368 struct Expression * prev;
369 struct Expression * next;
370 struct Location loc;
371 int type;
372 union
373 {
374 struct
375 {
376 char *  constant;
377 struct Identifier * identifier;
378 } __attribute__ ((gcc_struct));
379 struct Statement * compound;
380 struct Instantiation * instance;
381 char *  string;
382 struct __ecereNameSpace__ecere__sys__OldList *  list;
383 struct
384 {
385 struct __ecereNameSpace__ecere__sys__OldList * specifiers;
386 struct Declarator * decl;
387 } __attribute__ ((gcc_struct)) _classExp;
388 struct
389 {
390 struct Identifier * id;
391 } __attribute__ ((gcc_struct)) classData;
392 struct
393 {
394 struct Expression * exp;
395 struct __ecereNameSpace__ecere__sys__OldList * arguments;
396 struct Location argLoc;
397 } __attribute__ ((gcc_struct)) call;
398 struct
399 {
400 struct Expression * exp;
401 struct __ecereNameSpace__ecere__sys__OldList * index;
402 } __attribute__ ((gcc_struct)) index;
403 struct
404 {
405 struct Expression * exp;
406 struct Identifier * member;
407 int memberType;
408 unsigned int thisPtr;
409 } __attribute__ ((gcc_struct)) member;
410 struct
411 {
412 int op;
413 struct Expression * exp1;
414 struct Expression * exp2;
415 } __attribute__ ((gcc_struct)) op;
416 struct TypeName * typeName;
417 struct Specifier * _class;
418 struct
419 {
420 struct TypeName * typeName;
421 struct Expression * exp;
422 } __attribute__ ((gcc_struct)) cast;
423 struct
424 {
425 struct Expression * cond;
426 struct __ecereNameSpace__ecere__sys__OldList * exp;
427 struct Expression * elseExp;
428 } __attribute__ ((gcc_struct)) cond;
429 struct
430 {
431 struct TypeName * typeName;
432 struct Expression * size;
433 } __attribute__ ((gcc_struct)) _new;
434 struct
435 {
436 struct TypeName * typeName;
437 struct Expression * size;
438 struct Expression * exp;
439 } __attribute__ ((gcc_struct)) _renew;
440 struct
441 {
442 char * table;
443 struct Identifier * id;
444 } __attribute__ ((gcc_struct)) db;
445 struct
446 {
447 struct Expression * ds;
448 struct Expression * name;
449 } __attribute__ ((gcc_struct)) dbopen;
450 struct
451 {
452 struct TypeName * typeName;
453 struct Initializer * initializer;
454 } __attribute__ ((gcc_struct)) initializer;
455 struct
456 {
457 struct Expression * exp;
458 struct TypeName * typeName;
459 } __attribute__ ((gcc_struct)) vaArg;
460 } __attribute__ ((gcc_struct));
461 unsigned int debugValue;
462 struct __ecereNameSpace__ecere__com__DataValue val;
463 uint64 address;
464 unsigned int hasAddress;
465 struct Type * expType;
466 struct Type * destType;
467 unsigned int usage;
468 int tempCount;
469 unsigned int byReference;
470 unsigned int isConstant;
471 unsigned int addedThis;
472 unsigned int needCast;
473 unsigned int thisPtr;
474 } __attribute__ ((gcc_struct));
475
476 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_TemplateDatatype;
477
478 struct TemplateDatatype;
479
480 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_TemplateArgument;
481
482 struct TemplateArgument;
483
484 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_TemplateParameter;
485
486 struct TemplateParameter;
487
488 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Specifier;
489
490 struct Specifier
491 {
492 struct Specifier * prev;
493 struct Specifier * next;
494 struct Location loc;
495 int type;
496 union
497 {
498 int specifier;
499 struct
500 {
501 struct ExtDecl * extDecl;
502 char *  name;
503 struct Symbol * symbol;
504 struct __ecereNameSpace__ecere__sys__OldList *  templateArgs;
505 } __attribute__ ((gcc_struct));
506 struct
507 {
508 struct Identifier * id;
509 struct __ecereNameSpace__ecere__sys__OldList *  list;
510 struct __ecereNameSpace__ecere__sys__OldList *  baseSpecs;
511 struct __ecereNameSpace__ecere__sys__OldList *  definitions;
512 unsigned int addNameSpace;
513 struct Context * ctx;
514 struct ExtDecl * extDeclStruct;
515 } __attribute__ ((gcc_struct));
516 struct Expression * expression;
517 struct Specifier * _class;
518 struct TemplateParameter * templateParameter;
519 } __attribute__ ((gcc_struct));
520 } __attribute__ ((gcc_struct));
521
522 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Identifier;
523
524 struct Identifier
525 {
526 struct Identifier * prev;
527 struct Identifier * next;
528 struct Location loc;
529 struct Symbol * classSym;
530 struct Specifier * _class;
531 char *  string;
532 struct Identifier * badID;
533 } __attribute__ ((gcc_struct));
534
535 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Pointer;
536
537 struct Pointer;
538
539 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Declarator;
540
541 struct Declarator
542 {
543 struct Declarator * prev;
544 struct Declarator * next;
545 struct Location loc;
546 int type;
547 struct Symbol * symbol;
548 struct Declarator * declarator;
549 union
550 {
551 struct Identifier * identifier;
552 struct
553 {
554 struct Expression * exp;
555 struct Expression * posExp;
556 struct Attrib * attrib;
557 } __attribute__ ((gcc_struct)) structDecl;
558 struct
559 {
560 struct Expression * exp;
561 struct Specifier * enumClass;
562 } __attribute__ ((gcc_struct)) array;
563 struct
564 {
565 struct __ecereNameSpace__ecere__sys__OldList * parameters;
566 } __attribute__ ((gcc_struct)) function;
567 struct
568 {
569 struct Pointer * pointer;
570 } __attribute__ ((gcc_struct)) pointer;
571 struct
572 {
573 struct ExtDecl * extended;
574 } __attribute__ ((gcc_struct)) extended;
575 } __attribute__ ((gcc_struct));
576 } __attribute__ ((gcc_struct));
577
578 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_FunctionDefinition;
579
580 struct FunctionDefinition
581 {
582 struct FunctionDefinition * prev;
583 struct FunctionDefinition * next;
584 struct Location loc;
585 struct __ecereNameSpace__ecere__sys__OldList *  specifiers;
586 struct Declarator * declarator;
587 struct __ecereNameSpace__ecere__sys__OldList *  declarations;
588 struct Statement * body;
589 struct __ecereNameSpace__ecere__com__Class * _class;
590 struct __ecereNameSpace__ecere__sys__OldList attached;
591 int declMode;
592 struct Type * type;
593 struct Symbol * propSet;
594 int tempCount;
595 unsigned int propertyNoThis;
596 } __attribute__ ((gcc_struct));
597
598 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_DBTableDef;
599
600 struct DBTableDef;
601
602 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_External;
603
604 struct External
605 {
606 struct External * prev;
607 struct External * next;
608 struct Location loc;
609 int type;
610 struct Symbol * symbol;
611 union
612 {
613 struct FunctionDefinition * function;
614 struct ClassDefinition * _class;
615 struct Declaration * declaration;
616 char *  importString;
617 struct Identifier * id;
618 struct DBTableDef * table;
619 } __attribute__ ((gcc_struct));
620 int importType;
621 } __attribute__ ((gcc_struct));
622
623 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_ModuleImport;
624
625 struct ModuleImport;
626
627 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_ClassImport;
628
629 struct ClassImport;
630
631 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Symbol;
632
633 struct Symbol
634 {
635 char *  string;
636 struct Symbol * parent;
637 struct Symbol * left;
638 struct Symbol * right;
639 int depth;
640 struct Type * type;
641 union
642 {
643 struct __ecereNameSpace__ecere__com__Method * method;
644 struct __ecereNameSpace__ecere__com__Property * _property;
645 struct __ecereNameSpace__ecere__com__Class * registered;
646 } __attribute__ ((gcc_struct));
647 int id;
648 int idCode;
649 union
650 {
651 struct
652 {
653 struct External * pointerExternal;
654 struct External * structExternal;
655 } __attribute__ ((gcc_struct));
656 struct
657 {
658 struct External * externalGet;
659 struct External * externalSet;
660 struct External * externalPtr;
661 struct External * externalIsSet;
662 } __attribute__ ((gcc_struct));
663 struct
664 {
665 struct External * methodExternal;
666 struct External * methodCodeExternal;
667 } __attribute__ ((gcc_struct));
668 } __attribute__ ((gcc_struct));
669 unsigned int imported;
670 unsigned int declaredStructSym;
671 struct __ecereNameSpace__ecere__com__Class * _class;
672 unsigned int declaredStruct;
673 unsigned int needConstructor;
674 unsigned int needDestructor;
675 char *  constructorName;
676 char *  structName;
677 char *  className;
678 char *  destructorName;
679 struct ModuleImport * module;
680 struct ClassImport * _import;
681 struct Location nameLoc;
682 unsigned int isParam;
683 unsigned int isRemote;
684 unsigned int isStruct;
685 unsigned int fireWatchersDone;
686 int declaring;
687 unsigned int classData;
688 unsigned int isStatic;
689 char *  shortName;
690 struct __ecereNameSpace__ecere__sys__OldList *  templateParams;
691 struct __ecereNameSpace__ecere__sys__OldList templatedClasses;
692 struct Context * ctx;
693 int isIterator;
694 struct Expression * propCategory;
695 } __attribute__ ((gcc_struct));
696
697 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Type;
698
699 struct Type
700 {
701 struct Type * prev;
702 struct Type * next;
703 int refCount;
704 union
705 {
706 struct Symbol * _class;
707 struct
708 {
709 struct __ecereNameSpace__ecere__sys__OldList members;
710 char *  enumName;
711 } __attribute__ ((gcc_struct));
712 struct
713 {
714 struct Type * returnType;
715 struct __ecereNameSpace__ecere__sys__OldList params;
716 struct Symbol * thisClass;
717 unsigned int staticMethod;
718 struct TemplateParameter * thisClassTemplate;
719 } __attribute__ ((gcc_struct));
720 struct
721 {
722 struct __ecereNameSpace__ecere__com__Method * method;
723 struct __ecereNameSpace__ecere__com__Class * methodClass;
724 struct __ecereNameSpace__ecere__com__Class * usedClass;
725 } __attribute__ ((gcc_struct));
726 struct
727 {
728 struct Type * arrayType;
729 int arraySize;
730 struct Expression * arraySizeExp;
731 unsigned int freeExp;
732 struct Symbol * enumClass;
733 } __attribute__ ((gcc_struct));
734 struct Type * type;
735 struct TemplateParameter * templateParameter;
736 } __attribute__ ((gcc_struct));
737 unsigned int isSigned;
738 int kind;
739 unsigned int constant;
740 unsigned int size;
741 char *  name;
742 char *  typeName;
743 unsigned int count;
744 unsigned int truth;
745 int classObjectType;
746 unsigned int byReference;
747 unsigned int extraParam;
748 int alignment;
749 unsigned int directClassAccess;
750 unsigned int computing;
751 unsigned int dllExport;
752 unsigned int offset;
753 unsigned int keepCast;
754 unsigned int passAsTemplate;
755 int bitFieldCount;
756 } __attribute__ ((gcc_struct));
757
758 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__Class;
759
760 struct __ecereNameSpace__ecere__com__Class
761 {
762 struct __ecereNameSpace__ecere__com__Class * prev;
763 struct __ecereNameSpace__ecere__com__Class * next;
764 char *  name;
765 int offset;
766 int structSize;
767 int (* *  _vTbl)();
768 int vTblSize;
769 int (*  Constructor)(struct __ecereNameSpace__ecere__com__Instance *);
770 void (*  Destructor)(struct __ecereNameSpace__ecere__com__Instance *);
771 int offsetClass;
772 int sizeClass;
773 struct __ecereNameSpace__ecere__com__Class * base;
774 struct __ecereNameSpace__ecere__sys__BinaryTree methods;
775 struct __ecereNameSpace__ecere__sys__BinaryTree members;
776 struct __ecereNameSpace__ecere__sys__BinaryTree prop;
777 struct __ecereNameSpace__ecere__sys__OldList membersAndProperties;
778 struct __ecereNameSpace__ecere__sys__BinaryTree classProperties;
779 struct __ecereNameSpace__ecere__sys__OldList derivatives;
780 int memberID;
781 int startMemberID;
782 int type;
783 struct __ecereNameSpace__ecere__com__Instance * module;
784 struct __ecereNameSpace__ecere__com__NameSpace *  nameSpace;
785 char *  dataTypeString;
786 struct Type * dataType;
787 int typeSize;
788 int defaultAlignment;
789 void (*  Initialize)();
790 int memberOffset;
791 struct __ecereNameSpace__ecere__sys__OldList selfWatchers;
792 char *  designerClass;
793 unsigned int noExpansion;
794 char *  defaultProperty;
795 unsigned int comRedefinition;
796 int count;
797 unsigned int isRemote;
798 unsigned int internalDecl;
799 void *  data;
800 unsigned int computeSize;
801 int structAlignment;
802 int destructionWatchOffset;
803 unsigned int fixed;
804 struct __ecereNameSpace__ecere__sys__OldList delayedCPValues;
805 int inheritanceAccess;
806 char *  fullName;
807 void *  symbol;
808 struct __ecereNameSpace__ecere__sys__OldList conversions;
809 struct __ecereNameSpace__ecere__sys__OldList templateParams;
810 struct __ecereNameSpace__ecere__com__ClassTemplateArgument *  templateArgs;
811 struct __ecereNameSpace__ecere__com__Class * templateClass;
812 struct __ecereNameSpace__ecere__sys__OldList templatized;
813 int numParams;
814 } __attribute__ ((gcc_struct));
815
816 extern long long __ecereNameSpace__ecere__com__eClass_GetProperty(struct __ecereNameSpace__ecere__com__Class * _class, char *  name);
817
818 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__Instance;
819
820 struct __ecereNameSpace__ecere__com__Instance
821 {
822 int (* *  _vTbl)();
823 struct __ecereNameSpace__ecere__com__Class * _class;
824 int _refCount;
825 } __attribute__ ((gcc_struct));
826
827 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__DataMember;
828
829 struct __ecereNameSpace__ecere__com__DataMember
830 {
831 struct __ecereNameSpace__ecere__com__DataMember * prev;
832 struct __ecereNameSpace__ecere__com__DataMember * next;
833 char *  name;
834 unsigned int isProperty;
835 int memberAccess;
836 int id;
837 struct __ecereNameSpace__ecere__com__Class * _class;
838 char *  dataTypeString;
839 struct __ecereNameSpace__ecere__com__Class * dataTypeClass;
840 struct Type * dataType;
841 int type;
842 int offset;
843 int memberID;
844 struct __ecereNameSpace__ecere__sys__OldList members;
845 struct __ecereNameSpace__ecere__sys__BinaryTree membersAlpha;
846 int memberOffset;
847 int structAlignment;
848 } __attribute__ ((gcc_struct));
849
850 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__SerialBuffer;
851
852 struct __ecereNameSpace__ecere__com__SerialBuffer
853 {
854 unsigned char *  _buffer;
855 unsigned int count;
856 unsigned int _size;
857 unsigned int pos;
858 } __attribute__ ((gcc_struct));
859
860 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__ClassTemplateArgument;
861
862 struct __ecereNameSpace__ecere__com__ClassTemplateArgument
863 {
864 union
865 {
866 struct
867 {
868 char *  dataTypeString;
869 struct __ecereNameSpace__ecere__com__Class * dataTypeClass;
870 } __attribute__ ((gcc_struct));
871 struct __ecereNameSpace__ecere__com__DataValue expression;
872 struct
873 {
874 char *  memberString;
875 union
876 {
877 struct __ecereNameSpace__ecere__com__DataMember * member;
878 struct __ecereNameSpace__ecere__com__Property * prop;
879 struct __ecereNameSpace__ecere__com__Method * method;
880 } __attribute__ ((gcc_struct));
881 } __attribute__ ((gcc_struct));
882 } __attribute__ ((gcc_struct));
883 } __attribute__ ((gcc_struct));
884
885 enum yytokentype
886 {
887 IDENTIFIER = 258, CONSTANT = 259, STRING_LITERAL = 260, SIZEOF = 261, PTR_OP = 262, INC_OP = 263, DEC_OP = 264, LEFT_OP = 265, RIGHT_OP = 266, LE_OP = 267, GE_OP = 268, EQ_OP = 269, NE_OP = 270, AND_OP = 271, OR_OP = 272, MUL_ASSIGN = 273, DIV_ASSIGN = 274, MOD_ASSIGN = 275, ADD_ASSIGN = 276, SUB_ASSIGN = 277, LEFT_ASSIGN = 278, RIGHT_ASSIGN = 279, AND_ASSIGN = 280, XOR_ASSIGN = 281, OR_ASSIGN = 282, TYPE_NAME = 283, TYPEDEF = 284, EXTERN = 285, STATIC = 286, AUTO = 287, REGISTER = 288, CHAR = 289, SHORT = 290, INT = 291, UINT = 292, INT64 = 293, LONG = 294, SIGNED = 295, UNSIGNED = 296, FLOAT = 297, DOUBLE = 298, CONST = 299, VOLATILE = 300, VOID = 301, VALIST = 302, STRUCT = 303, UNION = 304, ENUM = 305, ELLIPSIS = 306, CASE = 307, DEFAULT = 308, IF = 309, SWITCH = 310, WHILE = 311, DO = 312, FOR = 313, GOTO = 314, CONTINUE = 315, BREAK = 316, RETURN = 317, IFX = 318, ELSE = 319, CLASS = 320, THISCLASS = 321, CLASS_NAME = 322, PROPERTY = 323, SETPROP = 324, GETPROP = 325, NEWOP = 326, RENEW = 327, DELETE = 328, EXT_DECL = 329, EXT_STORAGE = 330, IMPORT = 331, DEFINE = 332, VIRTUAL = 333, ATTRIB = 334, PUBLIC = 335, PRIVATE = 336, TYPED_OBJECT = 337, ANY_OBJECT = 338, _INCREF = 339, EXTENSION = 340, ASM = 341, TYPEOF = 342, WATCH = 343, STOPWATCHING = 344, FIREWATCHERS = 345, WATCHABLE = 346, CLASS_DESIGNER = 347, CLASS_NO_EXPANSION = 348, CLASS_FIXED = 349, ISPROPSET = 350, CLASS_DEFAULT_PROPERTY = 351, PROPERTY_CATEGORY = 352, CLASS_DATA = 353, CLASS_PROPERTY = 354, SUBCLASS = 355, NAMESPACE = 356, NEW0OP = 357, RENEW0 = 358, VAARG = 359, DBTABLE = 360, DBFIELD = 361, DBINDEX = 362, DATABASE_OPEN = 363, ALIGNOF = 364, ATTRIB_DEP = 365, __ATTRIB = 366
888 };
889
890 typedef union YYSTYPE
891 {
892 int specifierType;
893 int i;
894 int declMode;
895 struct Identifier * id;
896 struct Expression * exp;
897 struct Specifier * specifier;
898 struct __ecereNameSpace__ecere__sys__OldList * list;
899 struct Enumerator * enumerator;
900 struct Declarator * declarator;
901 struct Pointer * pointer;
902 struct Initializer * initializer;
903 struct InitDeclarator * initDeclarator;
904 struct TypeName * typeName;
905 struct Declaration * declaration;
906 struct Statement * stmt;
907 struct FunctionDefinition * function;
908 struct External * external;
909 struct Context * context;
910 struct AsmField * asmField;
911 struct Attrib * attrib;
912 struct ExtDecl * extDecl;
913 struct Attribute * attribute;
914 struct Instantiation * instance;
915 struct MembersInit * membersInit;
916 struct MemberInit * memberInit;
917 struct ClassFunction * classFunction;
918 struct ClassDefinition * _class;
919 struct ClassDef * classDef;
920 struct PropertyDef * prop;
921 char * string;
922 struct Symbol * symbol;
923 struct PropertyWatch * propertyWatch;
924 struct TemplateParameter * templateParameter;
925 struct TemplateArgument * templateArgument;
926 struct TemplateDatatype * templateDatatype;
927 struct DBTableEntry * dbtableEntry;
928 struct DBIndexItem * dbindexItem;
929 struct DBTableDef * dbtableDef;
930 } __attribute__ ((gcc_struct)) YYSTYPE;
931
932 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Enumerator;
933
934 struct Enumerator;
935
936 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_InitDeclarator;
937
938 struct InitDeclarator;
939
940 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_AsmField;
941
942 struct AsmField;
943
944 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Attribute;
945
946 struct Attribute;
947
948 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_ClassFunction;
949
950 struct ClassFunction
951 {
952 struct ClassFunction * prev;
953 struct ClassFunction * next;
954 struct Location loc;
955 struct __ecereNameSpace__ecere__sys__OldList *  specifiers;
956 struct Declarator * declarator;
957 struct __ecereNameSpace__ecere__sys__OldList *  declarations;
958 struct Statement * body;
959 struct __ecereNameSpace__ecere__com__Class * _class;
960 struct __ecereNameSpace__ecere__sys__OldList attached;
961 int declMode;
962 struct Type * type;
963 struct Symbol * propSet;
964 unsigned int isVirtual;
965 unsigned int isConstructor;
966 unsigned int isDestructor;
967 unsigned int dontMangle;
968 int id;
969 int idCode;
970 } __attribute__ ((gcc_struct));
971
972 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_MembersInit;
973
974 struct MembersInit
975 {
976 struct MembersInit * prev;
977 struct MembersInit * next;
978 struct Location loc;
979 int type;
980 union
981 {
982 struct __ecereNameSpace__ecere__sys__OldList *  dataMembers;
983 struct ClassFunction * function;
984 } __attribute__ ((gcc_struct));
985 } __attribute__ ((gcc_struct));
986
987 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_MemberInit;
988
989 struct MemberInit
990 {
991 struct MemberInit * prev;
992 struct MemberInit * next;
993 struct Location loc;
994 struct Location realLoc;
995 struct __ecereNameSpace__ecere__sys__OldList *  identifiers;
996 struct Initializer * initializer;
997 unsigned int used;
998 unsigned int variable;
999 unsigned int takeOutExp;
1000 } __attribute__ ((gcc_struct));
1001
1002 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_PropertyDef;
1003
1004 struct PropertyDef
1005 {
1006 struct PropertyDef * prev;
1007 struct PropertyDef * next;
1008 struct Location loc;
1009 struct __ecereNameSpace__ecere__sys__OldList *  specifiers;
1010 struct Declarator * declarator;
1011 struct Identifier * id;
1012 struct Statement * getStmt;
1013 struct Statement * setStmt;
1014 struct Statement * issetStmt;
1015 struct Symbol * symbol;
1016 unsigned int conversion;
1017 unsigned int isWatchable;
1018 struct Expression * category;
1019 } __attribute__ ((gcc_struct));
1020
1021 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_PropertyWatch;
1022
1023 struct PropertyWatch;
1024
1025 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_ClassDef;
1026
1027 struct ClassDef
1028 {
1029 struct ClassDef * prev;
1030 struct ClassDef * next;
1031 struct Location loc;
1032 int type;
1033 union
1034 {
1035 struct Declaration * decl;
1036 struct ClassFunction * function;
1037 struct __ecereNameSpace__ecere__sys__OldList *  defProperties;
1038 struct PropertyDef * propertyDef;
1039 struct PropertyWatch * propertyWatch;
1040 char *  designer;
1041 struct Identifier * defaultProperty;
1042 struct
1043 {
1044 struct Identifier * id;
1045 struct Initializer * initializer;
1046 } __attribute__ ((gcc_struct));
1047 } __attribute__ ((gcc_struct));
1048 int memberAccess;
1049 void *  object;
1050 } __attribute__ ((gcc_struct));
1051
1052 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_DBTableEntry;
1053
1054 struct DBTableEntry;
1055
1056 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_DBIndexItem;
1057
1058 struct DBIndexItem;
1059
1060 extern YYSTYPE yylval;
1061
1062 extern struct Location yylloc;
1063
1064 extern struct External * curExternal;
1065
1066 void MangleClassName(char * className)
1067 {
1068 char output[1024];
1069 int c, d = 0;
1070 char ch;
1071
1072 for(c = 0; (ch = className[c]); c++)
1073 {
1074 if(ch == ' ')
1075 output[d++] = '_';
1076 else if(ch == '*')
1077 {
1078 output[d++] = '_';
1079 output[d++] = 'P';
1080 output[d++] = 'T';
1081 output[d++] = 'R';
1082 output[d++] = '_';
1083 }
1084 else if(ch == '<')
1085 {
1086 output[d++] = '_';
1087 output[d++] = 'T';
1088 output[d++] = 'P';
1089 output[d++] = 'L';
1090 output[d++] = '_';
1091 }
1092 else if(ch == '=')
1093 {
1094 output[d++] = '_';
1095 output[d++] = 'E';
1096 output[d++] = 'Q';
1097 output[d++] = 'U';
1098 output[d++] = '_';
1099 }
1100 else if(ch == '>')
1101 {
1102 output[d++] = '_';
1103 }
1104 else if(ch == ',')
1105 {
1106 output[d++] = '__';
1107 }
1108 else
1109 output[d++] = ch;
1110 }
1111 output[d] = (char)0;
1112 }
1113
1114 extern char *  strcat(char * , const char * );
1115
1116 extern size_t strlen(const char * );
1117
1118 void FullClassNameCat(char * output, char * className, unsigned int includeTemplateParams)
1119 {
1120 int c;
1121 char ch;
1122 int len;
1123
1124 for(c = 0; (ch = className[c]) && ch != '<'; c++)
1125 {
1126 if(ch == ':')
1127 {
1128 strcat(output, "__ecereNameSpace__");
1129 break;
1130 }
1131 }
1132 len = strlen(output);
1133 for(c = 0; (ch = className[c]); c++)
1134 {
1135 if(ch == ':')
1136 output[len++] = '_';
1137 else if(ch == ' ')
1138 output[len++] = '_';
1139 else if(ch == '*')
1140 {
1141 output[len++] = '_';
1142 output[len++] = 'P';
1143 output[len++] = 'T';
1144 output[len++] = 'R';
1145 output[len++] = '_';
1146 }
1147 else if(ch == '=')
1148 {
1149 output[len++] = '_';
1150 output[len++] = 'E';
1151 output[len++] = 'Q';
1152 output[len++] = 'U';
1153 output[len++] = '_';
1154 }
1155 else if(ch == '<')
1156 {
1157 if(!includeTemplateParams)
1158 break;
1159 output[len++] = '_';
1160 output[len++] = 'T';
1161 output[len++] = 'P';
1162 output[len++] = 'L';
1163 output[len++] = '_';
1164 }
1165 else if(ch == '>')
1166 {
1167 output[len++] = '_';
1168 }
1169 else if(ch == ',')
1170 {
1171 output[len++] = '__';
1172 }
1173 else
1174 output[len++] = ch;
1175 }
1176 output[len++] = (char)0;
1177 }
1178
1179 extern int AddMembers(struct __ecereNameSpace__ecere__sys__OldList *  declarations, struct __ecereNameSpace__ecere__com__Class * _class, unsigned int isMember, unsigned int *  retSize, struct __ecereNameSpace__ecere__com__Class * topClass, unsigned int *  addedPadding);
1180
1181 static void AddSimpleBaseMembers(struct __ecereNameSpace__ecere__sys__OldList * list, struct __ecereNameSpace__ecere__com__Class * _class, struct __ecereNameSpace__ecere__com__Class * topClass)
1182 {
1183 if(_class->type != 1000)
1184 AddMembers(list, _class, 0x0, (((void *)0)), topClass, (((void *)0)));
1185 }
1186
1187 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__NameSpace;
1188
1189 struct __ecereNameSpace__ecere__com__NameSpace
1190 {
1191 char *  name;
1192 struct __ecereNameSpace__ecere__com__NameSpace *  btParent;
1193 struct __ecereNameSpace__ecere__com__NameSpace *  left;
1194 struct __ecereNameSpace__ecere__com__NameSpace *  right;
1195 int depth;
1196 struct __ecereNameSpace__ecere__com__NameSpace *  parent;
1197 struct __ecereNameSpace__ecere__sys__BinaryTree nameSpaces;
1198 struct __ecereNameSpace__ecere__sys__BinaryTree classes;
1199 struct __ecereNameSpace__ecere__sys__BinaryTree defines;
1200 struct __ecereNameSpace__ecere__sys__BinaryTree functions;
1201 } __attribute__ ((gcc_struct));
1202
1203 static unsigned int NameSpaceContained(struct __ecereNameSpace__ecere__com__NameSpace * ns, struct __ecereNameSpace__ecere__com__NameSpace * parent)
1204 {
1205 if(ns == parent)
1206 return 0x1;
1207 else if((*ns).parent)
1208 return NameSpaceContained((*ns).parent, parent);
1209 else
1210 return 0x0;
1211 }
1212
1213 extern void Compiler_Error(char *  format, ...);
1214
1215 extern char *  __ecereNameSpace__ecere__GetTranslatedString(struct __ecereNameSpace__ecere__com__Instance * module, char *  string, char *  stringAndContext);
1216
1217 extern struct __ecereNameSpace__ecere__com__Instance * __thisModule;
1218
1219 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__Module;
1220
1221 struct __ecereNameSpace__ecere__com__Module
1222 {
1223 struct __ecereNameSpace__ecere__com__Instance * application;
1224 struct __ecereNameSpace__ecere__sys__OldList classes;
1225 struct __ecereNameSpace__ecere__sys__OldList defines;
1226 struct __ecereNameSpace__ecere__sys__OldList functions;
1227 struct __ecereNameSpace__ecere__sys__OldList modules;
1228 struct __ecereNameSpace__ecere__com__Instance * prev;
1229 struct __ecereNameSpace__ecere__com__Instance * next;
1230 char *  name;
1231 void *  library;
1232 void *  Unload;
1233 int importType;
1234 int origImportType;
1235 struct __ecereNameSpace__ecere__com__NameSpace privateNameSpace;
1236 struct __ecereNameSpace__ecere__com__NameSpace publicNameSpace;
1237 } __attribute__ ((gcc_struct));
1238
1239 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__Application;
1240
1241 struct __ecereNameSpace__ecere__com__Application
1242 {
1243 int argc;
1244 char * *  argv;
1245 int exitCode;
1246 unsigned int isGUIApp;
1247 struct __ecereNameSpace__ecere__sys__OldList allModules;
1248 char *  parsedCommand;
1249 struct __ecereNameSpace__ecere__com__NameSpace systemNameSpace;
1250 } __attribute__ ((gcc_struct));
1251
1252 extern unsigned int ModuleAccess(struct __ecereNameSpace__ecere__com__Instance * searchIn, struct __ecereNameSpace__ecere__com__Instance * searchFor);
1253
1254 extern struct __ecereNameSpace__ecere__com__Instance * privateModule;
1255
1256 static void CheckPublicClass(struct Symbol * classSym, int access, char * word)
1257 {
1258 struct __ecereNameSpace__ecere__com__Class * regClass = classSym ? classSym->registered : (((void *)0));
1259
1260 if(regClass)
1261 {
1262 if(regClass->templateClass)
1263 regClass = regClass->templateClass;
1264 if(classSym->isStatic && access != 3)
1265 {
1266 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString(__thisModule, "Non-static %s making use of a static class\n", (((void *)0))), word);
1267 }
1268 else if(access == 1)
1269 {
1270 if(!NameSpaceContained(regClass->nameSpace, &((struct __ecereNameSpace__ecere__com__Application *)(((char *)((struct __ecereNameSpace__ecere__com__Module *)(((char *)regClass->module + structSize_Instance)))->application + structSize_Module)))->systemNameSpace))
1271 {
1272 if(NameSpaceContained(regClass->nameSpace, &((struct __ecereNameSpace__ecere__com__Module *)(((char *)regClass->module + structSize_Instance)))->privateNameSpace) || !ModuleAccess(privateModule, regClass->module))
1273 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString(__thisModule, "Public %s making use of a private class\n", (((void *)0))), word);
1274 }
1275 }
1276 }
1277 }
1278
1279 static void CheckPublicTypeName(struct TypeName * type, int access)
1280 {
1281 if(type->qualifiers)
1282 {
1283 struct Specifier * spec;
1284
1285 for(spec = (*type->qualifiers).first; spec; spec = spec->next)
1286 {
1287 if(spec->type == 1)
1288 {
1289 struct Symbol * classSym = spec->symbol;
1290
1291 CheckPublicClass(classSym, access, "define");
1292 }
1293 }
1294 }
1295 }
1296
1297 static void CheckPublicExpression(struct Expression * exp, int access);
1298
1299 static void CheckPublicInitializer(struct Initializer * init, int access)
1300 {
1301 switch(init->type)
1302 {
1303 case 0:
1304 CheckPublicExpression(init->exp, access);
1305 break;
1306 case 1:
1307 {
1308 struct Initializer * i;
1309
1310 for(i = (*init->list).first; i; i = i->next)
1311 CheckPublicInitializer(i, access);
1312 break;
1313 }
1314 }
1315 }
1316
1317 static void CheckPublicExpression(struct Expression * exp, int access)
1318 {
1319 if(exp)
1320 {
1321 switch(exp->type)
1322 {
1323 case 0:
1324 break;
1325 case 2:
1326 break;
1327 case 3:
1328 break;
1329 case 4:
1330 if(exp->op.exp1)
1331 CheckPublicExpression(exp->op.exp1, access);
1332 if(exp->op.exp2)
1333 CheckPublicExpression(exp->op.exp2, access);
1334 break;
1335 case 5:
1336 {
1337 struct Expression * e;
1338
1339 for(e = (*exp->list).first; e; e = e->next)
1340 CheckPublicExpression(e, access);
1341 break;
1342 }
1343 case 6:
1344 {
1345 struct Expression * e;
1346
1347 CheckPublicExpression(exp->index.exp, access);
1348 for(e = (*exp->index.index).first; e; e = e->next)
1349 CheckPublicExpression(e, access);
1350 break;
1351 }
1352 case 7:
1353 {
1354 struct Expression * e;
1355
1356 CheckPublicExpression(exp->call.exp, access);
1357 if(exp->call.arguments)
1358 {
1359 for(e = (*exp->call.arguments).first; e; e = e->next)
1360 CheckPublicExpression(e, access);
1361 }
1362 break;
1363 }
1364 case 8:
1365 {
1366 CheckPublicExpression(exp->member.exp, access);
1367 break;
1368 }
1369 case 9:
1370 {
1371 CheckPublicExpression(exp->member.exp, access);
1372 break;
1373 }
1374 case 10:
1375 CheckPublicTypeName(exp->typeName, access);
1376 break;
1377 case 11:
1378 {
1379 struct Type * type = exp->expType;
1380
1381 CheckPublicTypeName(exp->cast.typeName, access);
1382 if(exp->cast.exp)
1383 CheckPublicExpression(exp->cast.exp, access);
1384 break;
1385 }
1386 case 12:
1387 {
1388 struct Expression * e;
1389
1390 CheckPublicExpression(exp->cond.cond, access);
1391 for(e = (*exp->cond.exp).first; e; e = e->next)
1392 CheckPublicExpression(e, access);
1393 CheckPublicExpression(exp->cond.elseExp, access);
1394 break;
1395 }
1396 case 13:
1397 case 28:
1398 CheckPublicExpression(exp->_new.size, access);
1399 break;
1400 case 14:
1401 case 29:
1402 CheckPublicExpression(exp->_renew.size, access);
1403 CheckPublicExpression(exp->_renew.exp, access);
1404 break;
1405 case 1:
1406 {
1407 struct MembersInit * members;
1408
1409 CheckPublicClass(exp->instance->_class->symbol, access, "define");
1410 for(members = (*exp->instance->members).first; members; members = members->next)
1411 {
1412 if(members->type == 0)
1413 {
1414 struct MemberInit * member;
1415
1416 for(member = (*members->dataMembers).first; member; member = member->next)
1417 {
1418 CheckPublicInitializer(member->initializer, access);
1419 }
1420 }
1421 }
1422 break;
1423 }
1424 }
1425 }
1426 }
1427
1428 static void CheckPublicDataType(struct Type * type, int access, char * word)
1429 {
1430 if(type)
1431 {
1432 switch(type->kind)
1433 {
1434 case 8:
1435 {
1436 CheckPublicClass(type->_class, access, word);
1437 break;
1438 }
1439 case 9:
1440 case 10:
1441 {
1442 break;
1443 }
1444 case 11:
1445 {
1446 struct Type * param;
1447
1448 CheckPublicDataType(type->returnType, access, word);
1449 for(param = type->params.first; param; param = param->next)
1450 CheckPublicDataType(param, access, word);
1451 CheckPublicClass(type->thisClass, access, word);
1452 break;
1453 }
1454 case 12:
1455 CheckPublicDataType(type->arrayType, access, word);
1456 if(type->enumClass)
1457 CheckPublicClass(type->enumClass, access, word);
1458 break;
1459 case 13:
1460 {
1461 CheckPublicDataType(type->type, access, word);
1462 break;
1463 }
1464 case 16:
1465 {
1466 break;
1467 }
1468 case 19:
1469 {
1470 CheckPublicClass(type->_class, access, word);
1471 break;
1472 }
1473 }
1474 }
1475 }
1476
1477 extern struct Identifier * GetDeclId(struct Declarator * decl);
1478
1479 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__BTNamedLink;
1480
1481 struct __ecereNameSpace__ecere__com__BTNamedLink
1482 {
1483 char *  name;
1484 struct __ecereNameSpace__ecere__com__BTNamedLink * parent;
1485 struct __ecereNameSpace__ecere__com__BTNamedLink * left;
1486 struct __ecereNameSpace__ecere__com__BTNamedLink * right;
1487 int depth;
1488 void *  data;
1489 } __attribute__ ((gcc_struct));
1490
1491 extern struct __ecereNameSpace__ecere__com__DataMember * __ecereNameSpace__ecere__com__eClass_FindDataMember(struct __ecereNameSpace__ecere__com__Class * _class, char *  name, struct __ecereNameSpace__ecere__com__Instance * module, struct __ecereNameSpace__ecere__com__DataMember **  subMemberStack, int *  subMemberStackPos);
1492
1493 struct __ecereNameSpace__ecere__sys__BTNode * __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_FindString(struct __ecereNameSpace__ecere__sys__BinaryTree * this, char *  key);
1494
1495 static void CheckMembersDefinitions(struct __ecereNameSpace__ecere__com__Class * regClass, struct __ecereNameSpace__ecere__com__DataMember * member, struct __ecereNameSpace__ecere__sys__OldList * definitions, int access)
1496 {
1497 if(definitions != (((void *)0)))
1498 {
1499 struct ClassDef * def;
1500
1501 for(def = definitions->first; def; def = def->next)
1502 {
1503 if(def->type == 2)
1504 {
1505 struct Declaration * decl = def->decl;
1506 struct __ecereNameSpace__ecere__com__DataMember * dataMember;
1507
1508 yylloc = def->loc;
1509 if(decl->type == 0)
1510 {
1511 struct Declarator * d;
1512
1513 if(decl->declarators)
1514 {
1515 for(d = (*decl->declarators).first; d; d = d->next)
1516 {
1517 struct Identifier * declId = GetDeclId(d);
1518
1519 if(declId)
1520 {
1521 if(member)
1522 {
1523 struct __ecereNameSpace__ecere__com__BTNamedLink * link = (struct __ecereNameSpace__ecere__com__BTNamedLink *)__ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_FindString(&member->membersAlpha, declId->string);
1524
1525 dataMember = link ? link->data : (((void *)0));
1526 }
1527 else
1528 dataMember = __ecereNameSpace__ecere__com__eClass_FindDataMember(regClass, declId->string, privateModule, (((void *)0)), (((void *)0)));
1529 if(dataMember)
1530 CheckPublicDataType(dataMember->dataType, (def->memberAccess == 2) ? 2 : access, __ecereNameSpace__ecere__GetTranslatedString(__thisModule, "class data member", (((void *)0))));
1531 }
1532 }
1533 }
1534 else if(decl->specifiers)
1535 {
1536 struct Specifier * spec;
1537
1538 for(spec = (*decl->specifiers).first; spec; spec = spec->next)
1539 {
1540 if(spec->type == 3 || spec->type == 4)
1541 {
1542 if(spec->definitions && !spec->id)
1543 {
1544 CheckMembersDefinitions(regClass, member, spec->definitions, (def->memberAccess == 2) ? 2 : access);
1545 }
1546 else if(spec->definitions && spec->id)
1547 {
1548 if(member)
1549 {
1550 struct __ecereNameSpace__ecere__com__BTNamedLink * link = (struct __ecereNameSpace__ecere__com__BTNamedLink *)__ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_FindString(&member->membersAlpha, spec->id->string);
1551
1552 dataMember = link ? link->data : (((void *)0));
1553 }
1554 else
1555 dataMember = __ecereNameSpace__ecere__com__eClass_FindDataMember(regClass, spec->id->string, privateModule, (((void *)0)), (((void *)0)));
1556 if(dataMember)
1557 CheckPublicDataType(dataMember->dataType, (def->memberAccess == 2) ? 2 : access, __ecereNameSpace__ecere__GetTranslatedString(__thisModule, "class data member", (((void *)0))));
1558 }
1559 }
1560 }
1561 }
1562 }
1563 else if(decl->type == 2)
1564 {
1565 CheckPublicClass(decl->inst->_class->symbol, (def->memberAccess == 2) ? 2 : access, __ecereNameSpace__ecere__GetTranslatedString(__thisModule, "class member instance", (((void *)0))));
1566 }
1567 }
1568 }
1569 }
1570 }
1571
1572 extern unsigned int inCompiler;
1573
1574 extern struct __ecereNameSpace__ecere__sys__OldList *  MkList(void);
1575
1576 extern struct __ecereNameSpace__ecere__com__Class * __ecereNameSpace__ecere__com__eSystem_FindClass(struct __ecereNameSpace__ecere__com__Instance * module, char *  name);
1577
1578 extern struct Symbol * FindClass(char *  name);
1579
1580 extern struct __ecereNameSpace__ecere__com__Property * __ecereNameSpace__ecere__com__eClass_FindProperty(struct __ecereNameSpace__ecere__com__Class * _class, char *  name, struct __ecereNameSpace__ecere__com__Instance * module);
1581
1582 extern struct __ecereNameSpace__ecere__com__Property * __ecereNameSpace__ecere__com__eClass_AddProperty(struct __ecereNameSpace__ecere__com__Class * _class, char *  name, char *  dataType, void *  setStmt, void *  getStmt, int declMode);
1583
1584 extern struct __ecereNameSpace__ecere__com__DataMember * __ecereNameSpace__ecere__com__eClass_AddDataMember(struct __ecereNameSpace__ecere__com__Class * _class, char *  name, char *  type, unsigned int size, unsigned int alignment, int declMode);
1585
1586 extern struct __ecereNameSpace__ecere__com__Method * __ecereNameSpace__ecere__com__eClass_FindMethod(struct __ecereNameSpace__ecere__com__Class * _class, char *  name, struct __ecereNameSpace__ecere__com__Instance * module);
1587
1588 extern struct __ecereNameSpace__ecere__com__Method * __ecereNameSpace__ecere__com__eClass_AddMethod(struct __ecereNameSpace__ecere__com__Class * _class, char *  name, char *  type, void *  function, int declMode);
1589
1590 extern struct External * MkExternalDeclaration(struct Declaration * declaration);
1591
1592 extern void ListAdd(struct __ecereNameSpace__ecere__sys__OldList * list, void *  item);
1593
1594 extern struct ClassDef * MkClassDefDeclaration(struct Declaration * decl);
1595
1596 extern struct Specifier * MkSpecifierName(char *  name);
1597
1598 extern struct Declarator * MkDeclaratorIdentifier(struct Identifier * id);
1599
1600 extern struct Identifier * MkIdentifier(char *  string);
1601
1602 extern struct Declaration * MkStructDeclaration(struct __ecereNameSpace__ecere__sys__OldList * specifiers, struct __ecereNameSpace__ecere__sys__OldList * declarators, struct Specifier * extStorage);
1603
1604 extern struct Expression * QMkExpId(char *  id);
1605
1606 extern void FreeDeclarator(struct Declarator * decl);
1607
1608 extern void FreeList(struct __ecereNameSpace__ecere__sys__OldList * list, void (* )(void * ));
1609
1610 extern void FreeSpecifier(struct Specifier * spec);
1611
1612 extern char *  __ecereNameSpace__ecere__sys__CopyString(char *  string);
1613
1614 extern struct Type * MkClassType(char *  name);
1615
1616 extern char *  strcpy(char * , const char * );
1617
1618 extern struct Specifier * MkStructOrUnion(int type, struct Identifier * id, struct __ecereNameSpace__ecere__sys__OldList * definitions);
1619
1620 extern struct __ecereNameSpace__ecere__sys__OldList *  MkListOne(void *  item);
1621
1622 extern struct Declaration * MkDeclaration(struct __ecereNameSpace__ecere__sys__OldList * specifiers, struct __ecereNameSpace__ecere__sys__OldList * initDeclarators);
1623
1624 extern void FreeExternal(struct External * external);
1625
1626 extern int declMode;
1627
1628 extern char *  strstr(const char * , const char * );
1629
1630 extern char *  sourceFile;
1631
1632 extern struct Specifier * MkSpecifier(int specifier);
1633
1634 extern struct InitDeclarator * MkInitDeclarator(struct Declarator * declarator, struct Initializer * initializer);
1635
1636 extern struct Declarator * MkDeclaratorPointer(struct Pointer * pointer, struct Declarator * declarator);
1637
1638 extern struct Pointer * MkPointer(struct __ecereNameSpace__ecere__sys__OldList * qualifiers, struct Pointer * pointer);
1639
1640 extern struct Context * PushContext(void);
1641
1642 extern struct Expression * MkExpOp(struct Expression * exp1, int op, struct Expression * exp2);
1643
1644 extern struct Expression * CopyExpression(struct Expression * exp);
1645
1646 extern struct Statement * MkExpressionStmt(struct __ecereNameSpace__ecere__sys__OldList * expressions);
1647
1648 extern struct Statement * MkCompoundStmt(struct __ecereNameSpace__ecere__sys__OldList * declarations, struct __ecereNameSpace__ecere__sys__OldList * statements);
1649
1650 extern void PopContext(struct Context * ctx);
1651
1652 extern struct Declarator * MkDeclaratorFunction(struct Declarator * declarator, struct __ecereNameSpace__ecere__sys__OldList * parameters);
1653
1654 extern struct __ecereNameSpace__ecere__sys__OldList *  excludedSymbols;
1655
1656 extern struct ClassFunction * MkClassFunction(struct __ecereNameSpace__ecere__sys__OldList * specifiers, struct Specifier * _class, struct Declarator * decl, struct __ecereNameSpace__ecere__sys__OldList * declList);
1657
1658 extern void ProcessClassFunctionBody(struct ClassFunction * func, struct Statement * body);
1659
1660 extern struct ClassDef * MkClassDefFunction(struct ClassFunction * function);
1661
1662 extern struct Specifier * CopySpecifier(struct Specifier * spec);
1663
1664 extern struct Expression * MkExpInstance(struct Instantiation * inst);
1665
1666 extern struct Expression * MkExpCall(struct Expression * expression, struct __ecereNameSpace__ecere__sys__OldList * arguments);
1667
1668 extern struct Expression * MkExpIdentifier(struct Identifier * id);
1669
1670 extern struct Expression * MkExpMember(struct Expression * expression, struct Identifier * member);
1671
1672 extern void FreeInitializer(struct Initializer * initializer);
1673
1674 extern struct Statement * MkReturnStmt(struct __ecereNameSpace__ecere__sys__OldList * exp);
1675
1676 extern struct TypeName * MkTypeName(struct __ecereNameSpace__ecere__sys__OldList * qualifiers, struct Declarator * declarator);
1677
1678 extern struct __ecereNameSpace__ecere__sys__OldList *  CopyList(struct __ecereNameSpace__ecere__sys__OldList *  source, void *  (* )(void * ));
1679
1680 extern struct Declarator * PlugDeclarator(struct Declarator * decl, struct Declarator * baseDecl);
1681
1682 extern struct __ecereNameSpace__ecere__sys__OldList *  ast;
1683
1684 extern int sprintf(char * , char * , ...);
1685
1686 extern struct Type * ProcessType(struct __ecereNameSpace__ecere__sys__OldList * specs, struct Declarator * decl);
1687
1688 extern struct Context * curContext;
1689
1690 extern struct Initializer * MkInitializerAssignment(struct Expression * exp);
1691
1692 extern struct Expression * MkExpCast(struct TypeName * typeName, struct Expression * expression);
1693
1694 extern struct Declarator * CopyDeclarator(struct Declarator * declarator);
1695
1696 extern void FreeType(struct Type * type);
1697
1698 extern struct Declarator * GetFuncDecl(struct Declarator * decl);
1699
1700 extern void ProcessMethodType(struct __ecereNameSpace__ecere__com__Method * method);
1701
1702 extern void FreeInitDeclarator(struct InitDeclarator * decl);
1703
1704 extern void *  __ecereNameSpace__ecere__com__eInstance_New(struct __ecereNameSpace__ecere__com__Class * _class);
1705
1706 unsigned int __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert(struct __ecereNameSpace__ecere__sys__OldList * this, void *  prevItem, void *  item);
1707
1708 unsigned int __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Add(struct __ecereNameSpace__ecere__sys__BinaryTree * this, struct __ecereNameSpace__ecere__sys__BTNode * node);
1709
1710 void __ecereMethod___ecereNameSpace__ecere__sys__OldList_Remove(struct __ecereNameSpace__ecere__sys__OldList * this, void *  item);
1711
1712 void __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(struct __ecereNameSpace__ecere__sys__OldList * this, void *  item);
1713
1714 void __ecereMethod___ecereNameSpace__ecere__sys__OldList_Clear(struct __ecereNameSpace__ecere__sys__OldList * this);
1715
1716 static void ProcessClass(int classType, struct __ecereNameSpace__ecere__sys__OldList * definitions, struct Symbol * symbol, struct __ecereNameSpace__ecere__sys__OldList * baseSpecs, struct __ecereNameSpace__ecere__sys__OldList * enumValues, struct Location * loc, struct __ecereNameSpace__ecere__sys__OldList * defs, void * after, struct __ecereNameSpace__ecere__sys__OldList * initDeclarators, struct ExtDecl * extDecl)
1717 {
1718 void * __ecereTemp1;
1719 char structName[1024];
1720 char className[1024];
1721 char constructorName[1024];
1722 char destructorName[1024];
1723 struct __ecereNameSpace__ecere__com__Class * regClass;
1724 struct ClassFunction * destructor = (((void *)0)), * constructor = (((void *)0));
1725 unsigned int redefinition = 0x0;
1726 unsigned int isUnion = classType == 6;
1727 struct External * external = (((void *)0));
1728 struct ClassDef * def;
1729 struct __ecereNameSpace__ecere__sys__OldList * list;
1730 struct __ecereNameSpace__ecere__sys__OldList * classDataList;
1731
1732 if(inCompiler)
1733 {
1734 list = MkList();
1735 classDataList = MkList();
1736 }
1737 regClass = __ecereNameSpace__ecere__com__eSystem_FindClass(privateModule, symbol->string);
1738 if(!regClass)
1739 return ;
1740 classType = regClass->type;
1741 if(inCompiler)
1742 {
1743 yylloc = *loc;
1744 if(!NameSpaceContained(regClass->nameSpace, &((struct __ecereNameSpace__ecere__com__Module *)(((char *)regClass->module + structSize_Instance)))->privateNameSpace) && regClass->inheritanceAccess == 1)
1745 {
1746 if(!regClass->base->symbol)
1747 regClass->base->symbol = FindClass(regClass->base->fullName);
1748 CheckPublicClass(regClass->base->symbol, 1, __ecereNameSpace__ecere__GetTranslatedString(__thisModule, "class", (((void *)0))));
1749 }
1750 else if(!symbol->isStatic && regClass->base)
1751 {
1752 if(!regClass->base->symbol)
1753 regClass->base->symbol = FindClass(regClass->base->fullName);
1754 CheckPublicClass(regClass->base->symbol, 2, __ecereNameSpace__ecere__GetTranslatedString(__thisModule, "class", (((void *)0))));
1755 }
1756 }
1757 if(definitions != (((void *)0)))
1758 {
1759 for(def = definitions->first; def; def = def->next)
1760 {
1761 if(def->type == 13)
1762 {
1763 struct __ecereNameSpace__ecere__com__DataMember * member;
1764 struct __ecereNameSpace__ecere__com__Property * prop;
1765 struct __ecereNameSpace__ecere__com__Method * method;
1766
1767 if((prop = __ecereNameSpace__ecere__com__eClass_FindProperty(regClass, def->id->string, privateModule)))
1768 {
1769 __ecereNameSpace__ecere__com__eClass_AddProperty(regClass, def->id->string, (((void *)0)), (((void *)0)), (((void *)0)), def->memberAccess);
1770 }
1771 else if((member = __ecereNameSpace__ecere__com__eClass_FindDataMember(regClass, def->id->string, privateModule, (((void *)0)), (((void *)0)))))
1772 {
1773 __ecereNameSpace__ecere__com__eClass_AddDataMember(regClass, def->id->string, (((void *)0)), 0, 0, def->memberAccess);
1774 }
1775 else if((method = __ecereNameSpace__ecere__com__eClass_FindMethod(regClass, def->id->string, privateModule)))
1776 {
1777 __ecereNameSpace__ecere__com__eClass_AddMethod(regClass, def->id->string, (((void *)0)), (((void *)0)), def->memberAccess);
1778 }
1779 else
1780 {
1781 yylloc = def->loc;
1782 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString(__thisModule, "Couldn't find member %s to override\n", (((void *)0))), def->id->string);
1783 }
1784 }
1785 }
1786 }
1787 if(inCompiler)
1788 {
1789 external = MkExternalDeclaration((((void *)0)));
1790 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert(defs, after, external);
1791 curExternal = external;
1792 curExternal->symbol = symbol;
1793 }
1794 if((classType == 1 || classType == 5) && inCompiler)
1795 {
1796 AddSimpleBaseMembers(list, regClass->base, regClass);
1797 }
1798 if(definitions != (((void *)0)))
1799 {
1800 if(inCompiler)
1801 {
1802 if(!NameSpaceContained(regClass->nameSpace, &((struct __ecereNameSpace__ecere__com__Module *)(((char *)regClass->module + structSize_Instance)))->privateNameSpace))
1803 CheckMembersDefinitions(regClass, (((void *)0)), definitions, 1);
1804 else if(!symbol->isStatic)
1805 CheckMembersDefinitions(regClass, (((void *)0)), definitions, 2);
1806 }
1807 for(def = definitions->first; def; def = def->next)
1808 {
1809 if(def->type == 2)
1810 {
1811 struct Declaration * decl = def->decl;
1812
1813 if(decl->type == 0)
1814 {
1815 if(inCompiler && classType != 2)
1816 {
1817 ListAdd(list, MkClassDefDeclaration(decl));
1818 def->decl = (((void *)0));
1819 }
1820 }
1821 else if(decl->type == 2)
1822 {
1823 struct Instantiation * inst = decl->inst;
1824 struct Expression * exp = inst->exp;
1825 struct Symbol * classSym;
1826
1827 if(exp)
1828 {
1829 struct __ecereNameSpace__ecere__sys__OldList * specifiers = MkList();
1830 struct Declarator * d;
1831
1832 ListAdd(specifiers, MkSpecifierName(inst->_class->name));
1833 d = MkDeclaratorIdentifier(MkIdentifier(exp->identifier->string));
1834 if(inCompiler)
1835 {
1836 struct __ecereNameSpace__ecere__sys__OldList * declarators = MkList();
1837
1838 ListAdd(declarators, d);
1839 decl = MkStructDeclaration(specifiers, declarators, (((void *)0)));
1840 ListAdd(list, MkClassDefDeclaration(decl));
1841 exp->type = 8;
1842 exp->member.member = exp->identifier;
1843 exp->member.exp = QMkExpId("this");
1844 exp->member.memberType = 3;
1845 exp->member.thisPtr = 0x1;
1846 }
1847 else
1848 {
1849 FreeDeclarator(d);
1850 FreeList(specifiers, FreeSpecifier);
1851 }
1852 }
1853 classSym = inst->_class->symbol;
1854 if(classSym && classSym->registered && (classSym->registered->type == 1 || classSym->registered->type == 2 || classSym->registered->type == 3))
1855 {
1856 if(inst->members && (*inst->members).count)
1857 symbol->needConstructor = 0x1;
1858 }
1859 else
1860 {
1861 symbol->needConstructor = 0x1;
1862 symbol->needDestructor = 0x1;
1863 }
1864 }
1865 }
1866 else if(def->type == 9)
1867 {
1868 struct Declaration * decl = def->decl;
1869
1870 if(decl->type == 0)
1871 {
1872 if(inCompiler && classType != 2)
1873 {
1874 ListAdd(classDataList, MkClassDefDeclaration(decl));
1875 def->decl = (((void *)0));
1876 }
1877 }
1878 }
1879 else if(def->type == 1)
1880 symbol->needConstructor = 0x1;
1881 else if(def->type == 4)
1882 symbol->needConstructor = 0x1;
1883 else if(def->type == 0)
1884 {
1885 struct ClassFunction * func = def->function;
1886
1887 if(func->isDestructor)
1888 {
1889 if(destructor)
1890 {
1891 yylloc = *loc;
1892 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString(__thisModule, "redefinition of destructor for class %s\n", (((void *)0))), symbol->string);
1893 }
1894 else
1895 {
1896 symbol->needDestructor = 0x1;
1897 destructor = func;
1898 if(!inCompiler && func->body)
1899 {
1900 struct Symbol * thisSymbol = (thisSymbol = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol), thisSymbol->string = __ecereNameSpace__ecere__sys__CopyString("this"), thisSymbol->type = MkClassType(regClass->fullName), thisSymbol);
1901
1902 __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Add(&func->body->compound.context->symbols, (struct __ecereNameSpace__ecere__sys__BTNode *)thisSymbol);
1903 }
1904 }
1905 }
1906 if(func->isConstructor)
1907 {
1908 if(constructor)
1909 {
1910 yylloc = *loc;
1911 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString(__thisModule, "redefinition of constructor for class %s\n", (((void *)0))), symbol->string);
1912 }
1913 else
1914 {
1915 symbol->needConstructor = 0x1;
1916 constructor = func;
1917 if(!inCompiler && func->body)
1918 {
1919 struct Symbol * thisSymbol = (thisSymbol = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol), thisSymbol->string = __ecereNameSpace__ecere__sys__CopyString("this"), thisSymbol->type = MkClassType(regClass->fullName), thisSymbol);
1920
1921 __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Add(&func->body->compound.context->symbols, (struct __ecereNameSpace__ecere__sys__BTNode *)thisSymbol);
1922 }
1923 }
1924 }
1925 }
1926 }
1927 }
1928 if(inCompiler)
1929 {
1930 external->symbol = (((void *)0));
1931 if((*list).count)
1932 {
1933 struct __ecereNameSpace__ecere__sys__OldList * specs = MkList(), * declarators = (initDeclarators != (((void *)0))) ? initDeclarators : MkList();
1934
1935 initDeclarators = (((void *)0));
1936 strcpy(structName, symbol->string);
1937 symbol->structName = __ecereNameSpace__ecere__sys__CopyString(structName);
1938 {
1939 struct Specifier * spec = MkStructOrUnion(3, MkIdentifier(structName), isUnion ? MkListOne(MkClassDefDeclaration(MkStructDeclaration(MkListOne(MkStructOrUnion(4, (((void *)0)), list)), (((void *)0)), (((void *)0))))) : list);
1940
1941 spec->extDeclStruct = extDecl;
1942 ListAdd(specs, spec);
1943 }
1944 external->symbol = symbol;
1945 symbol->structExternal = external;
1946 external->declaration = MkDeclaration(specs, declarators);
1947 after = external;
1948 symbol->declaredStruct = 0x1;
1949 }
1950 else
1951 {
1952 curExternal = external->prev;
1953 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Remove(defs, external);
1954 FreeExternal(external);
1955 (__ecereNameSpace__ecere__com__eSystem_Delete(list), list = 0);
1956 }
1957 if((*classDataList).count)
1958 {
1959 char classDataStructName[1024];
1960 struct __ecereNameSpace__ecere__sys__OldList * specs = MkList();
1961 struct External * external;
1962
1963 strcpy(classDataStructName, "__ecereClassData_");
1964 FullClassNameCat(classDataStructName, symbol->string, 0x0);
1965 declMode = 0;
1966 ListAdd(specs, MkStructOrUnion(3, MkIdentifier(classDataStructName), classDataList));
1967 external = MkExternalDeclaration(MkDeclaration(specs, (((void *)0))));
1968 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert(defs, after, external);
1969 after = external;
1970 symbol->classData = 0x1;
1971 }
1972 else
1973 (__ecereNameSpace__ecere__com__eSystem_Delete(classDataList), classDataList = 0);
1974 }
1975 if(inCompiler)
1976 {
1977 {
1978 struct __ecereNameSpace__ecere__sys__OldList * specs = MkList(), * declarators = MkList();
1979
1980 strcpy(className, "__ecereClass_");
1981 FullClassNameCat(className, symbol->string, 0x1);
1982 MangleClassName(className);
1983 symbol->className = __ecereNameSpace__ecere__sys__CopyString(className);
1984 if(!strstr(sourceFile, ".main.ec"))
1985 ListAdd(specs, MkSpecifier(STATIC));
1986 ListAdd(specs, MkStructOrUnion(3, MkIdentifier("__ecereNameSpace__ecere__com__Class"), (((void *)0))));
1987 ListAdd(declarators, MkInitDeclarator(MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), MkDeclaratorIdentifier(MkIdentifier(className))), (((void *)0))));
1988 symbol->methodExternal = MkExternalDeclaration(MkDeclaration(specs, declarators));
1989 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert(defs, after, symbol->methodExternal);
1990 after = symbol->methodExternal;
1991 }
1992 if(symbol->needDestructor)
1993 {
1994 struct ClassFunction * function;
1995 struct __ecereNameSpace__ecere__sys__OldList * specs = MkList();
1996 struct Declarator * decl;
1997 struct Statement * body;
1998 struct Context * context;
1999 struct __ecereNameSpace__ecere__sys__OldList * declarations = (((void *)0)), * statements;
2000
2001 strcpy(destructorName, "__ecereDestructor_");
2002 FullClassNameCat(destructorName, symbol->string, 0x0);
2003 symbol->destructorName = __ecereNameSpace__ecere__sys__CopyString(destructorName);
2004 ListAdd(specs, MkSpecifier(VOID));
2005 context = PushContext();
2006 statements = MkList();
2007 if(definitions != (((void *)0)))
2008 {
2009 for(def = definitions->first; def; def = def->next)
2010 {
2011 if(def->type == 2 && def->decl && def->decl->type == 2)
2012 {
2013 struct Instantiation * inst = def->decl->inst;
2014 struct Symbol * classSym = inst->_class->symbol;
2015
2016 if(inst->exp && (!classSym || !classSym->registered || classSym->registered->type == 0))
2017 {
2018 struct Expression * exp = MkExpOp((((void *)0)), DELETE, CopyExpression(inst->exp));
2019
2020 ListAdd(statements, MkExpressionStmt(MkListOne(exp)));
2021 }
2022 if(inst->exp && (!classSym || !classSym->registered || classSym->registered->type == 5))
2023 {
2024 struct Expression * exp = MkExpOp((((void *)0)), DELETE, CopyExpression(inst->exp));
2025
2026 ListAdd(statements, MkExpressionStmt(MkListOne(exp)));
2027 }
2028 }
2029 }
2030 }
2031 if(destructor && destructor->body)
2032 {
2033 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*statements), (((void *)0)), destructor->body);
2034 destructor->body->compound.context->parent = context;
2035 destructor->body = (((void *)0));
2036 }
2037 body = MkCompoundStmt(declarations, statements);
2038 PopContext(context);
2039 body->compound.context = context;
2040 decl = MkDeclaratorFunction(MkDeclaratorIdentifier(MkIdentifier(destructorName)), (((void *)0)));
2041 decl->symbol = (__ecereTemp1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol), ((struct Symbol *)__ecereTemp1)->id = symbol->id, ((struct Symbol *)__ecereTemp1)->idCode = symbol->idCode, ((struct Symbol *)__ecereTemp1));
2042 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add((&*excludedSymbols), decl->symbol);
2043 function = MkClassFunction(specs, (((void *)0)), decl, (((void *)0)));
2044 ProcessClassFunctionBody(function, body);
2045 function->id = symbol->id;
2046 function->idCode = symbol->idCode;
2047 function->dontMangle = 0x1;
2048 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert(definitions, (((void *)0)), MkClassDefFunction(function));
2049 }
2050 if(symbol->needConstructor && inCompiler)
2051 {
2052 struct ClassFunction * function;
2053 struct __ecereNameSpace__ecere__sys__OldList * specs = MkList();
2054 struct Declarator * decl;
2055 struct Statement * body;
2056 struct Context * context;
2057 struct __ecereNameSpace__ecere__sys__OldList * declarations = (((void *)0)), * statements;
2058
2059 strcpy(constructorName, "__ecereConstructor_");
2060 FullClassNameCat(constructorName, symbol->string, 0x0);
2061 symbol->constructorName = __ecereNameSpace__ecere__sys__CopyString(constructorName);
2062 ListAdd(specs, MkSpecifierName("bool"));
2063 context = PushContext();
2064 statements = MkList();
2065 if(definitions != (((void *)0)))
2066 {
2067 for(def = definitions->first; def; def = def->next)
2068 {
2069 if(def->type == 2 && def->decl && def->decl->type == 2)
2070 {
2071 struct Instantiation * inst = def->decl->inst;
2072 struct Symbol * classSym = inst->_class->symbol;
2073
2074 if(inst->exp && (!classSym || !classSym->registered || classSym->registered->type == 0 || classSym->registered->type == 5))
2075 {
2076 struct Instantiation * newInst = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Instantiation);
2077
2078 *newInst = *inst;
2079 newInst->members = (((void *)0));
2080 newInst->exp = CopyExpression(inst->exp);
2081 newInst->_class = CopySpecifier(inst->_class);
2082 ListAdd(statements, MkExpressionStmt(MkListOne(MkExpInstance(newInst))));
2083 inst->built = 0x1;
2084 }
2085 if(inst->exp && (!classSym || !classSym->registered || classSym->registered->type == 0))
2086 {
2087 ListAdd(statements, MkExpressionStmt(MkListOne(MkExpCall(MkExpIdentifier(MkIdentifier("ecere::com::eInstance_IncRef")), MkListOne(CopyExpression(inst->exp))))));
2088 }
2089 }
2090 }
2091 for(def = definitions->first; def; def = def->next)
2092 {
2093 if(def->type == 1 && def->defProperties)
2094 {
2095 struct MemberInit * propertyDef;
2096
2097 for(propertyDef = (*def->defProperties).first; propertyDef; propertyDef = propertyDef->next)
2098 {
2099 struct Expression * memberExp;
2100 struct Identifier * id = (*propertyDef->identifiers).first;
2101
2102 if(id)
2103 {
2104 memberExp = MkExpMember(MkExpIdentifier(MkIdentifier("this")), id);
2105 for(id = id->next; id; id = id->next)
2106 memberExp = MkExpMember(memberExp, id);
2107 ListAdd(statements, MkExpressionStmt(MkListOne(MkExpOp(memberExp, '=', (propertyDef->initializer && propertyDef->initializer->type == 0 ? propertyDef->initializer->exp : (((void *)0)))))));
2108 }
2109 if(propertyDef->initializer)
2110 {
2111 if(propertyDef->initializer->type == 0)
2112 propertyDef->initializer->exp = (((void *)0));
2113 FreeInitializer(propertyDef->initializer);
2114 }
2115 propertyDef->initializer = (((void *)0));
2116 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Clear((&*propertyDef->identifiers));
2117 }
2118 }
2119 }
2120 for(def = definitions->first; def; def = def->next)
2121 {
2122 if(def->type == 2 && def->decl && def->decl->type == 2)
2123 {
2124 struct Instantiation * inst = def->decl->inst;
2125 struct Symbol * classSym = inst->_class->symbol;
2126
2127 if(inst->exp || (!classSym || !classSym->registered || classSym->registered->type == 0 || classSym->registered->type == 5))
2128 {
2129 if(!(inst->exp && (!classSym || !classSym->registered || classSym->registered->type == 0 || classSym->registered->type == 5)) || (inst->members && (*inst->members).count))
2130 {
2131 def->decl->inst = (((void *)0));
2132 ListAdd(statements, MkExpressionStmt(MkListOne(MkExpInstance(inst))));
2133 }
2134 }
2135 }
2136 }
2137 }
2138 if(constructor && constructor->body)
2139 {
2140 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add((&*statements), constructor->body);
2141 constructor->body->compound.context->parent = context;
2142 constructor->body = (((void *)0));
2143 }
2144 ListAdd(statements, MkReturnStmt(MkListOne(MkExpIdentifier(MkIdentifier("true")))));
2145 body = MkCompoundStmt(declarations, statements);
2146 PopContext(context);
2147 body->compound.context = context;
2148 decl = MkDeclaratorFunction(MkDeclaratorIdentifier(MkIdentifier(constructorName)), (((void *)0)));
2149 decl->symbol = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol);
2150 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add((&*excludedSymbols), decl->symbol);
2151 decl->symbol->id = symbol->id;
2152 decl->symbol->idCode = symbol->idCode;
2153 function = MkClassFunction(specs, (((void *)0)), decl, (((void *)0)));
2154 ProcessClassFunctionBody(function, body);
2155 function->id = symbol->id;
2156 function->idCode = symbol->idCode;
2157 function->dontMangle = 0x1;
2158 if(definitions != (((void *)0)))
2159 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert(definitions, (((void *)0)), MkClassDefFunction(function));
2160 }
2161 }
2162 if(definitions != (((void *)0)))
2163 {
2164 for(def = definitions->first; def; def = def->next)
2165 {
2166 if(def->type == 3 && def->propertyDef)
2167 {
2168 struct PropertyDef * propertyDef = def->propertyDef;
2169 struct ClassDef * after = def;
2170 struct ClassDef * newDef;
2171
2172 if(inCompiler)
2173 {
2174 yylloc = propertyDef->loc;
2175 if(!NameSpaceContained(regClass->nameSpace, &((struct __ecereNameSpace__ecere__com__Module *)(((char *)regClass->module + structSize_Instance)))->privateNameSpace) && def->memberAccess == 1)
2176 CheckPublicDataType(propertyDef->symbol->type, 1, "class property");
2177 else if(!symbol->isStatic)
2178 CheckPublicDataType(propertyDef->symbol->type, 2, "class property");
2179 }
2180 {
2181 {
2182 struct ClassFunction * func;
2183 struct Declarator * decl;
2184 char name[1024];
2185 struct __ecereNameSpace__ecere__sys__OldList * params;
2186
2187 if(propertyDef->getStmt && propertyDef->id)
2188 {
2189 strcpy(name, "__ecereProp_");
2190 FullClassNameCat(name, symbol->string, 0x0);
2191 strcat(name, "_Get_");
2192 FullClassNameCat(name, propertyDef->id->string, 0x1);
2193 MangleClassName(name);
2194 params = MkList();
2195 if(propertyDef->symbol->type && propertyDef->symbol->type->kind == 8 && propertyDef->symbol->type->_class && propertyDef->symbol->type->_class->registered && propertyDef->symbol->type->_class->registered->type == 1)
2196 {
2197 ListAdd(params, MkTypeName(CopyList(propertyDef->specifiers, CopySpecifier), MkDeclaratorIdentifier(MkIdentifier("value"))));
2198 decl = PlugDeclarator(propertyDef->declarator, MkDeclaratorFunction(MkDeclaratorIdentifier(MkIdentifier(name)), params));
2199 func = MkClassFunction(MkListOne(MkSpecifier(VOID)), (((void *)0)), decl, (((void *)0)));
2200 }
2201 else
2202 {
2203 decl = PlugDeclarator(propertyDef->declarator, MkDeclaratorFunction(MkDeclaratorIdentifier(MkIdentifier(name)), params));
2204 func = MkClassFunction(CopyList(propertyDef->specifiers, CopySpecifier), (((void *)0)), decl, (((void *)0)));
2205 }
2206 ProcessClassFunctionBody(func, propertyDef->getStmt);
2207 func->declarator->symbol = propertyDef->symbol;
2208 propertyDef->symbol->externalGet = (struct External *)func;
2209 func->dontMangle = 0x1;
2210 newDef = MkClassDefFunction(func);
2211 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert(definitions, after, newDef);
2212 after = newDef;
2213 if(inCompiler)
2214 propertyDef->getStmt = (((void *)0));
2215 else
2216 func->body = (((void *)0));
2217 }
2218 if(propertyDef->setStmt && propertyDef->id)
2219 {
2220 struct __ecereNameSpace__ecere__sys__OldList * specifiers = MkList();
2221
2222 strcpy(name, "__ecereProp_");
2223 FullClassNameCat(name, symbol->string, 0x0);
2224 strcat(name, "_Set_");
2225 FullClassNameCat(name, propertyDef->id->string, 0x1);
2226 MangleClassName(name);
2227 params = MkList();
2228 ListAdd(params, MkTypeName(CopyList(propertyDef->specifiers, CopySpecifier), PlugDeclarator(propertyDef->declarator, MkDeclaratorIdentifier(MkIdentifier("value")))));
2229 decl = MkDeclaratorFunction(MkDeclaratorIdentifier(MkIdentifier(name)), params);
2230 if(!propertyDef->symbol->_property || !propertyDef->symbol->_property->conversion)
2231 ListAdd(specifiers, MkSpecifier(VOID));
2232 else
2233 {
2234 if(regClass->type == 1)
2235 ListAdd(specifiers, MkSpecifier(VOID));
2236 else
2237 ListAdd(specifiers, MkSpecifierName(regClass->fullName));
2238 }
2239 func = MkClassFunction(specifiers, (((void *)0)), decl, (((void *)0)));
2240 ProcessClassFunctionBody(func, propertyDef->setStmt);
2241 func->dontMangle = 0x1;
2242 func->declarator->symbol = propertyDef->symbol;
2243 propertyDef->symbol->externalSet = (struct External *)func;
2244 if(!propertyDef->conversion && regClass->type == 0)
2245 func->propSet = propertyDef->symbol;
2246 newDef = MkClassDefFunction(func);
2247 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert(definitions, after, newDef);
2248 after = newDef;
2249 if(inCompiler)
2250 propertyDef->setStmt = (((void *)0));
2251 else
2252 func->body = (((void *)0));
2253 }
2254 if(propertyDef->issetStmt && propertyDef->id)
2255 {
2256 struct __ecereNameSpace__ecere__sys__OldList * specifiers = MkList();
2257
2258 strcpy(name, "__ecereProp_");
2259 FullClassNameCat(name, symbol->string, 0x0);
2260 strcat(name, "_IsSet_");
2261 FullClassNameCat(name, propertyDef->id->string, 0x1);
2262 MangleClassName(name);
2263 params = MkList();
2264 decl = MkDeclaratorFunction(MkDeclaratorIdentifier(MkIdentifier(name)), params);
2265 ListAdd(specifiers, MkSpecifierName("bool"));
2266 func = MkClassFunction(specifiers, (((void *)0)), decl, (((void *)0)));
2267 ProcessClassFunctionBody(func, propertyDef->issetStmt);
2268 func->dontMangle = 0x1;
2269 func->declarator->symbol = propertyDef->symbol;
2270 propertyDef->symbol->externalIsSet = (struct External *)func;
2271 newDef = MkClassDefFunction(func);
2272 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert(definitions, after, newDef);
2273 after = newDef;
2274 if(inCompiler)
2275 propertyDef->issetStmt = (((void *)0));
2276 else
2277 func->body = (((void *)0));
2278 }
2279 if(propertyDef->id && inCompiler)
2280 {
2281 struct __ecereNameSpace__ecere__com__Property * prop = __ecereNameSpace__ecere__com__eClass_FindProperty(symbol->registered, propertyDef->id->string, privateModule);
2282 struct Declaration * decl;
2283 struct External * external;
2284 struct __ecereNameSpace__ecere__sys__OldList * specifiers = MkList();
2285
2286 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*specifiers), (((void *)0)), MkSpecifier(STATIC));
2287 ListAdd(specifiers, MkSpecifierName("Property"));
2288 strcpy(name, "__ecereProp_");
2289 FullClassNameCat(name, symbol->string, 0x0);
2290 strcat(name, "_");
2291 FullClassNameCat(name, propertyDef->id->string, 0x1);
2292 MangleClassName(name);
2293 {
2294 struct __ecereNameSpace__ecere__sys__OldList * list = MkList();
2295
2296 ListAdd(list, MkInitDeclarator(MkDeclaratorIdentifier(MkIdentifier(name)), (((void *)0))));
2297 strcpy(name, "__ecerePropM_");
2298 FullClassNameCat(name, symbol->string, 0x0);
2299 strcat(name, "_");
2300 FullClassNameCat(name, propertyDef->id->string, 0x1);
2301 MangleClassName(name);
2302 ListAdd(list, MkInitDeclarator(MkDeclaratorIdentifier(MkIdentifier(name)), (((void *)0))));
2303 decl = MkDeclaration(specifiers, list);
2304 }
2305 external = MkExternalDeclaration(decl);
2306 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*ast), curExternal ? curExternal->prev : (((void *)0)), external);
2307 external->symbol = propertyDef->symbol;
2308 propertyDef->symbol->externalPtr = external;
2309 if(inCompiler && prop && prop->symbol)
2310 ((struct Symbol *)prop->symbol)->externalPtr = external;
2311 }
2312 }
2313 }
2314 }
2315 else if(def->type == 10 && def->propertyDef)
2316 {
2317 struct PropertyDef * propertyDef = def->propertyDef;
2318 struct ClassDef * after = def;
2319 struct ClassDef * newDef;
2320
2321 {
2322 if(inCompiler)
2323 {
2324 yylloc = propertyDef->loc;
2325 if(!NameSpaceContained(regClass->nameSpace, &((struct __ecereNameSpace__ecere__com__Module *)(((char *)regClass->module + structSize_Instance)))->privateNameSpace))
2326 CheckPublicDataType(propertyDef->symbol->type, 1, "classwide property");
2327 else if(!symbol->isStatic)
2328 CheckPublicDataType(propertyDef->symbol->type, 2, "classwide property");
2329 }
2330 {
2331 struct ClassFunction * func;
2332 struct Declarator * decl;
2333 char name[1024];
2334 struct __ecereNameSpace__ecere__sys__OldList * params;
2335
2336 if(propertyDef->getStmt && propertyDef->id)
2337 {
2338 struct Declarator * declId;
2339
2340 sprintf(name, "class::__ecereClassProp_");
2341 FullClassNameCat(name, symbol->string, 0x0);
2342 strcat(name, "_Get_");
2343 strcat(name, propertyDef->id->string);
2344 MangleClassName(name);
2345 params = MkList();
2346 declId = MkDeclaratorIdentifier(MkIdentifier(name));
2347 {
2348 decl = MkDeclaratorFunction(declId, params);
2349 func = MkClassFunction(MkListOne(MkSpecifierName("uint64")), (((void *)0)), decl, (((void *)0)));
2350 }
2351 ProcessClassFunctionBody(func, propertyDef->getStmt);
2352 func->declarator->symbol = propertyDef->symbol;
2353 propertyDef->symbol->externalGet = (struct External *)func;
2354 func->dontMangle = 0x1;
2355 newDef = MkClassDefFunction(func);
2356 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert(definitions, after, newDef);
2357 after = newDef;
2358 func->type = ProcessType(propertyDef->specifiers, MkDeclaratorFunction(propertyDef->declarator, (((void *)0))));
2359 if(func->type->returnType->kind == 8 && func->type->returnType->_class && func->type->returnType->_class->registered && func->type->returnType->_class->registered->type == 1)
2360 func->type->returnType->byReference = 0x1;
2361 if(inCompiler)
2362 propertyDef->getStmt = (((void *)0));
2363 else
2364 func->body = (((void *)0));
2365 }
2366 if(propertyDef->setStmt && propertyDef->id)
2367 {
2368 struct Context * prevCurContext;
2369 struct __ecereNameSpace__ecere__sys__OldList * specifiers = MkList();
2370 struct Statement * body = propertyDef->setStmt;
2371 struct Declarator * ptrDecl;
2372
2373 strcpy(name, "class::__ecereClassProp_");
2374 FullClassNameCat(name, symbol->string, 0x0);
2375 strcat(name, "_Set_");
2376 strcat(name, propertyDef->id->string);
2377 MangleClassName(name);
2378 params = MkList();
2379 prevCurContext = curContext;
2380 curContext = body->compound.context;
2381 ListAdd(params, MkTypeName(MkListOne(MkSpecifierName("uint64")), MkDeclaratorIdentifier(MkIdentifier("_value"))));
2382 decl = MkDeclaratorFunction(MkDeclaratorIdentifier(MkIdentifier(name)), params);
2383 if(!body->compound.declarations)
2384 body->compound.declarations = MkList();
2385 if(propertyDef->symbol->type && propertyDef->symbol->type->kind == 8 && propertyDef->symbol->type->_class && propertyDef->symbol->type->_class->registered && propertyDef->symbol->type->_class->registered->type == 1)
2386 ptrDecl = MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), PlugDeclarator(propertyDef->declarator, MkDeclaratorIdentifier(MkIdentifier("value"))));
2387 else
2388 ptrDecl = PlugDeclarator(propertyDef->declarator, MkDeclaratorIdentifier(MkIdentifier("value")));
2389 ListAdd(body->compound.declarations, MkDeclaration(CopyList(propertyDef->specifiers, CopySpecifier), MkListOne(MkInitDeclarator(ptrDecl, MkInitializerAssignment(MkExpCast(MkTypeName(CopyList(propertyDef->specifiers, CopySpecifier), CopyDeclarator(propertyDef->declarator)), MkExpIdentifier(MkIdentifier("_value"))))))));
2390 curContext = prevCurContext;
2391 {
2392 struct Symbol * sym = ptrDecl->symbol;
2393
2394 sym->isParam = 0x1;
2395 FreeType(sym->type);
2396 sym->type = ProcessType(propertyDef->specifiers, propertyDef->declarator);
2397 }
2398 ListAdd(specifiers, MkSpecifier(VOID));
2399 func = MkClassFunction(specifiers, (((void *)0)), decl, (((void *)0)));
2400 ProcessClassFunctionBody(func, propertyDef->setStmt);
2401 func->dontMangle = 0x1;
2402 func->declarator->symbol = propertyDef->symbol;
2403 propertyDef->symbol->externalSet = (struct External *)func;
2404 newDef = MkClassDefFunction(func);
2405 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert(definitions, after, newDef);
2406 after = newDef;
2407 if(inCompiler)
2408 propertyDef->setStmt = (((void *)0));
2409 else
2410 func->body = (((void *)0));
2411 }
2412 }
2413 }
2414 }
2415 else if(def->type == 0 && def->function->declarator)
2416 {
2417 struct ClassFunction * func = def->function;
2418
2419 func->_class = regClass;
2420 if(!func->dontMangle)
2421 {
2422 struct Declarator * funcDecl = GetFuncDecl(func->declarator);
2423 struct Identifier * id = GetDeclId(funcDecl);
2424 struct __ecereNameSpace__ecere__com__Method * method;
2425
2426 if(!funcDecl->function.parameters || !(*funcDecl->function.parameters).first)
2427 {
2428 if(!funcDecl->function.parameters)
2429 funcDecl->function.parameters = MkList();
2430 ListAdd(funcDecl->function.parameters, MkTypeName(MkListOne(MkSpecifier(VOID)), (((void *)0))));
2431 }
2432 method = __ecereNameSpace__ecere__com__eClass_FindMethod(regClass, id->string, privateModule);
2433 FreeSpecifier(id->_class);
2434 id->_class = (((void *)0));
2435 if(inCompiler && method)
2436 {
2437 char * newId = __ecereNameSpace__ecere__com__eSystem_New(sizeof(char) * (strlen(id->string) + strlen("__ecereMethod___ecereNameSpace__") + strlen(symbol->string) + 2));
2438
2439 newId[0] = '\0';
2440 ProcessMethodType(method);
2441 yylloc = def->loc;
2442 if(!NameSpaceContained(regClass->nameSpace, &((struct __ecereNameSpace__ecere__com__Module *)(((char *)regClass->module + structSize_Instance)))->privateNameSpace) && method->memberAccess == 1)
2443 CheckPublicDataType(method->dataType, 1, "class method");
2444 strcpy(newId, "__ecereMethod_");
2445 FullClassNameCat(newId, symbol->string, 0x0);
2446 strcat(newId, "_");
2447 strcat(newId, id->string);
2448 (__ecereNameSpace__ecere__com__eSystem_Delete(id->string), id->string = 0);
2449 id->string = newId;
2450 if(method->type != 1)
2451 {
2452 if(method->symbol)
2453 {
2454 (__ecereNameSpace__ecere__com__eSystem_Delete(((struct Symbol *)method->symbol)->string), ((struct Symbol *)method->symbol)->string = 0);
2455 ((struct Symbol *)method->symbol)->string = __ecereNameSpace__ecere__sys__CopyString(newId);
2456 }
2457 }
2458 }
2459 }
2460 }
2461 }
2462 }
2463 if(initDeclarators != (((void *)0)))
2464 FreeList(initDeclarators, FreeInitDeclarator);
2465 }
2466
2467 void PreProcessClassDefinitions()
2468 {
2469 struct External * external, * next;
2470
2471 curExternal = (((void *)0));
2472 if(ast)
2473 {
2474 for(external = (*ast).first; external; external = next)
2475 {
2476 next = external->next;
2477 curExternal = external;
2478 if(external->type == 2)
2479 {
2480 struct ClassDefinition * _class = external->_class;
2481
2482 if(_class->definitions)
2483 {
2484 ProcessClass(0, _class->definitions, _class->symbol, _class->baseSpecs, (((void *)0)), &_class->loc, ast, external->prev, (((void *)0)), (((void *)0)));
2485 }
2486 }
2487 else if(external->type == 1)
2488 {
2489 struct Declaration * declaration = external->declaration;
2490
2491 if(declaration->type == 1)
2492 {
2493 if(declaration->specifiers)
2494 {
2495 struct Specifier * specifier;
2496
2497 for(specifier = (*declaration->specifiers).first; specifier; specifier = specifier->next)
2498 {
2499 if((specifier->type == 2 || specifier->type == 3 || specifier->type == 4) && specifier->id && specifier->id->string && (declaration->declMode || specifier->baseSpecs || (specifier->type == 2 && specifier->definitions)))
2500 {
2501 struct Symbol * symbol = FindClass(specifier->id->string);
2502
2503 if(symbol)
2504 {
2505 struct __ecereNameSpace__ecere__sys__OldList * initDeclarators = (((void *)0));
2506 struct ExtDecl * extDecl = specifier->extDeclStruct;
2507
2508 specifier->extDeclStruct = (((void *)0));
2509 if(inCompiler)
2510 {
2511 initDeclarators = declaration->declarators;
2512 declaration->declarators = (((void *)0));
2513 }
2514 ProcessClass((specifier->type == 4) ? 6 : 0, specifier->definitions, symbol, specifier->baseSpecs, specifier->list, &specifier->loc, ast, external->prev, initDeclarators, extDecl);
2515 }
2516 }
2517 }
2518 }
2519 }
2520 else if(inCompiler && declaration->type == 3)
2521 {
2522 yylloc = declaration->loc;
2523 if(declaration->declMode == 1)
2524 CheckPublicExpression(declaration->exp, 1);
2525 else if(declaration->declMode != 3)
2526 CheckPublicExpression(declaration->exp, 2);
2527 }
2528 }
2529 else if(external->type == 3)
2530 {
2531 }
2532 else if(inCompiler && external->type == 0)
2533 {
2534 yylloc = external->function->loc;
2535 if(!external->function->type)
2536 external->function->type = ProcessType(external->function->specifiers, external->function->declarator);
2537 if(external->function->declMode == 1)
2538 CheckPublicDataType(external->function->type, 1, "function");
2539 else if(external->function->declMode != 3)
2540 CheckPublicDataType(external->function->type, 2, "function");
2541 }
2542 }
2543 }
2544 }
2545
2546 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__GlobalFunction;
2547
2548 struct __ecereNameSpace__ecere__com__GlobalFunction;
2549
2550 extern struct __ecereNameSpace__ecere__com__GlobalFunction * __ecereNameSpace__ecere__com__eSystem_RegisterFunction(char *  name, char *  type, void *  func, struct __ecereNameSpace__ecere__com__Instance * module, int declMode);
2551
2552 void __ecereRegisterModule_pass0(struct __ecereNameSpace__ecere__com__Instance * module)
2553 {
2554 struct __ecereNameSpace__ecere__com__Class * class;
2555
2556 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("MangleClassName", "void MangleClassName(char * className)", MangleClassName, module, 1);
2557 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("FullClassNameCat", "void FullClassNameCat(char * output, char * className, bool includeTemplateParams)", FullClassNameCat, module, 1);
2558 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("PreProcessClassDefinitions", "void PreProcessClassDefinitions(void)", PreProcessClassDefinitions, module, 1);
2559 }
2560
2561 void __ecereUnregisterModule_pass0(struct __ecereNameSpace__ecere__com__Instance * module)
2562 {
2563
2564 }
2565