compiler/libec: Warning on pointers to class incompatible with pointer to pointer
[sdk] / compiler / bootstrap / libec / bootstrap / pass15.c
1 /* Code generated from eC source file: pass15.ec */
2 #if defined(_WIN32)
3 #define __runtimePlatform 1
4 #elif defined(__APPLE__)
5 #define __runtimePlatform 3
6 #else
7 #define __runtimePlatform 2
8 #endif
9 #if defined(__GNUC__)
10 typedef long long int64;
11 typedef unsigned long long uint64;
12 #ifndef _WIN32
13 #define __declspec(x)
14 #endif
15 #elif defined(__TINYC__)
16 #include <stdarg.h>
17 #define __builtin_va_list va_list
18 #define __builtin_va_start va_start
19 #define __builtin_va_end va_end
20 #ifdef _WIN32
21 #define strcasecmp stricmp
22 #define strncasecmp strnicmp
23 #define __declspec(x) __attribute__((x))
24 #else
25 #define __declspec(x)
26 #endif
27 typedef long long int64;
28 typedef unsigned long long uint64;
29 #else
30 typedef __int64 int64;
31 typedef unsigned __int64 uint64;
32 #endif
33 #ifdef __BIG_ENDIAN__
34 #define __ENDIAN_PAD(x) (8 - (x))
35 #else
36 #define __ENDIAN_PAD(x) 0
37 #endif
38 #include <stdint.h>
39 #include <sys/types.h>
40
41 #if /*defined(_W64) || */(defined(__WORDSIZE) && __WORDSIZE == 8) || defined(__x86_64__)
42 #define _64BIT 1
43 #else
44 #define _64BIT 0
45 #endif
46
47 #define arch_PointerSize                  sizeof(void *)
48 #define structSize_Instance               (_64BIT ? 24 : 12)
49 #define structSize_Module                 (_64BIT ? 560 : 300)
50 #define structSize_NamedLink64            (_64BIT ? 32 : 24)
51
52 struct __ecereNameSpace__ecere__com__Instance;
53
54 extern void *  __ecereNameSpace__ecere__com__eSystem_New(unsigned int size);
55
56 extern void *  __ecereNameSpace__ecere__com__eSystem_New0(unsigned int size);
57
58 extern void *  __ecereNameSpace__ecere__com__eSystem_Renew(void *  memory, unsigned int size);
59
60 extern void *  __ecereNameSpace__ecere__com__eSystem_Renew0(void *  memory, unsigned int size);
61
62 extern void __ecereNameSpace__ecere__com__eSystem_Delete(void *  memory);
63
64 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__sys__BTNode;
65
66 struct __ecereNameSpace__ecere__sys__BTNode;
67
68 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__sys__BinaryTree;
69
70 struct __ecereNameSpace__ecere__sys__BinaryTree
71 {
72 struct __ecereNameSpace__ecere__sys__BTNode * root;
73 int count;
74 int (*  CompareKey)(struct __ecereNameSpace__ecere__sys__BinaryTree * tree, uintptr_t a, uintptr_t b);
75 void (*  FreeKey)(void *  key);
76 } __attribute__ ((gcc_struct));
77
78 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__sys__OldList;
79
80 struct __ecereNameSpace__ecere__sys__OldList
81 {
82 void *  first;
83 void *  last;
84 int count;
85 unsigned int offset;
86 unsigned int circ;
87 } __attribute__ ((gcc_struct));
88
89 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__Method;
90
91 struct __ecereNameSpace__ecere__com__Method
92 {
93 const char *  name;
94 struct __ecereNameSpace__ecere__com__Method * parent;
95 struct __ecereNameSpace__ecere__com__Method * left;
96 struct __ecereNameSpace__ecere__com__Method * right;
97 int depth;
98 int (*  function)();
99 int vid;
100 int type;
101 struct __ecereNameSpace__ecere__com__Class * _class;
102 void *  symbol;
103 const char *  dataTypeString;
104 struct Type * dataType;
105 int memberAccess;
106 } __attribute__ ((gcc_struct));
107
108 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__Property;
109
110 struct __ecereNameSpace__ecere__com__Property
111 {
112 struct __ecereNameSpace__ecere__com__Property * prev;
113 struct __ecereNameSpace__ecere__com__Property * next;
114 const char *  name;
115 unsigned int isProperty;
116 int memberAccess;
117 int id;
118 struct __ecereNameSpace__ecere__com__Class * _class;
119 const char *  dataTypeString;
120 struct __ecereNameSpace__ecere__com__Class * dataTypeClass;
121 struct Type * dataType;
122 void (*  Set)(void * , int);
123 int (*  Get)(void * );
124 unsigned int (*  IsSet)(void * );
125 void *  data;
126 void *  symbol;
127 int vid;
128 unsigned int conversion;
129 unsigned int watcherOffset;
130 const char *  category;
131 unsigned int compiled;
132 unsigned int selfWatchable;
133 unsigned int isWatchable;
134 } __attribute__ ((gcc_struct));
135
136 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_CodePosition;
137
138 struct CodePosition
139 {
140 int line;
141 int charPos;
142 int pos;
143 int included;
144 } __attribute__ ((gcc_struct));
145
146 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Location;
147
148 struct Location
149 {
150 struct CodePosition start;
151 struct CodePosition end;
152 } __attribute__ ((gcc_struct));
153
154 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Attrib;
155
156 struct Attrib;
157
158 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_ExtDecl;
159
160 struct ExtDecl
161 {
162 struct Location loc;
163 int type;
164 union
165 {
166 char * s;
167 struct Attrib * attr;
168 } __attribute__ ((gcc_struct)) __anon1;
169 } __attribute__ ((gcc_struct));
170
171 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_ClassDefinition;
172
173 struct ClassDefinition
174 {
175 struct ClassDefinition * prev;
176 struct ClassDefinition * next;
177 struct Location loc;
178 struct Specifier * _class;
179 struct __ecereNameSpace__ecere__sys__OldList *  baseSpecs;
180 struct __ecereNameSpace__ecere__sys__OldList *  definitions;
181 struct Symbol * symbol;
182 struct Location blockStart;
183 struct Location nameLoc;
184 int endid;
185 int declMode;
186 unsigned int deleteWatchable;
187 } __attribute__ ((gcc_struct));
188
189 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Context;
190
191 struct Context
192 {
193 struct Context * parent;
194 struct __ecereNameSpace__ecere__sys__BinaryTree types;
195 struct __ecereNameSpace__ecere__sys__BinaryTree classes;
196 struct __ecereNameSpace__ecere__sys__BinaryTree symbols;
197 struct __ecereNameSpace__ecere__sys__BinaryTree structSymbols;
198 int nextID;
199 int simpleID;
200 struct __ecereNameSpace__ecere__sys__BinaryTree templateTypes;
201 struct ClassDefinition * classDef;
202 unsigned int templateTypesOnly;
203 unsigned int hasNameSpace;
204 } __attribute__ ((gcc_struct));
205
206 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Instantiation;
207
208 struct Instantiation
209 {
210 struct Instantiation * prev;
211 struct Instantiation * next;
212 struct Location loc;
213 struct Specifier * _class;
214 struct Expression * exp;
215 struct __ecereNameSpace__ecere__sys__OldList *  members;
216 struct Symbol * symbol;
217 unsigned int fullSet;
218 unsigned int isConstant;
219 unsigned char *  data;
220 struct Location nameLoc;
221 struct Location insideLoc;
222 unsigned int built;
223 } __attribute__ ((gcc_struct));
224
225 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Declaration;
226
227 struct Declaration
228 {
229 struct Declaration * prev;
230 struct Declaration * next;
231 struct Location loc;
232 int type;
233 union
234 {
235 struct
236 {
237 struct __ecereNameSpace__ecere__sys__OldList *  specifiers;
238 struct __ecereNameSpace__ecere__sys__OldList *  declarators;
239 } __attribute__ ((gcc_struct)) __anon1;
240 struct Instantiation * inst;
241 struct
242 {
243 struct Identifier * id;
244 struct Expression * exp;
245 } __attribute__ ((gcc_struct)) __anon2;
246 } __attribute__ ((gcc_struct)) __anon1;
247 struct Specifier * extStorage;
248 struct Symbol * symbol;
249 int declMode;
250 } __attribute__ ((gcc_struct));
251
252 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Statement;
253
254 struct Statement
255 {
256 struct Statement * prev;
257 struct Statement * next;
258 struct Location loc;
259 int type;
260 union
261 {
262 struct __ecereNameSpace__ecere__sys__OldList *  expressions;
263 struct
264 {
265 struct Identifier * id;
266 struct Statement * stmt;
267 } __attribute__ ((gcc_struct)) labeled;
268 struct
269 {
270 struct Expression * exp;
271 struct Statement * stmt;
272 } __attribute__ ((gcc_struct)) caseStmt;
273 struct
274 {
275 struct __ecereNameSpace__ecere__sys__OldList * declarations;
276 struct __ecereNameSpace__ecere__sys__OldList * statements;
277 struct Context * context;
278 unsigned int isSwitch;
279 } __attribute__ ((gcc_struct)) compound;
280 struct
281 {
282 struct __ecereNameSpace__ecere__sys__OldList * exp;
283 struct Statement * stmt;
284 struct Statement * elseStmt;
285 } __attribute__ ((gcc_struct)) ifStmt;
286 struct
287 {
288 struct __ecereNameSpace__ecere__sys__OldList * exp;
289 struct Statement * stmt;
290 } __attribute__ ((gcc_struct)) switchStmt;
291 struct
292 {
293 struct __ecereNameSpace__ecere__sys__OldList * exp;
294 struct Statement * stmt;
295 } __attribute__ ((gcc_struct)) whileStmt;
296 struct
297 {
298 struct __ecereNameSpace__ecere__sys__OldList * exp;
299 struct Statement * stmt;
300 } __attribute__ ((gcc_struct)) doWhile;
301 struct
302 {
303 struct Statement * init;
304 struct Statement * check;
305 struct __ecereNameSpace__ecere__sys__OldList * increment;
306 struct Statement * stmt;
307 } __attribute__ ((gcc_struct)) forStmt;
308 struct
309 {
310 struct Identifier * id;
311 } __attribute__ ((gcc_struct)) gotoStmt;
312 struct
313 {
314 struct Specifier * spec;
315 char * statements;
316 struct __ecereNameSpace__ecere__sys__OldList * inputFields;
317 struct __ecereNameSpace__ecere__sys__OldList * outputFields;
318 struct __ecereNameSpace__ecere__sys__OldList * clobberedFields;
319 } __attribute__ ((gcc_struct)) asmStmt;
320 struct
321 {
322 struct Expression * watcher;
323 struct Expression * object;
324 struct __ecereNameSpace__ecere__sys__OldList * watches;
325 } __attribute__ ((gcc_struct)) _watch;
326 struct
327 {
328 struct Identifier * id;
329 struct __ecereNameSpace__ecere__sys__OldList * exp;
330 struct __ecereNameSpace__ecere__sys__OldList * filter;
331 struct Statement * stmt;
332 } __attribute__ ((gcc_struct)) forEachStmt;
333 struct Declaration * decl;
334 } __attribute__ ((gcc_struct)) __anon1;
335 } __attribute__ ((gcc_struct));
336
337 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_TypeName;
338
339 struct TypeName
340 {
341 struct TypeName * prev;
342 struct TypeName * next;
343 struct Location loc;
344 struct __ecereNameSpace__ecere__sys__OldList *  qualifiers;
345 struct Declarator * declarator;
346 int classObjectType;
347 struct Expression * bitCount;
348 } __attribute__ ((gcc_struct));
349
350 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Initializer;
351
352 struct Initializer
353 {
354 struct Initializer * prev;
355 struct Initializer * next;
356 struct Location loc;
357 int type;
358 union
359 {
360 struct Expression * exp;
361 struct __ecereNameSpace__ecere__sys__OldList *  list;
362 } __attribute__ ((gcc_struct)) __anon1;
363 unsigned int isConstant;
364 struct Identifier * id;
365 } __attribute__ ((gcc_struct));
366
367 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__DataValue;
368
369 struct __ecereNameSpace__ecere__com__DataValue
370 {
371 union
372 {
373 char c;
374 unsigned char uc;
375 short s;
376 unsigned short us;
377 int i;
378 unsigned int ui;
379 void *  p;
380 float f;
381 double d;
382 long long i64;
383 uint64 ui64;
384 } __attribute__ ((gcc_struct)) __anon1;
385 } __attribute__ ((gcc_struct));
386
387 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Expression;
388
389 struct Expression
390 {
391 struct Expression * prev;
392 struct Expression * next;
393 struct Location loc;
394 int type;
395 union
396 {
397 struct
398 {
399 char *  constant;
400 struct Identifier * identifier;
401 } __attribute__ ((gcc_struct)) __anon1;
402 struct Statement * compound;
403 struct Instantiation * instance;
404 struct
405 {
406 char *  string;
407 unsigned int intlString;
408 unsigned int wideString;
409 } __attribute__ ((gcc_struct)) __anon2;
410 struct __ecereNameSpace__ecere__sys__OldList *  list;
411 struct
412 {
413 struct __ecereNameSpace__ecere__sys__OldList * specifiers;
414 struct Declarator * decl;
415 } __attribute__ ((gcc_struct)) _classExp;
416 struct
417 {
418 struct Identifier * id;
419 } __attribute__ ((gcc_struct)) classData;
420 struct
421 {
422 struct Expression * exp;
423 struct __ecereNameSpace__ecere__sys__OldList * arguments;
424 struct Location argLoc;
425 } __attribute__ ((gcc_struct)) call;
426 struct
427 {
428 struct Expression * exp;
429 struct __ecereNameSpace__ecere__sys__OldList * index;
430 } __attribute__ ((gcc_struct)) index;
431 struct
432 {
433 struct Expression * exp;
434 struct Identifier * member;
435 int memberType;
436 unsigned int thisPtr;
437 } __attribute__ ((gcc_struct)) member;
438 struct
439 {
440 int op;
441 struct Expression * exp1;
442 struct Expression * exp2;
443 } __attribute__ ((gcc_struct)) op;
444 struct TypeName * typeName;
445 struct Specifier * _class;
446 struct
447 {
448 struct TypeName * typeName;
449 struct Expression * exp;
450 } __attribute__ ((gcc_struct)) cast;
451 struct
452 {
453 struct Expression * cond;
454 struct __ecereNameSpace__ecere__sys__OldList * exp;
455 struct Expression * elseExp;
456 } __attribute__ ((gcc_struct)) cond;
457 struct
458 {
459 struct TypeName * typeName;
460 struct Expression * size;
461 } __attribute__ ((gcc_struct)) _new;
462 struct
463 {
464 struct TypeName * typeName;
465 struct Expression * size;
466 struct Expression * exp;
467 } __attribute__ ((gcc_struct)) _renew;
468 struct
469 {
470 char * table;
471 struct Identifier * id;
472 } __attribute__ ((gcc_struct)) db;
473 struct
474 {
475 struct Expression * ds;
476 struct Expression * name;
477 } __attribute__ ((gcc_struct)) dbopen;
478 struct
479 {
480 struct TypeName * typeName;
481 struct Initializer * initializer;
482 } __attribute__ ((gcc_struct)) initializer;
483 struct
484 {
485 struct Expression * exp;
486 struct TypeName * typeName;
487 } __attribute__ ((gcc_struct)) vaArg;
488 } __attribute__ ((gcc_struct)) __anon1;
489 unsigned int debugValue;
490 struct __ecereNameSpace__ecere__com__DataValue val;
491 uint64 address;
492 unsigned int hasAddress;
493 struct Type * expType;
494 struct Type * destType;
495 unsigned int usage;
496 int tempCount;
497 unsigned int byReference;
498 unsigned int isConstant;
499 unsigned int addedThis;
500 unsigned int needCast;
501 unsigned int thisPtr;
502 unsigned int opDestType;
503 unsigned int needTemplateCast;
504 } __attribute__ ((gcc_struct));
505
506 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_TemplateDatatype;
507
508 struct TemplateDatatype
509 {
510 struct __ecereNameSpace__ecere__sys__OldList *  specifiers;
511 struct Declarator * decl;
512 } __attribute__ ((gcc_struct));
513
514 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_TemplateArgument;
515
516 struct TemplateArgument;
517
518 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_TemplateParameter;
519
520 struct TemplateParameter
521 {
522 struct TemplateParameter * prev;
523 struct TemplateParameter * next;
524 struct Location loc;
525 int type;
526 struct Identifier * identifier;
527 union
528 {
529 struct TemplateDatatype * dataType;
530 int memberType;
531 } __attribute__ ((gcc_struct)) __anon1;
532 struct TemplateArgument * defaultArgument;
533 const char *  dataTypeString;
534 struct Type * baseType;
535 } __attribute__ ((gcc_struct));
536
537 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Specifier;
538
539 struct Specifier
540 {
541 struct Specifier * prev;
542 struct Specifier * next;
543 struct Location loc;
544 int type;
545 union
546 {
547 int specifier;
548 struct
549 {
550 struct ExtDecl * extDecl;
551 char *  name;
552 struct Symbol * symbol;
553 struct __ecereNameSpace__ecere__sys__OldList *  templateArgs;
554 } __attribute__ ((gcc_struct)) __anon1;
555 struct
556 {
557 struct Identifier * id;
558 struct __ecereNameSpace__ecere__sys__OldList *  list;
559 struct __ecereNameSpace__ecere__sys__OldList *  baseSpecs;
560 struct __ecereNameSpace__ecere__sys__OldList *  definitions;
561 unsigned int addNameSpace;
562 struct Context * ctx;
563 struct ExtDecl * extDeclStruct;
564 } __attribute__ ((gcc_struct)) __anon2;
565 struct Expression * expression;
566 struct Specifier * _class;
567 struct TemplateParameter * templateParameter;
568 } __attribute__ ((gcc_struct)) __anon1;
569 } __attribute__ ((gcc_struct));
570
571 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Identifier;
572
573 struct Identifier
574 {
575 struct Identifier * prev;
576 struct Identifier * next;
577 struct Location loc;
578 struct Symbol * classSym;
579 struct Specifier * _class;
580 char *  string;
581 struct Identifier * badID;
582 } __attribute__ ((gcc_struct));
583
584 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Pointer;
585
586 struct Pointer;
587
588 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Declarator;
589
590 struct Declarator
591 {
592 struct Declarator * prev;
593 struct Declarator * next;
594 struct Location loc;
595 int type;
596 struct Symbol * symbol;
597 struct Declarator * declarator;
598 union
599 {
600 struct Identifier * identifier;
601 struct
602 {
603 struct Expression * exp;
604 struct Expression * posExp;
605 struct Attrib * attrib;
606 } __attribute__ ((gcc_struct)) structDecl;
607 struct
608 {
609 struct Expression * exp;
610 struct Specifier * enumClass;
611 } __attribute__ ((gcc_struct)) array;
612 struct
613 {
614 struct __ecereNameSpace__ecere__sys__OldList * parameters;
615 } __attribute__ ((gcc_struct)) function;
616 struct
617 {
618 struct Pointer * pointer;
619 } __attribute__ ((gcc_struct)) pointer;
620 struct
621 {
622 struct ExtDecl * extended;
623 } __attribute__ ((gcc_struct)) extended;
624 } __attribute__ ((gcc_struct)) __anon1;
625 } __attribute__ ((gcc_struct));
626
627 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_FunctionDefinition;
628
629 struct FunctionDefinition
630 {
631 struct FunctionDefinition * prev;
632 struct FunctionDefinition * next;
633 struct Location loc;
634 struct __ecereNameSpace__ecere__sys__OldList *  specifiers;
635 struct Declarator * declarator;
636 struct __ecereNameSpace__ecere__sys__OldList *  declarations;
637 struct Statement * body;
638 struct __ecereNameSpace__ecere__com__Class * _class;
639 struct __ecereNameSpace__ecere__sys__OldList attached;
640 int declMode;
641 struct Type * type;
642 struct Symbol * propSet;
643 int tempCount;
644 unsigned int propertyNoThis;
645 } __attribute__ ((gcc_struct));
646
647 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_DBTableDef;
648
649 struct DBTableDef;
650
651 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_External;
652
653 struct External
654 {
655 struct External * prev;
656 struct External * next;
657 struct Location loc;
658 int type;
659 struct Symbol * symbol;
660 union
661 {
662 struct FunctionDefinition * function;
663 struct ClassDefinition * _class;
664 struct Declaration * declaration;
665 char *  importString;
666 struct Identifier * id;
667 struct DBTableDef * table;
668 } __attribute__ ((gcc_struct)) __anon1;
669 int importType;
670 } __attribute__ ((gcc_struct));
671
672 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_ModuleImport;
673
674 struct ModuleImport
675 {
676 struct ModuleImport * prev;
677 struct ModuleImport * next;
678 char *  name;
679 struct __ecereNameSpace__ecere__sys__OldList classes;
680 struct __ecereNameSpace__ecere__sys__OldList functions;
681 int importType;
682 int importAccess;
683 } __attribute__ ((gcc_struct));
684
685 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_ClassImport;
686
687 struct ClassImport
688 {
689 struct ClassImport * prev;
690 struct ClassImport * next;
691 char *  name;
692 struct __ecereNameSpace__ecere__sys__OldList methods;
693 struct __ecereNameSpace__ecere__sys__OldList properties;
694 unsigned int itself;
695 int isRemote;
696 } __attribute__ ((gcc_struct));
697
698 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Symbol;
699
700 struct Symbol
701 {
702 char *  string;
703 struct Symbol * parent;
704 struct Symbol * left;
705 struct Symbol * right;
706 int depth;
707 struct Type * type;
708 union
709 {
710 struct __ecereNameSpace__ecere__com__Method * method;
711 struct __ecereNameSpace__ecere__com__Property * _property;
712 struct __ecereNameSpace__ecere__com__Class * registered;
713 } __attribute__ ((gcc_struct)) __anon1;
714 int id;
715 int idCode;
716 union
717 {
718 struct
719 {
720 struct External * pointerExternal;
721 struct External * structExternal;
722 } __attribute__ ((gcc_struct)) __anon1;
723 struct
724 {
725 struct External * externalGet;
726 struct External * externalSet;
727 struct External * externalPtr;
728 struct External * externalIsSet;
729 } __attribute__ ((gcc_struct)) __anon2;
730 struct
731 {
732 struct External * methodExternal;
733 struct External * methodCodeExternal;
734 } __attribute__ ((gcc_struct)) __anon3;
735 } __attribute__ ((gcc_struct)) __anon2;
736 unsigned int imported;
737 unsigned int declaredStructSym;
738 struct __ecereNameSpace__ecere__com__Class * _class;
739 unsigned int declaredStruct;
740 unsigned int needConstructor;
741 unsigned int needDestructor;
742 char *  constructorName;
743 char *  structName;
744 char *  className;
745 char *  destructorName;
746 struct ModuleImport * module;
747 struct ClassImport * _import;
748 struct Location nameLoc;
749 unsigned int isParam;
750 unsigned int isRemote;
751 unsigned int isStruct;
752 unsigned int fireWatchersDone;
753 int declaring;
754 unsigned int classData;
755 unsigned int isStatic;
756 char *  shortName;
757 struct __ecereNameSpace__ecere__sys__OldList *  templateParams;
758 struct __ecereNameSpace__ecere__sys__OldList templatedClasses;
759 struct Context * ctx;
760 int isIterator;
761 struct Expression * propCategory;
762 } __attribute__ ((gcc_struct));
763
764 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Type;
765
766 struct Type
767 {
768 struct Type * prev;
769 struct Type * next;
770 int refCount;
771 union
772 {
773 struct Symbol * _class;
774 struct
775 {
776 struct __ecereNameSpace__ecere__sys__OldList members;
777 char *  enumName;
778 } __attribute__ ((gcc_struct)) __anon1;
779 struct
780 {
781 struct Type * returnType;
782 struct __ecereNameSpace__ecere__sys__OldList params;
783 struct Symbol * thisClass;
784 unsigned int staticMethod;
785 struct TemplateParameter * thisClassTemplate;
786 } __attribute__ ((gcc_struct)) __anon2;
787 struct
788 {
789 struct __ecereNameSpace__ecere__com__Method * method;
790 struct __ecereNameSpace__ecere__com__Class * methodClass;
791 struct __ecereNameSpace__ecere__com__Class * usedClass;
792 } __attribute__ ((gcc_struct)) __anon3;
793 struct
794 {
795 struct Type * arrayType;
796 int arraySize;
797 struct Expression * arraySizeExp;
798 unsigned int freeExp;
799 struct Symbol * enumClass;
800 } __attribute__ ((gcc_struct)) __anon4;
801 struct Type * type;
802 struct TemplateParameter * templateParameter;
803 } __attribute__ ((gcc_struct)) __anon1;
804 int kind;
805 unsigned int size;
806 char *  name;
807 char *  typeName;
808 int classObjectType;
809 int alignment;
810 unsigned int offset;
811 int bitFieldCount;
812 int count;
813 unsigned int isSigned : 1;
814 unsigned int constant : 1;
815 unsigned int truth : 1;
816 unsigned int byReference : 1;
817 unsigned int extraParam : 1;
818 unsigned int directClassAccess : 1;
819 unsigned int computing : 1;
820 unsigned int keepCast : 1;
821 unsigned int passAsTemplate : 1;
822 unsigned int dllExport : 1;
823 unsigned int attrStdcall : 1;
824 unsigned int declaredWithStruct : 1;
825 unsigned int typedByReference : 1;
826 unsigned int casted : 1;
827 } __attribute__ ((gcc_struct));
828
829 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__Class;
830
831 struct __ecereNameSpace__ecere__com__Class
832 {
833 struct __ecereNameSpace__ecere__com__Class * prev;
834 struct __ecereNameSpace__ecere__com__Class * next;
835 const char *  name;
836 int offset;
837 int structSize;
838 void * *  _vTbl;
839 int vTblSize;
840 unsigned int (*  Constructor)(void * );
841 void (*  Destructor)(void * );
842 int offsetClass;
843 int sizeClass;
844 struct __ecereNameSpace__ecere__com__Class * base;
845 struct __ecereNameSpace__ecere__sys__BinaryTree methods;
846 struct __ecereNameSpace__ecere__sys__BinaryTree members;
847 struct __ecereNameSpace__ecere__sys__BinaryTree prop;
848 struct __ecereNameSpace__ecere__sys__OldList membersAndProperties;
849 struct __ecereNameSpace__ecere__sys__BinaryTree classProperties;
850 struct __ecereNameSpace__ecere__sys__OldList derivatives;
851 int memberID;
852 int startMemberID;
853 int type;
854 struct __ecereNameSpace__ecere__com__Instance * module;
855 struct __ecereNameSpace__ecere__com__NameSpace *  nameSpace;
856 const char *  dataTypeString;
857 struct Type * dataType;
858 int typeSize;
859 int defaultAlignment;
860 void (*  Initialize)();
861 int memberOffset;
862 struct __ecereNameSpace__ecere__sys__OldList selfWatchers;
863 const char *  designerClass;
864 unsigned int noExpansion;
865 const char *  defaultProperty;
866 unsigned int comRedefinition;
867 int count;
868 int isRemote;
869 unsigned int internalDecl;
870 void *  data;
871 unsigned int computeSize;
872 int structAlignment;
873 int destructionWatchOffset;
874 unsigned int fixed;
875 struct __ecereNameSpace__ecere__sys__OldList delayedCPValues;
876 int inheritanceAccess;
877 const char *  fullName;
878 void *  symbol;
879 struct __ecereNameSpace__ecere__sys__OldList conversions;
880 struct __ecereNameSpace__ecere__sys__OldList templateParams;
881 struct __ecereNameSpace__ecere__com__ClassTemplateArgument *  templateArgs;
882 struct __ecereNameSpace__ecere__com__Class * templateClass;
883 struct __ecereNameSpace__ecere__sys__OldList templatized;
884 int numParams;
885 unsigned int isInstanceClass;
886 unsigned int byValueSystemClass;
887 } __attribute__ ((gcc_struct));
888
889 extern long long __ecereNameSpace__ecere__com__eClass_GetProperty(struct __ecereNameSpace__ecere__com__Class * _class, const char *  name);
890
891 extern void __ecereNameSpace__ecere__com__eClass_SetProperty(struct __ecereNameSpace__ecere__com__Class * _class, const char *  name, long long value);
892
893 extern void __ecereNameSpace__ecere__com__eInstance_FireSelfWatchers(struct __ecereNameSpace__ecere__com__Instance * instance, struct __ecereNameSpace__ecere__com__Property * _property);
894
895 extern void __ecereNameSpace__ecere__com__eInstance_SetMethod(struct __ecereNameSpace__ecere__com__Instance * instance, const char *  name, void *  function);
896
897 extern void __ecereNameSpace__ecere__com__eInstance_IncRef(struct __ecereNameSpace__ecere__com__Instance * instance);
898
899 extern void __ecereNameSpace__ecere__com__eInstance_StopWatching(struct __ecereNameSpace__ecere__com__Instance * instance, struct __ecereNameSpace__ecere__com__Property * _property, struct __ecereNameSpace__ecere__com__Instance * object);
900
901 extern void __ecereNameSpace__ecere__com__eInstance_Watch(void *  instance, struct __ecereNameSpace__ecere__com__Property * _property, void *  object, void (*  callback)(void * , void * ));
902
903 extern void __ecereNameSpace__ecere__com__eInstance_FireWatchers(struct __ecereNameSpace__ecere__com__Instance * instance, struct __ecereNameSpace__ecere__com__Property * _property);
904
905 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__Instance;
906
907 struct __ecereNameSpace__ecere__com__Instance
908 {
909 void * *  _vTbl;
910 struct __ecereNameSpace__ecere__com__Class * _class;
911 int _refCount;
912 } __attribute__ ((gcc_struct));
913
914 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__DataMember;
915
916 struct __ecereNameSpace__ecere__com__DataMember
917 {
918 struct __ecereNameSpace__ecere__com__DataMember * prev;
919 struct __ecereNameSpace__ecere__com__DataMember * next;
920 const char *  name;
921 unsigned int isProperty;
922 int memberAccess;
923 int id;
924 struct __ecereNameSpace__ecere__com__Class * _class;
925 const char *  dataTypeString;
926 struct __ecereNameSpace__ecere__com__Class * dataTypeClass;
927 struct Type * dataType;
928 int type;
929 int offset;
930 int memberID;
931 struct __ecereNameSpace__ecere__sys__OldList members;
932 struct __ecereNameSpace__ecere__sys__BinaryTree membersAlpha;
933 int memberOffset;
934 int structAlignment;
935 } __attribute__ ((gcc_struct));
936
937 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__SerialBuffer;
938
939 struct __ecereNameSpace__ecere__com__SerialBuffer
940 {
941 unsigned char *  _buffer;
942 unsigned int count;
943 unsigned int _size;
944 unsigned int pos;
945 } __attribute__ ((gcc_struct));
946
947 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__ClassTemplateArgument;
948
949 struct __ecereNameSpace__ecere__com__ClassTemplateArgument
950 {
951 union
952 {
953 struct
954 {
955 const char *  dataTypeString;
956 struct __ecereNameSpace__ecere__com__Class * dataTypeClass;
957 } __attribute__ ((gcc_struct)) __anon1;
958 struct __ecereNameSpace__ecere__com__DataValue expression;
959 struct
960 {
961 const char *  memberString;
962 union
963 {
964 struct __ecereNameSpace__ecere__com__DataMember * member;
965 struct __ecereNameSpace__ecere__com__Property * prop;
966 struct __ecereNameSpace__ecere__com__Method * method;
967 } __attribute__ ((gcc_struct)) __anon1;
968 } __attribute__ ((gcc_struct)) __anon2;
969 } __attribute__ ((gcc_struct)) __anon1;
970 } __attribute__ ((gcc_struct));
971
972 void exit(int status);
973
974 void * calloc(size_t nmemb, size_t size);
975
976 void free(void * ptr);
977
978 void * malloc(size_t size);
979
980 void * realloc(void * ptr, size_t size);
981
982 long int strtol(const char * nptr, char ** endptr, int base);
983
984 long long int strtoll(const char * nptr, char ** endptr, int base);
985
986 unsigned long long int strtoull(const char * nptr, char ** endptr, int base);
987
988 enum yytokentype
989 {
990 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, BOOL = 367, _BOOL = 368, _COMPLEX = 369, _IMAGINARY = 370, RESTRICT = 371, THREAD = 372, WIDE_STRING_LITERAL = 373
991 };
992
993 typedef union YYSTYPE
994 {
995 int specifierType;
996 int i;
997 int declMode;
998 struct Identifier * id;
999 struct Expression * exp;
1000 struct Specifier * specifier;
1001 struct __ecereNameSpace__ecere__sys__OldList * list;
1002 struct Enumerator * enumerator;
1003 struct Declarator * declarator;
1004 struct Pointer * pointer;
1005 struct Initializer * initializer;
1006 struct InitDeclarator * initDeclarator;
1007 struct TypeName * typeName;
1008 struct Declaration * declaration;
1009 struct Statement * stmt;
1010 struct FunctionDefinition * function;
1011 struct External * external;
1012 struct Context * context;
1013 struct AsmField * asmField;
1014 struct Attrib * attrib;
1015 struct ExtDecl * extDecl;
1016 struct Attribute * attribute;
1017 struct Instantiation * instance;
1018 struct MembersInit * membersInit;
1019 struct MemberInit * memberInit;
1020 struct ClassFunction * classFunction;
1021 struct ClassDefinition * _class;
1022 struct ClassDef * classDef;
1023 struct PropertyDef * prop;
1024 char * string;
1025 struct Symbol * symbol;
1026 struct PropertyWatch * propertyWatch;
1027 struct TemplateParameter * templateParameter;
1028 struct TemplateArgument * templateArgument;
1029 struct TemplateDatatype * templateDatatype;
1030 struct DBTableEntry * dbtableEntry;
1031 struct DBIndexItem * dbindexItem;
1032 struct DBTableDef * dbtableDef;
1033 } __attribute__ ((gcc_struct)) YYSTYPE;
1034
1035 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Enumerator;
1036
1037 struct Enumerator
1038 {
1039 struct Enumerator * prev;
1040 struct Enumerator * next;
1041 struct Location loc;
1042 struct Identifier * id;
1043 struct Expression * exp;
1044 } __attribute__ ((gcc_struct));
1045
1046 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_InitDeclarator;
1047
1048 struct InitDeclarator
1049 {
1050 struct InitDeclarator * prev;
1051 struct InitDeclarator * next;
1052 struct Location loc;
1053 struct Declarator * declarator;
1054 struct Initializer * initializer;
1055 } __attribute__ ((gcc_struct));
1056
1057 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_AsmField;
1058
1059 struct AsmField
1060 {
1061 struct AsmField * prev;
1062 struct AsmField * next;
1063 struct Location loc;
1064 char *  command;
1065 struct Expression * expression;
1066 struct Identifier * symbolic;
1067 } __attribute__ ((gcc_struct));
1068
1069 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Attribute;
1070
1071 struct Attribute;
1072
1073 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_ClassFunction;
1074
1075 struct ClassFunction
1076 {
1077 struct ClassFunction * prev;
1078 struct ClassFunction * next;
1079 struct Location loc;
1080 struct __ecereNameSpace__ecere__sys__OldList *  specifiers;
1081 struct Declarator * declarator;
1082 struct __ecereNameSpace__ecere__sys__OldList *  declarations;
1083 struct Statement * body;
1084 struct __ecereNameSpace__ecere__com__Class * _class;
1085 struct __ecereNameSpace__ecere__sys__OldList attached;
1086 int declMode;
1087 struct Type * type;
1088 struct Symbol * propSet;
1089 unsigned int isVirtual;
1090 unsigned int isConstructor;
1091 unsigned int isDestructor;
1092 unsigned int dontMangle;
1093 int id;
1094 int idCode;
1095 } __attribute__ ((gcc_struct));
1096
1097 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_MembersInit;
1098
1099 struct MembersInit
1100 {
1101 struct MembersInit * prev;
1102 struct MembersInit * next;
1103 struct Location loc;
1104 int type;
1105 union
1106 {
1107 struct __ecereNameSpace__ecere__sys__OldList *  dataMembers;
1108 struct ClassFunction * function;
1109 } __attribute__ ((gcc_struct)) __anon1;
1110 } __attribute__ ((gcc_struct));
1111
1112 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_MemberInit;
1113
1114 struct MemberInit
1115 {
1116 struct MemberInit * prev;
1117 struct MemberInit * next;
1118 struct Location loc;
1119 struct Location realLoc;
1120 struct __ecereNameSpace__ecere__sys__OldList *  identifiers;
1121 struct Initializer * initializer;
1122 unsigned int used;
1123 unsigned int variable;
1124 unsigned int takeOutExp;
1125 } __attribute__ ((gcc_struct));
1126
1127 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_PropertyDef;
1128
1129 struct PropertyDef
1130 {
1131 struct PropertyDef * prev;
1132 struct PropertyDef * next;
1133 struct Location loc;
1134 struct __ecereNameSpace__ecere__sys__OldList *  specifiers;
1135 struct Declarator * declarator;
1136 struct Identifier * id;
1137 struct Statement * getStmt;
1138 struct Statement * setStmt;
1139 struct Statement * issetStmt;
1140 struct Symbol * symbol;
1141 struct Expression * category;
1142 struct
1143 {
1144 unsigned int conversion : 1;
1145 unsigned int isWatchable : 1;
1146 unsigned int isDBProp : 1;
1147 } __attribute__ ((gcc_struct)) __anon1;
1148 } __attribute__ ((gcc_struct));
1149
1150 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_PropertyWatch;
1151
1152 struct PropertyWatch
1153 {
1154 struct PropertyWatch * prev;
1155 struct PropertyWatch * next;
1156 struct Location loc;
1157 struct Statement * compound;
1158 struct __ecereNameSpace__ecere__sys__OldList *  properties;
1159 unsigned int deleteWatch;
1160 } __attribute__ ((gcc_struct));
1161
1162 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_ClassDef;
1163
1164 struct ClassDef
1165 {
1166 struct ClassDef * prev;
1167 struct ClassDef * next;
1168 struct Location loc;
1169 int type;
1170 union
1171 {
1172 struct Declaration * decl;
1173 struct ClassFunction * function;
1174 struct __ecereNameSpace__ecere__sys__OldList *  defProperties;
1175 struct PropertyDef * propertyDef;
1176 struct PropertyWatch * propertyWatch;
1177 char *  designer;
1178 struct Identifier * defaultProperty;
1179 struct
1180 {
1181 struct Identifier * id;
1182 struct Initializer * initializer;
1183 } __attribute__ ((gcc_struct)) __anon1;
1184 } __attribute__ ((gcc_struct)) __anon1;
1185 int memberAccess;
1186 void *  object;
1187 } __attribute__ ((gcc_struct));
1188
1189 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_DBTableEntry;
1190
1191 struct DBTableEntry;
1192
1193 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_DBIndexItem;
1194
1195 struct DBIndexItem;
1196
1197 extern YYSTYPE yylval;
1198
1199 extern struct Location yylloc;
1200
1201 extern struct __ecereNameSpace__ecere__sys__OldList * ast;
1202
1203 extern int returnCode;
1204
1205 extern struct Expression * parsedExpression;
1206
1207 extern unsigned int yydebug;
1208
1209 void SetYydebug(unsigned int b)
1210 {
1211 yydebug = b;
1212 }
1213
1214 extern unsigned int echoOn;
1215
1216 void resetScanner();
1217
1218 int propWatcherID;
1219
1220 int expression_yyparse();
1221
1222 static struct Statement * curCompound;
1223
1224 struct External * curExternal, * afterExternal;
1225
1226 static struct Type * curSwitchType;
1227
1228 static struct __ecereNameSpace__ecere__com__Class * currentClass;
1229
1230 struct __ecereNameSpace__ecere__com__Class * thisClass;
1231
1232 void SetThisClass(struct __ecereNameSpace__ecere__com__Class * c)
1233 {
1234 thisClass = c;
1235 }
1236
1237 struct __ecereNameSpace__ecere__com__Class * GetThisClass()
1238 {
1239 return thisClass;
1240 }
1241
1242 static char * thisNameSpace;
1243
1244 struct __ecereNameSpace__ecere__com__Class * containerClass;
1245
1246 unsigned int thisClassParams = 1;
1247
1248 unsigned int internalValueCounter;
1249
1250 extern unsigned int outputLineNumbers;
1251
1252 extern void OutputExpression(struct Expression * exp, struct __ecereNameSpace__ecere__com__Instance * f);
1253
1254 extern size_t strlen(const char * );
1255
1256 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__sys__TempFile;
1257
1258 extern void *  __ecereNameSpace__ecere__com__eInstance_New(struct __ecereNameSpace__ecere__com__Class * _class);
1259
1260 int __ecereVMethodID___ecereNameSpace__ecere__sys__File_Seek;
1261
1262 int __ecereVMethodID___ecereNameSpace__ecere__sys__File_Read;
1263
1264 extern void __ecereNameSpace__ecere__com__eInstance_DecRef(struct __ecereNameSpace__ecere__com__Instance * instance);
1265
1266 void PrintExpression(struct Expression * exp, char * string)
1267 {
1268 {
1269 struct __ecereNameSpace__ecere__com__Instance * f = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass___ecereNameSpace__ecere__sys__TempFile);
1270 int count;
1271 unsigned int backOutputLineNumbers = outputLineNumbers;
1272
1273 outputLineNumbers = 0;
1274 if(exp)
1275 OutputExpression(exp, f);
1276 ((unsigned int (*)(struct __ecereNameSpace__ecere__com__Instance *, int pos, int mode))__extension__ ({
1277 struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = f;
1278
1279 __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__sys__TempFile->_vTbl;
1280 })[__ecereVMethodID___ecereNameSpace__ecere__sys__File_Seek])(f, 0, 0);
1281 count = strlen(string);
1282 count += ((int (*)(struct __ecereNameSpace__ecere__com__Instance *, void *  buffer, unsigned int size, unsigned int count))__extension__ ({
1283 struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = f;
1284
1285 __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__sys__TempFile->_vTbl;
1286 })[__ecereVMethodID___ecereNameSpace__ecere__sys__File_Read])(f, string + count, 1, 1023);
1287 string[count] = '\0';
1288 (__ecereNameSpace__ecere__com__eInstance_DecRef(f), f = 0);
1289 outputLineNumbers = backOutputLineNumbers;
1290 }
1291 }
1292
1293 extern struct Type * ProcessTypeString(const char *  string, unsigned int staticMethod);
1294
1295 extern struct Type * ProcessType(struct __ecereNameSpace__ecere__sys__OldList * specs, struct Declarator * decl);
1296
1297 struct Type * ProcessTemplateParameterType(struct TemplateParameter * param)
1298 {
1299 if(param && param->type == 0 && (param->__anon1.dataType || param->dataTypeString))
1300 {
1301 if(!param->baseType)
1302 {
1303 if(param->dataTypeString)
1304 param->baseType = ProcessTypeString(param->dataTypeString, 0);
1305 else
1306 param->baseType = ProcessType(param->__anon1.dataType->specifiers, param->__anon1.dataType->decl);
1307 }
1308 return param->baseType;
1309 }
1310 return (((void *)0));
1311 }
1312
1313 unsigned int NeedCast(struct Type * type1, struct Type * type2)
1314 {
1315 if(!type1 || !type2 || type1->keepCast || type2->keepCast)
1316 return 1;
1317 if(type1->kind == 20 && type2->kind == 4 && type2->passAsTemplate == 0)
1318 {
1319 return 0;
1320 }
1321 if(type1->kind == type2->kind)
1322 {
1323 switch(type1->kind)
1324 {
1325 case 24:
1326 case 1:
1327 case 2:
1328 case 3:
1329 case 4:
1330 case 22:
1331 case 23:
1332 if(type1->passAsTemplate && !type2->passAsTemplate)
1333 return 1;
1334 return type1->isSigned != type2->isSigned;
1335 case 8:
1336 return type1->__anon1._class != type2->__anon1._class;
1337 case 13:
1338 return (type1->__anon1.type && type2->__anon1.type && type1->__anon1.type->constant != type2->__anon1.type->constant) || NeedCast(type1->__anon1.type, type2->__anon1.type);
1339 default:
1340 return 1;
1341 }
1342 }
1343 return 1;
1344 }
1345
1346 extern int strcmp(const char * , const char * );
1347
1348 extern struct Context * curContext;
1349
1350 extern struct Context * topContext;
1351
1352 extern unsigned int __ecereNameSpace__ecere__com__eClass_IsDerived(struct __ecereNameSpace__ecere__com__Class * _class, struct __ecereNameSpace__ecere__com__Class * from);
1353
1354 extern struct __ecereNameSpace__ecere__com__Property * __ecereNameSpace__ecere__com__eClass_FindProperty(struct __ecereNameSpace__ecere__com__Class * _class, const char *  name, struct __ecereNameSpace__ecere__com__Instance * module);
1355
1356 extern struct __ecereNameSpace__ecere__com__Instance * privateModule;
1357
1358 extern struct __ecereNameSpace__ecere__com__Method * __ecereNameSpace__ecere__com__eClass_FindMethod(struct __ecereNameSpace__ecere__com__Class * _class, const char *  name, struct __ecereNameSpace__ecere__com__Instance * module);
1359
1360 extern struct __ecereNameSpace__ecere__com__DataMember * __ecereNameSpace__ecere__com__eClass_FindDataMember(struct __ecereNameSpace__ecere__com__Class * _class, const char *  name, struct __ecereNameSpace__ecere__com__Instance * module, struct __ecereNameSpace__ecere__com__DataMember **  subMemberStack, int *  subMemberStackPos);
1361
1362 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__ClassProperty;
1363
1364 struct __ecereNameSpace__ecere__com__ClassProperty
1365 {
1366 const char *  name;
1367 struct __ecereNameSpace__ecere__com__ClassProperty * parent;
1368 struct __ecereNameSpace__ecere__com__ClassProperty * left;
1369 struct __ecereNameSpace__ecere__com__ClassProperty * right;
1370 int depth;
1371 void (*  Set)(struct __ecereNameSpace__ecere__com__Class *, long long);
1372 long long (*  Get)(struct __ecereNameSpace__ecere__com__Class *);
1373 const char *  dataTypeString;
1374 struct Type * dataType;
1375 unsigned int constant;
1376 } __attribute__ ((gcc_struct));
1377
1378 extern struct __ecereNameSpace__ecere__com__ClassProperty * __ecereNameSpace__ecere__com__eClass_FindClassProperty(struct __ecereNameSpace__ecere__com__Class * _class, const char *  name);
1379
1380 extern struct Expression * QMkExpId(const char *  id);
1381
1382 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__ClassTemplateParameter;
1383
1384 struct __ecereNameSpace__ecere__com__ClassTemplateParameter
1385 {
1386 struct __ecereNameSpace__ecere__com__ClassTemplateParameter * prev;
1387 struct __ecereNameSpace__ecere__com__ClassTemplateParameter * next;
1388 const char *  name;
1389 int type;
1390 union
1391 {
1392 const char *  dataTypeString;
1393 int memberType;
1394 } __attribute__ ((gcc_struct)) __anon1;
1395 struct __ecereNameSpace__ecere__com__ClassTemplateArgument defaultArg;
1396 void *  param;
1397 } __attribute__ ((gcc_struct));
1398
1399 extern struct Expression * GetTemplateArgExpByName(const char *  paramName, struct __ecereNameSpace__ecere__com__Class * curClass, int tplType);
1400
1401 extern struct __ecereNameSpace__ecere__sys__OldList *  MkList(void);
1402
1403 extern void FreeIdentifier(struct Identifier * id);
1404
1405 void ProcessExpressionType(struct Expression * exp);
1406
1407 extern struct Declarator * SpecDeclFromString(const char *  string, struct __ecereNameSpace__ecere__sys__OldList *  specs, struct Declarator * baseDecl);
1408
1409 extern struct __ecereNameSpace__ecere__sys__OldList *  MkListOne(void *  item);
1410
1411 extern struct Expression * MkExpOp(struct Expression * exp1, int op, struct Expression * exp2);
1412
1413 extern struct Expression * MkExpCast(struct TypeName * typeName, struct Expression * expression);
1414
1415 extern struct TypeName * MkTypeName(struct __ecereNameSpace__ecere__sys__OldList * qualifiers, struct Declarator * declarator);
1416
1417 extern struct Declarator * MkDeclaratorPointer(struct Pointer * pointer, struct Declarator * declarator);
1418
1419 extern struct Pointer * MkPointer(struct __ecereNameSpace__ecere__sys__OldList * qualifiers, struct Pointer * pointer);
1420
1421 struct __ecereNameSpace__ecere__sys__BTNode * __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_FindString(struct __ecereNameSpace__ecere__sys__BinaryTree * this, const char *  key);
1422
1423 static void ReplaceClassMembers(struct Expression * exp, struct __ecereNameSpace__ecere__com__Class * _class)
1424 {
1425 if(exp->type == 0 && exp->__anon1.__anon1.identifier)
1426 {
1427 struct Identifier * id = exp->__anon1.__anon1.identifier;
1428 struct Context * ctx;
1429 struct Symbol * symbol = (((void *)0));
1430
1431 if(!id->_class || !id->_class->__anon1.__anon1.name || strcmp(id->_class->__anon1.__anon1.name, "property"))
1432 {
1433 for(ctx = curContext; ctx != topContext->parent && !symbol; ctx = ctx->parent)
1434 {
1435 symbol = (struct Symbol *)__ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_FindString(&ctx->symbols, id->string);
1436 if(symbol)
1437 break;
1438 }
1439 }
1440 if(!symbol && ((!id->_class || (id->_class->__anon1.__anon1.name && !strcmp(id->_class->__anon1.__anon1.name, "property"))) || (id->classSym && __ecereNameSpace__ecere__com__eClass_IsDerived(_class, id->classSym->__anon1.registered))))
1441 {
1442 struct __ecereNameSpace__ecere__com__Property * prop = __ecereNameSpace__ecere__com__eClass_FindProperty(_class, id->string, privateModule);
1443 struct __ecereNameSpace__ecere__com__Method * method = (((void *)0));
1444 struct __ecereNameSpace__ecere__com__DataMember * member = (((void *)0));
1445 struct __ecereNameSpace__ecere__com__ClassProperty * classProp = (((void *)0));
1446
1447 if(!prop)
1448 {
1449 method = __ecereNameSpace__ecere__com__eClass_FindMethod(_class, id->string, privateModule);
1450 }
1451 if(!prop && !method)
1452 member = __ecereNameSpace__ecere__com__eClass_FindDataMember(_class, id->string, privateModule, (((void *)0)), (((void *)0)));
1453 if(!prop && !method && !member)
1454 {
1455 classProp = __ecereNameSpace__ecere__com__eClass_FindClassProperty(_class, id->string);
1456 }
1457 if(prop || method || member || classProp)
1458 {
1459 exp->type = 8;
1460 exp->__anon1.member.member = id;
1461 exp->__anon1.member.memberType = 0;
1462 exp->__anon1.member.exp = QMkExpId("this");
1463 exp->addedThis = 1;
1464 }
1465 else if(_class && _class->templateParams.first)
1466 {
1467 struct __ecereNameSpace__ecere__com__Class * sClass;
1468
1469 for(sClass = _class; sClass; sClass = sClass->base)
1470 {
1471 if(sClass->templateParams.first)
1472 {
1473 struct __ecereNameSpace__ecere__com__ClassTemplateParameter * param;
1474
1475 for(param = sClass->templateParams.first; param; param = param->next)
1476 {
1477 if(param->type == 2 && !strcmp(param->name, id->string))
1478 {
1479 struct Expression * argExp = GetTemplateArgExpByName(param->name, _class, 2);
1480
1481 if(argExp)
1482 {
1483 struct Declarator * decl;
1484 struct __ecereNameSpace__ecere__sys__OldList * specs = MkList();
1485
1486 FreeIdentifier(exp->__anon1.member.member);
1487 ProcessExpressionType(argExp);
1488 decl = SpecDeclFromString(param->__anon1.dataTypeString, specs, (((void *)0)));
1489 exp->expType = ProcessType(specs, decl);
1490 exp->type = 5;
1491 exp->__anon1.list = MkListOne(MkExpOp((((void *)0)), '*', MkExpCast(MkTypeName(specs, MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), decl)), MkExpOp((((void *)0)), '&', argExp))));
1492 }
1493 }
1494 }
1495 }
1496 }
1497 }
1498 }
1499 }
1500 }
1501
1502 extern int sprintf(char * , const char * , ...);
1503
1504 extern char *  strcat(char * , const char * );
1505
1506 extern char *  __ecereNameSpace__ecere__sys__CopyString(const char *  string);
1507
1508 char * PrintInt(long long result)
1509 {
1510 char temp[100];
1511
1512 if(result > (((int)0x7fffffff)))
1513 sprintf(temp, ((__runtimePlatform == 1) ? "0x%I64X" : "0x%llX"), result);
1514 else
1515 sprintf(temp, ((__runtimePlatform == 1) ? "%I64d" : "%lld"), result);
1516 if(result > (((int)0x7fffffff)) || result < (((int)0x80000000)))
1517 strcat(temp, "LL");
1518 return __ecereNameSpace__ecere__sys__CopyString(temp);
1519 }
1520
1521 char * PrintUInt(uint64 result)
1522 {
1523 char temp[100];
1524
1525 if(result > (0xffffffff))
1526 sprintf(temp, ((__runtimePlatform == 1) ? "0x%I64XLL" : "0x%llXLL"), result);
1527 else if(result > (((int)0x7fffffff)))
1528 sprintf(temp, ((__runtimePlatform == 1) ? "0x%I64X" : "0x%llX"), result);
1529 else
1530 sprintf(temp, ((__runtimePlatform == 1) ? "%I64d" : "%lld"), result);
1531 return __ecereNameSpace__ecere__sys__CopyString(temp);
1532 }
1533
1534 char * PrintInt64(long long result)
1535 {
1536 char temp[100];
1537
1538 if(result > (((int)0x7fffffff)) || result < (((int)0x80000000)))
1539 sprintf(temp, ((__runtimePlatform == 1) ? "%I64dLL" : "%lldLL"), result);
1540 else
1541 sprintf(temp, ((__runtimePlatform == 1) ? "%I64d" : "%lld"), result);
1542 return __ecereNameSpace__ecere__sys__CopyString(temp);
1543 }
1544
1545 char * PrintUInt64(uint64 result)
1546 {
1547 char temp[100];
1548
1549 if(result > (0xffffffff))
1550 sprintf(temp, ((__runtimePlatform == 1) ? "0x%I64XLL" : "0x%llXLL"), result);
1551 else if(result > (((int)0x7fffffff)))
1552 sprintf(temp, ((__runtimePlatform == 1) ? "0x%I64X" : "0x%llX"), result);
1553 else
1554 sprintf(temp, ((__runtimePlatform == 1) ? "%I64d" : "%lld"), result);
1555 return __ecereNameSpace__ecere__sys__CopyString(temp);
1556 }
1557
1558 char * PrintHexUInt(uint64 result)
1559 {
1560 char temp[100];
1561
1562 if(result > (0xffffffff))
1563 sprintf(temp, ((__runtimePlatform == 1) ? "0x%I64X" : "0x%llX"), result);
1564 else
1565 sprintf(temp, ((__runtimePlatform == 1) ? "0x%I64X" : "0x%llX"), result);
1566 if(result > (0xffffffff))
1567 strcat(temp, "LL");
1568 return __ecereNameSpace__ecere__sys__CopyString(temp);
1569 }
1570
1571 char * PrintHexUInt64(uint64 result)
1572 {
1573 char temp[100];
1574
1575 if(result > (0xffffffff))
1576 sprintf(temp, ((__runtimePlatform == 1) ? "0x%I64XLL" : "0x%llXLL"), result);
1577 else
1578 sprintf(temp, ((__runtimePlatform == 1) ? "0x%I64X" : "0x%llX"), result);
1579 return __ecereNameSpace__ecere__sys__CopyString(temp);
1580 }
1581
1582 char * PrintShort(short result)
1583 {
1584 char temp[100];
1585
1586 sprintf(temp, "%d", (unsigned short)result);
1587 return __ecereNameSpace__ecere__sys__CopyString(temp);
1588 }
1589
1590 char * PrintUShort(unsigned short result)
1591 {
1592 char temp[100];
1593
1594 if(result > (unsigned short)32767)
1595 sprintf(temp, "0x%X", (int)result);
1596 else
1597 sprintf(temp, "%d", (int)result);
1598 return __ecereNameSpace__ecere__sys__CopyString(temp);
1599 }
1600
1601 extern int isprint(int c);
1602
1603 char * PrintChar(char result)
1604 {
1605 char temp[100];
1606
1607 if(result > (char)0 && isprint(result))
1608 sprintf(temp, "'%c'", result);
1609 else if(result < (char)0)
1610 sprintf(temp, "%d", (int)result);
1611 else
1612 sprintf(temp, "0x%X", (unsigned char)result);
1613 return __ecereNameSpace__ecere__sys__CopyString(temp);
1614 }
1615
1616 char * PrintUChar(unsigned char result)
1617 {
1618 char temp[100];
1619
1620 sprintf(temp, "0x%X", result);
1621 return __ecereNameSpace__ecere__sys__CopyString(temp);
1622 }
1623
1624 extern char *  strcpy(char * , const char * );
1625
1626 extern unsigned int (* __ecereProp_float_Get_isInf)(float this);
1627
1628 extern struct __ecereNameSpace__ecere__com__Property * __ecereProp_float_isInf;
1629
1630 extern int (* __ecereProp_float_Get_signBit)(float this);
1631
1632 extern struct __ecereNameSpace__ecere__com__Property * __ecereProp_float_signBit;
1633
1634 extern unsigned int (* __ecereProp_float_Get_isNan)(float this);
1635
1636 extern struct __ecereNameSpace__ecere__com__Property * __ecereProp_float_isNan;
1637
1638 char * PrintFloat(float result)
1639 {
1640 char temp[350];
1641
1642 if(__ecereProp_float_Get_isInf(result))
1643 {
1644 if(__ecereProp_float_Get_signBit(result))
1645 strcpy(temp, "-inf");
1646 else
1647 strcpy(temp, "inf");
1648 }
1649 else if(__ecereProp_float_Get_isNan(result))
1650 {
1651 if(__ecereProp_float_Get_signBit(result))
1652 strcpy(temp, "-nan");
1653 else
1654 strcpy(temp, "nan");
1655 }
1656 else
1657 sprintf(temp, "%.16ff", result);
1658 return __ecereNameSpace__ecere__sys__CopyString(temp);
1659 }
1660
1661 extern unsigned int (* __ecereProp_double_Get_isInf)(double this);
1662
1663 extern struct __ecereNameSpace__ecere__com__Property * __ecereProp_double_isInf;
1664
1665 extern int (* __ecereProp_double_Get_signBit)(double this);
1666
1667 extern struct __ecereNameSpace__ecere__com__Property * __ecereProp_double_signBit;
1668
1669 extern unsigned int (* __ecereProp_double_Get_isNan)(double this);
1670
1671 extern struct __ecereNameSpace__ecere__com__Property * __ecereProp_double_isNan;
1672
1673 char * PrintDouble(double result)
1674 {
1675 char temp[350];
1676
1677 if(__ecereProp_double_Get_isInf(result))
1678 {
1679 if(__ecereProp_double_Get_signBit(result))
1680 strcpy(temp, "-inf");
1681 else
1682 strcpy(temp, "inf");
1683 }
1684 else if(__ecereProp_double_Get_isNan(result))
1685 {
1686 if(__ecereProp_double_Get_signBit(result))
1687 strcpy(temp, "-nan");
1688 else
1689 strcpy(temp, "nan");
1690 }
1691 else
1692 sprintf(temp, "%.16f", result);
1693 return __ecereNameSpace__ecere__sys__CopyString(temp);
1694 }
1695
1696 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_OpTable;
1697
1698 struct OpTable
1699 {
1700 unsigned int (*  Add)(struct Expression *, struct Operand *, struct Operand *);
1701 unsigned int (*  Sub)(struct Expression *, struct Operand *, struct Operand *);
1702 unsigned int (*  Mul)(struct Expression *, struct Operand *, struct Operand *);
1703 unsigned int (*  Div)(struct Expression *, struct Operand *, struct Operand *);
1704 unsigned int (*  Mod)(struct Expression *, struct Operand *, struct Operand *);
1705 unsigned int (*  Neg)(struct Expression *, struct Operand *);
1706 unsigned int (*  Inc)(struct Expression *, struct Operand *);
1707 unsigned int (*  Dec)(struct Expression *, struct Operand *);
1708 unsigned int (*  Asign)(struct Expression *, struct Operand *, struct Operand *);
1709 unsigned int (*  AddAsign)(struct Expression *, struct Operand *, struct Operand *);
1710 unsigned int (*  SubAsign)(struct Expression *, struct Operand *, struct Operand *);
1711 unsigned int (*  MulAsign)(struct Expression *, struct Operand *, struct Operand *);
1712 unsigned int (*  DivAsign)(struct Expression *, struct Operand *, struct Operand *);
1713 unsigned int (*  ModAsign)(struct Expression *, struct Operand *, struct Operand *);
1714 unsigned int (*  BitAnd)(struct Expression *, struct Operand *, struct Operand *);
1715 unsigned int (*  BitOr)(struct Expression *, struct Operand *, struct Operand *);
1716 unsigned int (*  BitXor)(struct Expression *, struct Operand *, struct Operand *);
1717 unsigned int (*  LShift)(struct Expression *, struct Operand *, struct Operand *);
1718 unsigned int (*  RShift)(struct Expression *, struct Operand *, struct Operand *);
1719 unsigned int (*  BitNot)(struct Expression *, struct Operand *);
1720 unsigned int (*  AndAsign)(struct Expression *, struct Operand *, struct Operand *);
1721 unsigned int (*  OrAsign)(struct Expression *, struct Operand *, struct Operand *);
1722 unsigned int (*  XorAsign)(struct Expression *, struct Operand *, struct Operand *);
1723 unsigned int (*  LShiftAsign)(struct Expression *, struct Operand *, struct Operand *);
1724 unsigned int (*  RShiftAsign)(struct Expression *, struct Operand *, struct Operand *);
1725 unsigned int (*  Not)(struct Expression *, struct Operand *);
1726 unsigned int (*  Equ)(struct Expression *, struct Operand *, struct Operand *);
1727 unsigned int (*  Nqu)(struct Expression *, struct Operand *, struct Operand *);
1728 unsigned int (*  And)(struct Expression *, struct Operand *, struct Operand *);
1729 unsigned int (*  Or)(struct Expression *, struct Operand *, struct Operand *);
1730 unsigned int (*  Grt)(struct Expression *, struct Operand *, struct Operand *);
1731 unsigned int (*  Sma)(struct Expression *, struct Operand *, struct Operand *);
1732 unsigned int (*  GrtEqu)(struct Expression *, struct Operand *, struct Operand *);
1733 unsigned int (*  SmaEqu)(struct Expression *, struct Operand *, struct Operand *);
1734 unsigned int (*  Cond)(struct Expression *, struct Operand *, struct Operand *, struct Operand *);
1735 } __attribute__ ((gcc_struct));
1736
1737 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Operand;
1738
1739 struct Operand
1740 {
1741 int kind;
1742 struct Type * type;
1743 unsigned int ptrSize;
1744 union
1745 {
1746 char c;
1747 unsigned char uc;
1748 short s;
1749 unsigned short us;
1750 int i;
1751 unsigned int ui;
1752 float f;
1753 double d;
1754 long long i64;
1755 uint64 ui64;
1756 } __attribute__ ((gcc_struct)) __anon1;
1757 struct OpTable ops;
1758 } __attribute__ ((gcc_struct));
1759
1760 unsigned int GetOpInt(struct Operand * op2, int * value2)
1761 {
1762 if(op2->kind == 3 && op2->type->isSigned)
1763 *value2 = op2->__anon1.i;
1764 else if(op2->kind == 3)
1765 *value2 = (int)op2->__anon1.ui;
1766 else if(op2->kind == 4 && op2->type->isSigned)
1767 *value2 = (int)op2->__anon1.i64;
1768 else if(op2->kind == 4)
1769 *value2 = (int)op2->__anon1.ui64;
1770 else if(op2->kind == 23 && op2->type->isSigned)
1771 *value2 = (int)op2->__anon1.i64;
1772 else if(op2->kind == 23)
1773 *value2 = (int)op2->__anon1.ui64;
1774 else if(op2->kind == 22 && op2->type->isSigned)
1775 *value2 = (int)op2->__anon1.i64;
1776 else if(op2->kind == 22)
1777 *value2 = (int)op2->__anon1.ui64;
1778 else if(op2->kind == 2 && op2->type->isSigned)
1779 *value2 = (int)op2->__anon1.s;
1780 else if(op2->kind == 2)
1781 *value2 = (int)op2->__anon1.us;
1782 else if(op2->kind == 1 && op2->type->isSigned)
1783 *value2 = (int)op2->__anon1.c;
1784 else if(op2->kind == 24 || op2->kind == 1)
1785 *value2 = (int)op2->__anon1.uc;
1786 else if(op2->kind == 6)
1787 *value2 = (int)op2->__anon1.f;
1788 else if(op2->kind == 7)
1789 *value2 = (int)op2->__anon1.d;
1790 else if(op2->kind == 13)
1791 *value2 = (int)op2->__anon1.ui64;
1792 else
1793 return 0;
1794 return 1;
1795 }
1796
1797 struct Operand GetOperand(struct Expression * exp);
1798
1799 unsigned int GetInt(struct Expression * exp, int * value2)
1800 {
1801 struct Operand op2 = GetOperand(exp);
1802
1803 return GetOpInt(&op2, value2);
1804 }
1805
1806 unsigned int GetOpUInt(struct Operand * op2, unsigned int * value2)
1807 {
1808 if(op2->kind == 3 && op2->type->isSigned)
1809 *value2 = (unsigned int)op2->__anon1.i;
1810 else if(op2->kind == 3)
1811 *value2 = op2->__anon1.ui;
1812 else if(op2->kind == 4 && op2->type->isSigned)
1813 *value2 = (unsigned int)op2->__anon1.i64;
1814 else if(op2->kind == 4)
1815 *value2 = (unsigned int)op2->__anon1.ui64;
1816 else if(op2->kind == 23 && op2->type->isSigned)
1817 *value2 = (unsigned int)op2->__anon1.i64;
1818 else if(op2->kind == 23)
1819 *value2 = (unsigned int)op2->__anon1.ui64;
1820 else if(op2->kind == 22 && op2->type->isSigned)
1821 *value2 = (unsigned int)op2->__anon1.i64;
1822 else if(op2->kind == 22)
1823 *value2 = (unsigned int)op2->__anon1.ui64;
1824 else if(op2->kind == 2 && op2->type->isSigned)
1825 *value2 = (unsigned int)op2->__anon1.s;
1826 else if(op2->kind == 2)
1827 *value2 = (unsigned int)op2->__anon1.us;
1828 else if(op2->kind == 1 && op2->type->isSigned)
1829 *value2 = (unsigned int)op2->__anon1.c;
1830 else if(op2->kind == 24 || op2->kind == 1)
1831 *value2 = (unsigned int)op2->__anon1.uc;
1832 else if(op2->kind == 6)
1833 *value2 = (unsigned int)op2->__anon1.f;
1834 else if(op2->kind == 7)
1835 *value2 = (unsigned int)op2->__anon1.d;
1836 else if(op2->kind == 13)
1837 *value2 = (unsigned int)op2->__anon1.ui64;
1838 else
1839 return 0;
1840 return 1;
1841 }
1842
1843 unsigned int GetUInt(struct Expression * exp, unsigned int * value2)
1844 {
1845 struct Operand op2 = GetOperand(exp);
1846
1847 return GetOpUInt(&op2, value2);
1848 }
1849
1850 unsigned int GetOpInt64(struct Operand * op2, long long * value2)
1851 {
1852 if(op2->kind == 3 && op2->type->isSigned)
1853 *value2 = (long long)op2->__anon1.i;
1854 else if(op2->kind == 3)
1855 *value2 = (long long)op2->__anon1.ui;
1856 else if(op2->kind == 4 && op2->type->isSigned)
1857 *value2 = op2->__anon1.i64;
1858 else if(op2->kind == 4)
1859 *value2 = (long long)op2->__anon1.ui64;
1860 else if(op2->kind == 23 && op2->type->isSigned)
1861 *value2 = op2->__anon1.i64;
1862 else if(op2->kind == 23)
1863 *value2 = (long long)op2->__anon1.ui64;
1864 else if(op2->kind == 22 && op2->type->isSigned)
1865 *value2 = op2->__anon1.i64;
1866 else if(op2->kind == 22)
1867 *value2 = (long long)op2->__anon1.ui64;
1868 else if(op2->kind == 2 && op2->type->isSigned)
1869 *value2 = (long long)op2->__anon1.s;
1870 else if(op2->kind == 2)
1871 *value2 = (long long)op2->__anon1.us;
1872 else if(op2->kind == 1 && op2->type->isSigned)
1873 *value2 = (long long)op2->__anon1.c;
1874 else if(op2->kind == 24 || op2->kind == 1)
1875 *value2 = (long long)op2->__anon1.uc;
1876 else if(op2->kind == 6)
1877 *value2 = (long long)op2->__anon1.f;
1878 else if(op2->kind == 7)
1879 *value2 = (long long)op2->__anon1.d;
1880 else if(op2->kind == 13)
1881 *value2 = (long long)op2->__anon1.ui64;
1882 else
1883 return 0;
1884 return 1;
1885 }
1886
1887 unsigned int GetInt64(struct Expression * exp, long long * value2)
1888 {
1889 struct Operand op2 = GetOperand(exp);
1890
1891 return GetOpInt64(&op2, value2);
1892 }
1893
1894 unsigned int GetOpUInt64(struct Operand * op2, uint64 * value2)
1895 {
1896 if(op2->kind == 3 && op2->type->isSigned)
1897 *value2 = (uint64)op2->__anon1.i;
1898 else if(op2->kind == 3)
1899 *value2 = (uint64)op2->__anon1.ui;
1900 else if(op2->kind == 4 && op2->type->isSigned)
1901 *value2 = (uint64)op2->__anon1.i64;
1902 else if(op2->kind == 4)
1903 *value2 = op2->__anon1.ui64;
1904 else if(op2->kind == 23 && op2->type->isSigned)
1905 *value2 = (uint64)op2->__anon1.i64;
1906 else if(op2->kind == 23)
1907 *value2 = op2->__anon1.ui64;
1908 else if(op2->kind == 22 && op2->type->isSigned)
1909 *value2 = (uint64)op2->__anon1.i64;
1910 else if(op2->kind == 22)
1911 *value2 = op2->__anon1.ui64;
1912 else if(op2->kind == 2 && op2->type->isSigned)
1913 *value2 = (uint64)op2->__anon1.s;
1914 else if(op2->kind == 2)
1915 *value2 = (uint64)op2->__anon1.us;
1916 else if(op2->kind == 1 && op2->type->isSigned)
1917 *value2 = (uint64)op2->__anon1.c;
1918 else if(op2->kind == 24 || op2->kind == 1)
1919 *value2 = (uint64)op2->__anon1.uc;
1920 else if(op2->kind == 6)
1921 *value2 = (uint64)op2->__anon1.f;
1922 else if(op2->kind == 7)
1923 *value2 = (uint64)op2->__anon1.d;
1924 else if(op2->kind == 13)
1925 *value2 = op2->__anon1.ui64;
1926 else
1927 return 0;
1928 return 1;
1929 }
1930
1931 unsigned int GetUInt64(struct Expression * exp, uint64 * value2)
1932 {
1933 struct Operand op2 = GetOperand(exp);
1934
1935 return GetOpUInt64(&op2, value2);
1936 }
1937
1938 unsigned int GetOpIntPtr(struct Operand * op2, intptr_t * value2)
1939 {
1940 if(op2->kind == 3 && op2->type->isSigned)
1941 *value2 = (intptr_t)op2->__anon1.i;
1942 else if(op2->kind == 3)
1943 *value2 = (intptr_t)op2->__anon1.ui;
1944 else if(op2->kind == 4 && op2->type->isSigned)
1945 *value2 = (intptr_t)op2->__anon1.i64;
1946 else if(op2->kind == 4)
1947 *value2 = (intptr_t)op2->__anon1.ui64;
1948 else if(op2->kind == 23 && op2->type->isSigned)
1949 *value2 = (intptr_t)op2->__anon1.i64;
1950 else if(op2->kind == 23)
1951 *value2 = (intptr_t)op2->__anon1.ui64;
1952 else if(op2->kind == 22 && op2->type->isSigned)
1953 *value2 = (intptr_t)op2->__anon1.i64;
1954 else if(op2->kind == 22)
1955 *value2 = (intptr_t)op2->__anon1.ui64;
1956 else if(op2->kind == 2 && op2->type->isSigned)
1957 *value2 = (intptr_t)op2->__anon1.s;
1958 else if(op2->kind == 2)
1959 *value2 = (intptr_t)op2->__anon1.us;
1960 else if(op2->kind == 1 && op2->type->isSigned)
1961 *value2 = (intptr_t)op2->__anon1.c;
1962 else if(op2->kind == 24 || op2->kind == 1)
1963 *value2 = (intptr_t)op2->__anon1.uc;
1964 else if(op2->kind == 6)
1965 *value2 = (intptr_t)op2->__anon1.f;
1966 else if(op2->kind == 7)
1967 *value2 = (intptr_t)op2->__anon1.d;
1968 else if(op2->kind == 13)
1969 *value2 = (intptr_t)op2->__anon1.ui64;
1970 else
1971 return 0;
1972 return 1;
1973 }
1974
1975 unsigned int GetIntPtr(struct Expression * exp, intptr_t * value2)
1976 {
1977 struct Operand op2 = GetOperand(exp);
1978
1979 return GetOpIntPtr(&op2, value2);
1980 }
1981
1982 unsigned int GetOpUIntPtr(struct Operand * op2, uintptr_t * value2)
1983 {
1984 if(op2->kind == 3 && op2->type->isSigned)
1985 *value2 = (uintptr_t)op2->__anon1.i;
1986 else if(op2->kind == 3)
1987 *value2 = (uintptr_t)op2->__anon1.ui;
1988 else if(op2->kind == 4 && op2->type->isSigned)
1989 *value2 = (uintptr_t)op2->__anon1.i64;
1990 else if(op2->kind == 4)
1991 *value2 = (uintptr_t)op2->__anon1.ui64;
1992 else if(op2->kind == 23 && op2->type->isSigned)
1993 *value2 = (uintptr_t)op2->__anon1.i64;
1994 else if(op2->kind == 23)
1995 *value2 = (uintptr_t)op2->__anon1.ui64;
1996 else if(op2->kind == 22 && op2->type->isSigned)
1997 *value2 = (uintptr_t)op2->__anon1.i64;
1998 else if(op2->kind == 22)
1999 *value2 = (uintptr_t)op2->__anon1.ui64;
2000 else if(op2->kind == 2 && op2->type->isSigned)
2001 *value2 = (uintptr_t)op2->__anon1.s;
2002 else if(op2->kind == 2)
2003 *value2 = (uintptr_t)op2->__anon1.us;
2004 else if(op2->kind == 1 && op2->type->isSigned)
2005 *value2 = (uintptr_t)op2->__anon1.c;
2006 else if(op2->kind == 24 || op2->kind == 1)
2007 *value2 = (uintptr_t)op2->__anon1.uc;
2008 else if(op2->kind == 6)
2009 *value2 = (uintptr_t)op2->__anon1.f;
2010 else if(op2->kind == 7)
2011 *value2 = (uintptr_t)op2->__anon1.d;
2012 else if(op2->kind == 13)
2013 *value2 = (uintptr_t)op2->__anon1.ui64;
2014 else
2015 return 0;
2016 return 1;
2017 }
2018
2019 unsigned int GetUIntPtr(struct Expression * exp, uintptr_t * value2)
2020 {
2021 struct Operand op2 = GetOperand(exp);
2022
2023 return GetOpUIntPtr(&op2, value2);
2024 }
2025
2026 unsigned int GetOpIntSize(struct Operand * op2, ssize_t * value2)
2027 {
2028 if(op2->kind == 3 && op2->type->isSigned)
2029 *value2 = (ssize_t)op2->__anon1.i;
2030 else if(op2->kind == 3)
2031 *value2 = (ssize_t)op2->__anon1.ui;
2032 else if(op2->kind == 4 && op2->type->isSigned)
2033 *value2 = (ssize_t)op2->__anon1.i64;
2034 else if(op2->kind == 4)
2035 *value2 = (ssize_t)op2->__anon1.ui64;
2036 else if(op2->kind == 23 && op2->type->isSigned)
2037 *value2 = (ssize_t)op2->__anon1.i64;
2038 else if(op2->kind == 23)
2039 *value2 = (ssize_t)op2->__anon1.ui64;
2040 else if(op2->kind == 22 && op2->type->isSigned)
2041 *value2 = (ssize_t)op2->__anon1.i64;
2042 else if(op2->kind == 22)
2043 *value2 = (ssize_t)op2->__anon1.ui64;
2044 else if(op2->kind == 2 && op2->type->isSigned)
2045 *value2 = (ssize_t)op2->__anon1.s;
2046 else if(op2->kind == 2)
2047 *value2 = (ssize_t)op2->__anon1.us;
2048 else if(op2->kind == 1 && op2->type->isSigned)
2049 *value2 = (ssize_t)op2->__anon1.c;
2050 else if(op2->kind == 24 || op2->kind == 1)
2051 *value2 = (ssize_t)op2->__anon1.uc;
2052 else if(op2->kind == 6)
2053 *value2 = (ssize_t)op2->__anon1.f;
2054 else if(op2->kind == 7)
2055 *value2 = (ssize_t)op2->__anon1.d;
2056 else if(op2->kind == 13)
2057 *value2 = (ssize_t)op2->__anon1.ui64;
2058 else
2059 return 0;
2060 return 1;
2061 }
2062
2063 unsigned int GetIntSize(struct Expression * exp, ssize_t * value2)
2064 {
2065 struct Operand op2 = GetOperand(exp);
2066
2067 return GetOpIntSize(&op2, value2);
2068 }
2069
2070 unsigned int GetOpUIntSize(struct Operand * op2, size_t * value2)
2071 {
2072 if(op2->kind == 3 && op2->type->isSigned)
2073 *value2 = (size_t)op2->__anon1.i;
2074 else if(op2->kind == 3)
2075 *value2 = (size_t)op2->__anon1.ui;
2076 else if(op2->kind == 4 && op2->type->isSigned)
2077 *value2 = (size_t)op2->__anon1.i64;
2078 else if(op2->kind == 4)
2079 *value2 = (size_t)op2->__anon1.ui64;
2080 else if(op2->kind == 23 && op2->type->isSigned)
2081 *value2 = (size_t)op2->__anon1.i64;
2082 else if(op2->kind == 23)
2083 *value2 = (size_t)op2->__anon1.ui64;
2084 else if(op2->kind == 22 && op2->type->isSigned)
2085 *value2 = (size_t)op2->__anon1.i64;
2086 else if(op2->kind == 22)
2087 *value2 = (size_t)op2->__anon1.ui64;
2088 else if(op2->kind == 2 && op2->type->isSigned)
2089 *value2 = (size_t)op2->__anon1.s;
2090 else if(op2->kind == 2)
2091 *value2 = (size_t)op2->__anon1.us;
2092 else if(op2->kind == 1 && op2->type->isSigned)
2093 *value2 = (size_t)op2->__anon1.c;
2094 else if(op2->kind == 24 || op2->kind == 1)
2095 *value2 = (size_t)op2->__anon1.uc;
2096 else if(op2->kind == 6)
2097 *value2 = (size_t)op2->__anon1.f;
2098 else if(op2->kind == 7)
2099 *value2 = (size_t)op2->__anon1.d;
2100 else if(op2->kind == 13)
2101 *value2 = (size_t)op2->__anon1.ui64;
2102 else
2103 return 0;
2104 return 1;
2105 }
2106
2107 unsigned int GetUIntSize(struct Expression * exp, size_t * value2)
2108 {
2109 struct Operand op2 = GetOperand(exp);
2110
2111 return GetOpUIntSize(&op2, value2);
2112 }
2113
2114 unsigned int GetOpShort(struct Operand * op2, short * value2)
2115 {
2116 if(op2->kind == 3 && op2->type->isSigned)
2117 *value2 = (short)op2->__anon1.i;
2118 else if(op2->kind == 3)
2119 *value2 = (short)op2->__anon1.ui;
2120 else if(op2->kind == 4 && op2->type->isSigned)
2121 *value2 = (short)op2->__anon1.i64;
2122 else if(op2->kind == 4)
2123 *value2 = (short)op2->__anon1.ui64;
2124 else if(op2->kind == 23 && op2->type->isSigned)
2125 *value2 = (short)op2->__anon1.i64;
2126 else if(op2->kind == 23)
2127 *value2 = (short)op2->__anon1.ui64;
2128 else if(op2->kind == 22 && op2->type->isSigned)
2129 *value2 = (short)op2->__anon1.i64;
2130 else if(op2->kind == 22)
2131 *value2 = (short)op2->__anon1.ui64;
2132 else if(op2->kind == 2 && op2->type->isSigned)
2133 *value2 = op2->__anon1.s;
2134 else if(op2->kind == 2)
2135 *value2 = (short)op2->__anon1.us;
2136 else if(op2->kind == 1 && op2->type->isSigned)
2137 *value2 = (short)op2->__anon1.c;
2138 else if(op2->kind == 24 || op2->kind == 1)
2139 *value2 = (short)op2->__anon1.uc;
2140 else if(op2->kind == 6)
2141 *value2 = (short)op2->__anon1.f;
2142 else if(op2->kind == 7)
2143 *value2 = (short)op2->__anon1.d;
2144 else if(op2->kind == 13)
2145 *value2 = (short)op2->__anon1.ui64;
2146 else
2147 return 0;
2148 return 1;
2149 }
2150
2151 unsigned int GetShort(struct Expression * exp, short * value2)
2152 {
2153 struct Operand op2 = GetOperand(exp);
2154
2155 return GetOpShort(&op2, value2);
2156 }
2157
2158 unsigned int GetOpUShort(struct Operand * op2, unsigned short * value2)
2159 {
2160 if(op2->kind == 3 && op2->type->isSigned)
2161 *value2 = (unsigned short)op2->__anon1.i;
2162 else if(op2->kind == 3)
2163 *value2 = (unsigned short)op2->__anon1.ui;
2164 else if(op2->kind == 4 && op2->type->isSigned)
2165 *value2 = (unsigned short)op2->__anon1.i64;
2166 else if(op2->kind == 4)
2167 *value2 = (unsigned short)op2->__anon1.ui64;
2168 else if(op2->kind == 23 && op2->type->isSigned)
2169 *value2 = (unsigned short)op2->__anon1.i64;
2170 else if(op2->kind == 23)
2171 *value2 = (unsigned short)op2->__anon1.ui64;
2172 else if(op2->kind == 22 && op2->type->isSigned)
2173 *value2 = (unsigned short)op2->__anon1.i64;
2174 else if(op2->kind == 22)
2175 *value2 = (unsigned short)op2->__anon1.ui64;
2176 else if(op2->kind == 2 && op2->type->isSigned)
2177 *value2 = (unsigned short)op2->__anon1.s;
2178 else if(op2->kind == 2)
2179 *value2 = op2->__anon1.us;
2180 else if(op2->kind == 1 && op2->type->isSigned)
2181 *value2 = (unsigned short)op2->__anon1.c;
2182 else if(op2->kind == 24 || op2->kind == 1)
2183 *value2 = (unsigned short)op2->__anon1.uc;
2184 else if(op2->kind == 6)
2185 *value2 = (unsigned short)op2->__anon1.f;
2186 else if(op2->kind == 7)
2187 *value2 = (unsigned short)op2->__anon1.d;
2188 else if(op2->kind == 13)
2189 *value2 = (unsigned short)op2->__anon1.ui64;
2190 else
2191 return 0;
2192 return 1;
2193 }
2194
2195 unsigned int GetUShort(struct Expression * exp, unsigned short * value2)
2196 {
2197 struct Operand op2 = GetOperand(exp);
2198
2199 return GetOpUShort(&op2, value2);
2200 }
2201
2202 unsigned int GetOpChar(struct Operand * op2, char * value2)
2203 {
2204 if(op2->kind == 3 && op2->type->isSigned)
2205 *value2 = (char)op2->__anon1.i;
2206 else if(op2->kind == 3)
2207 *value2 = (char)op2->__anon1.ui;
2208 else if(op2->kind == 4 && op2->type->isSigned)
2209 *value2 = (char)op2->__anon1.i64;
2210 else if(op2->kind == 4)
2211 *value2 = (char)op2->__anon1.ui64;
2212 else if(op2->kind == 23 && op2->type->isSigned)
2213 *value2 = (char)op2->__anon1.i64;
2214 else if(op2->kind == 23)
2215 *value2 = (char)op2->__anon1.ui64;
2216 else if(op2->kind == 22 && op2->type->isSigned)
2217 *value2 = (char)op2->__anon1.i64;
2218 else if(op2->kind == 22)
2219 *value2 = (char)op2->__anon1.ui64;
2220 else if(op2->kind == 2 && op2->type->isSigned)
2221 *value2 = (char)op2->__anon1.s;
2222 else if(op2->kind == 2)
2223 *value2 = (char)op2->__anon1.us;
2224 else if(op2->kind == 1 && op2->type->isSigned)
2225 *value2 = op2->__anon1.c;
2226 else if(op2->kind == 24 || op2->kind == 1)
2227 *value2 = (char)op2->__anon1.uc;
2228 else if(op2->kind == 6)
2229 *value2 = (char)op2->__anon1.f;
2230 else if(op2->kind == 7)
2231 *value2 = (char)op2->__anon1.d;
2232 else if(op2->kind == 13)
2233 *value2 = (char)op2->__anon1.ui64;
2234 else
2235 return 0;
2236 return 1;
2237 }
2238
2239 unsigned int GetChar(struct Expression * exp, char * value2)
2240 {
2241 struct Operand op2 = GetOperand(exp);
2242
2243 return GetOpChar(&op2, value2);
2244 }
2245
2246 unsigned int GetOpUChar(struct Operand * op2, unsigned char * value2)
2247 {
2248 if(op2->kind == 3 && op2->type->isSigned)
2249 *value2 = (unsigned char)op2->__anon1.i;
2250 else if(op2->kind == 3)
2251 *value2 = (unsigned char)op2->__anon1.ui;
2252 else if(op2->kind == 4 && op2->type->isSigned)
2253 *value2 = (unsigned char)op2->__anon1.i64;
2254 else if(op2->kind == 4)
2255 *value2 = (unsigned char)op2->__anon1.ui64;
2256 else if(op2->kind == 23 && op2->type->isSigned)
2257 *value2 = (unsigned char)op2->__anon1.i64;
2258 else if(op2->kind == 23)
2259 *value2 = (unsigned char)op2->__anon1.ui64;
2260 else if(op2->kind == 22 && op2->type->isSigned)
2261 *value2 = (unsigned char)op2->__anon1.i64;
2262 else if(op2->kind == 22)
2263 *value2 = (unsigned char)op2->__anon1.ui64;
2264 else if(op2->kind == 2 && op2->type->isSigned)
2265 *value2 = (unsigned char)op2->__anon1.s;
2266 else if(op2->kind == 2)
2267 *value2 = (unsigned char)op2->__anon1.us;
2268 else if(op2->kind == 1 && op2->type->isSigned)
2269 *value2 = (unsigned char)op2->__anon1.c;
2270 else if(op2->kind == 24 || op2->kind == 1)
2271 *value2 = op2->__anon1.uc;
2272 else if(op2->kind == 6)
2273 *value2 = (unsigned char)op2->__anon1.f;
2274 else if(op2->kind == 7)
2275 *value2 = (unsigned char)op2->__anon1.d;
2276 else if(op2->kind == 13)
2277 *value2 = (unsigned char)op2->__anon1.ui64;
2278 else
2279 return 0;
2280 return 1;
2281 }
2282
2283 unsigned int GetUChar(struct Expression * exp, unsigned char * value2)
2284 {
2285 struct Operand op2 = GetOperand(exp);
2286
2287 return GetOpUChar(&op2, value2);
2288 }
2289
2290 unsigned int GetOpFloat(struct Operand * op2, float * value2)
2291 {
2292 if(op2->kind == 3 && op2->type->isSigned)
2293 *value2 = (float)(float)op2->__anon1.i;
2294 else if(op2->kind == 3)
2295 *value2 = (float)(float)op2->__anon1.ui;
2296 else if(op2->kind == 4 && op2->type->isSigned)
2297 *value2 = (float)(float)op2->__anon1.i64;
2298 else if(op2->kind == 4)
2299 *value2 = (float)(float)op2->__anon1.ui64;
2300 else if(op2->kind == 23 && op2->type->isSigned)
2301 *value2 = (float)(float)op2->__anon1.i64;
2302 else if(op2->kind == 23)
2303 *value2 = (float)(float)op2->__anon1.ui64;
2304 else if(op2->kind == 22 && op2->type->isSigned)
2305 *value2 = (float)(float)op2->__anon1.i64;
2306 else if(op2->kind == 22)
2307 *value2 = (float)(float)op2->__anon1.ui64;
2308 else if(op2->kind == 2 && op2->type->isSigned)
2309 *value2 = (float)(float)op2->__anon1.s;
2310 else if(op2->kind == 2)
2311 *value2 = (float)(float)op2->__anon1.us;
2312 else if(op2->kind == 1 && op2->type->isSigned)
2313 *value2 = (float)(float)op2->__anon1.c;
2314 else if(op2->kind == 24 || op2->kind == 1)
2315 *value2 = (float)(float)op2->__anon1.uc;
2316 else if(op2->kind == 6)
2317 *value2 = (float)op2->__anon1.f;
2318 else if(op2->kind == 7)
2319 *value2 = (float)op2->__anon1.d;
2320 else if(op2->kind == 13)
2321 *value2 = (float)(float)op2->__anon1.ui64;
2322 else
2323 return 0;
2324 return 1;
2325 }
2326
2327 unsigned int GetFloat(struct Expression * exp, float * value2)
2328 {
2329 struct Operand op2 = GetOperand(exp);
2330
2331 return GetOpFloat(&op2, value2);
2332 }
2333
2334 unsigned int GetOpDouble(struct Operand * op2, double * value2)
2335 {
2336 if(op2->kind == 3 && op2->type->isSigned)
2337 *value2 = (double)(double)op2->__anon1.i;
2338 else if(op2->kind == 3)
2339 *value2 = (double)(double)op2->__anon1.ui;
2340 else if(op2->kind == 4 && op2->type->isSigned)
2341 *value2 = (double)(double)op2->__anon1.i64;
2342 else if(op2->kind == 4)
2343 *value2 = (double)(double)op2->__anon1.ui64;
2344 else if(op2->kind == 23 && op2->type->isSigned)
2345 *value2 = (double)(double)op2->__anon1.i64;
2346 else if(op2->kind == 23)
2347 *value2 = (double)(double)op2->__anon1.ui64;
2348 else if(op2->kind == 22 && op2->type->isSigned)
2349 *value2 = (double)(double)op2->__anon1.i64;
2350 else if(op2->kind == 22)
2351 *value2 = (double)(double)op2->__anon1.ui64;
2352 else if(op2->kind == 2 && op2->type->isSigned)
2353 *value2 = (double)(double)op2->__anon1.s;
2354 else if(op2->kind == 2)
2355 *value2 = (double)(double)op2->__anon1.us;
2356 else if(op2->kind == 1 && op2->type->isSigned)
2357 *value2 = (double)(double)op2->__anon1.c;
2358 else if(op2->kind == 24 || op2->kind == 1)
2359 *value2 = (double)(double)op2->__anon1.uc;
2360 else if(op2->kind == 6)
2361 *value2 = (double)op2->__anon1.f;
2362 else if(op2->kind == 7)
2363 *value2 = (double)op2->__anon1.d;
2364 else if(op2->kind == 13)
2365 *value2 = (double)(double)op2->__anon1.ui64;
2366 else
2367 return 0;
2368 return 1;
2369 }
2370
2371 unsigned int GetDouble(struct Expression * exp, double * value2)
2372 {
2373 struct Operand op2 = GetOperand(exp);
2374
2375 return GetOpDouble(&op2, value2);
2376 }
2377
2378 void ComputeExpression(struct Expression * exp);
2379
2380 struct Context * SetupTemplatesContext(struct __ecereNameSpace__ecere__com__Class * _class);
2381
2382 extern int targetBits;
2383
2384 int ComputeTypeSize(struct Type * type);
2385
2386 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__BitMember;
2387
2388 struct __ecereNameSpace__ecere__com__BitMember
2389 {
2390 struct __ecereNameSpace__ecere__com__BitMember * prev;
2391 struct __ecereNameSpace__ecere__com__BitMember * next;
2392 const char *  name;
2393 unsigned int isProperty;
2394 int memberAccess;
2395 int id;
2396 struct __ecereNameSpace__ecere__com__Class * _class;
2397 const char *  dataTypeString;
2398 struct __ecereNameSpace__ecere__com__Class * dataTypeClass;
2399 struct Type * dataType;
2400 int type;
2401 int size;
2402 int pos;
2403 uint64 mask;
2404 } __attribute__ ((gcc_struct));
2405
2406 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__sys__OldLink;
2407
2408 struct __ecereNameSpace__ecere__sys__OldLink
2409 {
2410 struct __ecereNameSpace__ecere__sys__OldLink * prev;
2411 struct __ecereNameSpace__ecere__sys__OldLink * next;
2412 void *  data;
2413 } __attribute__ ((gcc_struct));
2414
2415 void FinishTemplatesContext(struct Context * context);
2416
2417 void ComputeClassMembers(struct __ecereNameSpace__ecere__com__Class * _class, unsigned int isMember)
2418 {
2419 struct __ecereNameSpace__ecere__com__DataMember * member = isMember ? (struct __ecereNameSpace__ecere__com__DataMember *)_class : (((void *)0));
2420 struct Context * context = isMember ? (((void *)0)) : SetupTemplatesContext(_class);
2421
2422 if(member || ((_class->type == 2 || _class->type == 0 || _class->type == 1 || _class->type == 5) && (_class->type == 2 || (!_class->structSize || _class->structSize == _class->offset)) && _class->computeSize))
2423 {
2424 int unionMemberOffset = 0;
2425 int bitFields = 0;
2426
2427 if(member)
2428 {
2429 member->memberOffset = 0;
2430 if(targetBits < sizeof(void *) * 8)
2431 member->structAlignment = 0;
2432 }
2433 else if(targetBits < sizeof(void *) * 8)
2434 _class->structAlignment = 0;
2435 if(!member && ((_class->type == 0 || _class->type == 5) || (_class->type == 1 && _class->memberOffset && _class->memberOffset > _class->base->structSize)))
2436 _class->memberOffset = (_class->base && _class->type == 1) ? _class->base->structSize : 0;
2437 if(!member && _class->destructionWatchOffset)
2438 _class->memberOffset += sizeof(struct __ecereNameSpace__ecere__sys__OldList);
2439 {
2440 struct __ecereNameSpace__ecere__com__DataMember * dataMember;
2441
2442 for(dataMember = member ? member->members.first : _class->membersAndProperties.first; dataMember; dataMember = dataMember->next)
2443 {
2444 if(!dataMember->isProperty)
2445 {
2446 if(dataMember->type == 0 && dataMember->dataTypeString && !dataMember->dataType)
2447 {
2448 dataMember->dataType = ProcessTypeString(dataMember->dataTypeString, 0);
2449 }
2450 }
2451 }
2452 }
2453 {
2454 struct __ecereNameSpace__ecere__com__DataMember * dataMember;
2455
2456 for(dataMember = member ? member->members.first : _class->membersAndProperties.first; dataMember; dataMember = dataMember->next)
2457 {
2458 if(!dataMember->isProperty && (dataMember->type != 0 || dataMember->dataTypeString))
2459 {
2460 if(!isMember && _class->type == 2 && dataMember->dataType)
2461 {
2462 struct __ecereNameSpace__ecere__com__BitMember * bitMember = (struct __ecereNameSpace__ecere__com__BitMember *)dataMember;
2463 uint64 mask = 0;
2464 int d;
2465
2466 ComputeTypeSize(dataMember->dataType);
2467 if(bitMember->pos == -1)
2468 bitMember->pos = _class->memberOffset;
2469 if(!bitMember->size)
2470 bitMember->size = dataMember->dataType->size * 8;
2471 _class->memberOffset = bitMember->pos + bitMember->size;
2472 for(d = 0; d < bitMember->size; d++)
2473 {
2474 if(d)
2475 mask <<= 1;
2476 mask |= 1;
2477 }
2478 bitMember->mask = mask << bitMember->pos;
2479 }
2480 else if(dataMember->type == 0 && dataMember->dataType)
2481 {
2482 int size;
2483 int alignment = 0;
2484
2485 if(dataMember->dataType->kind != 8 || ((!dataMember->dataType->__anon1._class || !dataMember->dataType->__anon1._class->__anon1.registered || dataMember->dataType->__anon1._class->__anon1.registered != _class || _class->type != 1)))
2486 ComputeTypeSize(dataMember->dataType);
2487 if(dataMember->dataType->bitFieldCount)
2488 {
2489 bitFields += dataMember->dataType->bitFieldCount;
2490 size = 0;
2491 }
2492 else
2493 {
2494 if(bitFields)
2495 {
2496 int size = (bitFields + 7) / 8;
2497
2498 if(isMember)
2499 {
2500 int __simpleStruct0;
2501
2502 if(alignment)
2503 {
2504 int __simpleStruct0;
2505
2506 member->structAlignment = (__simpleStruct0 = member->structAlignment, (__simpleStruct0 > alignment) ? __simpleStruct0 : alignment);
2507 if(member->memberOffset % alignment)
2508 member->memberOffset += alignment - (member->memberOffset % alignment);
2509 }
2510 dataMember->offset = member->memberOffset;
2511 if(member->type == 1)
2512 unionMemberOffset = (__simpleStruct0 = dataMember->dataType->size, (unionMemberOffset > __simpleStruct0) ? unionMemberOffset : __simpleStruct0);
2513 else
2514 {
2515 member->memberOffset += size;
2516 }
2517 }
2518 else
2519 {
2520 if(alignment)
2521 {
2522 int __simpleStruct0;
2523
2524 _class->structAlignment = (__simpleStruct0 = _class->structAlignment, (__simpleStruct0 > alignment) ? __simpleStruct0 : alignment);
2525 if(_class->memberOffset % alignment)
2526 _class->memberOffset += alignment - (_class->memberOffset % alignment);
2527 }
2528 dataMember->offset = _class->memberOffset;
2529 _class->memberOffset += size;
2530 }
2531 bitFields = 0;
2532 }
2533 size = dataMember->dataType->size;
2534 alignment = dataMember->dataType->alignment;
2535 }
2536 if(isMember)
2537 {
2538 int __simpleStruct0;
2539
2540 if(alignment)
2541 {
2542 int __simpleStruct0;
2543
2544 member->structAlignment = (__simpleStruct0 = member->structAlignment, (__simpleStruct0 > alignment) ? __simpleStruct0 : alignment);
2545 if(member->memberOffset % alignment)
2546 member->memberOffset += alignment - (member->memberOffset % alignment);
2547 }
2548 dataMember->offset = member->memberOffset;
2549 if(member->type == 1)
2550 unionMemberOffset = (__simpleStruct0 = dataMember->dataType->size, (unionMemberOffset > __simpleStruct0) ? unionMemberOffset : __simpleStruct0);
2551 else
2552 {
2553 member->memberOffset += size;
2554 }
2555 }
2556 else
2557 {
2558 if(alignment)
2559 {
2560 int __simpleStruct0;
2561
2562 _class->structAlignment = (__simpleStruct0 = _class->structAlignment, (__simpleStruct0 > alignment) ? __simpleStruct0 : alignment);
2563 if(_class->memberOffset % alignment)
2564 _class->memberOffset += alignment - (_class->memberOffset % alignment);
2565 }
2566 dataMember->offset = _class->memberOffset;
2567 _class->memberOffset += size;
2568 }
2569 }
2570 else
2571 {
2572 int alignment;
2573
2574 ComputeClassMembers((struct __ecereNameSpace__ecere__com__Class *)dataMember, 1);
2575 alignment = dataMember->structAlignment;
2576 if(isMember)
2577 {
2578 int __simpleStruct0;
2579
2580 if(alignment)
2581 {
2582 int __simpleStruct0;
2583
2584 if(member->memberOffset % alignment)
2585 member->memberOffset += alignment - (member->memberOffset % alignment);
2586 member->structAlignment = (__simpleStruct0 = member->structAlignment, (__simpleStruct0 > alignment) ? __simpleStruct0 : alignment);
2587 }
2588 dataMember->offset = member->memberOffset;
2589 if(member->type == 1)
2590 unionMemberOffset = (__simpleStruct0 = dataMember->memberOffset, (unionMemberOffset > __simpleStruct0) ? unionMemberOffset : __simpleStruct0);
2591 else
2592 member->memberOffset += dataMember->memberOffset;
2593 }
2594 else
2595 {
2596 if(alignment)
2597 {
2598 int __simpleStruct0;
2599
2600 if(_class->memberOffset % alignment)
2601 _class->memberOffset += alignment - (_class->memberOffset % alignment);
2602 _class->structAlignment = (__simpleStruct0 = _class->structAlignment, (__simpleStruct0 > alignment) ? __simpleStruct0 : alignment);
2603 }
2604 dataMember->offset = _class->memberOffset;
2605 _class->memberOffset += dataMember->memberOffset;
2606 }
2607 }
2608 }
2609 }
2610 if(bitFields)
2611 {
2612 int alignment = 0;
2613 int size = (bitFields + 7) / 8;
2614
2615 if(isMember)
2616 {
2617 int __simpleStruct0;
2618
2619 if(alignment)
2620 {
2621 int __simpleStruct0;
2622
2623 member->structAlignment = (__simpleStruct0 = member->structAlignment, (__simpleStruct0 > alignment) ? __simpleStruct0 : alignment);
2624 if(member->memberOffset % alignment)
2625 member->memberOffset += alignment - (member->memberOffset % alignment);
2626 }
2627 if(member->type == 1)
2628 unionMemberOffset = (__simpleStruct0 = dataMember->dataType->size, (unionMemberOffset > __simpleStruct0) ? unionMemberOffset : __simpleStruct0);
2629 else
2630 {
2631 member->memberOffset += size;
2632 }
2633 }
2634 else
2635 {
2636 if(alignment)
2637 {
2638 int __simpleStruct0;
2639
2640 _class->structAlignment = (__simpleStruct0 = _class->structAlignment, (__simpleStruct0 > alignment) ? __simpleStruct0 : alignment);
2641 if(_class->memberOffset % alignment)
2642 _class->memberOffset += alignment - (_class->memberOffset % alignment);
2643 }
2644 _class->memberOffset += size;
2645 }
2646 bitFields = 0;
2647 }
2648 }
2649 if(member && member->type == 1)
2650 {
2651 member->memberOffset = unionMemberOffset;
2652 }
2653 if(!isMember)
2654 {
2655 if(_class->type != 2)
2656 {
2657 int extra = 0;
2658
2659 if(_class->structAlignment)
2660 {
2661 if(_class->memberOffset % _class->structAlignment)
2662 extra += _class->structAlignment - (_class->memberOffset % _class->structAlignment);
2663 }
2664 _class->structSize = (_class->base ? (_class->base->templateClass ? _class->base->templateClass->structSize : _class->base->structSize) : 0) + _class->memberOffset + extra;
2665 if(!member)
2666 {
2667 struct __ecereNameSpace__ecere__com__Property * prop;
2668
2669 for(prop = _class->membersAndProperties.first; prop; prop = prop->next)
2670 {
2671 if(prop->isProperty && prop->isWatchable)
2672 {
2673 prop->watcherOffset = _class->structSize;
2674 _class->structSize += sizeof(struct __ecereNameSpace__ecere__sys__OldList);
2675 }
2676 }
2677 }
2678 {
2679 struct __ecereNameSpace__ecere__sys__OldLink * derivative;
2680
2681 for(derivative = _class->derivatives.first; derivative; derivative = derivative->next)
2682 {
2683 struct __ecereNameSpace__ecere__com__Class * deriv = derivative->data;
2684
2685 if(deriv->computeSize)
2686 {
2687 deriv->offset = _class->structSize;
2688 deriv->memberOffset = 0;
2689 deriv->structSize = deriv->offset;
2690 ComputeClassMembers(deriv, 0);
2691 }
2692 }
2693 }
2694 }
2695 }
2696 }
2697 if(context)
2698 FinishTemplatesContext(context);
2699 }
2700
2701 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__NameSpace;
2702
2703 struct __ecereNameSpace__ecere__com__NameSpace
2704 {
2705 const char *  name;
2706 struct __ecereNameSpace__ecere__com__NameSpace *  btParent;
2707 struct __ecereNameSpace__ecere__com__NameSpace *  left;
2708 struct __ecereNameSpace__ecere__com__NameSpace *  right;
2709 int depth;
2710 struct __ecereNameSpace__ecere__com__NameSpace *  parent;
2711 struct __ecereNameSpace__ecere__sys__BinaryTree nameSpaces;
2712 struct __ecereNameSpace__ecere__sys__BinaryTree classes;
2713 struct __ecereNameSpace__ecere__sys__BinaryTree defines;
2714 struct __ecereNameSpace__ecere__sys__BinaryTree functions;
2715 } __attribute__ ((gcc_struct));
2716
2717 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__Module;
2718
2719 struct __ecereNameSpace__ecere__com__Module
2720 {
2721 struct __ecereNameSpace__ecere__com__Instance * application;
2722 struct __ecereNameSpace__ecere__sys__OldList classes;
2723 struct __ecereNameSpace__ecere__sys__OldList defines;
2724 struct __ecereNameSpace__ecere__sys__OldList functions;
2725 struct __ecereNameSpace__ecere__sys__OldList modules;
2726 struct __ecereNameSpace__ecere__com__Instance * prev;
2727 struct __ecereNameSpace__ecere__com__Instance * next;
2728 const char *  name;
2729 void *  library;
2730 void *  Unload;
2731 int importType;
2732 int origImportType;
2733 struct __ecereNameSpace__ecere__com__NameSpace privateNameSpace;
2734 struct __ecereNameSpace__ecere__com__NameSpace publicNameSpace;
2735 } __attribute__ ((gcc_struct));
2736
2737 void ComputeModuleClasses(struct __ecereNameSpace__ecere__com__Instance * module)
2738 {
2739 struct __ecereNameSpace__ecere__com__Class * _class;
2740 struct __ecereNameSpace__ecere__sys__OldLink * subModule;
2741
2742 for(subModule = ((struct __ecereNameSpace__ecere__com__Module *)(((char *)module + structSize_Instance)))->modules.first; subModule; subModule = subModule->next)
2743 ComputeModuleClasses(subModule->data);
2744 for(_class = ((struct __ecereNameSpace__ecere__com__Module *)(((char *)module + structSize_Instance)))->classes.first; _class; _class = _class->next)
2745 ComputeClassMembers(_class, 0);
2746 }
2747
2748 extern unsigned int inCompiler;
2749
2750 extern void Compiler_Error(const char *  format, ...);
2751
2752 extern const char *  __ecereNameSpace__ecere__GetTranslatedString(const char * name, const char *  string, const char *  stringAndContext);
2753
2754 extern struct Symbol * FindStruct(struct Context * ctx, const char *  name);
2755
2756 int ComputeTypeSize(struct Type * type)
2757 {
2758 unsigned int size = type ? type->size : 0;
2759
2760 if(!size && type && !type->computing)
2761 {
2762 type->computing = 1;
2763 switch(type->kind)
2764 {
2765 case 24:
2766 type->alignment = size = sizeof(char);
2767 break;
2768 case 1:
2769 type->alignment = size = sizeof(char);
2770 break;
2771 case 3:
2772 type->alignment = size = sizeof(int);
2773 break;
2774 case 4:
2775 type->alignment = size = sizeof(long long);
2776 break;
2777 case 22:
2778 type->alignment = size = targetBits / 8;
2779 break;
2780 case 23:
2781 type->alignment = size = targetBits / 8;
2782 break;
2783 case 5:
2784 type->alignment = size = sizeof(long);
2785 break;
2786 case 2:
2787 type->alignment = size = sizeof(short);
2788 break;
2789 case 6:
2790 type->alignment = size = sizeof(float);
2791 break;
2792 case 7:
2793 type->alignment = size = sizeof(double);
2794 break;
2795 case 8:
2796 {
2797 struct __ecereNameSpace__ecere__com__Class * _class = type->__anon1._class ? type->__anon1._class->__anon1.registered : (((void *)0));
2798
2799 if(_class && _class->type == 1)
2800 {
2801 ComputeClassMembers(_class, 0);
2802 type->alignment = _class->structAlignment;
2803 size = _class->structSize;
2804 if(type->alignment && size % type->alignment)
2805 size += type->alignment - (size % type->alignment);
2806 }
2807 else if(_class && (_class->type == 3 || _class->type == 4 || _class->type == 2))
2808 {
2809 if(!_class->dataType)
2810 _class->dataType = ProcessTypeString(_class->dataTypeString, 0);
2811 size = type->alignment = ComputeTypeSize(_class->dataType);
2812 }
2813 else
2814 size = type->alignment = targetBits / 8;
2815 break;
2816 }
2817 case 13:
2818 case 19:
2819 size = type->alignment = targetBits / 8;
2820 break;
2821 case 12:
2822 if(type->__anon1.__anon4.arraySizeExp)
2823 {
2824 ProcessExpressionType(type->__anon1.__anon4.arraySizeExp);
2825 ComputeExpression(type->__anon1.__anon4.arraySizeExp);
2826 if(!type->__anon1.__anon4.arraySizeExp->isConstant || (type->__anon1.__anon4.arraySizeExp->expType->kind != 3 && type->__anon1.__anon4.arraySizeExp->expType->kind != 2 && type->__anon1.__anon4.arraySizeExp->expType->kind != 1 && type->__anon1.__anon4.arraySizeExp->expType->kind != 5 && type->__anon1.__anon4.arraySizeExp->expType->kind != 4 && type->__anon1.__anon4.arraySizeExp->expType->kind != 23 && type->__anon1.__anon4.arraySizeExp->expType->kind != 22 && type->__anon1.__anon4.arraySizeExp->expType->kind != 15 && (type->__anon1.__anon4.arraySizeExp->expType->kind != 8 || !type->__anon1.__anon4.arraySizeExp->expType->__anon1._class->__anon1.registered || type->__anon1.__anon4.arraySizeExp->expType->__anon1._class->__anon1.registered->type != 4)))
2827 {
2828 struct Location oldLoc = yylloc;
2829 char expression[10240];
2830
2831 expression[0] = '\0';
2832 type->__anon1.__anon4.arraySizeExp->expType = (((void *)0));
2833 yylloc = type->__anon1.__anon4.arraySizeExp->loc;
2834 if(inCompiler)
2835 PrintExpression(type->__anon1.__anon4.arraySizeExp, expression);
2836 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "Array size not constant int (%s)\n", (((void *)0))), expression);
2837 yylloc = oldLoc;
2838 }
2839 GetInt(type->__anon1.__anon4.arraySizeExp, &type->__anon1.__anon4.arraySize);
2840 }
2841 else if(type->__anon1.__anon4.enumClass)
2842 {
2843 if(type->__anon1.__anon4.enumClass && type->__anon1.__anon4.enumClass->__anon1.registered && type->__anon1.__anon4.enumClass->__anon1.registered->type == 4)
2844 {
2845 type->__anon1.__anon4.arraySize = (int)__ecereNameSpace__ecere__com__eClass_GetProperty(type->__anon1.__anon4.enumClass->__anon1.registered, "enumSize");
2846 }
2847 else
2848 type->__anon1.__anon4.arraySize = 0;
2849 }
2850 else
2851 {
2852 type->__anon1.__anon4.arraySize = 0;
2853 }
2854 size = ComputeTypeSize(type->__anon1.type) * type->__anon1.__anon4.arraySize;
2855 if(type->__anon1.type)
2856 type->alignment = type->__anon1.type->alignment;
2857 break;
2858 case 9:
2859 {
2860 if(!type->__anon1.__anon1.members.first && type->__anon1.__anon1.enumName)
2861 {
2862 struct Symbol * symbol = FindStruct(curContext, type->__anon1.__anon1.enumName);
2863
2864 if(symbol && symbol->type)
2865 {
2866 ComputeTypeSize(symbol->type);
2867 size = symbol->type->size;
2868 }
2869 }
2870 else
2871 {
2872 struct Type * member;
2873
2874 for(member = type->__anon1.__anon1.members.first; member; member = member->next)
2875 {
2876 int __simpleStruct0, __simpleStruct1;
2877 unsigned int addSize = ComputeTypeSize(member);
2878
2879 member->offset = size;
2880 if(member->alignment && size % member->alignment)
2881 member->offset += member->alignment - (size % member->alignment);
2882 size = member->offset;
2883 type->alignment = (__simpleStruct0 = type->alignment, __simpleStruct1 = member->alignment, (__simpleStruct0 > __simpleStruct1) ? __simpleStruct0 : __simpleStruct1);
2884 size += addSize;
2885 }
2886 if(type->alignment && size % type->alignment)
2887 size += type->alignment - (size % type->alignment);
2888 }
2889 break;
2890 }
2891 case 10:
2892 {
2893 if(!type->__anon1.__anon1.members.first && type->__anon1.__anon1.enumName)
2894 {
2895 struct Symbol * symbol = FindStruct(curContext, type->__anon1.__anon1.enumName);
2896
2897 if(symbol && symbol->type)
2898 {
2899 ComputeTypeSize(symbol->type);
2900 size = symbol->type->size;
2901 }
2902 }
2903 else
2904 {
2905 struct Type * member;
2906
2907 for(member = type->__anon1.__anon1.members.first; member; member = member->next)
2908 {
2909 int __simpleStruct0, __simpleStruct1;
2910 unsigned int addSize = ComputeTypeSize(member);
2911
2912 member->offset = size;
2913 if(member->alignment && size % member->alignment)
2914 member->offset += member->alignment - (size % member->alignment);
2915 size = member->offset;
2916 type->alignment = (__simpleStruct0 = type->alignment, __simpleStruct1 = member->alignment, (__simpleStruct0 > __simpleStruct1) ? __simpleStruct0 : __simpleStruct1);
2917 size = ((size > addSize) ? size : addSize);
2918 }
2919 if(type->alignment && size % type->alignment)
2920 size += type->alignment - (size % type->alignment);
2921 }
2922 break;
2923 }
2924 case 20:
2925 {
2926 struct TemplateParameter * param = type->__anon1.templateParameter;
2927 struct Type * baseType = ProcessTemplateParameterType(param);
2928
2929 if(baseType)
2930 {
2931 size = ComputeTypeSize(baseType);
2932 type->alignment = baseType->alignment;
2933 }
2934 else
2935 type->alignment = size = sizeof(uint64);
2936 break;
2937 }
2938 case 15:
2939 {
2940 type->alignment = size = sizeof(enum
2941 {
2942 test
2943 });
2944 break;
2945 }
2946 case 21:
2947 {
2948 type->alignment = size = targetBits / 8;
2949 break;
2950 }
2951 }
2952 type->size = size;
2953 type->computing = 0;
2954 }
2955 return size;
2956 }
2957
2958 extern struct Declarator * MkDeclaratorIdentifier(struct Identifier * id);
2959
2960 extern struct Identifier * MkIdentifier(const char *  string);
2961
2962 extern void ListAdd(struct __ecereNameSpace__ecere__sys__OldList * list, void *  item);
2963
2964 extern struct Declarator * MkStructDeclarator(struct Declarator * declarator, struct Expression * exp);
2965
2966 extern struct ClassDef * MkClassDefDeclaration(struct Declaration * decl);
2967
2968 extern struct Declaration * MkStructDeclaration(struct __ecereNameSpace__ecere__sys__OldList * specifiers, struct __ecereNameSpace__ecere__sys__OldList * declarators, struct Specifier * extStorage);
2969
2970 void ReplaceThisClassSpecifiers(struct __ecereNameSpace__ecere__sys__OldList * specs, struct __ecereNameSpace__ecere__com__Class * _class);
2971
2972 static void DeclareType(struct Type * type, unsigned int declarePointers, unsigned int declareParams);
2973
2974 extern void FreeType(struct Type * type);
2975
2976 extern struct Specifier * MkStructOrUnion(int type, struct Identifier * id, struct __ecereNameSpace__ecere__sys__OldList * definitions);
2977
2978 extern struct Specifier * MkSpecifier(int specifier);
2979
2980 extern struct Declarator * MkDeclaratorArray(struct Declarator * declarator, struct Expression * exp);
2981
2982 extern struct Expression * MkExpConstant(const char *  string);
2983
2984 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)
2985 {
2986 struct __ecereNameSpace__ecere__com__DataMember * topMember = isMember ? (struct __ecereNameSpace__ecere__com__DataMember *)_class : (((void *)0));
2987 unsigned int totalSize = 0;
2988 unsigned int maxSize = 0;
2989 int alignment;
2990 unsigned int size;
2991 struct __ecereNameSpace__ecere__com__DataMember * member;
2992 int anonID = 1;
2993 struct Context * context = isMember ? (((void *)0)) : SetupTemplatesContext(_class);
2994
2995 if(addedPadding)
2996 *addedPadding = 0;
2997 if(!isMember && _class->base)
2998 {
2999 maxSize = _class->structSize;
3000 {
3001 if(_class->type == 1 || _class->type == 5)
3002 AddMembers(declarations, _class->base, 0, &totalSize, topClass, (((void *)0)));
3003 else
3004 {
3005 unsigned int baseSize = _class->base->templateClass ? _class->base->templateClass->structSize : _class->base->structSize;
3006
3007 if(maxSize > baseSize)
3008 maxSize -= baseSize;
3009 else
3010 maxSize = 0;
3011 }
3012 }
3013 }
3014 for(member = isMember ? topMember->members.first : _class->membersAndProperties.first; member; member = member->next)
3015 {
3016 if(!member->isProperty)
3017 {
3018 switch(member->type)
3019 {
3020 case 0:
3021 {
3022 if(member->dataTypeString)
3023 {
3024 struct __ecereNameSpace__ecere__sys__OldList * specs = MkList(), * decls = MkList();
3025 struct Declarator * decl;
3026
3027 decl = SpecDeclFromString(member->dataTypeString, specs, MkDeclaratorIdentifier(MkIdentifier(member->name)));
3028 ListAdd(decls, MkStructDeclarator(decl, (((void *)0))));
3029 ListAdd(declarations, MkClassDefDeclaration(MkStructDeclaration(specs, decls, (((void *)0)))));
3030 if(!member->dataType)
3031 member->dataType = ProcessType(specs, decl);
3032 ReplaceThisClassSpecifiers(specs, topClass);
3033 {
3034 struct Type * type = ProcessType(specs, decl);
3035
3036 DeclareType(member->dataType, 0, 0);
3037 FreeType(type);
3038 }
3039 ComputeTypeSize(member->dataType);
3040 size = member->dataType->size;
3041 alignment = member->dataType->alignment;
3042 if(alignment)
3043 {
3044 if(totalSize % alignment)
3045 totalSize += alignment - (totalSize % alignment);
3046 }
3047 totalSize += size;
3048 }
3049 break;
3050 }
3051 case 1:
3052 case 2:
3053 {
3054 struct __ecereNameSpace__ecere__sys__OldList * specs = MkList(), * list = MkList();
3055 char id[100];
3056
3057 sprintf(id, "__anon%d", anonID++);
3058 size = 0;
3059 AddMembers(list, (struct __ecereNameSpace__ecere__com__Class *)member, 1, &size, topClass, (((void *)0)));
3060 ListAdd(specs, MkStructOrUnion((member->type == 1) ? 4 : 3, (((void *)0)), list));
3061 ListAdd(declarations, MkClassDefDeclaration(MkStructDeclaration(specs, MkListOne(MkDeclaratorIdentifier(MkIdentifier(id))), (((void *)0)))));
3062 alignment = member->structAlignment;
3063 if(alignment)
3064 {
3065 if(totalSize % alignment)
3066 totalSize += alignment - (totalSize % alignment);
3067 }
3068 totalSize += size;
3069 break;
3070 }
3071 }
3072 }
3073 }
3074 if(retSize)
3075 {
3076 unsigned int __simpleStruct0;
3077
3078 if(topMember && topMember->type == 1)
3079 *retSize = (__simpleStruct0 = *retSize, (__simpleStruct0 > totalSize) ? __simpleStruct0 : totalSize);
3080 else
3081 *retSize += totalSize;
3082 }
3083 else if(totalSize < maxSize && _class->type != 1000)
3084 {
3085 int autoPadding = 0;
3086
3087 if(!isMember && _class->structAlignment && totalSize % _class->structAlignment)
3088 autoPadding = _class->structAlignment - (totalSize % _class->structAlignment);
3089 if(totalSize + autoPadding < maxSize)
3090 {
3091 char sizeString[50];
3092
3093 sprintf(sizeString, "%d", maxSize - totalSize);
3094 ListAdd(declarations, MkClassDefDeclaration(MkStructDeclaration(MkListOne(MkSpecifier(CHAR)), MkListOne(MkDeclaratorArray(MkDeclaratorIdentifier(MkIdentifier("__ecere_padding")), MkExpConstant(sizeString))), (((void *)0)))));
3095 if(addedPadding)
3096 *addedPadding = 1;
3097 }
3098 }
3099 if(context)
3100 FinishTemplatesContext(context);
3101 return topMember ? topMember->memberID : _class->memberID;
3102 }
3103
3104 static int DeclareMembers(struct __ecereNameSpace__ecere__com__Class * _class, unsigned int isMember)
3105 {
3106 struct __ecereNameSpace__ecere__com__DataMember * topMember = isMember ? (struct __ecereNameSpace__ecere__com__DataMember *)_class : (((void *)0));
3107 struct __ecereNameSpace__ecere__com__DataMember * member;
3108 struct Context * context = isMember ? (((void *)0)) : SetupTemplatesContext(_class);
3109
3110 if(!isMember && (_class->type == 1 || _class->type == 5) && _class->base->type != 1000)
3111 DeclareMembers(_class->base, 0);
3112 for(member = isMember ? topMember->members.first : _class->membersAndProperties.first; member; member = member->next)
3113 {
3114 if(!member->isProperty)
3115 {
3116 switch(member->type)
3117 {
3118 case 0:
3119 {
3120 if(!member->dataType && member->dataTypeString)
3121 member->dataType = ProcessTypeString(member->dataTypeString, 0);
3122 if(member->dataType)
3123 DeclareType(member->dataType, 0, 0);
3124 break;
3125 }
3126 case 1:
3127 case 2:
3128 {
3129 DeclareMembers((struct __ecereNameSpace__ecere__com__Class *)member, 1);
3130 break;
3131 }
3132 }
3133 }
3134 }
3135 if(context)
3136 FinishTemplatesContext(context);
3137 return topMember ? topMember->memberID : _class->memberID;
3138 }
3139
3140 extern struct Identifier * GetDeclId(struct Declarator * decl);
3141
3142 static void IdentifyAnonStructs(struct __ecereNameSpace__ecere__sys__OldList * definitions)
3143 {
3144 struct ClassDef * def;
3145 int anonID = 1;
3146
3147 for(def = (*definitions).first; def; def = def->next)
3148 {
3149 if(def->type == 2)
3150 {
3151 struct Declaration * decl = def->__anon1.decl;
3152
3153 if(decl && decl->__anon1.__anon1.specifiers)
3154 {
3155 struct Specifier * spec;
3156 unsigned int isStruct = 0;
3157
3158 for(spec = (*decl->__anon1.__anon1.specifiers).first; spec; spec = spec->next)
3159 {
3160 if(spec->type == 3 || spec->type == 4)
3161 {
3162 if(spec->__anon1.__anon2.definitions)
3163 IdentifyAnonStructs(spec->__anon1.__anon2.definitions);
3164 isStruct = 1;
3165 }
3166 }
3167 if(isStruct)
3168 {
3169 struct Declarator * d = (((void *)0));
3170
3171 if(decl->__anon1.__anon1.declarators)
3172 {
3173 for(d = (*decl->__anon1.__anon1.declarators).first; d; d = d->next)
3174 {
3175 struct Identifier * idDecl = GetDeclId(d);
3176
3177 if(idDecl)
3178 break;
3179 }
3180 }
3181 if(!d)
3182 {
3183 char id[100];
3184
3185 sprintf(id, "__anon%d", anonID++);
3186 if(!decl->__anon1.__anon1.declarators)
3187 decl->__anon1.__anon1.declarators = MkList();
3188 ListAdd(decl->__anon1.__anon1.declarators, MkDeclaratorIdentifier(MkIdentifier(id)));
3189 }
3190 }
3191 }
3192 }
3193 }
3194 }
3195
3196 extern struct Symbol * FindClass(const char *  name);
3197
3198 extern char *  strchr(const char * , int);
3199
3200 extern void FullClassNameCat(char *  output, const char *  className, unsigned int includeTemplateParams);
3201
3202 extern void FreeList(struct __ecereNameSpace__ecere__sys__OldList * list, void (*  FreeFunction)(void * ));
3203
3204 extern void FreeClassDef(struct ClassDef * def);
3205
3206 extern struct External * MkExternalDeclaration(struct Declaration * declaration);
3207
3208 extern struct Declaration * MkDeclaration(struct __ecereNameSpace__ecere__sys__OldList * specifiers, struct __ecereNameSpace__ecere__sys__OldList * initDeclarators);
3209
3210 extern void DeclareClass(struct Symbol * classSym, const char *  className);
3211
3212 void __ecereMethod___ecereNameSpace__ecere__sys__OldList_Move(struct __ecereNameSpace__ecere__sys__OldList * this, void *  item, void *  prevItem);
3213
3214 unsigned int __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert(struct __ecereNameSpace__ecere__sys__OldList * this, void *  prevItem, void *  item);
3215
3216 void DeclareStruct(const char * name, unsigned int skipNoHead)
3217 {
3218 struct External * external = (((void *)0));
3219 struct Symbol * classSym = FindClass(name);
3220
3221 if(!inCompiler || !classSym)
3222 return ;
3223 if(classSym->__anon1.registered && (classSym->__anon1.registered->type == 2 || classSym->__anon1.registered->type == 3 || classSym->__anon1.registered->type == 4))
3224 return ;
3225 if(classSym->__anon1.registered && classSym->imported && !classSym->declaredStructSym)
3226 {
3227 struct Declaration * decl;
3228 struct __ecereNameSpace__ecere__sys__OldList * specifiers, * declarators;
3229 struct __ecereNameSpace__ecere__sys__OldList * declarations = (((void *)0));
3230 char structName[1024];
3231 struct Specifier * spec = (((void *)0));
3232
3233 external = (classSym->__anon1.registered && classSym->__anon1.registered->type == 1) ? classSym->__anon2.__anon1.pointerExternal : classSym->__anon2.__anon1.structExternal;
3234 classSym->declaring++;
3235 if(strchr(classSym->string, '<'))
3236 {
3237 if(classSym->__anon1.registered->templateClass)
3238 {
3239 DeclareStruct(classSym->__anon1.registered->templateClass->fullName, skipNoHead);
3240 classSym->declaring--;
3241 }
3242 return ;
3243 }
3244 DeclareMembers(classSym->__anon1.registered, 0);
3245 structName[0] = (char)0;
3246 FullClassNameCat(structName, name, 0);
3247 if(external && external->__anon1.declaration && external->__anon1.declaration->__anon1.__anon1.specifiers)
3248 {
3249 for(spec = (*external->__anon1.declaration->__anon1.__anon1.specifiers).first; spec; spec = spec->next)
3250 {
3251 if(spec->type == 3 || spec->type == 4)
3252 break;
3253 }
3254 }
3255 if(!skipNoHead && (!spec || !spec->__anon1.__anon2.definitions))
3256 {
3257 unsigned int addedPadding = 0;
3258
3259 classSym->declaredStructSym = 1;
3260 declarations = MkList();
3261 AddMembers(declarations, classSym->__anon1.registered, 0, (((void *)0)), classSym->__anon1.registered, &addedPadding);
3262 if(!(*declarations).count || ((*declarations).count == 1 && addedPadding))
3263 {
3264 FreeList(declarations, (void *)(FreeClassDef));
3265 declarations = (((void *)0));
3266 }
3267 }
3268 if(skipNoHead || declarations)
3269 {
3270 if(spec)
3271 {
3272 if(declarations)
3273 spec->__anon1.__anon2.definitions = declarations;
3274 if(curExternal && curExternal->symbol && curExternal->symbol->idCode < classSym->id)
3275 {
3276 if(classSym->__anon2.__anon1.structExternal)
3277 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Move((&*ast), classSym->__anon2.__anon1.structExternal, curExternal->prev);
3278 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Move((&*ast), classSym->__anon2.__anon1.pointerExternal, curExternal->prev);
3279 classSym->id = curExternal->symbol->idCode;
3280 classSym->idCode = curExternal->symbol->idCode;
3281 }
3282 }
3283 else
3284 {
3285 if(!external)
3286 external = MkExternalDeclaration((((void *)0)));
3287 specifiers = MkList();
3288 declarators = MkList();
3289 ListAdd(specifiers, MkStructOrUnion(3, MkIdentifier(structName), declarations));
3290 external->__anon1.declaration = decl = MkDeclaration(specifiers, declarators);
3291 if(decl->symbol && !decl->symbol->__anon2.__anon1.pointerExternal)
3292 decl->symbol->__anon2.__anon1.pointerExternal = external;
3293 if(classSym->__anon1.registered && classSym->__anon1.registered->type == 1)
3294 {
3295 char className[1024];
3296
3297 strcpy(className, "__ecereClass_");
3298 FullClassNameCat(className, classSym->string, 1);
3299 DeclareClass(classSym, className);
3300 external->symbol = classSym;
3301 classSym->__anon2.__anon1.pointerExternal = external;
3302 classSym->id = (curExternal && curExternal->symbol) ? curExternal->symbol->idCode : 0;
3303 classSym->idCode = (curExternal && curExternal->symbol) ? curExternal->symbol->idCode : 0;
3304 }
3305 else
3306 {
3307 char className[1024];
3308
3309 strcpy(className, "__ecereClass_");
3310 FullClassNameCat(className, classSym->string, 1);
3311 classSym->__anon2.__anon1.structExternal = external;
3312 DeclareClass(classSym, className);
3313 external->symbol = classSym;
3314 }
3315 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*ast), curExternal ? curExternal->prev : (((void *)0)), external);
3316 }
3317 }
3318 classSym->declaring--;
3319 }
3320 else
3321 {
3322 if(classSym->__anon2.__anon1.structExternal && classSym->__anon2.__anon1.structExternal->__anon1.declaration && classSym->__anon2.__anon1.structExternal->__anon1.declaration->__anon1.__anon1.specifiers)
3323 {
3324 struct Specifier * spec;
3325
3326 for(spec = (*classSym->__anon2.__anon1.structExternal->__anon1.declaration->__anon1.__anon1.specifiers).first; spec; spec = spec->next)
3327 {
3328 IdentifyAnonStructs(spec->__anon1.__anon2.definitions);
3329 }
3330 }
3331 if(curExternal && curExternal->symbol && curExternal->symbol->idCode < classSym->id)
3332 {
3333 classSym->declaring++;
3334 {
3335 if(classSym->__anon1.registered)
3336 DeclareMembers(classSym->__anon1.registered, 0);
3337 }
3338 if(classSym->__anon1.registered && (classSym->__anon1.registered->type == 1 || classSym->__anon1.registered->type == 5))
3339 {
3340 if(classSym->__anon2.__anon1.structExternal)
3341 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Move((&*ast), classSym->__anon2.__anon1.structExternal, curExternal->prev);
3342 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Move((&*ast), classSym->__anon2.__anon1.pointerExternal, curExternal->prev);
3343 classSym->id = curExternal->symbol->idCode;
3344 classSym->idCode = curExternal->symbol->idCode;
3345 }
3346 classSym->declaring--;
3347 }
3348 }
3349 }
3350
3351 extern struct ModuleImport * FindModule(struct __ecereNameSpace__ecere__com__Instance * moduleToFind);
3352
3353 extern struct ModuleImport * mainModule;
3354
3355 extern struct Specifier * MkSpecifierName(const char *  name);
3356
3357 extern struct Declarator * MkDeclaratorBrackets(struct Declarator * declarator);
3358
3359 extern struct Declarator * PlugDeclarator(struct Declarator * decl, struct Declarator * baseDecl);
3360
3361 extern struct Declarator * MkDeclaratorFunction(struct Declarator * declarator, struct __ecereNameSpace__ecere__sys__OldList * parameters);
3362
3363 extern struct InitDeclarator * MkInitDeclarator(struct Declarator * declarator, struct Initializer * initializer);
3364
3365 extern void FreeDeclarator(struct Declarator * decl);
3366
3367 extern struct Specifier * MkSpecifierExtended(struct ExtDecl * extDecl);
3368
3369 extern struct ExtDecl * MkExtDeclAttrib(struct Attrib * attr);
3370
3371 extern struct Attrib * MkAttrib(int type, struct __ecereNameSpace__ecere__sys__OldList *  attribs);
3372
3373 extern struct Attribute * MkAttribute(char * attr, struct Expression * exp);
3374
3375 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_PropertyImport;
3376
3377 struct PropertyImport
3378 {
3379 struct PropertyImport * prev;
3380 struct PropertyImport * next;
3381 char *  name;
3382 unsigned int isVirtual;
3383 unsigned int hasSet;
3384 unsigned int hasGet;
3385 } __attribute__ ((gcc_struct));
3386
3387 void __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(struct __ecereNameSpace__ecere__sys__OldList * this, void *  item);
3388
3389 void DeclareProperty(struct __ecereNameSpace__ecere__com__Property * prop, char * setName, char * getName)
3390 {
3391 struct Symbol * symbol = prop->symbol;
3392
3393 strcpy(setName, "__ecereProp_");
3394 FullClassNameCat(setName, prop->_class->fullName, 0);
3395 strcat(setName, "_Set_");
3396 FullClassNameCat(setName, prop->name, 1);
3397 strcpy(getName, "__ecereProp_");
3398 FullClassNameCat(getName, prop->_class->fullName, 0);
3399 strcat(getName, "_Get_");
3400 FullClassNameCat(getName, prop->name, 1);
3401 if(prop->_class->type == 1)
3402 DeclareStruct(prop->_class->fullName, 0);
3403 if(!symbol || curExternal->symbol->idCode < symbol->id)
3404 {
3405 unsigned int imported = 0;
3406 unsigned int dllImport = 0;
3407
3408 if(!symbol || symbol->_import)
3409 {
3410 if(!symbol)
3411 {
3412 struct Symbol * classSym;
3413
3414 if(!prop->_class->symbol)
3415 prop->_class->symbol = FindClass(prop->_class->fullName);
3416 classSym = prop->_class->symbol;
3417 if(classSym && !classSym->_import)
3418 {
3419 struct ModuleImport * module;
3420
3421 if(prop->_class->module)
3422 module = FindModule(prop->_class->module);
3423 else
3424 module = mainModule;
3425 classSym->_import = __extension__ ({
3426 struct ClassImport * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_ClassImport);
3427
3428 __ecereInstance1->name = __ecereNameSpace__ecere__sys__CopyString(prop->_class->fullName), __ecereInstance1->isRemote = prop->_class->isRemote, __ecereInstance1;
3429 });
3430 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(&module->classes, classSym->_import);
3431 }
3432 symbol = prop->symbol = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol);
3433 symbol->_import = (struct ClassImport *)__extension__ ({
3434 struct PropertyImport * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_PropertyImport);
3435
3436 __ecereInstance1->name = __ecereNameSpace__ecere__sys__CopyString(prop->name), __ecereInstance1->isVirtual = 0, __ecereInstance1->hasSet = prop->Set ? 1 : 0, __ecereInstance1->hasGet = prop->Get ? 1 : 0, __ecereInstance1;
3437 });
3438 if(classSym)
3439 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(&classSym->_import->properties, symbol->_import);
3440 }
3441 imported = 1;
3442 if((prop->_class->module != privateModule || !strcmp(prop->_class->name, "float") || !strcmp(prop->_class->name, "double")) && ((struct __ecereNameSpace__ecere__com__Module *)(((char *)prop->_class->module + structSize_Instance)))->importType != 1)
3443 dllImport = 1;
3444 }
3445 if(!symbol->type)
3446 {
3447 struct Context * context = SetupTemplatesContext(prop->_class);
3448
3449 symbol->type = ProcessTypeString(prop->dataTypeString, 0);
3450 FinishTemplatesContext(context);
3451 }
3452 if(prop->Get)
3453 {
3454 if(!symbol->__anon2.__anon2.externalGet || symbol->__anon2.__anon2.externalGet->type == 0)
3455 {
3456 struct Declaration * decl;
3457 struct __ecereNameSpace__ecere__sys__OldList * specifiers, * declarators;
3458 struct Declarator * d;
3459 struct __ecereNameSpace__ecere__sys__OldList * params;
3460 struct Specifier * spec;
3461 struct External * external;
3462 struct Declarator * typeDecl;
3463 unsigned int simple = 0;
3464
3465 specifiers = MkList();
3466 declarators = MkList();
3467 params = MkList();
3468 ListAdd(params, MkTypeName(MkListOne(MkSpecifierName(prop->_class->fullName)), MkDeclaratorIdentifier(MkIdentifier("this"))));
3469 d = MkDeclaratorIdentifier(MkIdentifier(getName));
3470 if(dllImport)
3471 d = MkDeclaratorBrackets(MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), d));
3472 {
3473 struct Context * context = SetupTemplatesContext(prop->_class);
3474
3475 typeDecl = SpecDeclFromString(prop->dataTypeString, specifiers, (((void *)0)));
3476 FinishTemplatesContext(context);
3477 }
3478 for(spec = (*specifiers).first; spec; spec = spec->next)
3479 {
3480 if(spec->type == 1)
3481 {
3482 if((!typeDecl || typeDecl->type == 1))
3483 {
3484 struct Symbol * classSym = spec->__anon1.__anon1.symbol;
3485
3486 symbol->_class = classSym->__anon1.registered;
3487 if(classSym->__anon1.registered && classSym->__anon1.registered->type == 1)
3488 {
3489 DeclareStruct(spec->__anon1.__anon1.name, 0);
3490 simple = 1;
3491 }
3492 }
3493 }
3494 }
3495 if(!simple)
3496 d = PlugDeclarator(typeDecl, d);
3497 else
3498 {
3499 ListAdd(params, MkTypeName(specifiers, PlugDeclarator(typeDecl, MkDeclaratorIdentifier(MkIdentifier("value")))));
3500 specifiers = MkList();
3501 }
3502 d = MkDeclaratorFunction(d, params);
3503 if(dllImport)
3504 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*specifiers), (((void *)0)), MkSpecifier(EXTERN));
3505 else if(prop->_class->symbol && ((struct Symbol *)prop->_class->symbol)->isStatic)
3506 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*specifiers), (((void *)0)), MkSpecifier(STATIC));
3507 if(simple)
3508 ListAdd(specifiers, MkSpecifier(VOID));
3509 ListAdd(declarators, MkInitDeclarator(d, (((void *)0))));
3510 decl = MkDeclaration(specifiers, declarators);
3511 external = MkExternalDeclaration(decl);
3512 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*ast), curExternal->prev, external);
3513 external->symbol = symbol;
3514 symbol->__anon2.__anon2.externalGet = external;
3515 ReplaceThisClassSpecifiers(specifiers, prop->_class);
3516 if(typeDecl)
3517 FreeDeclarator(typeDecl);
3518 }
3519 else
3520 {
3521 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Move((&*ast), symbol->__anon2.__anon2.externalGet, curExternal->prev);
3522 }
3523 }
3524 if(prop->Set)
3525 {
3526 if(!symbol->__anon2.__anon2.externalSet || symbol->__anon2.__anon2.externalSet->type == 0)
3527 {
3528 struct Declaration * decl;
3529 struct __ecereNameSpace__ecere__sys__OldList * specifiers, * declarators;
3530 struct Declarator * d;
3531 struct __ecereNameSpace__ecere__sys__OldList * params;
3532 struct Specifier * spec;
3533 struct External * external;
3534 struct Declarator * typeDecl;
3535
3536 declarators = MkList();
3537 params = MkList();
3538 if(!prop->conversion || prop->_class->type == 1)
3539 {
3540 ListAdd(params, MkTypeName(MkListOne(MkSpecifierName(prop->_class->fullName)), MkDeclaratorIdentifier(MkIdentifier("this"))));
3541 }
3542 specifiers = MkList();
3543 {
3544 struct Context * context = SetupTemplatesContext(prop->_class);
3545
3546 typeDecl = d = SpecDeclFromString(prop->dataTypeString, specifiers, MkDeclaratorIdentifier(MkIdentifier("value")));
3547 FinishTemplatesContext(context);
3548 }
3549 if(!strcmp(prop->_class->base->fullName, "eda::Row") || !strcmp(prop->_class->base->fullName, "eda::Id"))
3550 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*specifiers), (((void *)0)), MkSpecifier(CONST));
3551 ListAdd(params, MkTypeName(specifiers, d));
3552 d = MkDeclaratorIdentifier(MkIdentifier(setName));
3553 if(dllImport)
3554 d = MkDeclaratorBrackets(MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), d));
3555 d = MkDeclaratorFunction(d, params);
3556 for(spec = (*specifiers).first; spec; spec = spec->next)
3557 {
3558 if(spec->type == 1)
3559 {
3560 if((!typeDecl || typeDecl->type == 1))
3561 {
3562 struct Symbol * classSym = spec->__anon1.__anon1.symbol;
3563
3564 symbol->_class = classSym->__anon1.registered;
3565 if(classSym->__anon1.registered && classSym->__anon1.registered->type == 1)
3566 DeclareStruct(spec->__anon1.__anon1.name, 0);
3567 }
3568 }
3569 }
3570 ListAdd(declarators, MkInitDeclarator(d, (((void *)0))));
3571 specifiers = MkList();
3572 if(dllImport)
3573 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*specifiers), (((void *)0)), MkSpecifier(EXTERN));
3574 else if(prop->_class->symbol && ((struct Symbol *)prop->_class->symbol)->isStatic)
3575 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*specifiers), (((void *)0)), MkSpecifier(STATIC));
3576 if(!prop->conversion || prop->_class->type == 1)
3577 ListAdd(specifiers, MkSpecifier(VOID));
3578 else
3579 ListAdd(specifiers, MkSpecifierName(prop->_class->fullName));
3580 decl = MkDeclaration(specifiers, declarators);
3581 external = MkExternalDeclaration(decl);
3582 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*ast), curExternal->prev, external);
3583 external->symbol = symbol;
3584 symbol->__anon2.__anon2.externalSet = external;
3585 ReplaceThisClassSpecifiers(specifiers, prop->_class);
3586 }
3587 else
3588 {
3589 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Move((&*ast), symbol->__anon2.__anon2.externalSet, curExternal->prev);
3590 }
3591 }
3592 if(!symbol->__anon2.__anon2.externalPtr)
3593 {
3594 struct Declaration * decl;
3595 struct External * external;
3596 struct __ecereNameSpace__ecere__sys__OldList * specifiers = MkList();
3597 char propName[1024];
3598
3599 if(imported)
3600 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*specifiers), (((void *)0)), MkSpecifier(EXTERN));
3601 else
3602 {
3603 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*specifiers), (((void *)0)), MkSpecifier(STATIC));
3604 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add((&*specifiers), MkSpecifierExtended(MkExtDeclAttrib(MkAttrib(ATTRIB, MkListOne(MkAttribute(__ecereNameSpace__ecere__sys__CopyString("unused"), (((void *)0))))))));
3605 }
3606 ListAdd(specifiers, MkSpecifierName("Property"));
3607 strcpy(propName, "__ecereProp_");
3608 FullClassNameCat(propName, prop->_class->fullName, 0);
3609 strcat(propName, "_");
3610 FullClassNameCat(propName, prop->name, 1);
3611 {
3612 struct __ecereNameSpace__ecere__sys__OldList * list = MkList();
3613
3614 ListAdd(list, MkInitDeclarator(MkDeclaratorIdentifier(MkIdentifier(propName)), (((void *)0))));
3615 if(!imported)
3616 {
3617 strcpy(propName, "__ecerePropM_");
3618 FullClassNameCat(propName, prop->_class->fullName, 0);
3619 strcat(propName, "_");
3620 FullClassNameCat(propName, prop->name, 1);
3621 ListAdd(list, MkInitDeclarator(MkDeclaratorIdentifier(MkIdentifier(propName)), (((void *)0))));
3622 }
3623 decl = MkDeclaration(specifiers, list);
3624 }
3625 external = MkExternalDeclaration(decl);
3626 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*ast), curExternal->prev, external);
3627 external->symbol = symbol;
3628 symbol->__anon2.__anon2.externalPtr = external;
3629 }
3630 else
3631 {
3632 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Move((&*ast), symbol->__anon2.__anon2.externalPtr, curExternal->prev);
3633 }
3634 symbol->id = curExternal->symbol->idCode;
3635 }
3636 }
3637
3638 struct Type * Dereference(struct Type * source)
3639 {
3640 struct Type * type = (((void *)0));
3641
3642 if(source)
3643 {
3644 if(source->kind == 13 || source->kind == 12)
3645 {
3646 type = source->__anon1.type;
3647 source->__anon1.type->refCount++;
3648 }
3649 else if(source->kind == 8 && !strcmp(source->__anon1._class->string, "String"))
3650 {
3651 type = __extension__ ({
3652 struct Type * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
3653
3654 __ecereInstance1->kind = 1, __ecereInstance1->refCount = 1, __ecereInstance1;
3655 });
3656 }
3657 else if(source->kind == 8 && source->__anon1._class && source->__anon1._class->__anon1.registered && source->__anon1._class->__anon1.registered->type == 5)
3658 {
3659 type = source;
3660 source->refCount++;
3661 }
3662 else
3663 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "cannot dereference type\n", (((void *)0))));
3664 }
3665 return type;
3666 }
3667
3668 static struct Type * Reference(struct Type * source)
3669 {
3670 struct Type * type = (((void *)0));
3671
3672 if(source)
3673 {
3674 type = __extension__ ({
3675 struct Type * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
3676
3677 __ecereInstance1->kind = 13, __ecereInstance1->__anon1.type = source, __ecereInstance1->refCount = 1, __ecereInstance1;
3678 });
3679 source->refCount++;
3680 }
3681 return type;
3682 }
3683
3684 extern void __ecereNameSpace__ecere__com__eClass_FindNextMember(struct __ecereNameSpace__ecere__com__Class * _class, struct __ecereNameSpace__ecere__com__Class **  curClass, struct __ecereNameSpace__ecere__com__DataMember **  curMember, struct __ecereNameSpace__ecere__com__DataMember **  subMemberStack, int *  subMemberStackPos);
3685
3686 extern void *  memcpy(void * , const void * , size_t size);
3687
3688 void ProcessMethodType(struct __ecereNameSpace__ecere__com__Method * method);
3689
3690 extern void FreeExpression(struct Expression * exp);
3691
3692 extern void __ecereNameSpace__ecere__sys__ChangeCh(char *  string, char ch1, char ch2);
3693
3694 unsigned int MatchTypes(struct Type * source, struct Type * dest, struct __ecereNameSpace__ecere__sys__OldList * conversions, struct __ecereNameSpace__ecere__com__Class * owningClassSource, struct __ecereNameSpace__ecere__com__Class * owningClassDest, unsigned int doConversion, unsigned int enumBaseType, unsigned int acceptReversedParams, unsigned int isConversionExploration, unsigned int warnConst);
3695
3696 static void ProcessInitializer(struct Initializer * init, struct Type * type);
3697
3698 extern struct Type * MkClassType(const char *  name);
3699
3700 extern struct __ecereNameSpace__ecere__com__DataMember * __ecereNameSpace__ecere__com__eClass_AddDataMember(struct __ecereNameSpace__ecere__com__Class * _class, const char *  name, const char *  type, unsigned int size, unsigned int alignment, int declMode);
3701
3702 void ProcessMemberInitData(struct MemberInit * member, struct __ecereNameSpace__ecere__com__Class * _class, struct __ecereNameSpace__ecere__com__Class ** curClass, struct __ecereNameSpace__ecere__com__DataMember ** curMember, struct __ecereNameSpace__ecere__com__DataMember ** subMemberStack, int * subMemberStackPos)
3703 {
3704 struct Identifier * ident = member->identifiers ? (*member->identifiers).first : (((void *)0));
3705 unsigned int found = 0;
3706 struct __ecereNameSpace__ecere__com__DataMember * dataMember = (((void *)0));
3707 struct __ecereNameSpace__ecere__com__Method * method = (((void *)0));
3708 unsigned int freeType = 0;
3709
3710 yylloc = member->loc;
3711 if(!ident)
3712 {
3713 if(curMember)
3714 {
3715 __ecereNameSpace__ecere__com__eClass_FindNextMember(_class, curClass, curMember, subMemberStack, subMemberStackPos);
3716 if(*curMember)
3717 {
3718 found = 1;
3719 dataMember = *curMember;
3720 }
3721 }
3722 }
3723 else
3724 {
3725 struct __ecereNameSpace__ecere__com__DataMember * thisMember = (struct __ecereNameSpace__ecere__com__DataMember *)__ecereNameSpace__ecere__com__eClass_FindProperty(_class, ident->string, privateModule);
3726 struct __ecereNameSpace__ecere__com__DataMember * _subMemberStack[256];
3727 int _subMemberStackPos = 0;
3728
3729 if(!thisMember)
3730 thisMember = __ecereNameSpace__ecere__com__eClass_FindDataMember(_class, ident->string, privateModule, _subMemberStack, &_subMemberStackPos);
3731 if(thisMember)
3732 {
3733 dataMember = thisMember;
3734 if(curMember && thisMember->memberAccess == 1)
3735 {
3736 *curMember = thisMember;
3737 *curClass = thisMember->_class;
3738 memcpy(subMemberStack, _subMemberStack, sizeof(struct __ecereNameSpace__ecere__com__DataMember *) * _subMemberStackPos);
3739 *subMemberStackPos = _subMemberStackPos;
3740 }
3741 found = 1;
3742 }
3743 else
3744 {
3745 method = __ecereNameSpace__ecere__com__eClass_FindMethod(_class, ident->string, privateModule);
3746 if(method && method->type == 1)
3747 found = 1;
3748 else
3749 method = (((void *)0));
3750 }
3751 }
3752 if(found)
3753 {
3754 struct Type * type = (((void *)0));
3755
3756 if(dataMember)
3757 {
3758 if(!dataMember->dataType && dataMember->dataTypeString)
3759 {
3760 struct Context * context = SetupTemplatesContext(_class);
3761
3762 dataMember->dataType = ProcessTypeString(dataMember->dataTypeString, 0);
3763 FinishTemplatesContext(context);
3764 }
3765 type = dataMember->dataType;
3766 }
3767 else if(method)
3768 {
3769 if(!method->dataType)
3770 ProcessMethodType(method);
3771 type = method->dataType;
3772 }
3773 if(ident && ident->next)
3774 {
3775 for(ident = ident->next; ident && type; ident = ident->next)
3776 {
3777 if(type->kind == 8)
3778 {
3779 dataMember = (struct __ecereNameSpace__ecere__com__DataMember *)__ecereNameSpace__ecere__com__eClass_FindProperty(type->__anon1._class->__anon1.registered, ident->string, privateModule);
3780 if(!dataMember)
3781 dataMember = __ecereNameSpace__ecere__com__eClass_FindDataMember(type->__anon1._class->__anon1.registered, ident->string, privateModule, (((void *)0)), (((void *)0)));
3782 if(dataMember)
3783 type = dataMember->dataType;
3784 }
3785 else if(type->kind == 9 || type->kind == 10)
3786 {
3787 struct Type * memberType;
3788
3789 for(memberType = type->__anon1.__anon1.members.first; memberType; memberType = memberType->next)
3790 {
3791 if(!strcmp(memberType->name, ident->string))
3792 {
3793 type = memberType;
3794 break;
3795 }
3796 }
3797 }
3798 }
3799 }
3800 if(type && type->kind == 20 && type->__anon1.templateParameter->type == 0 && _class->templateArgs)
3801 {
3802 int id = 0;
3803 struct __ecereNameSpace__ecere__com__ClassTemplateParameter * curParam = (((void *)0));
3804 struct __ecereNameSpace__ecere__com__Class * sClass;
3805
3806 for(sClass = _class; sClass; sClass = sClass->base)
3807 {
3808 id = 0;
3809 if(sClass->templateClass)
3810 sClass = sClass->templateClass;
3811 for(curParam = sClass->templateParams.first; curParam; curParam = curParam->next)
3812 {
3813 if(curParam->type == 0 && !strcmp(type->__anon1.templateParameter->identifier->string, curParam->name))
3814 {
3815 for(sClass = sClass->base; sClass; sClass = sClass->base)
3816 {
3817 if(sClass->templateClass)
3818 sClass = sClass->templateClass;
3819 id += sClass->templateParams.count;
3820 }
3821 break;
3822 }
3823 id++;
3824 }
3825 if(curParam)
3826 break;
3827 }
3828 if(curParam)
3829 {
3830 struct __ecereNameSpace__ecere__com__ClassTemplateArgument arg = _class->templateArgs[id];
3831
3832 if(arg.__anon1.__anon1.dataTypeString)
3833 {
3834 unsigned int constant = type->constant;
3835
3836 type = ProcessTypeString(arg.__anon1.__anon1.dataTypeString, 0);
3837 if(type->kind == 8 && constant)
3838 type->constant = 1;
3839 else if(type->kind == 13)
3840 {
3841 struct Type * t = type->__anon1.type;
3842
3843 while(t->kind == 13)
3844 t = t->__anon1.type;
3845 if(constant)
3846 t->constant = constant;
3847 }
3848 freeType = 1;
3849 if(type && _class->templateClass)
3850 type->passAsTemplate = 1;
3851 if(type)
3852 {
3853 }
3854 }
3855 }
3856 }
3857 if(type && type->kind == 8 && type->__anon1._class && type->__anon1._class->__anon1.registered && strchr(type->__anon1._class->__anon1.registered->fullName, '<'))
3858 {
3859 struct __ecereNameSpace__ecere__com__Class * expClass = type->__anon1._class->__anon1.registered;
3860 struct __ecereNameSpace__ecere__com__Class * cClass = (((void *)0));
3861 int paramCount = 0;
3862 int lastParam = -1;
3863 char templateString[1024];
3864 struct __ecereNameSpace__ecere__com__ClassTemplateParameter * param;
3865
3866 sprintf(templateString, "%s<", expClass->templateClass->fullName);
3867 for(cClass = expClass; cClass; cClass = cClass->base)
3868 {
3869 int p = 0;
3870
3871 if(cClass->templateClass)
3872 cClass = cClass->templateClass;
3873 for(param = cClass->templateParams.first; param; param = param->next)
3874 {
3875 int id = p;
3876 struct __ecereNameSpace__ecere__com__Class * sClass;
3877 struct __ecereNameSpace__ecere__com__ClassTemplateArgument arg;
3878
3879 for(sClass = cClass->base; sClass; sClass = sClass->base)
3880 {
3881 if(sClass->templateClass)
3882 sClass = sClass->templateClass;
3883 id += sClass->templateParams.count;
3884 }
3885 arg = expClass->templateArgs[id];
3886 for(sClass = _class; sClass; sClass = sClass->base)
3887 {
3888 struct __ecereNameSpace__ecere__com__ClassTemplateParameter * cParam;
3889 int p = 0;
3890 struct __ecereNameSpace__ecere__com__Class * nextClass;
3891
3892 if(sClass->templateClass)
3893 sClass = sClass->templateClass;
3894 for(nextClass = sClass->base; nextClass; nextClass = nextClass->base)
3895 {
3896 if(nextClass->templateClass)
3897 nextClass = nextClass->templateClass;
3898 p += nextClass->templateParams.count;
3899 }
3900 for(cParam = sClass->templateParams.first; cParam; cParam = cParam->next, p++)
3901 {
3902 if(cParam->type == 0 && arg.__anon1.__anon1.dataTypeString && !strcmp(cParam->name, arg.__anon1.__anon1.dataTypeString))
3903 {
3904 if(_class->templateArgs && arg.__anon1.__anon1.dataTypeString && (!param->defaultArg.__anon1.__anon1.dataTypeString || strcmp(arg.__anon1.__anon1.dataTypeString, param->defaultArg.__anon1.__anon1.dataTypeString)))
3905 {
3906 arg.__anon1.__anon1.dataTypeString = _class->templateArgs[p].__anon1.__anon1.dataTypeString;
3907 arg.__anon1.__anon1.dataTypeClass = _class->templateArgs[p].__anon1.__anon1.dataTypeClass;
3908 break;
3909 }
3910 }
3911 }
3912 }
3913 {
3914 char argument[256];
3915
3916 argument[0] = '\0';
3917 switch(param->type)
3918 {
3919 case 2:
3920 {
3921 char expString[1024];
3922 struct __ecereNameSpace__ecere__sys__OldList * specs = MkList();
3923 struct Declarator * decl = SpecDeclFromString(param->__anon1.dataTypeString, specs, (((void *)0)));
3924 struct Expression * exp;
3925 char * string = PrintHexUInt64(arg.__anon1.expression.__anon1.ui64);
3926
3927 exp = MkExpCast(MkTypeName(specs, decl), MkExpConstant(string));
3928 (__ecereNameSpace__ecere__com__eSystem_Delete(string), string = 0);
3929 ProcessExpressionType(exp);
3930 ComputeExpression(exp);
3931 expString[0] = '\0';
3932 PrintExpression(exp, expString);
3933 strcat(argument, expString);
3934 FreeExpression(exp);
3935 break;
3936 }
3937 case 1:
3938 {
3939 strcat(argument, arg.__anon1.__anon2.__anon1.member->name);
3940 break;
3941 }
3942 case 0:
3943 {
3944 if(arg.__anon1.__anon1.dataTypeString && (!param->defaultArg.__anon1.__anon1.dataTypeString || strcmp(arg.__anon1.__anon1.dataTypeString, param->defaultArg.__anon1.__anon1.dataTypeString)))
3945 strcat(argument, arg.__anon1.__anon1.dataTypeString);
3946 break;
3947 }
3948 }
3949 if(argument[0])
3950 {
3951 if(paramCount)
3952 strcat(templateString, ", ");
3953 if(lastParam != p - 1)
3954 {
3955 strcat(templateString, param->name);
3956 strcat(templateString, " = ");
3957 }
3958 strcat(templateString, argument);
3959 paramCount++;
3960 lastParam = p;
3961 }
3962 p++;
3963 }
3964 }
3965 }
3966 {
3967 int len = strlen(templateString);
3968
3969 if(templateString[len - 1] == '<')
3970 len--;
3971 else
3972 {
3973 if(templateString[len - 1] == '>')
3974 templateString[len++] = ' ';
3975 templateString[len++] = '>';
3976 }
3977 templateString[len++] = '\0';
3978 }
3979 {
3980 struct Context * context = SetupTemplatesContext(_class);
3981
3982 if(freeType)
3983 FreeType(type);
3984 type = ProcessTypeString(templateString, 0);
3985 freeType = 1;
3986 FinishTemplatesContext(context);
3987 }
3988 }
3989 if(method && member->initializer && member->initializer->type == 0 && member->initializer->__anon1.exp)
3990 {
3991 ProcessExpressionType(member->initializer->__anon1.exp);
3992 if(!member->initializer->__anon1.exp->expType)
3993 {
3994 if(inCompiler)
3995 {
3996 char expString[10240];
3997
3998 expString[0] = '\0';
3999 PrintExpression(member->initializer->__anon1.exp, expString);
4000 __ecereNameSpace__ecere__sys__ChangeCh(expString, '\n', ' ');
4001 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "unresolved symbol used as an instance method %s\n", (((void *)0))), expString);
4002 }
4003 }
4004 else if(!MatchTypes(member->initializer->__anon1.exp->expType, type, (((void *)0)), (((void *)0)), _class, 1, 1, 0, 0, 1))
4005 {
4006 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "incompatible instance method %s\n", (((void *)0))), ident->string);
4007 }
4008 }
4009 else if(member->initializer)
4010 {
4011 ProcessInitializer(member->initializer, type);
4012 }
4013 if(freeType)
4014 FreeType(type);
4015 }
4016 else
4017 {
4018 if(_class && _class->type == 3)
4019 {
4020 if(member->initializer)
4021 {
4022 struct Type * type = MkClassType(_class->fullName);
4023
4024 ProcessInitializer(member->initializer, type);
4025 FreeType(type);
4026 }
4027 }
4028 else
4029 {
4030 if(member->initializer)
4031 {
4032 ProcessInitializer(member->initializer, (((void *)0)));
4033 }
4034 if(ident)
4035 {
4036 if(method)
4037 {
4038 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "couldn't find virtual method %s in class %s\n", (((void *)0))), ident->string, _class->fullName);
4039 }
4040 else if(_class)
4041 {
4042 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "couldn't find member %s in class %s\n", (((void *)0))), ident->string, _class->fullName);
4043 if(inCompiler)
4044 __ecereNameSpace__ecere__com__eClass_AddDataMember(_class, ident->string, "int", 0, 0, 1);
4045 }
4046 }
4047 else if(_class)
4048 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "too many initializers for instantiation of class %s\n", (((void *)0))), _class->fullName);
4049 }
4050 }
4051 }
4052
4053 extern struct External * ProcessClassFunction(struct __ecereNameSpace__ecere__com__Class * owningClass, struct ClassFunction * func, struct __ecereNameSpace__ecere__sys__OldList * defs, struct External * after, unsigned int makeStatic);
4054
4055 extern void FreeSpecifier(struct Specifier * spec);
4056
4057 static void ProcessFunction(struct FunctionDefinition * function);
4058
4059 extern struct __ecereNameSpace__ecere__sys__OldList *  CopyList(struct __ecereNameSpace__ecere__sys__OldList *  source, void *  (*  CopyFunction)(void * ));
4060
4061 extern struct Specifier * CopySpecifier(struct Specifier * spec);
4062
4063 extern struct Declarator * CopyDeclarator(struct Declarator * declarator);
4064
4065 extern void FreeClassFunction(struct ClassFunction * func);
4066
4067 extern struct MemberInit * MkMemberInit(struct __ecereNameSpace__ecere__sys__OldList * ids, struct Initializer * initializer);
4068
4069 extern struct Initializer * MkInitializerAssignment(struct Expression * exp);
4070
4071 void ProcessInstantiationType(struct Instantiation * inst)
4072 {
4073 yylloc = inst->loc;
4074 if(inst->_class)
4075 {
4076 struct MembersInit * members;
4077 struct Symbol * classSym;
4078 struct __ecereNameSpace__ecere__com__Class * _class;
4079
4080 classSym = inst->_class->__anon1.__anon1.symbol;
4081 _class = classSym ? classSym->__anon1.registered : (((void *)0));
4082 if(!_class || _class->type != 5)
4083 DeclareStruct(inst->_class->__anon1.__anon1.name, 0);
4084 afterExternal = afterExternal ? afterExternal : curExternal;
4085 if(inst->exp)
4086 ProcessExpressionType(inst->exp);
4087 inst->isConstant = 1;
4088 if(inst->members)
4089 {
4090 struct __ecereNameSpace__ecere__com__DataMember * curMember = (((void *)0));
4091 struct __ecereNameSpace__ecere__com__Class * curClass = (((void *)0));
4092 struct __ecereNameSpace__ecere__com__DataMember * subMemberStack[256];
4093 int subMemberStackPos = 0;
4094
4095 for(members = (*inst->members).first; members; members = members->next)
4096 {
4097 switch(members->type)
4098 {
4099 case 1:
4100 {
4101 char name[1024];
4102 static unsigned int instMethodID = 0;
4103 struct External * external = curExternal;
4104 struct Context * context = curContext;
4105 struct Declarator * declarator = members->__anon1.function->declarator;
4106 struct Identifier * nameID = GetDeclId(declarator);
4107 char * unmangled = nameID ? nameID->string : (((void *)0));
4108 struct Expression * exp;
4109 struct External * createdExternal = (((void *)0));
4110
4111 if(inCompiler)
4112 {
4113 char number[16];
4114
4115 strcpy(name, "__ecereInstMeth_");
4116 FullClassNameCat(name, _class ? _class->fullName : "_UNKNOWNCLASS", 0);
4117 strcat(name, "_");
4118 strcat(name, nameID->string);
4119 strcat(name, "_");
4120 sprintf(number, "_%08d", instMethodID++);
4121 strcat(name, number);
4122 nameID->string = __ecereNameSpace__ecere__sys__CopyString(name);
4123 }
4124 if(declarator)
4125 {
4126 struct Symbol * symbol = declarator->symbol;
4127 struct __ecereNameSpace__ecere__com__Method * method = __ecereNameSpace__ecere__com__eClass_FindMethod(_class, unmangled, privateModule);
4128
4129 if(method && method->type == 1)
4130 {
4131 symbol->__anon1.method = method;
4132 ProcessMethodType(method);
4133 if(!symbol->type->__anon1.__anon2.thisClass)
4134 {
4135 if(method->dataType->__anon1.__anon2.thisClass && currentClass && __ecereNameSpace__ecere__com__eClass_IsDerived(currentClass, method->dataType->__anon1.__anon2.thisClass->__anon1.registered))
4136 {
4137 if(!currentClass->symbol)
4138 currentClass->symbol = FindClass(currentClass->fullName);
4139 symbol->type->__anon1.__anon2.thisClass = currentClass->symbol;
4140 }
4141 else
4142 {
4143 if(!_class->symbol)
4144 _class->symbol = FindClass(_class->fullName);
4145 symbol->type->__anon1.__anon2.thisClass = _class->symbol;
4146 }
4147 }
4148 DeclareType(symbol->type, 1, 1);
4149 }
4150 else if(classSym)
4151 {
4152 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "couldn't find virtual method %s in class %s\n", (((void *)0))), unmangled, classSym->string);
4153 }
4154 }
4155 createdExternal = ProcessClassFunction(classSym ? classSym->__anon1.registered : (((void *)0)), members->__anon1.function, ast, afterExternal, 1);
4156 if(nameID)
4157 {
4158 FreeSpecifier(nameID->_class);
4159 nameID->_class = (((void *)0));
4160 }
4161 if(inCompiler)
4162 {
4163 struct External * oldExternal = curExternal;
4164
4165 declarator->symbol->id = declarator->symbol->idCode = curExternal->symbol->idCode;
4166 {
4167 struct External * externalDecl;
4168
4169 externalDecl = MkExternalDeclaration((((void *)0)));
4170 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*ast), oldExternal->prev, externalDecl);
4171 if(createdExternal->__anon1.function)
4172 {
4173 ProcessFunction(createdExternal->__anon1.function);
4174 {
4175 struct Declaration * decl = MkDeclaration(CopyList(createdExternal->__anon1.function->specifiers, (void *)(CopySpecifier)), MkListOne(MkInitDeclarator(CopyDeclarator(declarator), (((void *)0)))));
4176
4177 externalDecl->__anon1.declaration = decl;
4178 if(decl->symbol && !decl->symbol->__anon2.__anon1.pointerExternal)
4179 decl->symbol->__anon2.__anon1.pointerExternal = externalDecl;
4180 declarator->symbol->__anon2.__anon1.pointerExternal = externalDecl;
4181 }
4182 }
4183 }
4184 }
4185 else if(declarator)
4186 {
4187 curExternal = declarator->symbol->__anon2.__anon1.pointerExternal;
4188 ProcessFunction((struct FunctionDefinition *)members->__anon1.function);
4189 }
4190 curExternal = external;
4191 curContext = context;
4192 if(inCompiler)
4193 {
4194 FreeClassFunction(members->__anon1.function);
4195 exp = QMkExpId(name);
4196 members->type = 0;
4197 members->__anon1.dataMembers = MkListOne(MkMemberInit(MkListOne(MkIdentifier(unmangled)), MkInitializerAssignment(exp)));
4198 (__ecereNameSpace__ecere__com__eSystem_Delete(unmangled), unmangled = 0);
4199 }
4200 break;
4201 }
4202 case 0:
4203 {
4204 if(members->__anon1.dataMembers && classSym)
4205 {
4206 struct MemberInit * member;
4207 struct Location oldyyloc = yylloc;
4208
4209 for(member = (*members->__anon1.dataMembers).first; member; member = member->next)
4210 {
4211 ProcessMemberInitData(member, classSym->__anon1.registered, &curClass, &curMember, subMemberStack, &subMemberStackPos);
4212 if(member->initializer && !member->initializer->isConstant)
4213 inst->isConstant = 0;
4214 }
4215 yylloc = oldyyloc;
4216 }
4217 break;
4218 }
4219 }
4220 }
4221 }
4222 }
4223 }
4224
4225 static void DeclareType(struct Type * type, unsigned int declarePointers, unsigned int declareParams)
4226 {
4227 if(inCompiler)
4228 {
4229 if(type->kind == 11)
4230 {
4231 struct Type * param;
4232
4233 if(declareParams)
4234 {
4235 for(param = type->__anon1.__anon2.params.first; param; param = param->next)
4236 DeclareType(param, declarePointers, 1);
4237 }
4238 DeclareType(type->__anon1.__anon2.returnType, declarePointers, 1);
4239 }
4240 else if(type->kind == 13 && declarePointers)
4241 DeclareType(type->__anon1.type, declarePointers, 0);
4242 else if(type->kind == 8)
4243 {
4244 if(type->__anon1._class->__anon1.registered && (type->__anon1._class->__anon1.registered->type == 1 || type->__anon1._class->__anon1.registered->type == 5) && !type->__anon1._class->declaring)
4245 DeclareStruct(type->__anon1._class->__anon1.registered->fullName, type->__anon1._class->__anon1.registered->type == 5);
4246 }
4247 else if(type->kind == 9 || type->kind == 10)
4248 {
4249 struct Type * member;
4250
4251 for(member = type->__anon1.__anon1.members.first; member; member = member->next)
4252 DeclareType(member, 0, 0);
4253 }
4254 else if(type->kind == 12)
4255 DeclareType(type->__anon1.__anon4.arrayType, declarePointers, 0);
4256 }
4257 }
4258
4259 extern struct __ecereNameSpace__ecere__com__Class * __ecereNameSpace__ecere__com__eSystem_FindClass(struct __ecereNameSpace__ecere__com__Instance * module, const char *  name);
4260
4261 struct __ecereNameSpace__ecere__com__ClassTemplateArgument * FindTemplateArg(struct __ecereNameSpace__ecere__com__Class * _class, struct TemplateParameter * param)
4262 {
4263 struct __ecereNameSpace__ecere__com__ClassTemplateArgument * arg = (((void *)0));
4264 int id = 0;
4265 struct __ecereNameSpace__ecere__com__ClassTemplateParameter * curParam = (((void *)0));
4266 struct __ecereNameSpace__ecere__com__Class * sClass;
4267
4268 for(sClass = _class; sClass; sClass = sClass->base)
4269 {
4270 id = 0;
4271 if(sClass->templateClass)
4272 sClass = sClass->templateClass;
4273 for(curParam = sClass->templateParams.first; curParam; curParam = curParam->next)
4274 {
4275 if(curParam->type == 0 && !strcmp(param->identifier->string, curParam->name))
4276 {
4277 for(sClass = sClass->base; sClass; sClass = sClass->base)
4278 {
4279 if(sClass->templateClass)
4280 sClass = sClass->templateClass;
4281 id += sClass->templateParams.count;
4282 }
4283 break;
4284 }
4285 id++;
4286 }
4287 if(curParam)
4288 break;
4289 }
4290 if(curParam)
4291 {
4292 arg = &_class->templateArgs[id];
4293 if(arg && param->type == 0)
4294 (*arg).__anon1.__anon1.dataTypeClass = __ecereNameSpace__ecere__com__eSystem_FindClass(_class->module, (*arg).__anon1.__anon1.dataTypeString);
4295 }
4296 return arg;
4297 }
4298
4299 extern struct Context * PushContext(void);
4300
4301 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_TemplatedType;
4302
4303 struct TemplatedType
4304 {
4305 uintptr_t key;
4306 struct __ecereNameSpace__ecere__sys__BTNode * parent;
4307 struct __ecereNameSpace__ecere__sys__BTNode * left;
4308 struct __ecereNameSpace__ecere__sys__BTNode * right;
4309 int depth;
4310 struct TemplateParameter * param;
4311 } __attribute__ ((gcc_struct));
4312
4313 unsigned int __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Add(struct __ecereNameSpace__ecere__sys__BinaryTree * this, struct __ecereNameSpace__ecere__sys__BTNode * node);
4314
4315 struct Context * SetupTemplatesContext(struct __ecereNameSpace__ecere__com__Class * _class)
4316 {
4317 struct Context * context = PushContext();
4318
4319 context->templateTypesOnly = 1;
4320 if(_class->symbol && ((struct Symbol *)_class->symbol)->templateParams)
4321 {
4322 struct TemplateParameter * param = (*((struct Symbol *)_class->symbol)->templateParams).first;
4323
4324 for(; param; param = param->next)
4325 {
4326 if(param->type == 0 && param->identifier)
4327 {
4328 struct TemplatedType * type = (type = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_TemplatedType), type->key = (uintptr_t)param->identifier->string, type->param = param, type);
4329
4330 __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Add(&curContext->templateTypes, (struct __ecereNameSpace__ecere__sys__BTNode *)type);
4331 }
4332 }
4333 }
4334 else if(_class)
4335 {
4336 struct __ecereNameSpace__ecere__com__Class * sClass;
4337
4338 for(sClass = _class; sClass; sClass = sClass->base)
4339 {
4340 struct __ecereNameSpace__ecere__com__ClassTemplateParameter * p;
4341
4342 for(p = sClass->templateParams.first; p; p = p->next)
4343 {
4344 if(p->type == 0)
4345 {
4346 struct TemplateParameter * param = p->param;
4347 struct TemplatedType * type;
4348
4349 if(!param)
4350 {
4351 p->param = param = __extension__ ({
4352 struct TemplateParameter * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_TemplateParameter);
4353
4354 __ecereInstance1->identifier = MkIdentifier(p->name), __ecereInstance1->type = p->type, __ecereInstance1->dataTypeString = p->__anon1.dataTypeString, __ecereInstance1;
4355 });
4356 }
4357 type = __extension__ ({
4358 struct TemplatedType * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_TemplatedType);
4359
4360 __ecereInstance1->key = (uintptr_t)p->name, __ecereInstance1->param = param, __ecereInstance1;
4361 });
4362 __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Add(&curContext->templateTypes, (struct __ecereNameSpace__ecere__sys__BTNode *)type);
4363 }
4364 }
4365 }
4366 }
4367 return context;
4368 }
4369
4370 extern void PopContext(struct Context * ctx);
4371
4372 extern void FreeContext(struct Context * context);
4373
4374 void FinishTemplatesContext(struct Context * context)
4375 {
4376 PopContext(context);
4377 FreeContext(context);
4378 ((context ? (__ecereClass_Context->Destructor ? __ecereClass_Context->Destructor((void *)context) : 0, __ecereNameSpace__ecere__com__eSystem_Delete(context)) : 0), context = 0);
4379 }
4380
4381 void ProcessMethodType(struct __ecereNameSpace__ecere__com__Method * method)
4382 {
4383 if(!method->dataType)
4384 {
4385 struct Context * context = SetupTemplatesContext(method->_class);
4386
4387 method->dataType = ProcessTypeString(method->dataTypeString, 0);
4388 FinishTemplatesContext(context);
4389 if(method->type != 1 && method->dataType)
4390 {
4391 if(!method->dataType->__anon1.__anon2.thisClass && !method->dataType->__anon1.__anon2.staticMethod)
4392 {
4393 if(!method->_class->symbol)
4394 method->_class->symbol = FindClass(method->_class->fullName);
4395 method->dataType->__anon1.__anon2.thisClass = method->_class->symbol;
4396 }
4397 }
4398 }
4399 }
4400
4401 void ProcessPropertyType(struct __ecereNameSpace__ecere__com__Property * prop)
4402 {
4403 if(!prop->dataType)
4404 {
4405 struct Context * context = SetupTemplatesContext(prop->_class);
4406
4407 prop->dataType = ProcessTypeString(prop->dataTypeString, 0);
4408 FinishTemplatesContext(context);
4409 }
4410 }
4411
4412 extern struct Declarator * GetFuncDecl(struct Declarator * decl);
4413
4414 extern void FreeTypeName(struct TypeName * typeName);
4415
4416 static void ProcessDeclarator(struct Declarator * decl);
4417
4418 extern struct __ecereNameSpace__ecere__sys__OldList *  excludedSymbols;
4419
4420 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_MethodImport;
4421
4422 struct MethodImport
4423 {
4424 struct MethodImport * prev;
4425 struct MethodImport * next;
4426 char *  name;
4427 unsigned int isVirtual;
4428 } __attribute__ ((gcc_struct));
4429
4430 void __ecereMethod___ecereNameSpace__ecere__sys__OldList_Remove(struct __ecereNameSpace__ecere__sys__OldList * this, void *  item);
4431
4432 void DeclareMethod(struct __ecereNameSpace__ecere__com__Method * method, const char * name)
4433 {
4434 struct Symbol * symbol = method->symbol;
4435
4436 if(!symbol || (!symbol->__anon2.__anon1.pointerExternal && method->type == 1) || symbol->id > (curExternal ? curExternal->symbol->idCode : -1))
4437 {
4438 unsigned int dllImport = 0;
4439
4440 if(!method->dataType)
4441 method->dataType = ProcessTypeString(method->dataTypeString, 0);
4442 if(!symbol || symbol->_import || method->type == 1)
4443 {
4444 if(!symbol || method->type == 1)
4445 {
4446 struct Symbol * classSym;
4447
4448 if(!method->_class->symbol)
4449 method->_class->symbol = FindClass(method->_class->fullName);
4450 classSym = method->_class->symbol;
4451 if(!classSym->_import)
4452 {
4453 struct ModuleImport * module;
4454
4455 if(method->_class->module && ((struct __ecereNameSpace__ecere__com__Module *)(((char *)method->_class->module + structSize_Instance)))->name)
4456 module = FindModule(method->_class->module);
4457 else
4458 module = mainModule;
4459 classSym->_import = __extension__ ({
4460 struct ClassImport * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_ClassImport);
4461
4462 __ecereInstance1->name = __ecereNameSpace__ecere__sys__CopyString(method->_class->fullName), __ecereInstance1->isRemote = method->_class->isRemote, __ecereInstance1;
4463 });
4464 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(&module->classes, classSym->_import);
4465 }
4466 if(!symbol)
4467 {
4468 symbol = method->symbol = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol);
4469 }
4470 if(!symbol->_import)
4471 {
4472 symbol->_import = (struct ClassImport *)__extension__ ({
4473 struct MethodImport * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_MethodImport);
4474
4475 __ecereInstance1->name = __ecereNameSpace__ecere__sys__CopyString(method->name), __ecereInstance1->isVirtual = method->type == 1, __ecereInstance1;
4476 });
4477 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(&classSym->_import->methods, symbol->_import);
4478 }
4479 if(!symbol)
4480 {
4481 symbol->type = method->dataType;
4482 if(symbol->type)
4483 symbol->type->refCount++;
4484 }
4485 }
4486 if(!method->dataType->dllExport)
4487 {
4488 if((method->_class->module != privateModule || !strcmp(method->_class->name, "float") || !strcmp(method->_class->name, "double")) && ((struct __ecereNameSpace__ecere__com__Module *)(((char *)method->_class->module + structSize_Instance)))->importType != 1)
4489 dllImport = 1;
4490 }
4491 }
4492 if(method->type != 1 && method->dataType)
4493 DeclareType(method->dataType, 1, 1);
4494 if(!symbol->__anon2.__anon1.pointerExternal || symbol->__anon2.__anon1.pointerExternal->type == 0)
4495 {
4496 struct Declaration * decl;
4497 struct __ecereNameSpace__ecere__sys__OldList * specifiers, * declarators;
4498 struct Declarator * d;
4499 struct Declarator * funcDecl;
4500 struct External * external;
4501
4502 specifiers = MkList();
4503 declarators = MkList();
4504 if(dllImport)
4505 ListAdd(specifiers, MkSpecifier(EXTERN));
4506 else if(method->_class->symbol && ((struct Symbol *)method->_class->symbol)->isStatic)
4507 ListAdd(specifiers, MkSpecifier(STATIC));
4508 if(method->type == 1)
4509 {
4510 ListAdd(specifiers, MkSpecifier(INT));
4511 d = MkDeclaratorIdentifier(MkIdentifier(name));
4512 }
4513 else
4514 {
4515 d = MkDeclaratorIdentifier(MkIdentifier(name));
4516 if(dllImport)
4517 d = MkDeclaratorBrackets(MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), d));
4518 {
4519 struct Context * context = SetupTemplatesContext(method->_class);
4520
4521 d = SpecDeclFromString(method->dataTypeString, specifiers, d);
4522 FinishTemplatesContext(context);
4523 }
4524 funcDecl = GetFuncDecl(d);
4525 if(dllImport)
4526 {
4527 struct Specifier * spec, * next;
4528
4529 for(spec = (*specifiers).first; spec; spec = next)
4530 {
4531 next = spec->next;
4532 if(spec->type == 5)
4533 {
4534 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Remove((&*specifiers), spec);
4535 FreeSpecifier(spec);
4536 }
4537 }
4538 }
4539 if(method->dataType && !method->dataType->__anon1.__anon2.staticMethod)
4540 {
4541 if(funcDecl && funcDecl->__anon1.function.parameters && (*funcDecl->__anon1.function.parameters).count)
4542 {
4543 struct __ecereNameSpace__ecere__com__Class * _class = method->dataType->__anon1.__anon2.thisClass ? method->dataType->__anon1.__anon2.thisClass->__anon1.registered : method->_class;
4544 struct TypeName * thisParam = MkTypeName(MkListOne(MkSpecifierName(method->dataType->__anon1.__anon2.thisClass ? method->dataType->__anon1.__anon2.thisClass->string : method->_class->fullName)), (_class && _class->type == 1000) ? MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), MkDeclaratorIdentifier(MkIdentifier("this"))) : MkDeclaratorIdentifier(MkIdentifier("this")));
4545 struct TypeName * firstParam = ((struct TypeName *)(*funcDecl->__anon1.function.parameters).first);
4546 struct Specifier * firstSpec = firstParam->qualifiers ? (*firstParam->qualifiers).first : (((void *)0));
4547
4548 if(firstSpec && firstSpec->type == 0 && firstSpec->__anon1.specifier == VOID && !firstParam->declarator)
4549 {
4550 struct TypeName * param = (*funcDecl->__anon1.function.parameters).first;
4551
4552 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Remove((&*funcDecl->__anon1.function.parameters), param);
4553 FreeTypeName(param);
4554 }
4555 if(!funcDecl->__anon1.function.parameters)
4556 funcDecl->__anon1.function.parameters = MkList();
4557 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*funcDecl->__anon1.function.parameters), (((void *)0)), thisParam);
4558 }
4559 }
4560 }
4561 ProcessDeclarator(d);
4562 ListAdd(declarators, MkInitDeclarator(d, (((void *)0))));
4563 decl = MkDeclaration(specifiers, declarators);
4564 ReplaceThisClassSpecifiers(specifiers, method->_class);
4565 if(symbol->__anon2.__anon1.pointerExternal)
4566 {
4567 struct Symbol * functionSymbol = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol);
4568
4569 {
4570 *functionSymbol = *symbol;
4571 functionSymbol->string = __ecereNameSpace__ecere__sys__CopyString(symbol->string);
4572 if(functionSymbol->type)
4573 functionSymbol->type->refCount++;
4574 }
4575 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add((&*excludedSymbols), functionSymbol);
4576 symbol->__anon2.__anon1.pointerExternal->symbol = functionSymbol;
4577 }
4578 external = MkExternalDeclaration(decl);
4579 if(curExternal)
4580 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*ast), curExternal ? curExternal->prev : (((void *)0)), external);
4581 external->symbol = symbol;
4582 symbol->__anon2.__anon1.pointerExternal = external;
4583 }
4584 else if(ast)
4585 {
4586 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Move((&*ast), symbol->__anon2.__anon1.pointerExternal, curExternal->prev);
4587 }
4588 symbol->id = curExternal ? curExternal->symbol->idCode : (((int)0x7fffffff));
4589 }
4590 }
4591
4592 char * ReplaceThisClass(struct __ecereNameSpace__ecere__com__Class * _class)
4593 {
4594 if(thisClassParams && _class->templateParams.count && !_class->templateClass)
4595 {
4596 unsigned int first = 1;
4597 int p = 0;
4598 struct __ecereNameSpace__ecere__com__ClassTemplateParameter * param;
4599 int lastParam = -1;
4600 char className[1024];
4601
4602 strcpy(className, _class->fullName);
4603 for(param = _class->templateParams.first; param; param = param->next)
4604 {
4605 {
4606 if(first)
4607 strcat(className, "<");
4608 if(!first)
4609 strcat(className, ", ");
4610 if(lastParam + 1 != p)
4611 {
4612 strcat(className, param->name);
4613 strcat(className, " = ");
4614 }
4615 strcat(className, param->name);
4616 first = 0;
4617 lastParam = p;
4618 }
4619 p++;
4620 }
4621 if(!first)
4622 {
4623 int len = strlen(className);
4624
4625 if(className[len - 1] == '>')
4626 className[len++] = ' ';
4627 className[len++] = '>';
4628 className[len++] = '\0';
4629 }
4630 return __ecereNameSpace__ecere__sys__CopyString(className);
4631 }
4632 else
4633 return __ecereNameSpace__ecere__sys__CopyString(_class->fullName);
4634 }
4635
4636 struct Type * ReplaceThisClassType(struct __ecereNameSpace__ecere__com__Class * _class)
4637 {
4638 struct Type * type;
4639
4640 if(thisClassParams && _class->templateParams.count && !_class->templateClass)
4641 {
4642 unsigned int first = 1;
4643 int p = 0;
4644 struct __ecereNameSpace__ecere__com__ClassTemplateParameter * param;
4645 int lastParam = -1;
4646 char className[1024];
4647
4648 strcpy(className, _class->fullName);
4649 for(param = _class->templateParams.first; param; param = param->next)
4650 {
4651 {
4652 if(first)
4653 strcat(className, "<");
4654 if(!first)
4655 strcat(className, ", ");
4656 if(lastParam + 1 != p)
4657 {
4658 strcat(className, param->name);
4659 strcat(className, " = ");
4660 }
4661 strcat(className, param->name);
4662 first = 0;
4663 lastParam = p;
4664 }
4665 p++;
4666 }
4667 if(!first)
4668 {
4669 int len = strlen(className);
4670
4671 if(className[len - 1] == '>')
4672 className[len++] = ' ';
4673 className[len++] = '>';
4674 className[len++] = '\0';
4675 }
4676 type = MkClassType(className);
4677 }
4678 else
4679 {
4680 type = MkClassType(_class->fullName);
4681 }
4682 return type;
4683 }
4684
4685 void ReplaceThisClassSpecifiers(struct __ecereNameSpace__ecere__sys__OldList * specs, struct __ecereNameSpace__ecere__com__Class * _class)
4686 {
4687 if(specs != (((void *)0)) && _class)
4688 {
4689 struct Specifier * spec;
4690
4691 for(spec = specs->first; spec; spec = spec->next)
4692 {
4693 if(spec->type == 0 && spec->__anon1.specifier == THISCLASS)
4694 {
4695 spec->type = 1;
4696 spec->__anon1.__anon1.name = ReplaceThisClass(_class);
4697 spec->__anon1.__anon1.symbol = FindClass(spec->__anon1.__anon1.name);
4698 }
4699 }
4700 }
4701 }
4702
4703 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__GlobalFunction;
4704
4705 struct __ecereNameSpace__ecere__com__GlobalFunction
4706 {
4707 struct __ecereNameSpace__ecere__com__GlobalFunction * prev;
4708 struct __ecereNameSpace__ecere__com__GlobalFunction * next;
4709 const char *  name;
4710 int (*  function)();
4711 struct __ecereNameSpace__ecere__com__Instance * module;
4712 struct __ecereNameSpace__ecere__com__NameSpace *  nameSpace;
4713 const char *  dataTypeString;
4714 struct Type * dataType;
4715 void *  symbol;
4716 } __attribute__ ((gcc_struct));
4717
4718 extern struct Context * globalContext;
4719
4720 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_FunctionImport;
4721
4722 struct FunctionImport
4723 {
4724 struct FunctionImport * prev;
4725 struct FunctionImport * next;
4726 char *  name;
4727 } __attribute__ ((gcc_struct));
4728
4729 unsigned int DeclareFunction(struct __ecereNameSpace__ecere__com__GlobalFunction * function, char * name)
4730 {
4731 struct Symbol * symbol = function->symbol;
4732
4733 if(curExternal && (!symbol || symbol->id > curExternal->symbol->idCode))
4734 {
4735 unsigned int imported = 0;
4736 unsigned int dllImport = 0;
4737
4738 if(!function->dataType)
4739 {
4740 function->dataType = ProcessTypeString(function->dataTypeString, 0);
4741 if(!function->dataType->__anon1.__anon2.thisClass)
4742 function->dataType->__anon1.__anon2.staticMethod = 1;
4743 }
4744 if(inCompiler)
4745 {
4746 if(!symbol)
4747 {
4748 struct ModuleImport * module = FindModule(function->module);
4749
4750 symbol = function->symbol = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol);
4751 if(module->name)
4752 {
4753 if(!function->dataType->dllExport)
4754 {
4755 symbol->_import = (struct ClassImport *)__extension__ ({
4756 struct FunctionImport * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_FunctionImport);
4757
4758 __ecereInstance1->name = __ecereNameSpace__ecere__sys__CopyString(function->name), __ecereInstance1;
4759 });
4760 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(&module->functions, symbol->_import);
4761 }
4762 }
4763 {
4764 symbol->type = ProcessTypeString(function->dataTypeString, 0);
4765 if(!symbol->type->__anon1.__anon2.thisClass)
4766 symbol->type->__anon1.__anon2.staticMethod = 1;
4767 }
4768 }
4769 imported = symbol->_import ? 1 : 0;
4770 if(imported && function->module != privateModule && ((struct __ecereNameSpace__ecere__com__Module *)(((char *)function->module + structSize_Instance)))->importType != 1)
4771 dllImport = 1;
4772 }
4773 DeclareType(function->dataType, 1, 1);
4774 if(inCompiler)
4775 {
4776 if(!symbol->__anon2.__anon1.pointerExternal || symbol->__anon2.__anon1.pointerExternal->type == 0)
4777 {
4778 struct Declaration * decl;
4779 struct __ecereNameSpace__ecere__sys__OldList * specifiers, * declarators;
4780 struct Declarator * d;
4781 struct Declarator * funcDecl;
4782 struct External * external;
4783
4784 specifiers = MkList();
4785 declarators = MkList();
4786 ListAdd(specifiers, MkSpecifier(EXTERN));
4787 d = MkDeclaratorIdentifier(MkIdentifier(imported ? name : function->name));
4788 if(dllImport)
4789 d = MkDeclaratorBrackets(MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), d));
4790 d = SpecDeclFromString(function->dataTypeString, specifiers, d);
4791 if(((struct __ecereNameSpace__ecere__com__Module *)(((char *)function->module + structSize_Instance)))->importType == 1)
4792 {
4793 struct Specifier * spec;
4794
4795 for(spec = (*specifiers).first; spec; spec = spec->next)
4796 if(spec->type == 5 && spec->__anon1.__anon1.extDecl && spec->__anon1.__anon1.extDecl->type == 0 && !strcmp(spec->__anon1.__anon1.extDecl->__anon1.s, "dllexport"))
4797 {
4798 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Remove((&*specifiers), spec);
4799 FreeSpecifier(spec);
4800 break;
4801 }
4802 }
4803 funcDecl = GetFuncDecl(d);
4804 if(funcDecl && !funcDecl->__anon1.function.parameters)
4805 {
4806 funcDecl->__anon1.function.parameters = MkList();
4807 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*funcDecl->__anon1.function.parameters), (((void *)0)), MkTypeName(MkListOne(MkSpecifier(VOID)), (((void *)0))));
4808 }
4809 ListAdd(declarators, MkInitDeclarator(d, (((void *)0))));
4810 {
4811 struct Context * oldCtx = curContext;
4812
4813 curContext = globalContext;
4814 decl = MkDeclaration(specifiers, declarators);
4815 curContext = oldCtx;
4816 }
4817 if(symbol->__anon2.__anon1.pointerExternal)
4818 {
4819 struct Symbol * functionSymbol = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol);
4820
4821 {
4822 *functionSymbol = *symbol;
4823 functionSymbol->string = __ecereNameSpace__ecere__sys__CopyString(symbol->string);
4824 if(functionSymbol->type)
4825 functionSymbol->type->refCount++;
4826 }
4827 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add((&*excludedSymbols), functionSymbol);
4828 symbol->__anon2.__anon1.pointerExternal->symbol = functionSymbol;
4829 }
4830 external = MkExternalDeclaration(decl);
4831 if(curExternal)
4832 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*ast), curExternal->prev, external);
4833 external->symbol = symbol;
4834 symbol->__anon2.__anon1.pointerExternal = external;
4835 }
4836 else
4837 {
4838 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Move((&*ast), symbol->__anon2.__anon1.pointerExternal, curExternal->prev);
4839 }
4840 if(curExternal)
4841 symbol->id = curExternal->symbol->idCode;
4842 }
4843 }
4844 return (symbol && symbol->_import && function->module != privateModule && ((struct __ecereNameSpace__ecere__com__Module *)(((char *)function->module + structSize_Instance)))->importType != 1) ? 1 : 0;
4845 }
4846
4847 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_GlobalData;
4848
4849 struct GlobalData
4850 {
4851 uintptr_t key;
4852 struct __ecereNameSpace__ecere__sys__BTNode * parent;
4853 struct __ecereNameSpace__ecere__sys__BTNode * left;
4854 struct __ecereNameSpace__ecere__sys__BTNode * right;
4855 int depth;
4856 struct __ecereNameSpace__ecere__com__Instance * module;
4857 char *  dataTypeString;
4858 struct Type * dataType;
4859 void *  symbol;
4860 char *  fullName;
4861 } __attribute__ ((gcc_struct));
4862
4863 void DeclareGlobalData(struct GlobalData * data)
4864 {
4865 struct Symbol * symbol = data->symbol;
4866
4867 if(curExternal && (!symbol || symbol->id > curExternal->symbol->idCode))
4868 {
4869 if(inCompiler)
4870 {
4871 if(!symbol)
4872 symbol = data->symbol = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol);
4873 }
4874 if(!data->dataType)
4875 data->dataType = ProcessTypeString(data->dataTypeString, 0);
4876 DeclareType(data->dataType, 1, 1);
4877 if(inCompiler)
4878 {
4879 if(!symbol->__anon2.__anon1.pointerExternal)
4880 {
4881 struct Declaration * decl;
4882 struct __ecereNameSpace__ecere__sys__OldList * specifiers, * declarators;
4883 struct Declarator * d;
4884 struct External * external;
4885
4886 specifiers = MkList();
4887 declarators = MkList();
4888 ListAdd(specifiers, MkSpecifier(EXTERN));
4889 d = MkDeclaratorIdentifier(MkIdentifier(data->fullName));
4890 d = SpecDeclFromString(data->dataTypeString, specifiers, d);
4891 ListAdd(declarators, MkInitDeclarator(d, (((void *)0))));
4892 decl = MkDeclaration(specifiers, declarators);
4893 external = MkExternalDeclaration(decl);
4894 if(curExternal)
4895 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*ast), curExternal->prev, external);
4896 external->symbol = symbol;
4897 symbol->__anon2.__anon1.pointerExternal = external;
4898 }
4899 else
4900 {
4901 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Move((&*ast), symbol->__anon2.__anon1.pointerExternal, curExternal->prev);
4902 }
4903 if(curExternal)
4904 symbol->id = curExternal->symbol->idCode;
4905 }
4906 }
4907 }
4908
4909 struct Conversion
4910 {
4911 struct Conversion * prev, * next;
4912 struct __ecereNameSpace__ecere__com__Property * convert;
4913 unsigned int isGet;
4914 struct Type * resultType;
4915 } __attribute__ ((gcc_struct));
4916
4917 static struct __ecereNameSpace__ecere__com__Class * __ecereClass_Conversion;
4918
4919 extern void Compiler_Warning(const char *  format, ...);
4920
4921 static unsigned int CheckConstCompatibility(struct Type * source, struct Type * dest, unsigned int warn)
4922 {
4923 unsigned int status = 1;
4924
4925 if(((source->kind == 8 && source->__anon1._class && source->__anon1._class->__anon1.registered) || source->kind == 12 || source->kind == 13) && ((dest->kind == 8 && dest->__anon1._class && dest->__anon1._class->__anon1.registered) || dest->kind == 13))
4926 {
4927 struct __ecereNameSpace__ecere__com__Class * sourceClass = source->kind == 8 ? source->__anon1._class->__anon1.registered : (((void *)0));
4928 struct __ecereNameSpace__ecere__com__Class * destClass = dest->kind == 8 ? dest->__anon1._class->__anon1.registered : (((void *)0));
4929
4930 if((!sourceClass || (sourceClass && sourceClass->type == 0 && !sourceClass->structSize)) && (!destClass || (destClass && destClass->type == 0 && !destClass->structSize)))
4931 {
4932 struct Type * sourceType = source, * destType = dest;
4933
4934 while((sourceType->kind == 13 || sourceType->kind == 12) && sourceType->__anon1.type)
4935 sourceType = sourceType->__anon1.type;
4936 while((destType->kind == 13 || destType->kind == 12) && destType->__anon1.type)
4937 destType = destType->__anon1.type;
4938 if(!destType->constant && sourceType->constant)
4939 {
4940 status = 0;
4941 if(warn)
4942 Compiler_Warning(__ecereNameSpace__ecere__GetTranslatedString("ec", "discarding const qualifier\n", (((void *)0))));
4943 }
4944 }
4945 }
4946 return status;
4947 }
4948
4949 extern void CopyTypeInto(struct Type * type, struct Type * src);
4950
4951 void PrintType(struct Type * type, char *  string, unsigned int printName, unsigned int fullName);
4952
4953 unsigned int MatchTypes(struct Type * source, struct Type * dest, struct __ecereNameSpace__ecere__sys__OldList * conversions, struct __ecereNameSpace__ecere__com__Class * owningClassSource, struct __ecereNameSpace__ecere__com__Class * owningClassDest, unsigned int doConversion, unsigned int enumBaseType, unsigned int acceptReversedParams, unsigned int isConversionExploration, unsigned int warnConst)
4954 {
4955 if(source && dest)
4956 {
4957 if(warnConst)
4958 CheckConstCompatibility(source, dest, 1);
4959 if(source->kind == 20 && dest->kind != 20)
4960 {
4961 struct Type * type = ProcessTemplateParameterType(source->__anon1.templateParameter);
4962
4963 if(type)
4964 source = type;
4965 }
4966 if(dest->kind == 20 && source->kind != 20)
4967 {
4968 struct Type * type = ProcessTemplateParameterType(dest->__anon1.templateParameter);
4969
4970 if(type)
4971 dest = type;
4972 }
4973 if(dest->classObjectType == 2 && dest->kind != 11)
4974 {
4975 if(source->classObjectType != 3)
4976 return 1;
4977 else
4978 {
4979 if((dest->__anon1._class && strcmp(dest->__anon1._class->string, "class")) || (source->__anon1._class && strcmp(source->__anon1._class->string, "class")))
4980 {
4981 return 1;
4982 }
4983 }
4984 }
4985 else
4986 {
4987 if(source->kind != 11 && source->classObjectType == 3)
4988 return 1;
4989 if(dest->kind != 11 && dest->classObjectType == 3 && source->classObjectType != 2)
4990 return 1;
4991 }
4992 if((dest->kind == 9 && source->kind == 9) || (dest->kind == 10 && source->kind == 10))
4993 {
4994 if((dest->__anon1.__anon1.enumName && source->__anon1.__anon1.enumName && !strcmp(dest->__anon1.__anon1.enumName, source->__anon1.__anon1.enumName)) || (source->__anon1.__anon1.members.first && source->__anon1.__anon1.members.first == dest->__anon1.__anon1.members.first))
4995 return 1;
4996 }
4997 if(dest->kind == 14 && source->kind != 0)
4998 return 1;
4999 if(dest->kind == 13 && dest->__anon1.type->kind == 0 && ((source->kind == 8 && (!source->__anon1._class || !source->__anon1._class->__anon1.registered || source->__anon1._class->__anon1.registered->type == 1 || source->__anon1._class->__anon1.registered->type == 0 || source->__anon1._class->__anon1.registered->type == 5 || source->__anon1._class->__anon1.registered->type == 1000)) || source->kind == 19 || source->kind == 13 || source->kind == 12 || source->kind == 11 || source->kind == 21))
5000 return 1;
5001 if(!isConversionExploration && source->kind == 13 && source->__anon1.type->kind == 0 && ((dest->kind == 8 && (!dest->__anon1._class || !dest->__anon1._class->__anon1.registered || dest->__anon1._class->__anon1.registered->type == 1 || dest->__anon1._class->__anon1.registered->type == 0 || dest->__anon1._class->__anon1.registered->type == 5 || dest->__anon1._class->__anon1.registered->type == 1000)) || dest->kind == 19 || dest->kind == 13 || dest->kind == 12 || dest->kind == 11 || dest->kind == 21))
5002 return 1;
5003 if(((source->kind == 8 && dest->kind == 8) || (source->kind == 19 && dest->kind == 19)) && source->__anon1._class)
5004 {
5005 if(source->__anon1._class->__anon1.registered && source->__anon1._class->__anon1.registered->type == 3)
5006 {
5007 if(conversions != (((void *)0)))
5008 {
5009 if(source->__anon1._class->__anon1.registered == dest->__anon1._class->__anon1.registered)
5010 return 1;
5011 }
5012 else
5013 {
5014 struct __ecereNameSpace__ecere__com__Class * sourceBase, * destBase;
5015
5016 for(sourceBase = source->__anon1._class->__anon1.registered; sourceBase && sourceBase->base->type != 1000; sourceBase = sourceBase->base)
5017 ;
5018 for(destBase = dest->__anon1._class->__anon1.registered; destBase && destBase->base->type != 1000; destBase = destBase->base)
5019 ;
5020 if(sourceBase == destBase)
5021 return 1;
5022 }
5023 }
5024 else if(source->__anon1._class && dest->__anon1._class && (dest->classObjectType == source->classObjectType || !dest->classObjectType) && (enumBaseType || (!source->__anon1._class->__anon1.registered || source->__anon1._class->__anon1.registered->type != 4) || (!dest->__anon1._class->__anon1.registered || dest->__anon1._class->__anon1.registered->type != 4)) && __ecereNameSpace__ecere__com__eClass_IsDerived(source->__anon1._class->__anon1.registered, dest->__anon1._class->__anon1.registered))
5025 return 1;
5026 else
5027 {
5028 if(enumBaseType && dest->__anon1._class && dest->__anon1._class->__anon1.registered && dest->__anon1._class->__anon1.registered->type == 4 && ((source->__anon1._class && source->__anon1._class->__anon1.registered && source->__anon1._class->__anon1.registered->type != 4) || source->kind == 8))
5029 {
5030 if(__ecereNameSpace__ecere__com__eClass_IsDerived(dest->__anon1._class->__anon1.registered, source->__anon1._class->__anon1.registered))
5031 {
5032 return 1;
5033 }
5034 }
5035 }
5036 }
5037 if(source->kind == 19 && dest->kind == 8 && dest->__anon1._class && !strcmp(dest->__anon1._class->string, "ecere::com::Class"))
5038 return 1;
5039 if(doConversion)
5040 {
5041 if(source->kind == 8)
5042 {
5043 struct __ecereNameSpace__ecere__com__Class * _class;
5044
5045 for(_class = source->__anon1._class ? source->__anon1._class->__anon1.registered : (((void *)0)); _class; _class = _class->base)
5046 {
5047 struct __ecereNameSpace__ecere__com__Property * convert;
5048
5049 for(convert = _class->conversions.first; convert; convert = convert->next)
5050 {
5051 if(convert->memberAccess == 1 || _class->module == privateModule)
5052 {
5053 struct Conversion * after = (conversions != (((void *)0))) ? conversions->last : (((void *)0));
5054
5055 if(!convert->dataType)
5056 convert->dataType = ProcessTypeString(convert->dataTypeString, 0);
5057 if((!isConversionExploration || convert->dataType->kind == 8 || !strcmp(_class->name, "String")) && MatchTypes(convert->dataType, dest, conversions, (((void *)0)), (((void *)0)), (convert->dataType->kind == 8 && !strcmp(convert->dataTypeString, "String")) ? 1 : 0, convert->dataType->kind == 8, 0, 1, warnConst))
5058 {
5059 if(!conversions && !convert->Get)
5060 return 1;
5061 else if(conversions != (((void *)0)))
5062 {
5063 if(_class->type == 3 && convert->dataType->kind == 8 && convert->dataType->__anon1._class && convert->dataType->__anon1._class->__anon1.registered && _class->base == convert->dataType->__anon1._class->__anon1.registered->base && (dest->kind != 8 || dest->__anon1._class->__anon1.registered != _class->base))
5064 return 1;
5065 else
5066 {
5067 struct Conversion * conv = (conv = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Conversion), conv->convert = convert, conv->isGet = 1, conv);
5068
5069 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert(conversions, after, conv);
5070 return 1;
5071 }
5072 }
5073 }
5074 }
5075 }
5076 }
5077 }
5078 if(dest->kind == 8)
5079 {
5080 struct __ecereNameSpace__ecere__com__Class * _class;
5081
5082 for(_class = dest->__anon1._class ? dest->__anon1._class->__anon1.registered : (((void *)0)); _class; _class = _class->base)
5083 {
5084 struct __ecereNameSpace__ecere__com__Property * convert;
5085
5086 for(convert = _class->conversions.first; convert; convert = convert->next)
5087 {
5088 if(convert->memberAccess == 1 || _class->module == privateModule)
5089 {
5090 struct Type * constType = (((void *)0));
5091 unsigned int success = 0;
5092
5093 if(!convert->dataType)
5094 convert->dataType = ProcessTypeString(convert->dataTypeString, 0);
5095 if(warnConst && convert->dataType->kind == 13 && convert->dataType->__anon1.type && dest->constant)
5096 {
5097 struct Type * ptrType = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
5098
5099 constType = __extension__ ({
5100 struct Type * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
5101
5102 __ecereInstance1->kind = 13, __ecereInstance1->refCount = 1, __ecereInstance1->__anon1.type = ptrType, __ecereInstance1;
5103 });
5104 CopyTypeInto(ptrType, convert->dataType->__anon1.type);
5105 ptrType->constant = 1;
5106 }
5107 if((constType || convert->dataType != dest) && MatchTypes(source, constType ? constType : convert->dataType, conversions, (((void *)0)), (((void *)0)), 1, 0, 0, 1, warnConst))
5108 {
5109 if(!conversions && !convert->Set)
5110 success = 1;
5111 else if(conversions != (((void *)0)))
5112 {
5113 if(_class->type == 3 && convert->dataType->kind == 8 && convert->dataType->__anon1._class && convert->dataType->__anon1._class->__anon1.registered && _class->base == convert->dataType->__anon1._class->__anon1.registered->base && (source->kind != 8 || source->__anon1._class->__anon1.registered != _class->base))
5114 success = 1;
5115 else
5116 {
5117 struct Conversion * conv = (conv = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Conversion), conv->convert = convert, conv);
5118
5119 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(conversions, conv);
5120 success = 1;
5121 }
5122 }
5123 }
5124 if(constType)
5125 FreeType(constType);
5126 if(success)
5127 return 1;
5128 }
5129 }
5130 }
5131 if(enumBaseType && dest->__anon1._class && dest->__anon1._class->__anon1.registered && dest->__anon1._class->__anon1.registered->type == 4)
5132 {
5133 if(!dest->__anon1._class->__anon1.registered->dataType)
5134 dest->__anon1._class->__anon1.registered->dataType = ProcessTypeString(dest->__anon1._class->__anon1.registered->dataTypeString, 0);
5135 if(dest->__anon1._class->__anon1.registered->dataType->kind == 8 || source->truth || dest->truth)
5136 {
5137 if(MatchTypes(source, dest->__anon1._class->__anon1.registered->dataType, conversions, (((void *)0)), (((void *)0)), 1, dest->__anon1._class->__anon1.registered->dataType->kind == 8, 0, 0, warnConst))
5138 {
5139 return 1;
5140 }
5141 }
5142 }
5143 }
5144 if(source->kind == 8)
5145 {
5146 struct __ecereNameSpace__ecere__com__Class * _class;
5147
5148 for(_class = source->__anon1._class ? source->__anon1._class->__anon1.registered : (((void *)0)); _class; _class = _class->base)
5149 {
5150 struct __ecereNameSpace__ecere__com__Property * convert;
5151
5152 for(convert = _class->conversions.first; convert; convert = convert->next)
5153 {
5154 if(convert->memberAccess == 1 || _class->module == privateModule)
5155 {
5156 struct Conversion * after = (conversions != (((void *)0))) ? conversions->last : (((void *)0));
5157
5158 if(!convert->dataType)
5159 convert->dataType = ProcessTypeString(convert->dataTypeString, 0);
5160 if(convert->dataType != source && (!isConversionExploration || convert->dataType->kind == 8 || !strcmp(_class->name, "String")) && MatchTypes(convert->dataType, dest, conversions, (((void *)0)), (((void *)0)), convert->dataType->kind == 8, convert->dataType->kind == 8, 0, 1, warnConst))
5161 {
5162 if(!conversions && !convert->Get)
5163 return 1;
5164 else if(conversions != (((void *)0)))
5165 {
5166 if(_class->type == 3 && convert->dataType->kind == 8 && convert->dataType->__anon1._class && convert->dataType->__anon1._class->__anon1.registered && _class->base == convert->dataType->__anon1._class->__anon1.registered->base && (dest->kind != 8 || dest->__anon1._class->__anon1.registered != _class->base))
5167 return 1;
5168 else
5169 {
5170 struct Conversion * conv = (conv = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Conversion), conv->convert = convert, conv->isGet = 1, conv);
5171
5172 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert(conversions, after, conv);
5173 return 1;
5174 }
5175 }
5176 }
5177 }
5178 }
5179 }
5180 if(enumBaseType && source->__anon1._class && source->__anon1._class->__anon1.registered && source->__anon1._class->__anon1.registered->type == 4)
5181 {
5182 if(!source->__anon1._class->__anon1.registered->dataType)
5183 source->__anon1._class->__anon1.registered->dataType = ProcessTypeString(source->__anon1._class->__anon1.registered->dataTypeString, 0);
5184 if(!isConversionExploration || source->__anon1._class->__anon1.registered->dataType->kind == 8 || !strcmp(source->__anon1._class->__anon1.registered->name, "String"))
5185 {
5186 if(MatchTypes(source->__anon1._class->__anon1.registered->dataType, dest, conversions, (((void *)0)), (((void *)0)), source->__anon1._class->__anon1.registered->dataType->kind == 8, source->__anon1._class->__anon1.registered->dataType->kind == 8, 0, 0, warnConst))
5187 return 1;
5188 else if(MatchTypes(dest, source->__anon1._class->__anon1.registered->dataType, (((void *)0)), (((void *)0)), (((void *)0)), 0, 0, 0, 0, warnConst))
5189 return 1;
5190 }
5191 }
5192 }
5193 }
5194 if(source->kind == 8 || source->kind == 19)
5195 ;
5196 else if(dest->kind == source->kind && (dest->kind != 9 && dest->kind != 10 && dest->kind != 11 && dest->kind != 12 && dest->kind != 13 && dest->kind != 16))
5197 return 1;
5198 else if(dest->kind == 7 && source->kind == 6)
5199 return 1;
5200 else if(dest->kind == 2 && (source->kind == 1 || source->kind == 24))
5201 return 1;
5202 else if(dest->kind == 3 && (source->kind == 2 || source->kind == 1 || source->kind == 24 || source->kind == 23))
5203 return 1;
5204 else if(dest->kind == 4 && (source->kind == 2 || source->kind == 1 || source->kind == 24 || source->kind == 3 || source->kind == 22 || source->kind == 23))
5205 return 1;
5206 else if(dest->kind == 22 && (source->kind == 2 || source->kind == 1 || source->kind == 24 || source->kind == 3 || source->kind == 23 || source->kind == 4))
5207 return 1;
5208 else if(dest->kind == 23 && (source->kind == 2 || source->kind == 1 || source->kind == 24 || source->kind == 3 || source->kind == 4 || source->kind == 22))
5209 return 1;
5210 else if(source->kind == 15 && (dest->kind == 3 || dest->kind == 2 || dest->kind == 1 || source->kind == 24 || dest->kind == 5 || dest->kind == 4 || dest->kind == 22 || dest->kind == 23))
5211 return 1;
5212 else if(dest->kind == 15 && !isConversionExploration && (source->kind == 3 || source->kind == 2 || source->kind == 1 || source->kind == 24 || source->kind == 5 || source->kind == 4 || source->kind == 22 || source->kind == 23))
5213 return 1;
5214 else if((dest->kind == 11 || (dest->kind == 13 && dest->__anon1.type->kind == 11) || dest->kind == 16) && ((source->kind == 11 || (source->kind == 13 && source->__anon1.type->kind == 11) || source->kind == 16)))
5215 {
5216 struct Type * paramSource, * paramDest;
5217
5218 if(dest->kind == 16)
5219 owningClassDest = dest->__anon1.__anon3.methodClass ? dest->__anon1.__anon3.methodClass : dest->__anon1.__anon3.method->_class;
5220 if(source->kind == 16)
5221 owningClassSource = source->__anon1.__anon3.methodClass ? source->__anon1.__anon3.methodClass : source->__anon1.__anon3.method->_class;
5222 if(dest->kind == 13 && dest->__anon1.type->kind == 11)
5223 dest = dest->__anon1.type;
5224 if(source->kind == 13 && source->__anon1.type->kind == 11)
5225 source = source->__anon1.type;
5226 if(dest->kind == 16)
5227 dest = dest->__anon1.__anon3.method->dataType;
5228 if(source->kind == 16)
5229 source = source->__anon1.__anon3.method->dataType;
5230 paramSource = source->__anon1.__anon2.params.first;
5231 if(paramSource && paramSource->kind == 0)
5232 paramSource = (((void *)0));
5233 paramDest = dest->__anon1.__anon2.params.first;
5234 if(paramDest && paramDest->kind == 0)
5235 paramDest = (((void *)0));
5236 if((dest->__anon1.__anon2.staticMethod || (!dest->__anon1.__anon2.thisClass && !owningClassDest)) && !(source->__anon1.__anon2.staticMethod || (!source->__anon1.__anon2.thisClass && !owningClassSource)))
5237 {
5238 if(!paramDest || (!(paramDest->kind == 13 && paramDest->__anon1.type && paramDest->__anon1.type->kind == 0) && (paramDest->kind != 8 || !__ecereNameSpace__ecere__com__eClass_IsDerived(source->__anon1.__anon2.thisClass ? source->__anon1.__anon2.thisClass->__anon1.registered : owningClassSource, paramDest->__anon1._class->__anon1.registered))))
5239 {
5240 if(paramDest && paramDest->kind == 8)
5241 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "method class must be derived from %s\n", (((void *)0))), paramDest->__anon1._class->string);
5242 else
5243 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "method class should not take an object\n", (((void *)0))));
5244 return 0;
5245 }
5246 paramDest = paramDest->next;
5247 }
5248 else if(!dest->__anon1.__anon2.staticMethod && (dest->__anon1.__anon2.thisClass || owningClassDest))
5249 {
5250 if((source->__anon1.__anon2.staticMethod || (!source->__anon1.__anon2.thisClass && !owningClassSource)))
5251 {
5252 if(dest->__anon1.__anon2.thisClass)
5253 {
5254 if(!paramSource || paramSource->kind != 8 || !__ecereNameSpace__ecere__com__eClass_IsDerived(paramSource->__anon1._class->__anon1.registered, dest->__anon1.__anon2.thisClass->__anon1.registered))
5255 {
5256 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "method class must be derived from %s\n", (((void *)0))), dest->__anon1.__anon2.thisClass->string);
5257 return 0;
5258 }
5259 }
5260 else
5261 {
5262 if(!paramSource || paramSource->kind != 8 || (owningClassDest && !__ecereNameSpace__ecere__com__eClass_IsDerived(paramSource->__anon1._class->__anon1.registered, owningClassDest)))
5263 {
5264 if(owningClassDest)
5265 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "%s expected to be derived from method class\n", (((void *)0))), owningClassDest->fullName);
5266 else
5267 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "overriding class expected to be derived from method class\n", (((void *)0))));
5268 return 0;
5269 }
5270 }
5271 paramSource = paramSource->next;
5272 }
5273 else
5274 {
5275 if(dest->__anon1.__anon2.thisClass)
5276 {
5277 if(!__ecereNameSpace__ecere__com__eClass_IsDerived(source->__anon1.__anon2.thisClass ? source->__anon1.__anon2.thisClass->__anon1.registered : owningClassSource, dest->__anon1.__anon2.thisClass->__anon1.registered))
5278 {
5279 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "method class must be derived from %s\n", (((void *)0))), dest->__anon1.__anon2.thisClass->string);
5280 return 0;
5281 }
5282 }
5283 else
5284 {
5285 if(source->__anon1.__anon2.thisClass && source->__anon1.__anon2.thisClass->__anon1.registered && owningClassDest && !__ecereNameSpace__ecere__com__eClass_IsDerived(source->__anon1.__anon2.thisClass->__anon1.registered, owningClassDest))
5286 {
5287 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "%s expected to be derived from method class\n", (((void *)0))), source->__anon1.__anon2.thisClass->__anon1.registered->fullName);
5288 return 0;
5289 }
5290 }
5291 }
5292 }
5293 if(!MatchTypes(source->__anon1.__anon2.returnType, dest->__anon1.__anon2.returnType, (((void *)0)), (((void *)0)), (((void *)0)), 1, 1, 0, 0, warnConst))
5294 {
5295 Compiler_Warning(__ecereNameSpace__ecere__GetTranslatedString("ec", "incompatible return type for function\n", (((void *)0))));
5296 return 0;
5297 }
5298 else
5299 CheckConstCompatibility(dest->__anon1.__anon2.returnType, source->__anon1.__anon2.returnType, 1);
5300 for(; paramDest; paramDest = paramDest->next)
5301 {
5302 if(!paramSource)
5303 {
5304 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "not enough parameters\n", (((void *)0))));
5305 return 0;
5306 }
5307 {
5308 struct Type * paramDestType = paramDest;
5309 struct Type * paramSourceType = paramSource;
5310 struct Type * type = paramDestType;
5311
5312 if(paramDest->kind == 20 && paramDest->__anon1.templateParameter->type == 0 && owningClassSource && paramSource->kind != 20)
5313 {
5314 int id = 0;
5315 struct __ecereNameSpace__ecere__com__ClassTemplateParameter * curParam = (((void *)0));
5316 struct __ecereNameSpace__ecere__com__Class * sClass;
5317
5318 for(sClass = owningClassSource; sClass; sClass = sClass->base)
5319 {
5320 id = 0;
5321 if(sClass->templateClass)
5322 sClass = sClass->templateClass;
5323 for(curParam = sClass->templateParams.first; curParam; curParam = curParam->next)
5324 {
5325 if(curParam->type == 0 && !strcmp(type->__anon1.templateParameter->identifier->string, curParam->name))
5326 {
5327 for(sClass = sClass->base; sClass; sClass = sClass->base)
5328 {
5329 if(sClass->templateClass)
5330 sClass = sClass->templateClass;
5331 id += sClass->templateParams.count;
5332 }
5333 break;
5334 }
5335 id++;
5336 }
5337 if(curParam)
5338 break;
5339 }
5340 if(curParam)
5341 {
5342 struct __ecereNameSpace__ecere__com__ClassTemplateArgument arg = owningClassSource->templateArgs[id];
5343
5344 paramDestType = type = ProcessTypeString(arg.__anon1.__anon1.dataTypeString, 0);
5345 }
5346 }
5347 if(!MatchTypes(paramDestType, paramSourceType, (((void *)0)), (((void *)0)), (((void *)0)), 1, 1, 0, 0, warnConst) && (!acceptReversedParams || !MatchTypes(paramSourceType, paramDestType, (((void *)0)), (((void *)0)), (((void *)0)), 1, 1, 0, 0, warnConst)))
5348 {
5349 char type[1024];
5350
5351 type[0] = (char)0;
5352 PrintType(paramDest, type, 0, 1);
5353 Compiler_Warning(__ecereNameSpace__ecere__GetTranslatedString("ec", "incompatible parameter %s (expected %s)\n", (((void *)0))), paramSource->name, type);
5354 if(paramDestType != paramDest)
5355 FreeType(paramDestType);
5356 return 0;
5357 }
5358 if(paramDestType != paramDest)
5359 FreeType(paramDestType);
5360 }
5361 paramSource = paramSource->next;
5362 }
5363 if(paramSource)
5364 {
5365 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "too many parameters\n", (((void *)0))));
5366 return 0;
5367 }
5368 return 1;
5369 }
5370 else if((dest->kind == 11 || (dest->kind == 13 && dest->__anon1.type->kind == 11) || dest->kind == 16) && (source->kind == 13 && source->__anon1.type->kind == 0))
5371 {
5372 return 1;
5373 }
5374 else if((dest->kind == 13 || dest->kind == 12) && (source->kind == 12 || source->kind == 13))
5375 {
5376 if(!(dest->__anon1.type && dest->__anon1.type->kind == 13 && source->__anon1.type->kind == 8 && source->__anon1.type->__anon1._class && source->__anon1.type->__anon1._class->__anon1.registered && (source->__anon1.type->__anon1._class->__anon1.registered->type != 0 && source->__anon1.type->__anon1._class->__anon1.registered->type != 5) && !source->__anon1.type->byReference))
5377 {
5378 ComputeTypeSize(source->__anon1.type);
5379 ComputeTypeSize(dest->__anon1.type);
5380 if(source->__anon1.type->size == dest->__anon1.type->size && MatchTypes(source->__anon1.type, dest->__anon1.type, (((void *)0)), (((void *)0)), (((void *)0)), 1, 1, 0, 0, warnConst))
5381 return 1;
5382 }
5383 }
5384 }
5385 return 0;
5386 }
5387
5388 static void FreeConvert(struct Conversion * convert)
5389 {
5390 if(convert->resultType)
5391 FreeType(convert->resultType);
5392 }
5393
5394 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__BTNamedLink;
5395
5396 struct __ecereNameSpace__ecere__com__BTNamedLink
5397 {
5398 const char *  name;
5399 struct __ecereNameSpace__ecere__com__BTNamedLink * parent;
5400 struct __ecereNameSpace__ecere__com__BTNamedLink * left;
5401 struct __ecereNameSpace__ecere__com__BTNamedLink * right;
5402 int depth;
5403 void *  data;
5404 } __attribute__ ((gcc_struct));
5405
5406 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__EnumClassData;
5407
5408 struct __ecereNameSpace__ecere__com__EnumClassData
5409 {
5410 struct __ecereNameSpace__ecere__sys__OldList values;
5411 long long largest;
5412 } __attribute__ ((gcc_struct));
5413
5414 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__sys__NamedLink64;
5415
5416 struct __ecereNameSpace__ecere__sys__NamedLink64
5417 {
5418 struct __ecereNameSpace__ecere__sys__NamedLink64 * prev;
5419 struct __ecereNameSpace__ecere__sys__NamedLink64 * next;
5420 char *  name;
5421 long long data;
5422 } __attribute__ ((gcc_struct));
5423
5424 extern void FreeExpContents(struct Expression * exp);
5425
5426 struct __ecereNameSpace__ecere__sys__BTNode * __ecereProp___ecereNameSpace__ecere__sys__BinaryTree_Get_first(struct __ecereNameSpace__ecere__sys__BinaryTree * this);
5427
5428 extern struct __ecereNameSpace__ecere__com__Property * __ecereProp___ecereNameSpace__ecere__sys__BinaryTree_first;
5429
5430 struct __ecereNameSpace__ecere__sys__BTNode * __ecereProp___ecereNameSpace__ecere__sys__BTNode_Get_next(struct __ecereNameSpace__ecere__sys__BTNode * this);
5431
5432 extern struct __ecereNameSpace__ecere__com__Property * __ecereProp___ecereNameSpace__ecere__sys__BTNode_next;
5433
5434 void __ecereMethod___ecereNameSpace__ecere__sys__OldList_Free(struct __ecereNameSpace__ecere__sys__OldList * this, void (*  freeFn)(void * ));
5435
5436 unsigned int MatchWithEnums_NameSpace(struct __ecereNameSpace__ecere__com__NameSpace * nameSpace, struct Expression * sourceExp, struct Type * dest, char * string, struct __ecereNameSpace__ecere__sys__OldList * conversions)
5437 {
5438 struct __ecereNameSpace__ecere__com__BTNamedLink * link;
5439
5440 for(link = (struct __ecereNameSpace__ecere__com__BTNamedLink *)__ecereProp___ecereNameSpace__ecere__sys__BinaryTree_Get_first(&nameSpace->classes); link; link = (struct __ecereNameSpace__ecere__com__BTNamedLink *)__ecereProp___ecereNameSpace__ecere__sys__BTNode_Get_next(((struct __ecereNameSpace__ecere__sys__BTNode *)link)))
5441 {
5442 struct __ecereNameSpace__ecere__com__Class * _class = link->data;
5443
5444 if(_class->type == 4)
5445 {
5446 struct __ecereNameSpace__ecere__sys__OldList converts =
5447 {
5448 0, 0, 0, 0, 0
5449 };
5450 struct Type * type = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
5451
5452 type->kind = 8;
5453 if(!_class->symbol)
5454 _class->symbol = FindClass(_class->fullName);
5455 type->__anon1._class = _class->symbol;
5456 if(MatchTypes(type, dest, &converts, (((void *)0)), (((void *)0)), dest->kind != 8 || !dest->__anon1._class || strcmp(dest->__anon1._class->string, "bool"), 0, 0, 0, 0))
5457 {
5458 struct __ecereNameSpace__ecere__sys__NamedLink64 * value;
5459 struct __ecereNameSpace__ecere__com__Class * enumClass = __ecereNameSpace__ecere__com__eSystem_FindClass(privateModule, "enum");
5460
5461 if(enumClass)
5462 {
5463 struct __ecereNameSpace__ecere__com__Class * baseClass;
5464
5465 for(baseClass = _class; baseClass && baseClass->type == 4; baseClass = baseClass->base)
5466 {
5467 struct __ecereNameSpace__ecere__com__EnumClassData * e = (baseClass ? ((void *)(((char *)baseClass->data) + enumClass->offsetClass)) : (((void *)0)));
5468
5469 for(value = e->values.first; value; value = value->next)
5470 {
5471 if(!strcmp(value->name, string))
5472 break;
5473 }
5474 if(value)
5475 {
5476 FreeExpContents(sourceExp);
5477 FreeType(sourceExp->expType);
5478 sourceExp->isConstant = 1;
5479 sourceExp->expType = MkClassType(baseClass->fullName);
5480 {
5481 char constant[256];
5482
5483 sourceExp->type = 2;
5484 if(!strcmp(baseClass->dataTypeString, "int") || !strcmp(baseClass->dataTypeString, "int64") || !strcmp(baseClass->dataTypeString, "short") || !strcmp(baseClass->dataTypeString, "char"))
5485 sprintf(constant, ((__runtimePlatform == 1) ? "%I64d" : "%lld"), value->data);
5486 else
5487 sprintf(constant, ((__runtimePlatform == 1) ? "0x%I64XLL" : "0x%llXLL"), value->data);
5488 sourceExp->__anon1.__anon1.constant = __ecereNameSpace__ecere__sys__CopyString(constant);
5489 }
5490 while(converts.first)
5491 {
5492 struct Conversion * convert = converts.first;
5493
5494 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Remove(&converts, convert);
5495 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(conversions, convert);
5496 }
5497 ((type ? (__ecereClass_Type->Destructor ? __ecereClass_Type->Destructor((void *)type) : 0, __ecereNameSpace__ecere__com__eSystem_Delete(type)) : 0), type = 0);
5498 return 1;
5499 }
5500 }
5501 }
5502 }
5503 if(converts.first)
5504 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Free(&converts, (void *)(FreeConvert));
5505 ((type ? (__ecereClass_Type->Destructor ? __ecereClass_Type->Destructor((void *)type) : 0, __ecereNameSpace__ecere__com__eSystem_Delete(type)) : 0), type = 0);
5506 }
5507 }
5508 for(nameSpace = (struct __ecereNameSpace__ecere__com__NameSpace *)__ecereProp___ecereNameSpace__ecere__sys__BinaryTree_Get_first(&nameSpace->nameSpaces); nameSpace != (((void *)0)); nameSpace = (struct __ecereNameSpace__ecere__com__NameSpace *)__ecereProp___ecereNameSpace__ecere__sys__BTNode_Get_next(((struct __ecereNameSpace__ecere__sys__BTNode *)nameSpace)))
5509 if(MatchWithEnums_NameSpace(nameSpace, sourceExp, dest, string, conversions))
5510 return 1;
5511 return 0;
5512 }
5513
5514 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__SubModule;
5515
5516 struct __ecereNameSpace__ecere__com__SubModule
5517 {
5518 struct __ecereNameSpace__ecere__com__SubModule * prev;
5519 struct __ecereNameSpace__ecere__com__SubModule * next;
5520 struct __ecereNameSpace__ecere__com__Instance * module;
5521 int importMode;
5522 } __attribute__ ((gcc_struct));
5523
5524 unsigned int ModuleVisibility(struct __ecereNameSpace__ecere__com__Instance * searchIn, struct __ecereNameSpace__ecere__com__Instance * searchFor)
5525 {
5526 struct __ecereNameSpace__ecere__com__SubModule * subModule;
5527
5528 if(searchFor == searchIn)
5529 return 1;
5530 for(subModule = ((struct __ecereNameSpace__ecere__com__Module *)(((char *)searchIn + structSize_Instance)))->modules.first; subModule; subModule = subModule->next)
5531 {
5532 if(subModule->importMode == 1 || searchIn == ((struct __ecereNameSpace__ecere__com__Module *)(((char *)searchIn + structSize_Instance)))->application)
5533 {
5534 if(ModuleVisibility(subModule->module, searchFor))
5535 return 1;
5536 }
5537 }
5538 return 0;
5539 }
5540
5541 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__Application;
5542
5543 struct __ecereNameSpace__ecere__com__Application
5544 {
5545 int argc;
5546 const char * *  argv;
5547 int exitCode;
5548 unsigned int isGUIApp;
5549 struct __ecereNameSpace__ecere__sys__OldList allModules;
5550 char *  parsedCommand;
5551 struct __ecereNameSpace__ecere__com__NameSpace systemNameSpace;
5552 } __attribute__ ((gcc_struct));
5553
5554 unsigned int MatchWithEnums_Module(struct __ecereNameSpace__ecere__com__Instance * mainModule, struct Expression * sourceExp, struct Type * dest, char * string, struct __ecereNameSpace__ecere__sys__OldList * conversions)
5555 {
5556 struct __ecereNameSpace__ecere__com__Instance * module;
5557
5558 if(MatchWithEnums_NameSpace(&((struct __ecereNameSpace__ecere__com__Application *)(((char *)((struct __ecereNameSpace__ecere__com__Module *)(((char *)mainModule + structSize_Instance)))->application + structSize_Module)))->systemNameSpace, sourceExp, dest, string, conversions))
5559 return 1;
5560 if(MatchWithEnums_NameSpace(&((struct __ecereNameSpace__ecere__com__Module *)(((char *)((struct __ecereNameSpace__ecere__com__Module *)(((char *)mainModule + structSize_Instance)))->application + structSize_Instance)))->privateNameSpace, sourceExp, dest, string, conversions))
5561 return 1;
5562 if(MatchWithEnums_NameSpace(&((struct __ecereNameSpace__ecere__com__Module *)(((char *)((struct __ecereNameSpace__ecere__com__Module *)(((char *)mainModule + structSize_Instance)))->application + structSize_Instance)))->publicNameSpace, sourceExp, dest, string, conversions))
5563 return 1;
5564 for(module = ((struct __ecereNameSpace__ecere__com__Application *)(((char *)((struct __ecereNameSpace__ecere__com__Module *)(((char *)mainModule + structSize_Instance)))->application + structSize_Module)))->allModules.first; module; module = ((struct __ecereNameSpace__ecere__com__Module *)(((char *)module + structSize_Instance)))->next)
5565 {
5566 if(ModuleVisibility(mainModule, module) && MatchWithEnums_NameSpace(&((struct __ecereNameSpace__ecere__com__Module *)(((char *)module + structSize_Instance)))->publicNameSpace, sourceExp, dest, string, conversions))
5567 return 1;
5568 }
5569 return 0;
5570 }
5571
5572 extern struct Expression * CopyExpression(struct Expression * exp);
5573
5574 extern unsigned long strtoul(const char *  nptr, char * *  endptr, int base);
5575
5576 void ReadString(char *  output, char *  string);
5577
5578 extern struct Specifier * MkEnum(struct Identifier * id, struct __ecereNameSpace__ecere__sys__OldList * list);
5579
5580 extern struct TypeName * QMkClass(const char *  spec, struct Declarator * decl);
5581
5582 extern struct Expression * MkExpBrackets(struct __ecereNameSpace__ecere__sys__OldList * expressions);
5583
5584 unsigned int MatchTypeExpression(struct Expression * sourceExp, struct Type * dest, struct __ecereNameSpace__ecere__sys__OldList * conversions, unsigned int skipUnitBla, unsigned int warnConst)
5585 {
5586 struct Type * source;
5587 struct Type * realDest = dest;
5588 struct Type * backupSourceExpType = (((void *)0));
5589 struct Expression * computedExp = sourceExp;
5590
5591 dest->refCount++;
5592 if(sourceExp->isConstant && sourceExp->type != 2 && sourceExp->type != 0 && sourceExp->type != 11 && dest->kind == 8 && dest->__anon1._class && dest->__anon1._class->__anon1.registered && dest->__anon1._class->__anon1.registered->type == 4)
5593 {
5594 computedExp = CopyExpression(sourceExp);
5595 ComputeExpression(computedExp);
5596 }
5597 source = sourceExp->expType;
5598 if(dest->kind == 13 && sourceExp->type == 2 && !strtoul(sourceExp->__anon1.__anon1.constant, (((void *)0)), 0))
5599 {
5600 if(computedExp != sourceExp)
5601 {
5602 FreeExpression(computedExp);
5603 computedExp = sourceExp;
5604 }
5605 FreeType(dest);
5606 return 1;
5607 }
5608 if(!skipUnitBla && source && dest && source->kind == 8 && dest->kind == 8)
5609 {
5610 if(source->__anon1._class && source->__anon1._class->__anon1.registered && source->__anon1._class->__anon1.registered->type == 3)
5611 {
5612 struct __ecereNameSpace__ecere__com__Class * sourceBase, * destBase;
5613
5614 for(sourceBase = source->__anon1._class->__anon1.registered; sourceBase && sourceBase->base && sourceBase->base->type != 1000; sourceBase = sourceBase->base)
5615 ;
5616 for(destBase = dest->__anon1._class->__anon1.registered; destBase && destBase->base && destBase->base->type != 1000; destBase = destBase->base)
5617 ;
5618 if(sourceBase == destBase)
5619 {
5620 if(computedExp != sourceExp)
5621 {
5622 FreeExpression(computedExp);
5623 computedExp = sourceExp;
5624 }
5625 FreeType(dest);
5626 return 1;
5627 }
5628 }
5629 }
5630 if(source)
5631 {
5632 struct __ecereNameSpace__ecere__sys__OldList * specs;
5633 unsigned int flag = 0;
5634 long long value = (((int)0x7fffffff));
5635
5636 source->refCount++;
5637 if(computedExp->type == 2)
5638 {
5639 if(source->isSigned)
5640 value = strtoll(computedExp->__anon1.__anon1.constant, (((void *)0)), 0);
5641 else
5642 value = strtoull(computedExp->__anon1.__anon1.constant, (((void *)0)), 0);
5643 }
5644 else if(computedExp->type == 4 && sourceExp->__anon1.op.op == '-' && !computedExp->__anon1.op.exp1 && computedExp->__anon1.op.exp2 && computedExp->__anon1.op.exp2->type == 2)
5645 {
5646 if(source->isSigned)
5647 value = -strtoll(computedExp->__anon1.op.exp2->__anon1.__anon1.constant, (((void *)0)), 0);
5648 else
5649 value = -strtoull(computedExp->__anon1.op.exp2->__anon1.__anon1.constant, (((void *)0)), 0);
5650 }
5651 if(computedExp != sourceExp)
5652 {
5653 FreeExpression(computedExp);
5654 computedExp = sourceExp;
5655 }
5656 if(dest->kind != 8 && source->kind == 8 && source->__anon1._class && source->__anon1._class->__anon1.registered && !strcmp(source->__anon1._class->__anon1.registered->fullName, "ecere::com::unichar"))
5657 {
5658 FreeType(source);
5659 source = __extension__ ({
5660 struct Type * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
5661
5662 __ecereInstance1->kind = 3, __ecereInstance1->isSigned = 0, __ecereInstance1->refCount = 1, __ecereInstance1;
5663 });
5664 }
5665 if(dest->kind == 8)
5666 {
5667 struct __ecereNameSpace__ecere__com__Class * _class = dest->__anon1._class ? dest->__anon1._class->__anon1.registered : (((void *)0));
5668
5669 if(_class && _class->type == 3)
5670 {
5671 if(source->kind != 8)
5672 {
5673 struct Type * tempType = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
5674 struct Type * tempDest, * tempSource;
5675
5676 for(; _class->base->type != 1000; _class = _class->base)
5677 ;
5678 tempSource = dest;
5679 tempDest = tempType;
5680 tempType->kind = 8;
5681 if(!_class->symbol)
5682 _class->symbol = FindClass(_class->fullName);
5683 tempType->__anon1._class = _class->symbol;
5684 tempType->truth = dest->truth;
5685 if(tempType->__anon1._class)
5686 MatchTypes(tempSource, tempDest, conversions, (((void *)0)), (((void *)0)), 1, 1, 0, 0, warnConst);
5687 backupSourceExpType = sourceExp->expType;
5688 sourceExp->expType = dest;
5689 dest->refCount++;
5690 flag = 1;
5691 ((tempType ? (__ecereClass_Type->Destructor ? __ecereClass_Type->Destructor((void *)tempType) : 0, __ecereNameSpace__ecere__com__eSystem_Delete(tempType)) : 0), tempType = 0);
5692 }
5693 }
5694 if(_class && _class->type == 2 && source->kind != 8)
5695 {
5696 if(!dest->__anon1._class->__anon1.registered->dataType)
5697 dest->__anon1._class->__anon1.registered->dataType = ProcessTypeString(dest->__anon1._class->__anon1.registered->dataTypeString, 0);
5698 if(MatchTypes(source, dest->__anon1._class->__anon1.registered->dataType, conversions, (((void *)0)), (((void *)0)), 1, 1, 0, 0, warnConst))
5699 {
5700 FreeType(source);
5701 FreeType(sourceExp->expType);
5702 source = sourceExp->expType = MkClassType(dest->__anon1._class->string);
5703 source->refCount++;
5704 }
5705 }
5706 if(_class && !strcmp(_class->fullName, "ecere::com::Class") && source->kind == 13 && source->__anon1.type && source->__anon1.type->kind == 1 && sourceExp->type == 3)
5707 {
5708 struct __ecereNameSpace__ecere__sys__OldList * specs = MkList();
5709 struct Declarator * decl;
5710 char string[1024];
5711
5712 ReadString(string, sourceExp->__anon1.__anon2.string);
5713 decl = SpecDeclFromString(string, specs, (((void *)0)));
5714 FreeExpContents(sourceExp);
5715 FreeType(sourceExp->expType);
5716 sourceExp->type = 24;
5717 sourceExp->__anon1._classExp.specifiers = specs;
5718 sourceExp->__anon1._classExp.decl = decl;
5719 sourceExp->expType = dest;
5720 dest->refCount++;
5721 FreeType(source);
5722 FreeType(dest);
5723 if(backupSourceExpType)
5724 FreeType(backupSourceExpType);
5725 return 1;
5726 }
5727 }
5728 else if(source->kind == 8)
5729 {
5730 struct __ecereNameSpace__ecere__com__Class * _class = source->__anon1._class ? source->__anon1._class->__anon1.registered : (((void *)0));
5731
5732 if(_class && (_class->type == 3 || _class->type == 2))
5733 {
5734 if(dest->kind != 8)
5735 {
5736 struct Type * tempType = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
5737 struct Type * tempDest, * tempSource;
5738
5739 if(!source->__anon1._class->__anon1.registered->dataType)
5740 source->__anon1._class->__anon1.registered->dataType = ProcessTypeString(source->__anon1._class->__anon1.registered->dataTypeString, 0);
5741 for(; _class->base->type != 1000; _class = _class->base)
5742 ;
5743 tempDest = source;
5744 tempSource = tempType;
5745 tempType->kind = 8;
5746 tempType->__anon1._class = FindClass(_class->fullName);
5747 tempType->truth = source->truth;
5748 tempType->classObjectType = source->classObjectType;
5749 if(tempType->__anon1._class)
5750 MatchTypes(tempSource, tempDest, conversions, (((void *)0)), (((void *)0)), 1, 1, 0, 0, warnConst);
5751 if(conversions->last)
5752 {
5753 ((struct Conversion *)conversions->last)->resultType = dest;
5754 dest->refCount++;
5755 }
5756 FreeType(sourceExp->expType);
5757 sourceExp->expType = MkClassType(_class->fullName);
5758 sourceExp->expType->truth = source->truth;
5759 sourceExp->expType->classObjectType = source->classObjectType;
5760 if(!sourceExp->destType)
5761 {
5762 FreeType(sourceExp->destType);
5763 sourceExp->destType = sourceExp->expType;
5764 if(sourceExp->expType)
5765 sourceExp->expType->refCount++;
5766 }
5767 if(!_class->dataType)
5768 _class->dataType = ProcessTypeString(_class->dataTypeString, 0);
5769 FreeType(dest);
5770 dest = MkClassType(source->__anon1._class->string);
5771 dest->truth = source->truth;
5772 dest->classObjectType = source->classObjectType;
5773 FreeType(source);
5774 source = _class->dataType;
5775 source->refCount++;
5776 ((tempType ? (__ecereClass_Type->Destructor ? __ecereClass_Type->Destructor((void *)tempType) : 0, __ecereNameSpace__ecere__com__eSystem_Delete(tempType)) : 0), tempType = 0);
5777 }
5778 }
5779 }
5780 if(!flag)
5781 {
5782 if(MatchTypes(source, dest, conversions, (((void *)0)), (((void *)0)), 1, 1, 0, 0, warnConst))
5783 {
5784 FreeType(source);
5785 FreeType(dest);
5786 return 1;
5787 }
5788 }
5789 if(dest->kind == 8)
5790 {
5791 struct __ecereNameSpace__ecere__com__Class * _class = dest->__anon1._class ? dest->__anon1._class->__anon1.registered : (((void *)0));
5792 unsigned int fittingValue = 0;
5793
5794 if(_class && _class->type == 4)
5795 {
5796 struct __ecereNameSpace__ecere__com__Class * enumClass = __ecereNameSpace__ecere__com__eSystem_FindClass(privateModule, "enum");
5797 struct __ecereNameSpace__ecere__com__EnumClassData * c = (_class ? ((void *)(((char *)_class->data) + enumClass->offsetClass)) : (((void *)0)));
5798
5799 if(c && value >= 0 && value <= c->largest)
5800 fittingValue = 1;
5801 }
5802 if(_class && !dest->truth && (_class->type == 3 || fittingValue || (_class->type != 1 && !value && source->kind == 3) || _class->type == 2))
5803 {
5804 if(_class->type == 0 || _class->type == 5)
5805 {
5806 struct Expression * newExp = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Expression);
5807
5808 *newExp = *sourceExp;
5809 if(sourceExp->destType)
5810 sourceExp->destType->refCount++;
5811 if(sourceExp->expType)
5812 sourceExp->expType->refCount++;
5813 sourceExp->type = 11;
5814 sourceExp->__anon1.cast.typeName = MkTypeName(MkListOne(MkSpecifier(VOID)), MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), (((void *)0))));
5815 sourceExp->__anon1.cast.exp = newExp;
5816 FreeType(sourceExp->expType);
5817 sourceExp->expType = (((void *)0));
5818 ProcessExpressionType(sourceExp);
5819 if(!inCompiler)
5820 {
5821 FreeType(sourceExp->expType);
5822 sourceExp->expType = dest;
5823 }
5824 FreeType(source);
5825 if(inCompiler)
5826 FreeType(dest);
5827 if(backupSourceExpType)
5828 FreeType(backupSourceExpType);
5829 return 1;
5830 }
5831 if(!_class->dataType)
5832 _class->dataType = ProcessTypeString(_class->dataTypeString, 0);
5833 FreeType(dest);
5834 dest = _class->dataType;
5835 dest->refCount++;
5836 }
5837 if(dest->kind == 7 && (source->kind == 7 || source->kind == 6 || dest->kind == 4 || source->kind == 3 || source->kind == 2 || source->kind == 1 || source->kind == 24))
5838 {
5839 specs = MkListOne(MkSpecifier(DOUBLE));
5840 }
5841 else if(dest->kind == 6 && (source->kind == 6 || dest->kind == 4 || source->kind == 3 || source->kind == 2 || source->kind == 1 || source->kind == 24 || source->kind == 7))
5842 {
5843 specs = MkListOne(MkSpecifier(FLOAT));
5844 }
5845 else if(dest->kind == 4 && (source->kind == 4 || source->kind == 3 || source->kind == 2 || source->kind == 1 || source->kind == 24 || source->kind == 6 || source->kind == 7))
5846 {
5847 specs = MkList();
5848 if(!dest->isSigned)
5849 ListAdd(specs, MkSpecifier(UNSIGNED));
5850 ListAdd(specs, MkSpecifier(INT64));
5851 }
5852 else if(dest->kind == 3 && (source->kind == 3 || source->kind == 2 || source->kind == 1 || source->kind == 24 || source->kind == 6 || source->kind == 7))
5853 {
5854 specs = MkList();
5855 if(!dest->isSigned)
5856 ListAdd(specs, MkSpecifier(UNSIGNED));
5857 ListAdd(specs, MkSpecifier(INT));
5858 }
5859 else if(dest->kind == 2 && (source->kind == 2 || source->kind == 1 || source->kind == 24 || source->kind == 3 || source->kind == 6 || source->kind == 7))
5860 {
5861 specs = MkList();
5862 if(!dest->isSigned)
5863 ListAdd(specs, MkSpecifier(UNSIGNED));
5864 ListAdd(specs, MkSpecifier(SHORT));
5865 }
5866 else if(dest->kind == 1 && (source->kind == 1 || source->kind == 24 || source->kind == 2 || source->kind == 3 || source->kind == 6 || source->kind == 7))
5867 {
5868 specs = MkList();
5869 if(!dest->isSigned)
5870 ListAdd(specs, MkSpecifier(UNSIGNED));
5871 ListAdd(specs, MkSpecifier(CHAR));
5872 }
5873 else
5874 {
5875 FreeType(source);
5876 FreeType(dest);
5877 if(backupSourceExpType)
5878 {
5879 if(sourceExp->expType)
5880 FreeType(sourceExp->expType);
5881 sourceExp->expType = backupSourceExpType;
5882 }
5883 return 0;
5884 }
5885 }
5886 else if(dest->kind == 7 && (source->kind == 7 || source->kind == 6 || source->kind == 4 || source->kind == 3 || source->kind == 15 || source->kind == 2 || source->kind == 24 || source->kind == 1))
5887 {
5888 specs = MkListOne(MkSpecifier(DOUBLE));
5889 }
5890 else if(dest->kind == 6 && (source->kind == 6 || source->kind == 15 || source->kind == 4 || source->kind == 3 || source->kind == 2 || source->kind == 24 || source->kind == 1))
5891 {
5892 specs = MkListOne(MkSpecifier(FLOAT));
5893 }
5894 else if(dest->kind == 24 && (source->kind == 24 || source->kind == 1 || source->kind == 15 || source->kind == 2 || source->kind == 3) && (value == 1 || value == 0))
5895 {
5896 specs = MkList();
5897 ListAdd(specs, MkSpecifier(BOOL));
5898 }
5899 else if(dest->kind == 1 && (source->kind == 24 || source->kind == 1 || source->kind == 15 || source->kind == 2 || source->kind == 3) && (dest->isSigned ? (value >= -128 && value <= 127) : (value >= 0 && value <= 255)))
5900 {
5901 specs = MkList();
5902 if(!dest->isSigned)
5903 ListAdd(specs, MkSpecifier(UNSIGNED));
5904 ListAdd(specs, MkSpecifier(CHAR));
5905 }
5906 else if(dest->kind == 2 && (source->kind == 15 || source->kind == 24 || source->kind == 1 || source->kind == 2 || (source->kind == 3 && (dest->isSigned ? (value >= -32768 && value <= 32767) : (value >= 0 && value <= 65535)))))
5907 {
5908 specs = MkList();
5909 if(!dest->isSigned)
5910 ListAdd(specs, MkSpecifier(UNSIGNED));
5911 ListAdd(specs, MkSpecifier(SHORT));
5912 }
5913 else if(dest->kind == 3 && (source->kind == 15 || source->kind == 2 || source->kind == 24 || source->kind == 1 || source->kind == 3))
5914 {
5915 specs = MkList();
5916 if(!dest->isSigned)
5917 ListAdd(specs, MkSpecifier(UNSIGNED));
5918 ListAdd(specs, MkSpecifier(INT));
5919 }
5920 else if(dest->kind == 4 && (source->kind == 15 || source->kind == 2 || source->kind == 24 || source->kind == 1 || source->kind == 3 || source->kind == 4))
5921 {
5922 specs = MkList();
5923 if(!dest->isSigned)
5924 ListAdd(specs, MkSpecifier(UNSIGNED));
5925 ListAdd(specs, MkSpecifier(INT64));
5926 }
5927 else if(dest->kind == 15 && (source->kind == 4 || source->kind == 3 || source->kind == 2 || source->kind == 24 || source->kind == 1))
5928 {
5929 specs = MkListOne(MkEnum(MkIdentifier(dest->__anon1.__anon1.enumName), (((void *)0))));
5930 }
5931 else
5932 {
5933 FreeType(source);
5934 FreeType(dest);
5935 if(backupSourceExpType)
5936 {
5937 if(sourceExp->expType)
5938 FreeType(sourceExp->expType);
5939 sourceExp->expType = backupSourceExpType;
5940 }
5941 return 0;
5942 }
5943 if(!flag && !sourceExp->opDestType)
5944 {
5945 struct Expression * newExp = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Expression);
5946
5947 *newExp = *sourceExp;
5948 newExp->prev = (((void *)0));
5949 newExp->next = (((void *)0));
5950 if(sourceExp->destType)
5951 sourceExp->destType->refCount++;
5952 if(sourceExp->expType)
5953 sourceExp->expType->refCount++;
5954 sourceExp->type = 11;
5955 if(realDest->kind == 8)
5956 {
5957 sourceExp->__anon1.cast.typeName = QMkClass(realDest->__anon1._class->string, (((void *)0)));
5958 FreeList(specs, (void *)(FreeSpecifier));
5959 }
5960 else
5961 sourceExp->__anon1.cast.typeName = MkTypeName(specs, (((void *)0)));
5962 if(newExp->type == 4)
5963 {
5964 sourceExp->__anon1.cast.exp = MkExpBrackets(MkListOne(newExp));
5965 }
5966 else
5967 sourceExp->__anon1.cast.exp = newExp;
5968 FreeType(sourceExp->expType);
5969 sourceExp->expType = (((void *)0));
5970 ProcessExpressionType(sourceExp);
5971 }
5972 else
5973 FreeList(specs, (void *)(FreeSpecifier));
5974 FreeType(dest);
5975 FreeType(source);
5976 if(backupSourceExpType)
5977 FreeType(backupSourceExpType);
5978 return 1;
5979 }
5980 else
5981 {
5982 if(computedExp != sourceExp)
5983 {
5984 FreeExpression(computedExp);
5985 computedExp = sourceExp;
5986 }
5987 while((sourceExp->type == 5 || sourceExp->type == 32) && sourceExp->__anon1.list)
5988 sourceExp = (*sourceExp->__anon1.list).last;
5989 if(sourceExp->type == 0)
5990 {
5991 struct Identifier * id = sourceExp->__anon1.__anon1.identifier;
5992
5993 if(dest->kind == 8)
5994 {
5995 if(dest->__anon1._class && dest->__anon1._class->__anon1.registered && dest->__anon1._class->__anon1.registered->type == 4)
5996 {
5997 struct __ecereNameSpace__ecere__com__Class * _class = dest->__anon1._class->__anon1.registered;
5998 struct __ecereNameSpace__ecere__com__Class * enumClass = __ecereNameSpace__ecere__com__eSystem_FindClass(privateModule, "enum");
5999
6000 if(enumClass)
6001 {
6002 for(; _class && _class->type == 4; _class = _class->base)
6003 {
6004 struct __ecereNameSpace__ecere__sys__NamedLink64 * value;
6005 struct __ecereNameSpace__ecere__com__EnumClassData * e = (_class ? ((void *)(((char *)_class->data) + enumClass->offsetClass)) : (((void *)0)));
6006
6007 for(value = e->values.first; value; value = value->next)
6008 {
6009 if(!strcmp(value->name, id->string))
6010 break;
6011 }
6012 if(value)
6013 {
6014 FreeExpContents(sourceExp);
6015 FreeType(sourceExp->expType);
6016 sourceExp->isConstant = 1;
6017 sourceExp->expType = MkClassType(_class->fullName);
6018 {
6019 sourceExp->type = 2;
6020 if(_class->dataTypeString && (!strcmp(_class->dataTypeString, "int") || !strcmp(_class->dataTypeString, "int64") || !strcmp(_class->dataTypeString, "short") || !strcmp(_class->dataTypeString, "char")))
6021 sourceExp->__anon1.__anon1.constant = PrintInt64(value->data);
6022 else
6023 sourceExp->__anon1.__anon1.constant = PrintUInt64(value->data);
6024 }
6025 FreeType(dest);
6026 return 1;
6027 }
6028 }
6029 }
6030 }
6031 }
6032 if(dest->classObjectType != 2 && dest->kind == 8 && MatchWithEnums_Module(privateModule, sourceExp, dest, id->string, conversions))
6033 {
6034 FreeType(dest);
6035 return 1;
6036 }
6037 }
6038 FreeType(dest);
6039 }
6040 return 0;
6041 }
6042
6043 static unsigned int IntAdd(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6044 {
6045 int value2 = op2->__anon1.i;
6046
6047 exp->type = 2;
6048 exp->__anon1.__anon2.string = PrintInt((op1->__anon1.i + value2));
6049 if(!exp->expType)
6050 {
6051 exp->expType = op1->type;
6052 if(op1->type)
6053 op1->type->refCount++;
6054 }
6055 return 1;
6056 }
6057
6058 static unsigned int UIntAdd(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6059 {
6060 unsigned int value2 = op2->__anon1.ui;
6061
6062 exp->type = 2;
6063 exp->__anon1.__anon2.string = PrintUInt((op1->__anon1.ui + value2));
6064 if(!exp->expType)
6065 {
6066 exp->expType = op1->type;
6067 if(op1->type)
6068 op1->type->refCount++;
6069 }
6070 return 1;
6071 }
6072
6073 static unsigned int Int64Add(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6074 {
6075 long long value2 = op2->__anon1.i64;
6076
6077 exp->type = 2;
6078 exp->__anon1.__anon2.string = PrintInt64((op1->__anon1.i64 + value2));
6079 if(!exp->expType)
6080 {
6081 exp->expType = op1->type;
6082 if(op1->type)
6083 op1->type->refCount++;
6084 }
6085 return 1;
6086 }
6087
6088 static unsigned int UInt64Add(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6089 {
6090 uint64 value2 = op2->__anon1.ui64;
6091
6092 exp->type = 2;
6093 exp->__anon1.__anon2.string = PrintUInt64((op1->__anon1.ui64 + value2));
6094 if(!exp->expType)
6095 {
6096 exp->expType = op1->type;
6097 if(op1->type)
6098 op1->type->refCount++;
6099 }
6100 return 1;
6101 }
6102
6103 static unsigned int ShortAdd(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6104 {
6105 short value2 = op2->__anon1.s;
6106
6107 exp->type = 2;
6108 exp->__anon1.__anon2.string = PrintShort((op1->__anon1.s + value2));
6109 if(!exp->expType)
6110 {
6111 exp->expType = op1->type;
6112 if(op1->type)
6113 op1->type->refCount++;
6114 }
6115 return 1;
6116 }
6117
6118 static unsigned int UShortAdd(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6119 {
6120 unsigned short value2 = op2->__anon1.us;
6121
6122 exp->type = 2;
6123 exp->__anon1.__anon2.string = PrintUShort((op1->__anon1.us + value2));
6124 if(!exp->expType)
6125 {
6126 exp->expType = op1->type;
6127 if(op1->type)
6128 op1->type->refCount++;
6129 }
6130 return 1;
6131 }
6132
6133 static unsigned int CharAdd(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6134 {
6135 char value2 = op2->__anon1.c;
6136
6137 exp->type = 2;
6138 exp->__anon1.__anon2.string = PrintChar((op1->__anon1.c + value2));
6139 if(!exp->expType)
6140 {
6141 exp->expType = op1->type;
6142 if(op1->type)
6143 op1->type->refCount++;
6144 }
6145 return 1;
6146 }
6147
6148 static unsigned int UCharAdd(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6149 {
6150 unsigned char value2 = op2->__anon1.uc;
6151
6152 exp->type = 2;
6153 exp->__anon1.__anon2.string = PrintUChar((op1->__anon1.uc + value2));
6154 if(!exp->expType)
6155 {
6156 exp->expType = op1->type;
6157 if(op1->type)
6158 op1->type->refCount++;
6159 }
6160 return 1;
6161 }
6162
6163 static unsigned int FloatAdd(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6164 {
6165 float value2 = op2->__anon1.f;
6166
6167 exp->type = 2;
6168 exp->__anon1.__anon2.string = PrintFloat((float)(op1->__anon1.f + value2));
6169 if(!exp->expType)
6170 {
6171 exp->expType = op1->type;
6172 if(op1->type)
6173 op1->type->refCount++;
6174 }
6175 return 1;
6176 }
6177
6178 static unsigned int DoubleAdd(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6179 {
6180 double value2 = op2->__anon1.d;
6181
6182 exp->type = 2;
6183 exp->__anon1.__anon2.string = PrintDouble((double)(op1->__anon1.d + value2));
6184 if(!exp->expType)
6185 {
6186 exp->expType = op1->type;
6187 if(op1->type)
6188 op1->type->refCount++;
6189 }
6190 return 1;
6191 }
6192
6193 static unsigned int IntSub(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6194 {
6195 int value2 = op2->__anon1.i;
6196
6197 exp->type = 2;
6198 exp->__anon1.__anon2.string = PrintInt((op1->__anon1.i - value2));
6199 if(!exp->expType)
6200 {
6201 exp->expType = op1->type;
6202 if(op1->type)
6203 op1->type->refCount++;
6204 }
6205 return 1;
6206 }
6207
6208 static unsigned int UIntSub(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6209 {
6210 unsigned int value2 = op2->__anon1.ui;
6211
6212 exp->type = 2;
6213 exp->__anon1.__anon2.string = PrintUInt((op1->__anon1.ui - value2));
6214 if(!exp->expType)
6215 {
6216 exp->expType = op1->type;
6217 if(op1->type)
6218 op1->type->refCount++;
6219 }
6220 return 1;
6221 }
6222
6223 static unsigned int Int64Sub(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6224 {
6225 long long value2 = op2->__anon1.i64;
6226
6227 exp->type = 2;
6228 exp->__anon1.__anon2.string = PrintInt64((op1->__anon1.i64 - value2));
6229 if(!exp->expType)
6230 {
6231 exp->expType = op1->type;
6232 if(op1->type)
6233 op1->type->refCount++;
6234 }
6235 return 1;
6236 }
6237
6238 static unsigned int UInt64Sub(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6239 {
6240 uint64 value2 = op2->__anon1.ui64;
6241
6242 exp->type = 2;
6243 exp->__anon1.__anon2.string = PrintUInt64((op1->__anon1.ui64 - value2));
6244 if(!exp->expType)
6245 {
6246 exp->expType = op1->type;
6247 if(op1->type)
6248 op1->type->refCount++;
6249 }
6250 return 1;
6251 }
6252
6253 static unsigned int ShortSub(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6254 {
6255 short value2 = op2->__anon1.s;
6256
6257 exp->type = 2;
6258 exp->__anon1.__anon2.string = PrintShort((op1->__anon1.s - value2));
6259 if(!exp->expType)
6260 {
6261 exp->expType = op1->type;
6262 if(op1->type)
6263 op1->type->refCount++;
6264 }
6265 return 1;
6266 }
6267
6268 static unsigned int UShortSub(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6269 {
6270 unsigned short value2 = op2->__anon1.us;
6271
6272 exp->type = 2;
6273 exp->__anon1.__anon2.string = PrintUShort((op1->__anon1.us - value2));
6274 if(!exp->expType)
6275 {
6276 exp->expType = op1->type;
6277 if(op1->type)
6278 op1->type->refCount++;
6279 }
6280 return 1;
6281 }
6282
6283 static unsigned int CharSub(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6284 {
6285 char value2 = op2->__anon1.c;
6286
6287 exp->type = 2;
6288 exp->__anon1.__anon2.string = PrintChar((op1->__anon1.c - value2));
6289 if(!exp->expType)
6290 {
6291 exp->expType = op1->type;
6292 if(op1->type)
6293 op1->type->refCount++;
6294 }
6295 return 1;
6296 }
6297
6298 static unsigned int UCharSub(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6299 {
6300 unsigned char value2 = op2->__anon1.uc;
6301
6302 exp->type = 2;
6303 exp->__anon1.__anon2.string = PrintUChar((op1->__anon1.uc - value2));
6304 if(!exp->expType)
6305 {
6306 exp->expType = op1->type;
6307 if(op1->type)
6308 op1->type->refCount++;
6309 }
6310 return 1;
6311 }
6312
6313 static unsigned int FloatSub(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6314 {
6315 float value2 = op2->__anon1.f;
6316
6317 exp->type = 2;
6318 exp->__anon1.__anon2.string = PrintFloat((float)(op1->__anon1.f - value2));
6319 if(!exp->expType)
6320 {
6321 exp->expType = op1->type;
6322 if(op1->type)
6323 op1->type->refCount++;
6324 }
6325 return 1;
6326 }
6327
6328 static unsigned int DoubleSub(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6329 {
6330 double value2 = op2->__anon1.d;
6331
6332 exp->type = 2;
6333 exp->__anon1.__anon2.string = PrintDouble((double)(op1->__anon1.d - value2));
6334 if(!exp->expType)
6335 {
6336 exp->expType = op1->type;
6337 if(op1->type)
6338 op1->type->refCount++;
6339 }
6340 return 1;
6341 }
6342
6343 static unsigned int IntMul(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6344 {
6345 int value2 = op2->__anon1.i;
6346
6347 exp->type = 2;
6348 exp->__anon1.__anon2.string = PrintInt((op1->__anon1.i * value2));
6349 if(!exp->expType)
6350 {
6351 exp->expType = op1->type;
6352 if(op1->type)
6353 op1->type->refCount++;
6354 }
6355 return 1;
6356 }
6357
6358 static unsigned int UIntMul(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6359 {
6360 unsigned int value2 = op2->__anon1.ui;
6361
6362 exp->type = 2;
6363 exp->__anon1.__anon2.string = PrintUInt((op1->__anon1.ui * value2));
6364 if(!exp->expType)
6365 {
6366 exp->expType = op1->type;
6367 if(op1->type)
6368 op1->type->refCount++;
6369 }
6370 return 1;
6371 }
6372
6373 static unsigned int Int64Mul(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6374 {
6375 long long value2 = op2->__anon1.i64;
6376
6377 exp->type = 2;
6378 exp->__anon1.__anon2.string = PrintInt64((op1->__anon1.i64 * value2));
6379 if(!exp->expType)
6380 {
6381 exp->expType = op1->type;
6382 if(op1->type)
6383 op1->type->refCount++;
6384 }
6385 return 1;
6386 }
6387
6388 static unsigned int UInt64Mul(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6389 {
6390 uint64 value2 = op2->__anon1.ui64;
6391
6392 exp->type = 2;
6393 exp->__anon1.__anon2.string = PrintUInt64((op1->__anon1.ui64 * value2));
6394 if(!exp->expType)
6395 {
6396 exp->expType = op1->type;
6397 if(op1->type)
6398 op1->type->refCount++;
6399 }
6400 return 1;
6401 }
6402
6403 static unsigned int ShortMul(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6404 {
6405 short value2 = op2->__anon1.s;
6406
6407 exp->type = 2;
6408 exp->__anon1.__anon2.string = PrintShort((op1->__anon1.s * value2));
6409 if(!exp->expType)
6410 {
6411 exp->expType = op1->type;
6412 if(op1->type)
6413 op1->type->refCount++;
6414 }
6415 return 1;
6416 }
6417
6418 static unsigned int UShortMul(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6419 {
6420 unsigned short value2 = op2->__anon1.us;
6421
6422 exp->type = 2;
6423 exp->__anon1.__anon2.string = PrintUShort((op1->__anon1.us * value2));
6424 if(!exp->expType)
6425 {
6426 exp->expType = op1->type;
6427 if(op1->type)
6428 op1->type->refCount++;
6429 }
6430 return 1;
6431 }
6432
6433 static unsigned int CharMul(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6434 {
6435 char value2 = op2->__anon1.c;
6436
6437 exp->type = 2;
6438 exp->__anon1.__anon2.string = PrintChar((op1->__anon1.c * value2));
6439 if(!exp->expType)
6440 {
6441 exp->expType = op1->type;
6442 if(op1->type)
6443 op1->type->refCount++;
6444 }
6445 return 1;
6446 }
6447
6448 static unsigned int UCharMul(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6449 {
6450 unsigned char value2 = op2->__anon1.uc;
6451
6452 exp->type = 2;
6453 exp->__anon1.__anon2.string = PrintUChar((op1->__anon1.uc * value2));
6454 if(!exp->expType)
6455 {
6456 exp->expType = op1->type;
6457 if(op1->type)
6458 op1->type->refCount++;
6459 }
6460 return 1;
6461 }
6462
6463 static unsigned int FloatMul(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6464 {
6465 float value2 = op2->__anon1.f;
6466
6467 exp->type = 2;
6468 exp->__anon1.__anon2.string = PrintFloat((float)(op1->__anon1.f * value2));
6469 if(!exp->expType)
6470 {
6471 exp->expType = op1->type;
6472 if(op1->type)
6473 op1->type->refCount++;
6474 }
6475 return 1;
6476 }
6477
6478 static unsigned int DoubleMul(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6479 {
6480 double value2 = op2->__anon1.d;
6481
6482 exp->type = 2;
6483 exp->__anon1.__anon2.string = PrintDouble((double)(op1->__anon1.d * value2));
6484 if(!exp->expType)
6485 {
6486 exp->expType = op1->type;
6487 if(op1->type)
6488 op1->type->refCount++;
6489 }
6490 return 1;
6491 }
6492
6493 static unsigned int IntDiv(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6494 {
6495 int value2 = op2->__anon1.i;
6496
6497 exp->type = 2;
6498 exp->__anon1.__anon2.string = PrintInt(value2 ? (op1->__anon1.i / value2) : 0);
6499 if(!exp->expType)
6500 {
6501 exp->expType = op1->type;
6502 if(op1->type)
6503 op1->type->refCount++;
6504 }
6505 return 1;
6506 }
6507
6508 static unsigned int UIntDiv(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6509 {
6510 unsigned int value2 = op2->__anon1.ui;
6511
6512 exp->type = 2;
6513 exp->__anon1.__anon2.string = PrintUInt(value2 ? (op1->__anon1.ui / value2) : 0);
6514 if(!exp->expType)
6515 {
6516 exp->expType = op1->type;
6517 if(op1->type)
6518 op1->type->refCount++;
6519 }
6520 return 1;
6521 }
6522
6523 static unsigned int Int64Div(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6524 {
6525 long long value2 = op2->__anon1.i64;
6526
6527 exp->type = 2;
6528 exp->__anon1.__anon2.string = PrintInt64(value2 ? (op1->__anon1.i64 / value2) : 0);
6529 if(!exp->expType)
6530 {
6531 exp->expType = op1->type;
6532 if(op1->type)
6533 op1->type->refCount++;
6534 }
6535 return 1;
6536 }
6537
6538 static unsigned int UInt64Div(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6539 {
6540 uint64 value2 = op2->__anon1.ui64;
6541
6542 exp->type = 2;
6543 exp->__anon1.__anon2.string = PrintUInt64(value2 ? (op1->__anon1.ui64 / value2) : 0);
6544 if(!exp->expType)
6545 {
6546 exp->expType = op1->type;
6547 if(op1->type)
6548 op1->type->refCount++;
6549 }
6550 return 1;
6551 }
6552
6553 static unsigned int ShortDiv(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6554 {
6555 short value2 = op2->__anon1.s;
6556
6557 exp->type = 2;
6558 exp->__anon1.__anon2.string = PrintShort(value2 ? (op1->__anon1.s / value2) : (short)0);
6559 if(!exp->expType)
6560 {
6561 exp->expType = op1->type;
6562 if(op1->type)
6563 op1->type->refCount++;
6564 }
6565 return 1;
6566 }
6567
6568 static unsigned int UShortDiv(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6569 {
6570 unsigned short value2 = op2->__anon1.us;
6571
6572 exp->type = 2;
6573 exp->__anon1.__anon2.string = PrintUShort(value2 ? (op1->__anon1.us / value2) : (unsigned short)0);
6574 if(!exp->expType)
6575 {
6576 exp->expType = op1->type;
6577 if(op1->type)
6578 op1->type->refCount++;
6579 }
6580 return 1;
6581 }
6582
6583 static unsigned int CharDiv(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6584 {
6585 char value2 = op2->__anon1.c;
6586
6587 exp->type = 2;
6588 exp->__anon1.__anon2.string = PrintChar(value2 ? (op1->__anon1.c / value2) : (char)0);
6589 if(!exp->expType)
6590 {
6591 exp->expType = op1->type;
6592 if(op1->type)
6593 op1->type->refCount++;
6594 }
6595 return 1;
6596 }
6597
6598 static unsigned int UCharDiv(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6599 {
6600 unsigned char value2 = op2->__anon1.uc;
6601
6602 exp->type = 2;
6603 exp->__anon1.__anon2.string = PrintUChar(value2 ? (op1->__anon1.uc / value2) : (unsigned char)0);
6604 if(!exp->expType)
6605 {
6606 exp->expType = op1->type;
6607 if(op1->type)
6608 op1->type->refCount++;
6609 }
6610 return 1;
6611 }
6612
6613 static unsigned int FloatDiv(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6614 {
6615 float value2 = op2->__anon1.f;
6616
6617 exp->type = 2;
6618 exp->__anon1.__anon2.string = PrintFloat(op1->__anon1.f / value2);
6619 if(!exp->expType)
6620 {
6621 exp->expType = op1->type;
6622 if(op1->type)
6623 op1->type->refCount++;
6624 }
6625 return 1;
6626 }
6627
6628 static unsigned int DoubleDiv(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6629 {
6630 double value2 = op2->__anon1.d;
6631
6632 exp->type = 2;
6633 exp->__anon1.__anon2.string = PrintDouble(op1->__anon1.d / value2);
6634 if(!exp->expType)
6635 {
6636 exp->expType = op1->type;
6637 if(op1->type)
6638 op1->type->refCount++;
6639 }
6640 return 1;
6641 }
6642
6643 static unsigned int IntMod(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6644 {
6645 int value2 = op2->__anon1.i;
6646
6647 exp->type = 2;
6648 exp->__anon1.__anon2.string = PrintInt(value2 ? (op1->__anon1.i % value2) : 0);
6649 if(!exp->expType)
6650 {
6651 exp->expType = op1->type;
6652 if(op1->type)
6653 op1->type->refCount++;
6654 }
6655 return 1;
6656 }
6657
6658 static unsigned int UIntMod(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6659 {
6660 unsigned int value2 = op2->__anon1.ui;
6661
6662 exp->type = 2;
6663 exp->__anon1.__anon2.string = PrintUInt(value2 ? (op1->__anon1.ui % value2) : 0);
6664 if(!exp->expType)
6665 {
6666 exp->expType = op1->type;
6667 if(op1->type)
6668 op1->type->refCount++;
6669 }
6670 return 1;
6671 }
6672
6673 static unsigned int Int64Mod(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6674 {
6675 long long value2 = op2->__anon1.i64;
6676
6677 exp->type = 2;
6678 exp->__anon1.__anon2.string = PrintInt64(value2 ? (op1->__anon1.i64 % value2) : 0);
6679 if(!exp->expType)
6680 {
6681 exp->expType = op1->type;
6682 if(op1->type)
6683 op1->type->refCount++;
6684 }
6685 return 1;
6686 }
6687
6688 static unsigned int UInt64Mod(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6689 {
6690 uint64 value2 = op2->__anon1.ui64;
6691
6692 exp->type = 2;
6693 exp->__anon1.__anon2.string = PrintUInt64(value2 ? (op1->__anon1.ui64 % value2) : 0);
6694 if(!exp->expType)
6695 {
6696 exp->expType = op1->type;
6697 if(op1->type)
6698 op1->type->refCount++;
6699 }
6700 return 1;
6701 }
6702
6703 static unsigned int ShortMod(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6704 {
6705 short value2 = op2->__anon1.s;
6706
6707 exp->type = 2;
6708 exp->__anon1.__anon2.string = PrintShort(value2 ? (op1->__anon1.s % value2) : (short)0);
6709 if(!exp->expType)
6710 {
6711 exp->expType = op1->type;
6712 if(op1->type)
6713 op1->type->refCount++;
6714 }
6715 return 1;
6716 }
6717
6718 static unsigned int UShortMod(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6719 {
6720 unsigned short value2 = op2->__anon1.us;
6721
6722 exp->type = 2;
6723 exp->__anon1.__anon2.string = PrintUShort(value2 ? (op1->__anon1.us % value2) : (unsigned short)0);
6724 if(!exp->expType)
6725 {
6726 exp->expType = op1->type;
6727 if(op1->type)
6728 op1->type->refCount++;
6729 }
6730 return 1;
6731 }
6732
6733 static unsigned int CharMod(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6734 {
6735 char value2 = op2->__anon1.c;
6736
6737 exp->type = 2;
6738 exp->__anon1.__anon2.string = PrintChar(value2 ? (op1->__anon1.c % value2) : (char)0);
6739 if(!exp->expType)
6740 {
6741 exp->expType = op1->type;
6742 if(op1->type)
6743 op1->type->refCount++;
6744 }
6745 return 1;
6746 }
6747
6748 static unsigned int UCharMod(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6749 {
6750 unsigned char value2 = op2->__anon1.uc;
6751
6752 exp->type = 2;
6753 exp->__anon1.__anon2.string = PrintUChar(value2 ? (op1->__anon1.uc % value2) : (unsigned char)0);
6754 if(!exp->expType)
6755 {
6756 exp->expType = op1->type;
6757 if(op1->type)
6758 op1->type->refCount++;
6759 }
6760 return 1;
6761 }
6762
6763 static unsigned int IntNeg(struct Expression * exp, struct Operand * op1)
6764 {
6765 exp->type = 2;
6766 exp->__anon1.__anon2.string = PrintInt((-op1->__anon1.i));
6767 if(!exp->expType)
6768 {
6769 exp->expType = op1->type;
6770 if(op1->type)
6771 op1->type->refCount++;
6772 }
6773 return 1;
6774 }
6775
6776 static unsigned int UIntNeg(struct Expression * exp, struct Operand * op1)
6777 {
6778 exp->type = 2;
6779 exp->__anon1.__anon2.string = PrintUInt((unsigned int)(-op1->__anon1.ui));
6780 if(!exp->expType)
6781 {
6782 exp->expType = op1->type;
6783 if(op1->type)
6784 op1->type->refCount++;
6785 }
6786 return 1;
6787 }
6788
6789 static unsigned int Int64Neg(struct Expression * exp, struct Operand * op1)
6790 {
6791 exp->type = 2;
6792 exp->__anon1.__anon2.string = PrintInt64((-op1->__anon1.i64));
6793 if(!exp->expType)
6794 {
6795 exp->expType = op1->type;
6796 if(op1->type)
6797 op1->type->refCount++;
6798 }
6799 return 1;
6800 }
6801
6802 static unsigned int UInt64Neg(struct Expression * exp, struct Operand * op1)
6803 {
6804 exp->type = 2;
6805 exp->__anon1.__anon2.string = PrintUInt64((uint64)(-op1->__anon1.ui64));
6806 if(!exp->expType)
6807 {
6808 exp->expType = op1->type;
6809 if(op1->type)
6810 op1->type->refCount++;
6811 }
6812 return 1;
6813 }
6814
6815 static unsigned int ShortNeg(struct Expression * exp, struct Operand * op1)
6816 {
6817 exp->type = 2;
6818 exp->__anon1.__anon2.string = PrintShort((-op1->__anon1.s));
6819 if(!exp->expType)
6820 {
6821 exp->expType = op1->type;
6822 if(op1->type)
6823 op1->type->refCount++;
6824 }
6825 return 1;
6826 }
6827
6828 static unsigned int UShortNeg(struct Expression * exp, struct Operand * op1)
6829 {
6830 exp->type = 2;
6831 exp->__anon1.__anon2.string = PrintUShort((unsigned short)(-op1->__anon1.us));
6832 if(!exp->expType)
6833 {
6834 exp->expType = op1->type;
6835 if(op1->type)
6836 op1->type->refCount++;
6837 }
6838 return 1;
6839 }
6840
6841 static unsigned int CharNeg(struct Expression * exp, struct Operand * op1)
6842 {
6843 exp->type = 2;
6844 exp->__anon1.__anon2.string = PrintChar((-op1->__anon1.c));
6845 if(!exp->expType)
6846 {
6847 exp->expType = op1->type;
6848 if(op1->type)
6849 op1->type->refCount++;
6850 }
6851 return 1;
6852 }
6853
6854 static unsigned int UCharNeg(struct Expression * exp, struct Operand * op1)
6855 {
6856 exp->type = 2;
6857 exp->__anon1.__anon2.string = PrintUChar((unsigned char)(-op1->__anon1.uc));
6858 if(!exp->expType)
6859 {
6860 exp->expType = op1->type;
6861 if(op1->type)
6862 op1->type->refCount++;
6863 }
6864 return 1;
6865 }
6866
6867 static unsigned int FloatNeg(struct Expression * exp, struct Operand * op1)
6868 {
6869 exp->type = 2;
6870 exp->__anon1.__anon2.string = PrintFloat((float)(-op1->__anon1.f));
6871 if(!exp->expType)
6872 {
6873 exp->expType = op1->type;
6874 if(op1->type)
6875 op1->type->refCount++;
6876 }
6877 return 1;
6878 }
6879
6880 static unsigned int DoubleNeg(struct Expression * exp, struct Operand * op1)
6881 {
6882 exp->type = 2;
6883 exp->__anon1.__anon2.string = PrintDouble((double)(-op1->__anon1.d));
6884 if(!exp->expType)
6885 {
6886 exp->expType = op1->type;
6887 if(op1->type)
6888 op1->type->refCount++;
6889 }
6890 return 1;
6891 }
6892
6893 static unsigned int IntInc(struct Expression * exp, struct Operand * op1)
6894 {
6895 exp->type = 2;
6896 exp->__anon1.__anon2.string = PrintInt((++op1->__anon1.i));
6897 if(!exp->expType)
6898 {
6899 exp->expType = op1->type;
6900 if(op1->type)
6901 op1->type->refCount++;
6902 }
6903 return 1;
6904 }
6905
6906 static unsigned int UIntInc(struct Expression * exp, struct Operand * op1)
6907 {
6908 exp->type = 2;
6909 exp->__anon1.__anon2.string = PrintUInt((++op1->__anon1.ui));
6910 if(!exp->expType)
6911 {
6912 exp->expType = op1->type;
6913 if(op1->type)
6914 op1->type->refCount++;
6915 }
6916 return 1;
6917 }
6918
6919 static unsigned int Int64Inc(struct Expression * exp, struct Operand * op1)
6920 {
6921 exp->type = 2;
6922 exp->__anon1.__anon2.string = PrintInt64((++op1->__anon1.i64));
6923 if(!exp->expType)
6924 {
6925 exp->expType = op1->type;
6926 if(op1->type)
6927 op1->type->refCount++;
6928 }
6929 return 1;
6930 }
6931
6932 static unsigned int UInt64Inc(struct Expression * exp, struct Operand * op1)
6933 {
6934 exp->type = 2;
6935 exp->__anon1.__anon2.string = PrintUInt64((++op1->__anon1.ui64));
6936 if(!exp->expType)
6937 {
6938 exp->expType = op1->type;
6939 if(op1->type)
6940 op1->type->refCount++;
6941 }
6942 return 1;
6943 }
6944
6945 static unsigned int ShortInc(struct Expression * exp, struct Operand * op1)
6946 {
6947 exp->type = 2;
6948 exp->__anon1.__anon2.string = PrintShort((++op1->__anon1.s));
6949 if(!exp->expType)
6950 {
6951 exp->expType = op1->type;
6952 if(op1->type)
6953 op1->type->refCount++;
6954 }
6955 return 1;
6956 }
6957
6958 static unsigned int UShortInc(struct Expression * exp, struct Operand * op1)
6959 {
6960 exp->type = 2;
6961 exp->__anon1.__anon2.string = PrintUShort((++op1->__anon1.us));
6962 if(!exp->expType)
6963 {
6964 exp->expType = op1->type;
6965 if(op1->type)
6966 op1->type->refCount++;
6967 }
6968 return 1;
6969 }
6970
6971 static unsigned int CharInc(struct Expression * exp, struct Operand * op1)
6972 {
6973 exp->type = 2;
6974 exp->__anon1.__anon2.string = PrintChar((++op1->__anon1.c));
6975 if(!exp->expType)
6976 {
6977 exp->expType = op1->type;
6978 if(op1->type)
6979 op1->type->refCount++;
6980 }
6981 return 1;
6982 }
6983
6984 static unsigned int UCharInc(struct Expression * exp, struct Operand * op1)
6985 {
6986 exp->type = 2;
6987 exp->__anon1.__anon2.string = PrintUChar((++op1->__anon1.uc));
6988 if(!exp->expType)
6989 {
6990 exp->expType = op1->type;
6991 if(op1->type)
6992 op1->type->refCount++;
6993 }
6994 return 1;
6995 }
6996
6997 static unsigned int FloatInc(struct Expression * exp, struct Operand * op1)
6998 {
6999 exp->type = 2;
7000 exp->__anon1.__anon2.string = PrintFloat((float)(++op1->__anon1.f));
7001 if(!exp->expType)
7002 {
7003 exp->expType = op1->type;
7004 if(op1->type)
7005 op1->type->refCount++;
7006 }
7007 return 1;
7008 }
7009
7010 static unsigned int DoubleInc(struct Expression * exp, struct Operand * op1)
7011 {
7012 exp->type = 2;
7013 exp->__anon1.__anon2.string = PrintDouble((double)(++op1->__anon1.d));
7014 if(!exp->expType)
7015 {
7016 exp->expType = op1->type;
7017 if(op1->type)
7018 op1->type->refCount++;
7019 }
7020 return 1;
7021 }
7022
7023 static unsigned int IntDec(struct Expression * exp, struct Operand * op1)
7024 {
7025 exp->type = 2;
7026 exp->__anon1.__anon2.string = PrintInt((--op1->__anon1.i));
7027 if(!exp->expType)
7028 {
7029 exp->expType = op1->type;
7030 if(op1->type)
7031 op1->type->refCount++;
7032 }
7033 return 1;
7034 }
7035
7036 static unsigned int UIntDec(struct Expression * exp, struct Operand * op1)
7037 {
7038 exp->type = 2;
7039 exp->__anon1.__anon2.string = PrintUInt((--op1->__anon1.ui));
7040 if(!exp->expType)
7041 {
7042 exp->expType = op1->type;
7043 if(op1->type)
7044 op1->type->refCount++;
7045 }
7046 return 1;
7047 }
7048
7049 static unsigned int Int64Dec(struct Expression * exp, struct Operand * op1)
7050 {
7051 exp->type = 2;
7052 exp->__anon1.__anon2.string = PrintInt64((--op1->__anon1.i64));
7053 if(!exp->expType)
7054 {
7055 exp->expType = op1->type;
7056 if(op1->type)
7057 op1->type->refCount++;
7058 }
7059 return 1;
7060 }
7061
7062 static unsigned int UInt64Dec(struct Expression * exp, struct Operand * op1)
7063 {
7064 exp->type = 2;
7065 exp->__anon1.__anon2.string = PrintUInt64((--op1->__anon1.ui64));
7066 if(!exp->expType)
7067 {
7068 exp->expType = op1->type;
7069 if(op1->type)
7070 op1->type->refCount++;
7071 }
7072 return 1;
7073 }
7074
7075 static unsigned int ShortDec(struct Expression * exp, struct Operand * op1)
7076 {
7077 exp->type = 2;
7078 exp->__anon1.__anon2.string = PrintShort((--op1->__anon1.s));
7079 if(!exp->expType)
7080 {
7081 exp->expType = op1->type;
7082 if(op1->type)
7083 op1->type->refCount++;
7084 }
7085 return 1;
7086 }
7087
7088 static unsigned int UShortDec(struct Expression * exp, struct Operand * op1)
7089 {
7090 exp->type = 2;
7091 exp->__anon1.__anon2.string = PrintUShort((--op1->__anon1.us));
7092 if(!exp->expType)
7093 {
7094 exp->expType = op1->type;
7095 if(op1->type)
7096 op1->type->refCount++;
7097 }
7098 return 1;
7099 }
7100
7101 static unsigned int CharDec(struct Expression * exp, struct Operand * op1)
7102 {
7103 exp->type = 2;
7104 exp->__anon1.__anon2.string = PrintChar((--op1->__anon1.c));
7105 if(!exp->expType)
7106 {
7107 exp->expType = op1->type;
7108 if(op1->type)
7109 op1->type->refCount++;
7110 }
7111 return 1;
7112 }
7113
7114 static unsigned int UCharDec(struct Expression * exp, struct Operand * op1)
7115 {
7116 exp->type = 2;
7117 exp->__anon1.__anon2.string = PrintUChar((--op1->__anon1.uc));
7118 if(!exp->expType)
7119 {
7120 exp->expType = op1->type;
7121 if(op1->type)
7122 op1->type->refCount++;
7123 }
7124 return 1;
7125 }
7126
7127 static unsigned int FloatDec(struct Expression * exp, struct Operand * op1)
7128 {
7129 exp->type = 2;
7130 exp->__anon1.__anon2.string = PrintFloat((float)(--op1->__anon1.f));
7131 if(!exp->expType)
7132 {
7133 exp->expType = op1->type;
7134 if(op1->type)
7135 op1->type->refCount++;
7136 }
7137 return 1;
7138 }
7139
7140 static unsigned int DoubleDec(struct Expression * exp, struct Operand * op1)
7141 {
7142 exp->type = 2;
7143 exp->__anon1.__anon2.string = PrintDouble((double)(--op1->__anon1.d));
7144 if(!exp->expType)
7145 {
7146 exp->expType = op1->type;
7147 if(op1->type)
7148 op1->type->refCount++;
7149 }
7150 return 1;
7151 }
7152
7153 static unsigned int IntAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7154 {
7155 int value2 = op2->__anon1.i;
7156
7157 exp->type = 2;
7158 exp->__anon1.__anon2.string = PrintInt((op1->__anon1.i = value2));
7159 if(!exp->expType)
7160 {
7161 exp->expType = op1->type;
7162 if(op1->type)
7163 op1->type->refCount++;
7164 }
7165 return 1;
7166 }
7167
7168 static unsigned int UIntAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7169 {
7170 unsigned int value2 = op2->__anon1.ui;
7171
7172 exp->type = 2;
7173 exp->__anon1.__anon2.string = PrintUInt((op1->__anon1.ui = value2));
7174 if(!exp->expType)
7175 {
7176 exp->expType = op1->type;
7177 if(op1->type)
7178 op1->type->refCount++;
7179 }
7180 return 1;
7181 }
7182
7183 static unsigned int Int64Asign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7184 {
7185 long long value2 = op2->__anon1.i64;
7186
7187 exp->type = 2;
7188 exp->__anon1.__anon2.string = PrintInt64((op1->__anon1.i64 = value2));
7189 if(!exp->expType)
7190 {
7191 exp->expType = op1->type;
7192 if(op1->type)
7193 op1->type->refCount++;
7194 }
7195 return 1;
7196 }
7197
7198 static unsigned int UInt64Asign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7199 {
7200 uint64 value2 = op2->__anon1.ui64;
7201
7202 exp->type = 2;
7203 exp->__anon1.__anon2.string = PrintUInt64((op1->__anon1.ui64 = value2));
7204 if(!exp->expType)
7205 {
7206 exp->expType = op1->type;
7207 if(op1->type)
7208 op1->type->refCount++;
7209 }
7210 return 1;
7211 }
7212
7213 static unsigned int ShortAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7214 {
7215 short value2 = op2->__anon1.s;
7216
7217 exp->type = 2;
7218 exp->__anon1.__anon2.string = PrintShort((op1->__anon1.s = value2));
7219 if(!exp->expType)
7220 {
7221 exp->expType = op1->type;
7222 if(op1->type)
7223 op1->type->refCount++;
7224 }
7225 return 1;
7226 }
7227
7228 static unsigned int UShortAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7229 {
7230 unsigned short value2 = op2->__anon1.us;
7231
7232 exp->type = 2;
7233 exp->__anon1.__anon2.string = PrintUShort((op1->__anon1.us = value2));
7234 if(!exp->expType)
7235 {
7236 exp->expType = op1->type;
7237 if(op1->type)
7238 op1->type->refCount++;
7239 }
7240 return 1;
7241 }
7242
7243 static unsigned int CharAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7244 {
7245 char value2 = op2->__anon1.c;
7246
7247 exp->type = 2;
7248 exp->__anon1.__anon2.string = PrintChar((op1->__anon1.c = value2));
7249 if(!exp->expType)
7250 {
7251 exp->expType = op1->type;
7252 if(op1->type)
7253 op1->type->refCount++;
7254 }
7255 return 1;
7256 }
7257
7258 static unsigned int UCharAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7259 {
7260 unsigned char value2 = op2->__anon1.uc;
7261
7262 exp->type = 2;
7263 exp->__anon1.__anon2.string = PrintUChar((op1->__anon1.uc = value2));
7264 if(!exp->expType)
7265 {
7266 exp->expType = op1->type;
7267 if(op1->type)
7268 op1->type->refCount++;
7269 }
7270 return 1;
7271 }
7272
7273 static unsigned int FloatAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7274 {
7275 float value2 = op2->__anon1.f;
7276
7277 exp->type = 2;
7278 exp->__anon1.__anon2.string = PrintFloat((float)(op1->__anon1.f = value2));
7279 if(!exp->expType)
7280 {
7281 exp->expType = op1->type;
7282 if(op1->type)
7283 op1->type->refCount++;
7284 }
7285 return 1;
7286 }
7287
7288 static unsigned int DoubleAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7289 {
7290 double value2 = op2->__anon1.d;
7291
7292 exp->type = 2;
7293 exp->__anon1.__anon2.string = PrintDouble((double)(op1->__anon1.d = value2));
7294 if(!exp->expType)
7295 {
7296 exp->expType = op1->type;
7297 if(op1->type)
7298 op1->type->refCount++;
7299 }
7300 return 1;
7301 }
7302
7303 static unsigned int IntAddAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7304 {
7305 int value2 = op2->__anon1.i;
7306
7307 exp->type = 2;
7308 exp->__anon1.__anon2.string = PrintInt((op1->__anon1.i += value2));
7309 if(!exp->expType)
7310 {
7311 exp->expType = op1->type;
7312 if(op1->type)
7313 op1->type->refCount++;
7314 }
7315 return 1;
7316 }
7317
7318 static unsigned int UIntAddAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7319 {
7320 unsigned int value2 = op2->__anon1.ui;
7321
7322 exp->type = 2;
7323 exp->__anon1.__anon2.string = PrintUInt((op1->__anon1.ui += value2));
7324 if(!exp->expType)
7325 {
7326 exp->expType = op1->type;
7327 if(op1->type)
7328 op1->type->refCount++;
7329 }
7330 return 1;
7331 }
7332
7333 static unsigned int Int64AddAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7334 {
7335 long long value2 = op2->__anon1.i64;
7336
7337 exp->type = 2;
7338 exp->__anon1.__anon2.string = PrintInt64((op1->__anon1.i64 += value2));
7339 if(!exp->expType)
7340 {
7341 exp->expType = op1->type;
7342 if(op1->type)
7343 op1->type->refCount++;
7344 }
7345 return 1;
7346 }
7347
7348 static unsigned int UInt64AddAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7349 {
7350 uint64 value2 = op2->__anon1.ui64;
7351
7352 exp->type = 2;
7353 exp->__anon1.__anon2.string = PrintUInt64((op1->__anon1.ui64 += value2));
7354 if(!exp->expType)
7355 {
7356 exp->expType = op1->type;
7357 if(op1->type)
7358 op1->type->refCount++;
7359 }
7360 return 1;
7361 }
7362
7363 static unsigned int ShortAddAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7364 {
7365 short value2 = op2->__anon1.s;
7366
7367 exp->type = 2;
7368 exp->__anon1.__anon2.string = PrintShort((op1->__anon1.s += value2));
7369 if(!exp->expType)
7370 {
7371 exp->expType = op1->type;
7372 if(op1->type)
7373 op1->type->refCount++;
7374 }
7375 return 1;
7376 }
7377
7378 static unsigned int UShortAddAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7379 {
7380 unsigned short value2 = op2->__anon1.us;
7381
7382 exp->type = 2;
7383 exp->__anon1.__anon2.string = PrintUShort((op1->__anon1.us += value2));
7384 if(!exp->expType)
7385 {
7386 exp->expType = op1->type;
7387 if(op1->type)
7388 op1->type->refCount++;
7389 }
7390 return 1;
7391 }
7392
7393 static unsigned int CharAddAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7394 {
7395 char value2 = op2->__anon1.c;
7396
7397 exp->type = 2;
7398 exp->__anon1.__anon2.string = PrintChar((op1->__anon1.c += value2));
7399 if(!exp->expType)
7400 {
7401 exp->expType = op1->type;
7402 if(op1->type)
7403 op1->type->refCount++;
7404 }
7405 return 1;
7406 }
7407
7408 static unsigned int UCharAddAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7409 {
7410 unsigned char value2 = op2->__anon1.uc;
7411
7412 exp->type = 2;
7413 exp->__anon1.__anon2.string = PrintUChar((op1->__anon1.uc += value2));
7414 if(!exp->expType)
7415 {
7416 exp->expType = op1->type;
7417 if(op1->type)
7418 op1->type->refCount++;
7419 }
7420 return 1;
7421 }
7422
7423 static unsigned int FloatAddAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7424 {
7425 float value2 = op2->__anon1.f;
7426
7427 exp->type = 2;
7428 exp->__anon1.__anon2.string = PrintFloat((float)(op1->__anon1.f += value2));
7429 if(!exp->expType)
7430 {
7431 exp->expType = op1->type;
7432 if(op1->type)
7433 op1->type->refCount++;
7434 }
7435 return 1;
7436 }
7437
7438 static unsigned int DoubleAddAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7439 {
7440 double value2 = op2->__anon1.d;
7441
7442 exp->type = 2;
7443 exp->__anon1.__anon2.string = PrintDouble((double)(op1->__anon1.d += value2));
7444 if(!exp->expType)
7445 {
7446 exp->expType = op1->type;
7447 if(op1->type)
7448 op1->type->refCount++;
7449 }
7450 return 1;
7451 }
7452
7453 static unsigned int IntSubAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7454 {
7455 int value2 = op2->__anon1.i;
7456
7457 exp->type = 2;
7458 exp->__anon1.__anon2.string = PrintInt((op1->__anon1.i -= value2));
7459 if(!exp->expType)
7460 {
7461 exp->expType = op1->type;
7462 if(op1->type)
7463 op1->type->refCount++;
7464 }
7465 return 1;
7466 }
7467
7468 static unsigned int UIntSubAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7469 {
7470 unsigned int value2 = op2->__anon1.ui;
7471
7472 exp->type = 2;
7473 exp->__anon1.__anon2.string = PrintUInt((op1->__anon1.ui -= value2));
7474 if(!exp->expType)
7475 {
7476 exp->expType = op1->type;
7477 if(op1->type)
7478 op1->type->refCount++;
7479 }
7480 return 1;
7481 }
7482
7483 static unsigned int Int64SubAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7484 {
7485 long long value2 = op2->__anon1.i64;
7486
7487 exp->type = 2;
7488 exp->__anon1.__anon2.string = PrintInt64((op1->__anon1.i64 -= value2));
7489 if(!exp->expType)
7490 {
7491 exp->expType = op1->type;
7492 if(op1->type)
7493 op1->type->refCount++;
7494 }
7495 return 1;
7496 }
7497
7498 static unsigned int UInt64SubAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7499 {
7500 uint64 value2 = op2->__anon1.ui64;
7501
7502 exp->type = 2;
7503 exp->__anon1.__anon2.string = PrintUInt64((op1->__anon1.ui64 -= value2));
7504 if(!exp->expType)
7505 {
7506 exp->expType = op1->type;
7507 if(op1->type)
7508 op1->type->refCount++;
7509 }
7510 return 1;
7511 }
7512
7513 static unsigned int ShortSubAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7514 {
7515 short value2 = op2->__anon1.s;
7516
7517 exp->type = 2;
7518 exp->__anon1.__anon2.string = PrintShort((op1->__anon1.s -= value2));
7519 if(!exp->expType)
7520 {
7521 exp->expType = op1->type;
7522 if(op1->type)
7523 op1->type->refCount++;
7524 }
7525 return 1;
7526 }
7527
7528 static unsigned int UShortSubAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7529 {
7530 unsigned short value2 = op2->__anon1.us;
7531
7532 exp->type = 2;
7533 exp->__anon1.__anon2.string = PrintUShort((op1->__anon1.us -= value2));
7534 if(!exp->expType)
7535 {
7536 exp->expType = op1->type;
7537 if(op1->type)
7538 op1->type->refCount++;
7539 }
7540 return 1;
7541 }
7542
7543 static unsigned int CharSubAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7544 {
7545 char value2 = op2->__anon1.c;
7546
7547 exp->type = 2;
7548 exp->__anon1.__anon2.string = PrintChar((op1->__anon1.c -= value2));
7549 if(!exp->expType)
7550 {
7551 exp->expType = op1->type;
7552 if(op1->type)
7553 op1->type->refCount++;
7554 }
7555 return 1;
7556 }
7557
7558 static unsigned int UCharSubAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7559 {
7560 unsigned char value2 = op2->__anon1.uc;
7561
7562 exp->type = 2;
7563 exp->__anon1.__anon2.string = PrintUChar((op1->__anon1.uc -= value2));
7564 if(!exp->expType)
7565 {
7566 exp->expType = op1->type;
7567 if(op1->type)
7568 op1->type->refCount++;
7569 }
7570 return 1;
7571 }
7572
7573 static unsigned int FloatSubAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7574 {
7575 float value2 = op2->__anon1.f;
7576
7577 exp->type = 2;
7578 exp->__anon1.__anon2.string = PrintFloat((float)(op1->__anon1.f -= value2));
7579 if(!exp->expType)
7580 {
7581 exp->expType = op1->type;
7582 if(op1->type)
7583 op1->type->refCount++;
7584 }
7585 return 1;
7586 }
7587
7588 static unsigned int DoubleSubAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7589 {
7590 double value2 = op2->__anon1.d;
7591
7592 exp->type = 2;
7593 exp->__anon1.__anon2.string = PrintDouble((double)(op1->__anon1.d -= value2));
7594 if(!exp->expType)
7595 {
7596 exp->expType = op1->type;
7597 if(op1->type)
7598 op1->type->refCount++;
7599 }
7600 return 1;
7601 }
7602
7603 static unsigned int IntMulAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7604 {
7605 int value2 = op2->__anon1.i;
7606
7607 exp->type = 2;
7608 exp->__anon1.__anon2.string = PrintInt((op1->__anon1.i *= value2));
7609 if(!exp->expType)
7610 {
7611 exp->expType = op1->type;
7612 if(op1->type)
7613 op1->type->refCount++;
7614 }
7615 return 1;
7616 }
7617
7618 static unsigned int UIntMulAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7619 {
7620 unsigned int value2 = op2->__anon1.ui;
7621
7622 exp->type = 2;
7623 exp->__anon1.__anon2.string = PrintUInt((op1->__anon1.ui *= value2));
7624 if(!exp->expType)
7625 {
7626 exp->expType = op1->type;
7627 if(op1->type)
7628 op1->type->refCount++;
7629 }
7630 return 1;
7631 }
7632
7633 static unsigned int Int64MulAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7634 {
7635 long long value2 = op2->__anon1.i64;
7636
7637 exp->type = 2;
7638 exp->__anon1.__anon2.string = PrintInt64((op1->__anon1.i64 *= value2));
7639 if(!exp->expType)
7640 {
7641 exp->expType = op1->type;
7642 if(op1->type)
7643 op1->type->refCount++;
7644 }
7645 return 1;
7646 }
7647
7648 static unsigned int UInt64MulAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7649 {
7650 uint64 value2 = op2->__anon1.ui64;
7651
7652 exp->type = 2;
7653 exp->__anon1.__anon2.string = PrintUInt64((op1->__anon1.ui64 *= value2));
7654 if(!exp->expType)
7655 {
7656 exp->expType = op1->type;
7657 if(op1->type)
7658 op1->type->refCount++;
7659 }
7660 return 1;
7661 }
7662
7663 static unsigned int ShortMulAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7664 {
7665 short value2 = op2->__anon1.s;
7666
7667 exp->type = 2;
7668 exp->__anon1.__anon2.string = PrintShort((op1->__anon1.s *= value2));
7669 if(!exp->expType)
7670 {
7671 exp->expType = op1->type;
7672 if(op1->type)
7673 op1->type->refCount++;
7674 }
7675 return 1;
7676 }
7677
7678 static unsigned int UShortMulAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7679 {
7680 unsigned short value2 = op2->__anon1.us;
7681
7682 exp->type = 2;
7683 exp->__anon1.__anon2.string = PrintUShort((op1->__anon1.us *= value2));
7684 if(!exp->expType)
7685 {
7686 exp->expType = op1->type;
7687 if(op1->type)
7688 op1->type->refCount++;
7689 }
7690 return 1;
7691 }
7692
7693 static unsigned int CharMulAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7694 {
7695 char value2 = op2->__anon1.c;
7696
7697 exp->type = 2;
7698 exp->__anon1.__anon2.string = PrintChar((op1->__anon1.c *= value2));
7699 if(!exp->expType)
7700 {
7701 exp->expType = op1->type;
7702 if(op1->type)
7703 op1->type->refCount++;
7704 }
7705 return 1;
7706 }
7707
7708 static unsigned int UCharMulAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7709 {
7710 unsigned char value2 = op2->__anon1.uc;
7711
7712 exp->type = 2;
7713 exp->__anon1.__anon2.string = PrintUChar((op1->__anon1.uc *= value2));
7714 if(!exp->expType)
7715 {
7716 exp->expType = op1->type;
7717 if(op1->type)
7718 op1->type->refCount++;
7719 }
7720 return 1;
7721 }
7722
7723 static unsigned int FloatMulAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7724 {
7725 float value2 = op2->__anon1.f;
7726
7727 exp->type = 2;
7728 exp->__anon1.__anon2.string = PrintFloat((float)(op1->__anon1.f *= value2));
7729 if(!exp->expType)
7730 {
7731 exp->expType = op1->type;
7732 if(op1->type)
7733 op1->type->refCount++;
7734 }
7735 return 1;
7736 }
7737
7738 static unsigned int DoubleMulAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7739 {
7740 double value2 = op2->__anon1.d;
7741
7742 exp->type = 2;
7743 exp->__anon1.__anon2.string = PrintDouble((double)(op1->__anon1.d *= value2));
7744 if(!exp->expType)
7745 {
7746 exp->expType = op1->type;
7747 if(op1->type)
7748 op1->type->refCount++;
7749 }
7750 return 1;
7751 }
7752
7753 static unsigned int IntDivAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7754 {
7755 int value2 = op2->__anon1.i;
7756
7757 exp->type = 2;
7758 exp->__anon1.__anon2.string = PrintInt(value2 ? (op1->__anon1.i /= value2) : 0);
7759 if(!exp->expType)
7760 {
7761 exp->expType = op1->type;
7762 if(op1->type)
7763 op1->type->refCount++;
7764 }
7765 return 1;
7766 }
7767
7768 static unsigned int UIntDivAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7769 {
7770 unsigned int value2 = op2->__anon1.ui;
7771
7772 exp->type = 2;
7773 exp->__anon1.__anon2.string = PrintUInt(value2 ? (op1->__anon1.ui /= value2) : 0);
7774 if(!exp->expType)
7775 {
7776 exp->expType = op1->type;
7777 if(op1->type)
7778 op1->type->refCount++;
7779 }
7780 return 1;
7781 }
7782
7783 static unsigned int Int64DivAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7784 {
7785 long long value2 = op2->__anon1.i64;
7786
7787 exp->type = 2;
7788 exp->__anon1.__anon2.string = PrintInt64(value2 ? (op1->__anon1.i64 /= value2) : 0);
7789 if(!exp->expType)
7790 {
7791 exp->expType = op1->type;
7792 if(op1->type)
7793 op1->type->refCount++;
7794 }
7795 return 1;
7796 }
7797
7798 static unsigned int UInt64DivAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7799 {
7800 uint64 value2 = op2->__anon1.ui64;
7801
7802 exp->type = 2;
7803 exp->__anon1.__anon2.string = PrintUInt64(value2 ? (op1->__anon1.ui64 /= value2) : 0);
7804 if(!exp->expType)
7805 {
7806 exp->expType = op1->type;
7807 if(op1->type)
7808 op1->type->refCount++;
7809 }
7810 return 1;
7811 }
7812
7813 static unsigned int ShortDivAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7814 {
7815 short value2 = op2->__anon1.s;
7816
7817 exp->type = 2;
7818 exp->__anon1.__anon2.string = PrintShort(value2 ? (op1->__anon1.s /= value2) : (short)0);
7819 if(!exp->expType)
7820 {
7821 exp->expType = op1->type;
7822 if(op1->type)
7823 op1->type->refCount++;
7824 }
7825 return 1;
7826 }
7827
7828 static unsigned int UShortDivAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7829 {
7830 unsigned short value2 = op2->__anon1.us;
7831
7832 exp->type = 2;
7833 exp->__anon1.__anon2.string = PrintUShort(value2 ? (op1->__anon1.us /= value2) : (unsigned short)0);
7834 if(!exp->expType)
7835 {
7836 exp->expType = op1->type;
7837 if(op1->type)
7838 op1->type->refCount++;
7839 }
7840 return 1;
7841 }
7842
7843 static unsigned int CharDivAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7844 {
7845 char value2 = op2->__anon1.c;
7846
7847 exp->type = 2;
7848 exp->__anon1.__anon2.string = PrintChar(value2 ? (op1->__anon1.c /= value2) : (char)0);
7849 if(!exp->expType)
7850 {
7851 exp->expType = op1->type;
7852 if(op1->type)
7853 op1->type->refCount++;
7854 }
7855 return 1;
7856 }
7857
7858 static unsigned int UCharDivAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7859 {
7860 unsigned char value2 = op2->__anon1.uc;
7861
7862 exp->type = 2;
7863 exp->__anon1.__anon2.string = PrintUChar(value2 ? (op1->__anon1.uc /= value2) : (unsigned char)0);
7864 if(!exp->expType)
7865 {
7866 exp->expType = op1->type;
7867 if(op1->type)
7868 op1->type->refCount++;
7869 }
7870 return 1;
7871 }
7872
7873 static unsigned int FloatDivAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7874 {
7875 float value2 = op2->__anon1.f;
7876
7877 exp->type = 2;
7878 exp->__anon1.__anon2.string = PrintFloat(op1->__anon1.f /= value2);
7879 if(!exp->expType)
7880 {
7881 exp->expType = op1->type;
7882 if(op1->type)
7883 op1->type->refCount++;
7884 }
7885 return 1;
7886 }
7887
7888 static unsigned int DoubleDivAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7889 {
7890 double value2 = op2->__anon1.d;
7891
7892 exp->type = 2;
7893 exp->__anon1.__anon2.string = PrintDouble(op1->__anon1.d /= value2);
7894 if(!exp->expType)
7895 {
7896 exp->expType = op1->type;
7897 if(op1->type)
7898 op1->type->refCount++;
7899 }
7900 return 1;
7901 }
7902
7903 static unsigned int IntModAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7904 {
7905 int value2 = op2->__anon1.i;
7906
7907 exp->type = 2;
7908 exp->__anon1.__anon2.string = PrintInt(value2 ? (op1->__anon1.i %= value2) : 0);
7909 if(!exp->expType)
7910 {
7911 exp->expType = op1->type;
7912 if(op1->type)
7913 op1->type->refCount++;
7914 }
7915 return 1;
7916 }
7917
7918 static unsigned int UIntModAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7919 {
7920 unsigned int value2 = op2->__anon1.ui;
7921
7922 exp->type = 2;
7923 exp->__anon1.__anon2.string = PrintUInt(value2 ? (op1->__anon1.ui %= value2) : 0);
7924 if(!exp->expType)
7925 {
7926 exp->expType = op1->type;
7927 if(op1->type)
7928 op1->type->refCount++;
7929 }
7930 return 1;
7931 }
7932
7933 static unsigned int Int64ModAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7934 {
7935 long long value2 = op2->__anon1.i64;
7936
7937 exp->type = 2;
7938 exp->__anon1.__anon2.string = PrintInt64(value2 ? (op1->__anon1.i64 %= value2) : 0);
7939 if(!exp->expType)
7940 {
7941 exp->expType = op1->type;
7942 if(op1->type)
7943 op1->type->refCount++;
7944 }
7945 return 1;
7946 }
7947
7948 static unsigned int UInt64ModAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7949 {
7950 uint64 value2 = op2->__anon1.ui64;
7951
7952 exp->type = 2;
7953 exp->__anon1.__anon2.string = PrintUInt64(value2 ? (op1->__anon1.ui64 %= value2) : 0);
7954 if(!exp->expType)
7955 {
7956 exp->expType = op1->type;
7957 if(op1->type)
7958 op1->type->refCount++;
7959 }
7960 return 1;
7961 }
7962
7963 static unsigned int ShortModAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7964 {
7965 short value2 = op2->__anon1.s;
7966
7967 exp->type = 2;
7968 exp->__anon1.__anon2.string = PrintShort(value2 ? (op1->__anon1.s %= value2) : (short)0);
7969 if(!exp->expType)
7970 {
7971 exp->expType = op1->type;
7972 if(op1->type)
7973 op1->type->refCount++;
7974 }
7975 return 1;
7976 }
7977
7978 static unsigned int UShortModAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7979 {
7980 unsigned short value2 = op2->__anon1.us;
7981
7982 exp->type = 2;
7983 exp->__anon1.__anon2.string = PrintUShort(value2 ? (op1->__anon1.us %= value2) : (unsigned short)0);
7984 if(!exp->expType)
7985 {
7986 exp->expType = op1->type;
7987 if(op1->type)
7988 op1->type->refCount++;
7989 }
7990 return 1;
7991 }
7992
7993 static unsigned int CharModAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7994 {
7995 char value2 = op2->__anon1.c;
7996
7997 exp->type = 2;
7998 exp->__anon1.__anon2.string = PrintChar(value2 ? (op1->__anon1.c %= value2) : (char)0);
7999 if(!exp->expType)
8000 {
8001 exp->expType = op1->type;
8002 if(op1->type)
8003 op1->type->refCount++;
8004 }
8005 return 1;
8006 }
8007
8008 static unsigned int UCharModAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8009 {
8010 unsigned char value2 = op2->__anon1.uc;
8011
8012 exp->type = 2;
8013 exp->__anon1.__anon2.string = PrintUChar(value2 ? (op1->__anon1.uc %= value2) : (unsigned char)0);
8014 if(!exp->expType)
8015 {
8016 exp->expType = op1->type;
8017 if(op1->type)
8018 op1->type->refCount++;
8019 }
8020 return 1;
8021 }
8022
8023 static unsigned int IntBitAnd(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8024 {
8025 int value2 = op2->__anon1.i;
8026
8027 exp->type = 2;
8028 exp->__anon1.__anon2.string = PrintInt((op1->__anon1.i & value2));
8029 if(!exp->expType)
8030 {
8031 exp->expType = op1->type;
8032 if(op1->type)
8033 op1->type->refCount++;
8034 }
8035 return 1;
8036 }
8037
8038 static unsigned int UIntBitAnd(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8039 {
8040 unsigned int value2 = op2->__anon1.ui;
8041
8042 exp->type = 2;
8043 exp->__anon1.__anon2.string = PrintUInt((op1->__anon1.ui & value2));
8044 if(!exp->expType)
8045 {
8046 exp->expType = op1->type;
8047 if(op1->type)
8048 op1->type->refCount++;
8049 }
8050 return 1;
8051 }
8052
8053 static unsigned int Int64BitAnd(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8054 {
8055 long long value2 = op2->__anon1.i64;
8056
8057 exp->type = 2;
8058 exp->__anon1.__anon2.string = PrintInt64((op1->__anon1.i64 & value2));
8059 if(!exp->expType)
8060 {
8061 exp->expType = op1->type;
8062 if(op1->type)
8063 op1->type->refCount++;
8064 }
8065 return 1;
8066 }
8067
8068 static unsigned int UInt64BitAnd(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8069 {
8070 uint64 value2 = op2->__anon1.ui64;
8071
8072 exp->type = 2;
8073 exp->__anon1.__anon2.string = PrintUInt64((op1->__anon1.ui64 & value2));
8074 if(!exp->expType)
8075 {
8076 exp->expType = op1->type;
8077 if(op1->type)
8078 op1->type->refCount++;
8079 }
8080 return 1;
8081 }
8082
8083 static unsigned int ShortBitAnd(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8084 {
8085 short value2 = op2->__anon1.s;
8086
8087 exp->type = 2;
8088 exp->__anon1.__anon2.string = PrintShort((op1->__anon1.s & value2));
8089 if(!exp->expType)
8090 {
8091 exp->expType = op1->type;
8092 if(op1->type)
8093 op1->type->refCount++;
8094 }
8095 return 1;
8096 }
8097
8098 static unsigned int UShortBitAnd(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8099 {
8100 unsigned short value2 = op2->__anon1.us;
8101
8102 exp->type = 2;
8103 exp->__anon1.__anon2.string = PrintUShort((op1->__anon1.us & value2));
8104 if(!exp->expType)
8105 {
8106 exp->expType = op1->type;
8107 if(op1->type)
8108 op1->type->refCount++;
8109 }
8110 return 1;
8111 }
8112
8113 static unsigned int CharBitAnd(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8114 {
8115 char value2 = op2->__anon1.c;
8116
8117 exp->type = 2;
8118 exp->__anon1.__anon2.string = PrintChar((op1->__anon1.c & value2));
8119 if(!exp->expType)
8120 {
8121 exp->expType = op1->type;
8122 if(op1->type)
8123 op1->type->refCount++;
8124 }
8125 return 1;
8126 }
8127
8128 static unsigned int UCharBitAnd(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8129 {
8130 unsigned char value2 = op2->__anon1.uc;
8131
8132 exp->type = 2;
8133 exp->__anon1.__anon2.string = PrintUChar((op1->__anon1.uc & value2));
8134 if(!exp->expType)
8135 {
8136 exp->expType = op1->type;
8137 if(op1->type)
8138 op1->type->refCount++;
8139 }
8140 return 1;
8141 }
8142
8143 static unsigned int IntBitOr(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8144 {
8145 int value2 = op2->__anon1.i;
8146
8147 exp->type = 2;
8148 exp->__anon1.__anon2.string = PrintInt((op1->__anon1.i | value2));
8149 if(!exp->expType)
8150 {
8151 exp->expType = op1->type;
8152 if(op1->type)
8153 op1->type->refCount++;
8154 }
8155 return 1;
8156 }
8157
8158 static unsigned int UIntBitOr(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8159 {
8160 unsigned int value2 = op2->__anon1.ui;
8161
8162 exp->type = 2;
8163 exp->__anon1.__anon2.string = PrintUInt((op1->__anon1.ui | value2));
8164 if(!exp->expType)
8165 {
8166 exp->expType = op1->type;
8167 if(op1->type)
8168 op1->type->refCount++;
8169 }
8170 return 1;
8171 }
8172
8173 static unsigned int Int64BitOr(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8174 {
8175 long long value2 = op2->__anon1.i64;
8176
8177 exp->type = 2;
8178 exp->__anon1.__anon2.string = PrintInt64((op1->__anon1.i64 | value2));
8179 if(!exp->expType)
8180 {
8181 exp->expType = op1->type;
8182 if(op1->type)
8183 op1->type->refCount++;
8184 }
8185 return 1;
8186 }
8187
8188 static unsigned int UInt64BitOr(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8189 {
8190 uint64 value2 = op2->__anon1.ui64;
8191
8192 exp->type = 2;
8193 exp->__anon1.__anon2.string = PrintUInt64((op1->__anon1.ui64 | value2));
8194 if(!exp->expType)
8195 {
8196 exp->expType = op1->type;
8197 if(op1->type)
8198 op1->type->refCount++;
8199 }
8200 return 1;
8201 }
8202
8203 static unsigned int ShortBitOr(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8204 {
8205 short value2 = op2->__anon1.s;
8206
8207 exp->type = 2;
8208 exp->__anon1.__anon2.string = PrintShort((op1->__anon1.s | value2));
8209 if(!exp->expType)
8210 {
8211 exp->expType = op1->type;
8212 if(op1->type)
8213 op1->type->refCount++;
8214 }
8215 return 1;
8216 }
8217
8218 static unsigned int UShortBitOr(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8219 {
8220 unsigned short value2 = op2->__anon1.us;
8221
8222 exp->type = 2;
8223 exp->__anon1.__anon2.string = PrintUShort((op1->__anon1.us | value2));
8224 if(!exp->expType)
8225 {
8226 exp->expType = op1->type;
8227 if(op1->type)
8228 op1->type->refCount++;
8229 }
8230 return 1;
8231 }
8232
8233 static unsigned int CharBitOr(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8234 {
8235 char value2 = op2->__anon1.c;
8236
8237 exp->type = 2;
8238 exp->__anon1.__anon2.string = PrintChar((op1->__anon1.c | value2));
8239 if(!exp->expType)
8240 {
8241 exp->expType = op1->type;
8242 if(op1->type)
8243 op1->type->refCount++;
8244 }
8245 return 1;
8246 }
8247
8248 static unsigned int UCharBitOr(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8249 {
8250 unsigned char value2 = op2->__anon1.uc;
8251
8252 exp->type = 2;
8253 exp->__anon1.__anon2.string = PrintUChar((op1->__anon1.uc | value2));
8254 if(!exp->expType)
8255 {
8256 exp->expType = op1->type;
8257 if(op1->type)
8258 op1->type->refCount++;
8259 }
8260 return 1;
8261 }
8262
8263 static unsigned int IntBitXor(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8264 {
8265 int value2 = op2->__anon1.i;
8266
8267 exp->type = 2;
8268 exp->__anon1.__anon2.string = PrintInt((op1->__anon1.i ^ value2));
8269 if(!exp->expType)
8270 {
8271 exp->expType = op1->type;
8272 if(op1->type)
8273 op1->type->refCount++;
8274 }
8275 return 1;
8276 }
8277
8278 static unsigned int UIntBitXor(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8279 {
8280 unsigned int value2 = op2->__anon1.ui;
8281
8282 exp->type = 2;
8283 exp->__anon1.__anon2.string = PrintUInt((op1->__anon1.ui ^ value2));
8284 if(!exp->expType)
8285 {
8286 exp->expType = op1->type;
8287 if(op1->type)
8288 op1->type->refCount++;
8289 }
8290 return 1;
8291 }
8292
8293 static unsigned int Int64BitXor(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8294 {
8295 long long value2 = op2->__anon1.i64;
8296
8297 exp->type = 2;
8298 exp->__anon1.__anon2.string = PrintInt64((op1->__anon1.i64 ^ value2));
8299 if(!exp->expType)
8300 {
8301 exp->expType = op1->type;
8302 if(op1->type)
8303 op1->type->refCount++;
8304 }
8305 return 1;
8306 }
8307
8308 static unsigned int UInt64BitXor(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8309 {
8310 uint64 value2 = op2->__anon1.ui64;
8311
8312 exp->type = 2;
8313 exp->__anon1.__anon2.string = PrintUInt64((op1->__anon1.ui64 ^ value2));
8314 if(!exp->expType)
8315 {
8316 exp->expType = op1->type;
8317 if(op1->type)
8318 op1->type->refCount++;
8319 }
8320 return 1;
8321 }
8322
8323 static unsigned int ShortBitXor(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8324 {
8325 short value2 = op2->__anon1.s;
8326
8327 exp->type = 2;
8328 exp->__anon1.__anon2.string = PrintShort((op1->__anon1.s ^ value2));
8329 if(!exp->expType)
8330 {
8331 exp->expType = op1->type;
8332 if(op1->type)
8333 op1->type->refCount++;
8334 }
8335 return 1;
8336 }
8337
8338 static unsigned int UShortBitXor(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8339 {
8340 unsigned short value2 = op2->__anon1.us;
8341
8342 exp->type = 2;
8343 exp->__anon1.__anon2.string = PrintUShort((op1->__anon1.us ^ value2));
8344 if(!exp->expType)
8345 {
8346 exp->expType = op1->type;
8347 if(op1->type)
8348 op1->type->refCount++;
8349 }
8350 return 1;
8351 }
8352
8353 static unsigned int CharBitXor(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8354 {
8355 char value2 = op2->__anon1.c;
8356
8357 exp->type = 2;
8358 exp->__anon1.__anon2.string = PrintChar((op1->__anon1.c ^ value2));
8359 if(!exp->expType)
8360 {
8361 exp->expType = op1->type;
8362 if(op1->type)
8363 op1->type->refCount++;
8364 }
8365 return 1;
8366 }
8367
8368 static unsigned int UCharBitXor(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8369 {
8370 unsigned char value2 = op2->__anon1.uc;
8371
8372 exp->type = 2;
8373 exp->__anon1.__anon2.string = PrintUChar((op1->__anon1.uc ^ value2));
8374 if(!exp->expType)
8375 {
8376 exp->expType = op1->type;
8377 if(op1->type)
8378 op1->type->refCount++;
8379 }
8380 return 1;
8381 }
8382
8383 static unsigned int IntLShift(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8384 {
8385 int value2 = op2->__anon1.i;
8386
8387 exp->type = 2;
8388 exp->__anon1.__anon2.string = PrintInt((op1->__anon1.i << value2));
8389 if(!exp->expType)
8390 {
8391 exp->expType = op1->type;
8392 if(op1->type)
8393 op1->type->refCount++;
8394 }
8395 return 1;
8396 }
8397
8398 static unsigned int UIntLShift(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8399 {
8400 unsigned int value2 = op2->__anon1.ui;
8401
8402 exp->type = 2;
8403 exp->__anon1.__anon2.string = PrintUInt((op1->__anon1.ui << value2));
8404 if(!exp->expType)
8405 {
8406 exp->expType = op1->type;
8407 if(op1->type)
8408 op1->type->refCount++;
8409 }
8410 return 1;
8411 }
8412
8413 static unsigned int Int64LShift(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8414 {
8415 long long value2 = op2->__anon1.i64;
8416
8417 exp->type = 2;
8418 exp->__anon1.__anon2.string = PrintInt64((op1->__anon1.i64 << value2));
8419 if(!exp->expType)
8420 {
8421 exp->expType = op1->type;
8422 if(op1->type)
8423 op1->type->refCount++;
8424 }
8425 return 1;
8426 }
8427
8428 static unsigned int UInt64LShift(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8429 {
8430 uint64 value2 = op2->__anon1.ui64;
8431
8432 exp->type = 2;
8433 exp->__anon1.__anon2.string = PrintUInt64((op1->__anon1.ui64 << value2));
8434 if(!exp->expType)
8435 {
8436 exp->expType = op1->type;
8437 if(op1->type)
8438 op1->type->refCount++;
8439 }
8440 return 1;
8441 }
8442
8443 static unsigned int ShortLShift(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8444 {
8445 short value2 = op2->__anon1.s;
8446
8447 exp->type = 2;
8448 exp->__anon1.__anon2.string = PrintShort((op1->__anon1.s << value2));
8449 if(!exp->expType)
8450 {
8451 exp->expType = op1->type;
8452 if(op1->type)
8453 op1->type->refCount++;
8454 }
8455 return 1;
8456 }
8457
8458 static unsigned int UShortLShift(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8459 {
8460 unsigned short value2 = op2->__anon1.us;
8461
8462 exp->type = 2;
8463 exp->__anon1.__anon2.string = PrintUShort((op1->__anon1.us << value2));
8464 if(!exp->expType)
8465 {
8466 exp->expType = op1->type;
8467 if(op1->type)
8468 op1->type->refCount++;
8469 }
8470 return 1;
8471 }
8472
8473 static unsigned int CharLShift(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8474 {
8475 char value2 = op2->__anon1.c;
8476
8477 exp->type = 2;
8478 exp->__anon1.__anon2.string = PrintChar((op1->__anon1.c << value2));
8479 if(!exp->expType)
8480 {
8481 exp->expType = op1->type;
8482 if(op1->type)
8483 op1->type->refCount++;
8484 }
8485 return 1;
8486 }
8487
8488 static unsigned int UCharLShift(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8489 {
8490 unsigned char value2 = op2->__anon1.uc;
8491
8492 exp->type = 2;
8493 exp->__anon1.__anon2.string = PrintUChar((op1->__anon1.uc << value2));
8494 if(!exp->expType)
8495 {
8496 exp->expType = op1->type;
8497 if(op1->type)
8498 op1->type->refCount++;
8499 }
8500 return 1;
8501 }
8502
8503 static unsigned int IntRShift(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8504 {
8505 int value2 = op2->__anon1.i;
8506
8507 exp->type = 2;
8508 exp->__anon1.__anon2.string = PrintInt((op1->__anon1.i >> value2));
8509 if(!exp->expType)
8510 {
8511 exp->expType = op1->type;
8512 if(op1->type)
8513 op1->type->refCount++;
8514 }
8515 return 1;
8516 }
8517
8518 static unsigned int UIntRShift(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8519 {
8520 unsigned int value2 = op2->__anon1.ui;
8521
8522 exp->type = 2;
8523 exp->__anon1.__anon2.string = PrintUInt((op1->__anon1.ui >> value2));
8524 if(!exp->expType)
8525 {
8526 exp->expType = op1->type;
8527 if(op1->type)
8528 op1->type->refCount++;
8529 }
8530 return 1;
8531 }
8532
8533 static unsigned int Int64RShift(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8534 {
8535 long long value2 = op2->__anon1.i64;
8536
8537 exp->type = 2;
8538 exp->__anon1.__anon2.string = PrintInt64((op1->__anon1.i64 >> value2));
8539 if(!exp->expType)
8540 {
8541 exp->expType = op1->type;
8542 if(op1->type)
8543 op1->type->refCount++;
8544 }
8545 return 1;
8546 }
8547
8548 static unsigned int UInt64RShift(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8549 {
8550 uint64 value2 = op2->__anon1.ui64;
8551
8552 exp->type = 2;
8553 exp->__anon1.__anon2.string = PrintUInt64((op1->__anon1.ui64 >> value2));
8554 if(!exp->expType)
8555 {
8556 exp->expType = op1->type;
8557 if(op1->type)
8558 op1->type->refCount++;
8559 }
8560 return 1;
8561 }
8562
8563 static unsigned int ShortRShift(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8564 {
8565 short value2 = op2->__anon1.s;
8566
8567 exp->type = 2;
8568 exp->__anon1.__anon2.string = PrintShort((op1->__anon1.s >> value2));
8569 if(!exp->expType)
8570 {
8571 exp->expType = op1->type;
8572 if(op1->type)
8573 op1->type->refCount++;
8574 }
8575 return 1;
8576 }
8577
8578 static unsigned int UShortRShift(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8579 {
8580 unsigned short value2 = op2->__anon1.us;
8581
8582 exp->type = 2;
8583 exp->__anon1.__anon2.string = PrintUShort((op1->__anon1.us >> value2));
8584 if(!exp->expType)
8585 {
8586 exp->expType = op1->type;
8587 if(op1->type)
8588 op1->type->refCount++;
8589 }
8590 return 1;
8591 }
8592
8593 static unsigned int CharRShift(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8594 {
8595 char value2 = op2->__anon1.c;
8596
8597 exp->type = 2;
8598 exp->__anon1.__anon2.string = PrintChar((op1->__anon1.c >> value2));
8599 if(!exp->expType)
8600 {
8601 exp->expType = op1->type;
8602 if(op1->type)
8603 op1->type->refCount++;
8604 }
8605 return 1;
8606 }
8607
8608 static unsigned int UCharRShift(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8609 {
8610 unsigned char value2 = op2->__anon1.uc;
8611
8612 exp->type = 2;
8613 exp->__anon1.__anon2.string = PrintUChar((op1->__anon1.uc >> value2));
8614 if(!exp->expType)
8615 {
8616 exp->expType = op1->type;
8617 if(op1->type)
8618 op1->type->refCount++;
8619 }
8620 return 1;
8621 }
8622
8623 static unsigned int IntBitNot(struct Expression * exp, struct Operand * op1)
8624 {
8625 exp->type = 2;
8626 exp->__anon1.__anon2.string = PrintInt((~op1->__anon1.i));
8627 if(!exp->expType)
8628 {
8629 exp->expType = op1->type;
8630 if(op1->type)
8631 op1->type->refCount++;
8632 }
8633 return 1;
8634 }
8635
8636 static unsigned int UIntBitNot(struct Expression * exp, struct Operand * op1)
8637 {
8638 exp->type = 2;
8639 exp->__anon1.__anon2.string = PrintUInt((unsigned int)(~op1->__anon1.ui));
8640 if(!exp->expType)
8641 {
8642 exp->expType = op1->type;
8643 if(op1->type)
8644 op1->type->refCount++;
8645 }
8646 return 1;
8647 }
8648
8649 static unsigned int Int64BitNot(struct Expression * exp, struct Operand * op1)
8650 {
8651 exp->type = 2;
8652 exp->__anon1.__anon2.string = PrintInt64((long long)(~op1->__anon1.i64));
8653 if(!exp->expType)
8654 {
8655 exp->expType = op1->type;
8656 if(op1->type)
8657 op1->type->refCount++;
8658 }
8659 return 1;
8660 }
8661
8662 static unsigned int UInt64BitNot(struct Expression * exp, struct Operand * op1)
8663 {
8664 exp->type = 2;
8665 exp->__anon1.__anon2.string = PrintUInt64((uint64)(~op1->__anon1.ui64));
8666 if(!exp->expType)
8667 {
8668 exp->expType = op1->type;
8669 if(op1->type)
8670 op1->type->refCount++;
8671 }
8672 return 1;
8673 }
8674
8675 static unsigned int ShortBitNot(struct Expression * exp, struct Operand * op1)
8676 {
8677 exp->type = 2;
8678 exp->__anon1.__anon2.string = PrintShort((short)(~op1->__anon1.s));
8679 if(!exp->expType)
8680 {
8681 exp->expType = op1->type;
8682 if(op1->type)
8683 op1->type->refCount++;
8684 }
8685 return 1;
8686 }
8687
8688 static unsigned int UShortBitNot(struct Expression * exp, struct Operand * op1)
8689 {
8690 exp->type = 2;
8691 exp->__anon1.__anon2.string = PrintUShort((unsigned short)(~op1->__anon1.us));
8692 if(!exp->expType)
8693 {
8694 exp->expType = op1->type;
8695 if(op1->type)
8696 op1->type->refCount++;
8697 }
8698 return 1;
8699 }
8700
8701 static unsigned int CharBitNot(struct Expression * exp, struct Operand * op1)
8702 {
8703 exp->type = 2;
8704 exp->__anon1.__anon2.string = PrintChar((char)(~op1->__anon1.c));
8705 if(!exp->expType)
8706 {
8707 exp->expType = op1->type;
8708 if(op1->type)
8709 op1->type->refCount++;
8710 }
8711 return 1;
8712 }
8713
8714 static unsigned int UCharBitNot(struct Expression * exp, struct Operand * op1)
8715 {
8716 exp->type = 2;
8717 exp->__anon1.__anon2.string = PrintUChar((unsigned char)(~op1->__anon1.uc));
8718 if(!exp->expType)
8719 {
8720 exp->expType = op1->type;
8721 if(op1->type)
8722 op1->type->refCount++;
8723 }
8724 return 1;
8725 }
8726
8727 static unsigned int IntAndAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8728 {
8729 int value2 = op2->__anon1.i;
8730
8731 exp->type = 2;
8732 exp->__anon1.__anon2.string = PrintInt((op1->__anon1.i &= value2));
8733 if(!exp->expType)
8734 {
8735 exp->expType = op1->type;
8736 if(op1->type)
8737 op1->type->refCount++;
8738 }
8739 return 1;
8740 }
8741
8742 static unsigned int UIntAndAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8743 {
8744 unsigned int value2 = op2->__anon1.ui;
8745
8746 exp->type = 2;
8747 exp->__anon1.__anon2.string = PrintUInt((op1->__anon1.ui &= value2));
8748 if(!exp->expType)
8749 {
8750 exp->expType = op1->type;
8751 if(op1->type)
8752 op1->type->refCount++;
8753 }
8754 return 1;
8755 }
8756
8757 static unsigned int Int64AndAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8758 {
8759 long long value2 = op2->__anon1.i64;
8760
8761 exp->type = 2;
8762 exp->__anon1.__anon2.string = PrintInt64((op1->__anon1.i64 &= value2));
8763 if(!exp->expType)
8764 {
8765 exp->expType = op1->type;
8766 if(op1->type)
8767 op1->type->refCount++;
8768 }
8769 return 1;
8770 }
8771
8772 static unsigned int UInt64AndAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8773 {
8774 uint64 value2 = op2->__anon1.ui64;
8775
8776 exp->type = 2;
8777 exp->__anon1.__anon2.string = PrintUInt64((op1->__anon1.ui64 &= value2));
8778 if(!exp->expType)
8779 {
8780 exp->expType = op1->type;
8781 if(op1->type)
8782 op1->type->refCount++;
8783 }
8784 return 1;
8785 }
8786
8787 static unsigned int ShortAndAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8788 {
8789 short value2 = op2->__anon1.s;
8790
8791 exp->type = 2;
8792 exp->__anon1.__anon2.string = PrintShort((op1->__anon1.s &= value2));
8793 if(!exp->expType)
8794 {
8795 exp->expType = op1->type;
8796 if(op1->type)
8797 op1->type->refCount++;
8798 }
8799 return 1;
8800 }
8801
8802 static unsigned int UShortAndAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8803 {
8804 unsigned short value2 = op2->__anon1.us;
8805
8806 exp->type = 2;
8807 exp->__anon1.__anon2.string = PrintUShort((op1->__anon1.us &= value2));
8808 if(!exp->expType)
8809 {
8810 exp->expType = op1->type;
8811 if(op1->type)
8812 op1->type->refCount++;
8813 }
8814 return 1;
8815 }
8816
8817 static unsigned int CharAndAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8818 {
8819 char value2 = op2->__anon1.c;
8820
8821 exp->type = 2;
8822 exp->__anon1.__anon2.string = PrintChar((op1->__anon1.c &= value2));
8823 if(!exp->expType)
8824 {
8825 exp->expType = op1->type;
8826 if(op1->type)
8827 op1->type->refCount++;
8828 }
8829 return 1;
8830 }
8831
8832 static unsigned int UCharAndAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8833 {
8834 unsigned char value2 = op2->__anon1.uc;
8835
8836 exp->type = 2;
8837 exp->__anon1.__anon2.string = PrintUChar((op1->__anon1.uc &= value2));
8838 if(!exp->expType)
8839 {
8840 exp->expType = op1->type;
8841 if(op1->type)
8842 op1->type->refCount++;
8843 }
8844 return 1;
8845 }
8846
8847 static unsigned int IntOrAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8848 {
8849 int value2 = op2->__anon1.i;
8850
8851 exp->type = 2;
8852 exp->__anon1.__anon2.string = PrintInt((op1->__anon1.i |= value2));
8853 if(!exp->expType)
8854 {
8855 exp->expType = op1->type;
8856 if(op1->type)
8857 op1->type->refCount++;
8858 }
8859 return 1;
8860 }
8861
8862 static unsigned int UIntOrAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8863 {
8864 unsigned int value2 = op2->__anon1.ui;
8865
8866 exp->type = 2;
8867 exp->__anon1.__anon2.string = PrintUInt((op1->__anon1.ui |= value2));
8868 if(!exp->expType)
8869 {
8870 exp->expType = op1->type;
8871 if(op1->type)
8872 op1->type->refCount++;
8873 }
8874 return 1;
8875 }
8876
8877 static unsigned int Int64OrAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8878 {
8879 long long value2 = op2->__anon1.i64;
8880
8881 exp->type = 2;
8882 exp->__anon1.__anon2.string = PrintInt64((op1->__anon1.i64 |= value2));
8883 if(!exp->expType)
8884 {
8885 exp->expType = op1->type;
8886 if(op1->type)
8887 op1->type->refCount++;
8888 }
8889 return 1;
8890 }
8891
8892 static unsigned int UInt64OrAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8893 {
8894 uint64 value2 = op2->__anon1.ui64;
8895
8896 exp->type = 2;
8897 exp->__anon1.__anon2.string = PrintUInt64((op1->__anon1.ui64 |= value2));
8898 if(!exp->expType)
8899 {
8900 exp->expType = op1->type;
8901 if(op1->type)
8902 op1->type->refCount++;
8903 }
8904 return 1;
8905 }
8906
8907 static unsigned int ShortOrAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8908 {
8909 short value2 = op2->__anon1.s;
8910
8911 exp->type = 2;
8912 exp->__anon1.__anon2.string = PrintShort((op1->__anon1.s |= value2));
8913 if(!exp->expType)
8914 {
8915 exp->expType = op1->type;
8916 if(op1->type)
8917 op1->type->refCount++;
8918 }
8919 return 1;
8920 }
8921
8922 static unsigned int UShortOrAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8923 {
8924 unsigned short value2 = op2->__anon1.us;
8925
8926 exp->type = 2;
8927 exp->__anon1.__anon2.string = PrintUShort((op1->__anon1.us |= value2));
8928 if(!exp->expType)
8929 {
8930 exp->expType = op1->type;
8931 if(op1->type)
8932 op1->type->refCount++;
8933 }
8934 return 1;
8935 }
8936
8937 static unsigned int CharOrAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8938 {
8939 char value2 = op2->__anon1.c;
8940
8941 exp->type = 2;
8942 exp->__anon1.__anon2.string = PrintChar((op1->__anon1.c |= value2));
8943 if(!exp->expType)
8944 {
8945 exp->expType = op1->type;
8946 if(op1->type)
8947 op1->type->refCount++;
8948 }
8949 return 1;
8950 }
8951
8952 static unsigned int UCharOrAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8953 {
8954 unsigned char value2 = op2->__anon1.uc;
8955
8956 exp->type = 2;
8957 exp->__anon1.__anon2.string = PrintUChar((op1->__anon1.uc |= value2));
8958 if(!exp->expType)
8959 {
8960 exp->expType = op1->type;
8961 if(op1->type)
8962 op1->type->refCount++;
8963 }
8964 return 1;
8965 }
8966
8967 static unsigned int IntXorAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8968 {
8969 int value2 = op2->__anon1.i;
8970
8971 exp->type = 2;
8972 exp->__anon1.__anon2.string = PrintInt((op1->__anon1.i ^= value2));
8973 if(!exp->expType)
8974 {
8975 exp->expType = op1->type;
8976 if(op1->type)
8977 op1->type->refCount++;
8978 }
8979 return 1;
8980 }
8981
8982 static unsigned int UIntXorAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8983 {
8984 unsigned int value2 = op2->__anon1.ui;
8985
8986 exp->type = 2;
8987 exp->__anon1.__anon2.string = PrintUInt((op1->__anon1.ui ^= value2));
8988 if(!exp->expType)
8989 {
8990 exp->expType = op1->type;
8991 if(op1->type)
8992 op1->type->refCount++;
8993 }
8994 return 1;
8995 }
8996
8997 static unsigned int Int64XorAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8998 {
8999 long long value2 = op2->__anon1.i64;
9000
9001 exp->type = 2;
9002 exp->__anon1.__anon2.string = PrintInt64((op1->__anon1.i64 ^= value2));
9003 if(!exp->expType)
9004 {
9005 exp->expType = op1->type;
9006 if(op1->type)
9007 op1->type->refCount++;
9008 }
9009 return 1;
9010 }
9011
9012 static unsigned int UInt64XorAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9013 {
9014 uint64 value2 = op2->__anon1.ui64;
9015
9016 exp->type = 2;
9017 exp->__anon1.__anon2.string = PrintUInt64((op1->__anon1.ui64 ^= value2));
9018 if(!exp->expType)
9019 {
9020 exp->expType = op1->type;
9021 if(op1->type)
9022 op1->type->refCount++;
9023 }
9024 return 1;
9025 }
9026
9027 static unsigned int ShortXorAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9028 {
9029 short value2 = op2->__anon1.s;
9030
9031 exp->type = 2;
9032 exp->__anon1.__anon2.string = PrintShort((op1->__anon1.s ^= value2));
9033 if(!exp->expType)
9034 {
9035 exp->expType = op1->type;
9036 if(op1->type)
9037 op1->type->refCount++;
9038 }
9039 return 1;
9040 }
9041
9042 static unsigned int UShortXorAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9043 {
9044 unsigned short value2 = op2->__anon1.us;
9045
9046 exp->type = 2;
9047 exp->__anon1.__anon2.string = PrintUShort((op1->__anon1.us ^= value2));
9048 if(!exp->expType)
9049 {
9050 exp->expType = op1->type;
9051 if(op1->type)
9052 op1->type->refCount++;
9053 }
9054 return 1;
9055 }
9056
9057 static unsigned int CharXorAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9058 {
9059 char value2 = op2->__anon1.c;
9060
9061 exp->type = 2;
9062 exp->__anon1.__anon2.string = PrintChar((op1->__anon1.c ^= value2));
9063 if(!exp->expType)
9064 {
9065 exp->expType = op1->type;
9066 if(op1->type)
9067 op1->type->refCount++;
9068 }
9069 return 1;
9070 }
9071
9072 static unsigned int UCharXorAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9073 {
9074 unsigned char value2 = op2->__anon1.uc;
9075
9076 exp->type = 2;
9077 exp->__anon1.__anon2.string = PrintUChar((op1->__anon1.uc ^= value2));
9078 if(!exp->expType)
9079 {
9080 exp->expType = op1->type;
9081 if(op1->type)
9082 op1->type->refCount++;
9083 }
9084 return 1;
9085 }
9086
9087 static unsigned int IntLShiftAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9088 {
9089 int value2 = op2->__anon1.i;
9090
9091 exp->type = 2;
9092 exp->__anon1.__anon2.string = PrintInt((op1->__anon1.i <<= value2));
9093 if(!exp->expType)
9094 {
9095 exp->expType = op1->type;
9096 if(op1->type)
9097 op1->type->refCount++;
9098 }
9099 return 1;
9100 }
9101
9102 static unsigned int UIntLShiftAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9103 {
9104 unsigned int value2 = op2->__anon1.ui;
9105
9106 exp->type = 2;
9107 exp->__anon1.__anon2.string = PrintUInt((op1->__anon1.ui <<= value2));
9108 if(!exp->expType)
9109 {
9110 exp->expType = op1->type;
9111 if(op1->type)
9112 op1->type->refCount++;
9113 }
9114 return 1;
9115 }
9116
9117 static unsigned int Int64LShiftAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9118 {
9119 long long value2 = op2->__anon1.i64;
9120
9121 exp->type = 2;
9122 exp->__anon1.__anon2.string = PrintInt64((op1->__anon1.i64 <<= value2));
9123 if(!exp->expType)
9124 {
9125 exp->expType = op1->type;
9126 if(op1->type)
9127 op1->type->refCount++;
9128 }
9129 return 1;
9130 }
9131
9132 static unsigned int UInt64LShiftAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9133 {
9134 uint64 value2 = op2->__anon1.ui64;
9135
9136 exp->type = 2;
9137 exp->__anon1.__anon2.string = PrintUInt64((op1->__anon1.ui64 <<= value2));
9138 if(!exp->expType)
9139 {
9140 exp->expType = op1->type;
9141 if(op1->type)
9142 op1->type->refCount++;
9143 }
9144 return 1;
9145 }
9146
9147 static unsigned int ShortLShiftAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9148 {
9149 short value2 = op2->__anon1.s;
9150
9151 exp->type = 2;
9152 exp->__anon1.__anon2.string = PrintShort((op1->__anon1.s <<= value2));
9153 if(!exp->expType)
9154 {
9155 exp->expType = op1->type;
9156 if(op1->type)
9157 op1->type->refCount++;
9158 }
9159 return 1;
9160 }
9161
9162 static unsigned int UShortLShiftAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9163 {
9164 unsigned short value2 = op2->__anon1.us;
9165
9166 exp->type = 2;
9167 exp->__anon1.__anon2.string = PrintUShort((op1->__anon1.us <<= value2));
9168 if(!exp->expType)
9169 {
9170 exp->expType = op1->type;
9171 if(op1->type)
9172 op1->type->refCount++;
9173 }
9174 return 1;
9175 }
9176
9177 static unsigned int CharLShiftAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9178 {
9179 char value2 = op2->__anon1.c;
9180
9181 exp->type = 2;
9182 exp->__anon1.__anon2.string = PrintChar((op1->__anon1.c <<= value2));
9183 if(!exp->expType)
9184 {
9185 exp->expType = op1->type;
9186 if(op1->type)
9187 op1->type->refCount++;
9188 }
9189 return 1;
9190 }
9191
9192 static unsigned int UCharLShiftAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9193 {
9194 unsigned char value2 = op2->__anon1.uc;
9195
9196 exp->type = 2;
9197 exp->__anon1.__anon2.string = PrintUChar((op1->__anon1.uc <<= value2));
9198 if(!exp->expType)
9199 {
9200 exp->expType = op1->type;
9201 if(op1->type)
9202 op1->type->refCount++;
9203 }
9204 return 1;
9205 }
9206
9207 static unsigned int IntRShiftAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9208 {
9209 int value2 = op2->__anon1.i;
9210
9211 exp->type = 2;
9212 exp->__anon1.__anon2.string = PrintInt((op1->__anon1.i >>= value2));
9213 if(!exp->expType)
9214 {
9215 exp->expType = op1->type;
9216 if(op1->type)
9217 op1->type->refCount++;
9218 }
9219 return 1;
9220 }
9221
9222 static unsigned int UIntRShiftAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9223 {
9224 unsigned int value2 = op2->__anon1.ui;
9225
9226 exp->type = 2;
9227 exp->__anon1.__anon2.string = PrintUInt((op1->__anon1.ui >>= value2));
9228 if(!exp->expType)
9229 {
9230 exp->expType = op1->type;
9231 if(op1->type)
9232 op1->type->refCount++;
9233 }
9234 return 1;
9235 }
9236
9237 static unsigned int Int64RShiftAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9238 {
9239 long long value2 = op2->__anon1.i64;
9240
9241 exp->type = 2;
9242 exp->__anon1.__anon2.string = PrintInt64((op1->__anon1.i64 >>= value2));
9243 if(!exp->expType)
9244 {
9245 exp->expType = op1->type;
9246 if(op1->type)
9247 op1->type->refCount++;
9248 }
9249 return 1;
9250 }
9251
9252 static unsigned int UInt64RShiftAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9253 {
9254 uint64 value2 = op2->__anon1.ui64;
9255
9256 exp->type = 2;
9257 exp->__anon1.__anon2.string = PrintUInt64((op1->__anon1.ui64 >>= value2));
9258 if(!exp->expType)
9259 {
9260 exp->expType = op1->type;
9261 if(op1->type)
9262 op1->type->refCount++;
9263 }
9264 return 1;
9265 }
9266
9267 static unsigned int ShortRShiftAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9268 {
9269 short value2 = op2->__anon1.s;
9270
9271 exp->type = 2;
9272 exp->__anon1.__anon2.string = PrintShort((op1->__anon1.s >>= value2));
9273 if(!exp->expType)
9274 {
9275 exp->expType = op1->type;
9276 if(op1->type)
9277 op1->type->refCount++;
9278 }
9279 return 1;
9280 }
9281
9282 static unsigned int UShortRShiftAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9283 {
9284 unsigned short value2 = op2->__anon1.us;
9285
9286 exp->type = 2;
9287 exp->__anon1.__anon2.string = PrintUShort((op1->__anon1.us >>= value2));
9288 if(!exp->expType)
9289 {
9290 exp->expType = op1->type;
9291 if(op1->type)
9292 op1->type->refCount++;
9293 }
9294 return 1;
9295 }
9296
9297 static unsigned int CharRShiftAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9298 {
9299 char value2 = op2->__anon1.c;
9300
9301 exp->type = 2;
9302 exp->__anon1.__anon2.string = PrintChar((op1->__anon1.c >>= value2));
9303 if(!exp->expType)
9304 {
9305 exp->expType = op1->type;
9306 if(op1->type)
9307 op1->type->refCount++;
9308 }
9309 return 1;
9310 }
9311
9312 static unsigned int UCharRShiftAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9313 {
9314 unsigned char value2 = op2->__anon1.uc;
9315
9316 exp->type = 2;
9317 exp->__anon1.__anon2.string = PrintUChar((op1->__anon1.uc >>= value2));
9318 if(!exp->expType)
9319 {
9320 exp->expType = op1->type;
9321 if(op1->type)
9322 op1->type->refCount++;
9323 }
9324 return 1;
9325 }
9326
9327 static unsigned int IntNot(struct Expression * exp, struct Operand * op1)
9328 {
9329 exp->type = 2;
9330 exp->__anon1.__anon2.string = PrintInt((int)(!op1->__anon1.i));
9331 if(!exp->expType)
9332 {
9333 exp->expType = op1->type;
9334 if(op1->type)
9335 op1->type->refCount++;
9336 }
9337 return 1;
9338 }
9339
9340 static unsigned int UIntNot(struct Expression * exp, struct Operand * op1)
9341 {
9342 exp->type = 2;
9343 exp->__anon1.__anon2.string = PrintUInt((unsigned int)(!op1->__anon1.ui));
9344 if(!exp->expType)
9345 {
9346 exp->expType = op1->type;
9347 if(op1->type)
9348 op1->type->refCount++;
9349 }
9350 return 1;
9351 }
9352
9353 static unsigned int Int64Not(struct Expression * exp, struct Operand * op1)
9354 {
9355 exp->type = 2;
9356 exp->__anon1.__anon2.string = PrintInt64((long long)(!op1->__anon1.i64));
9357 if(!exp->expType)
9358 {
9359 exp->expType = op1->type;
9360 if(op1->type)
9361 op1->type->refCount++;
9362 }
9363 return 1;
9364 }
9365
9366 static unsigned int UInt64Not(struct Expression * exp, struct Operand * op1)
9367 {
9368 exp->type = 2;
9369 exp->__anon1.__anon2.string = PrintUInt64((uint64)(!op1->__anon1.ui64));
9370 if(!exp->expType)
9371 {
9372 exp->expType = op1->type;
9373 if(op1->type)
9374 op1->type->refCount++;
9375 }
9376 return 1;
9377 }
9378
9379 static unsigned int ShortNot(struct Expression * exp, struct Operand * op1)
9380 {
9381 exp->type = 2;
9382 exp->__anon1.__anon2.string = PrintShort((short)(!op1->__anon1.s));
9383 if(!exp->expType)
9384 {
9385 exp->expType = op1->type;
9386 if(op1->type)
9387 op1->type->refCount++;
9388 }
9389 return 1;
9390 }
9391
9392 static unsigned int UShortNot(struct Expression * exp, struct Operand * op1)
9393 {
9394 exp->type = 2;
9395 exp->__anon1.__anon2.string = PrintUShort((unsigned short)(!op1->__anon1.us));
9396 if(!exp->expType)
9397 {
9398 exp->expType = op1->type;
9399 if(op1->type)
9400 op1->type->refCount++;
9401 }
9402 return 1;
9403 }
9404
9405 static unsigned int CharNot(struct Expression * exp, struct Operand * op1)
9406 {
9407 exp->type = 2;
9408 exp->__anon1.__anon2.string = PrintChar((char)(!op1->__anon1.c));
9409 if(!exp->expType)
9410 {
9411 exp->expType = op1->type;
9412 if(op1->type)
9413 op1->type->refCount++;
9414 }
9415 return 1;
9416 }
9417
9418 static unsigned int UCharNot(struct Expression * exp, struct Operand * op1)
9419 {
9420 exp->type = 2;
9421 exp->__anon1.__anon2.string = PrintUChar((unsigned char)(!op1->__anon1.uc));
9422 if(!exp->expType)
9423 {
9424 exp->expType = op1->type;
9425 if(op1->type)
9426 op1->type->refCount++;
9427 }
9428 return 1;
9429 }
9430
9431 static unsigned int IntEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9432 {
9433 int value2 = op2->__anon1.i;
9434
9435 exp->type = 2;
9436 exp->__anon1.__anon2.string = PrintInt((int)(op1->__anon1.i == value2));
9437 if(!exp->expType)
9438 {
9439 exp->expType = op1->type;
9440 if(op1->type)
9441 op1->type->refCount++;
9442 }
9443 return 1;
9444 }
9445
9446 static unsigned int UIntEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9447 {
9448 unsigned int value2 = op2->__anon1.ui;
9449
9450 exp->type = 2;
9451 exp->__anon1.__anon2.string = PrintUInt((unsigned int)(op1->__anon1.ui == value2));
9452 if(!exp->expType)
9453 {
9454 exp->expType = op1->type;
9455 if(op1->type)
9456 op1->type->refCount++;
9457 }
9458 return 1;
9459 }
9460
9461 static unsigned int Int64Equ(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9462 {
9463 long long value2 = op2->__anon1.i64;
9464
9465 exp->type = 2;
9466 exp->__anon1.__anon2.string = PrintInt64((long long)(op1->__anon1.i64 == value2));
9467 if(!exp->expType)
9468 {
9469 exp->expType = op1->type;
9470 if(op1->type)
9471 op1->type->refCount++;
9472 }
9473 return 1;
9474 }
9475
9476 static unsigned int UInt64Equ(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9477 {
9478 uint64 value2 = op2->__anon1.ui64;
9479
9480 exp->type = 2;
9481 exp->__anon1.__anon2.string = PrintUInt64((uint64)(op1->__anon1.ui64 == value2));
9482 if(!exp->expType)
9483 {
9484 exp->expType = op1->type;
9485 if(op1->type)
9486 op1->type->refCount++;
9487 }
9488 return 1;
9489 }
9490
9491 static unsigned int ShortEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9492 {
9493 short value2 = op2->__anon1.s;
9494
9495 exp->type = 2;
9496 exp->__anon1.__anon2.string = PrintShort((short)(op1->__anon1.s == value2));
9497 if(!exp->expType)
9498 {
9499 exp->expType = op1->type;
9500 if(op1->type)
9501 op1->type->refCount++;
9502 }
9503 return 1;
9504 }
9505
9506 static unsigned int UShortEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9507 {
9508 unsigned short value2 = op2->__anon1.us;
9509
9510 exp->type = 2;
9511 exp->__anon1.__anon2.string = PrintUShort((unsigned short)(op1->__anon1.us == value2));
9512 if(!exp->expType)
9513 {
9514 exp->expType = op1->type;
9515 if(op1->type)
9516 op1->type->refCount++;
9517 }
9518 return 1;
9519 }
9520
9521 static unsigned int CharEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9522 {
9523 char value2 = op2->__anon1.c;
9524
9525 exp->type = 2;
9526 exp->__anon1.__anon2.string = PrintChar((char)(op1->__anon1.c == value2));
9527 if(!exp->expType)
9528 {
9529 exp->expType = op1->type;
9530 if(op1->type)
9531 op1->type->refCount++;
9532 }
9533 return 1;
9534 }
9535
9536 static unsigned int UCharEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9537 {
9538 unsigned char value2 = op2->__anon1.uc;
9539
9540 exp->type = 2;
9541 exp->__anon1.__anon2.string = PrintUChar((unsigned char)(op1->__anon1.uc == value2));
9542 if(!exp->expType)
9543 {
9544 exp->expType = op1->type;
9545 if(op1->type)
9546 op1->type->refCount++;
9547 }
9548 return 1;
9549 }
9550
9551 static unsigned int FloatEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9552 {
9553 float value2 = op2->__anon1.f;
9554
9555 exp->type = 2;
9556 exp->__anon1.__anon2.string = PrintFloat((float)(op1->__anon1.f == value2));
9557 if(!exp->expType)
9558 {
9559 exp->expType = op1->type;
9560 if(op1->type)
9561 op1->type->refCount++;
9562 }
9563 return 1;
9564 }
9565
9566 static unsigned int DoubleEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9567 {
9568 double value2 = op2->__anon1.d;
9569
9570 exp->type = 2;
9571 exp->__anon1.__anon2.string = PrintDouble((double)(op1->__anon1.d == value2));
9572 if(!exp->expType)
9573 {
9574 exp->expType = op1->type;
9575 if(op1->type)
9576 op1->type->refCount++;
9577 }
9578 return 1;
9579 }
9580
9581 static unsigned int IntNqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9582 {
9583 int value2 = op2->__anon1.i;
9584
9585 exp->type = 2;
9586 exp->__anon1.__anon2.string = PrintInt((int)(op1->__anon1.i != value2));
9587 if(!exp->expType)
9588 {
9589 exp->expType = op1->type;
9590 if(op1->type)
9591 op1->type->refCount++;
9592 }
9593 return 1;
9594 }
9595
9596 static unsigned int UIntNqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9597 {
9598 unsigned int value2 = op2->__anon1.ui;
9599
9600 exp->type = 2;
9601 exp->__anon1.__anon2.string = PrintUInt((unsigned int)(op1->__anon1.ui != value2));
9602 if(!exp->expType)
9603 {
9604 exp->expType = op1->type;
9605 if(op1->type)
9606 op1->type->refCount++;
9607 }
9608 return 1;
9609 }
9610
9611 static unsigned int Int64Nqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9612 {
9613 long long value2 = op2->__anon1.i64;
9614
9615 exp->type = 2;
9616 exp->__anon1.__anon2.string = PrintInt64((long long)(op1->__anon1.i64 != value2));
9617 if(!exp->expType)
9618 {
9619 exp->expType = op1->type;
9620 if(op1->type)
9621 op1->type->refCount++;
9622 }
9623 return 1;
9624 }
9625
9626 static unsigned int UInt64Nqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9627 {
9628 uint64 value2 = op2->__anon1.ui64;
9629
9630 exp->type = 2;
9631 exp->__anon1.__anon2.string = PrintUInt64((uint64)(op1->__anon1.ui64 != value2));
9632 if(!exp->expType)
9633 {
9634 exp->expType = op1->type;
9635 if(op1->type)
9636 op1->type->refCount++;
9637 }
9638 return 1;
9639 }
9640
9641 static unsigned int ShortNqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9642 {
9643 short value2 = op2->__anon1.s;
9644
9645 exp->type = 2;
9646 exp->__anon1.__anon2.string = PrintShort((short)(op1->__anon1.s != value2));
9647 if(!exp->expType)
9648 {
9649 exp->expType = op1->type;
9650 if(op1->type)
9651 op1->type->refCount++;
9652 }
9653 return 1;
9654 }
9655
9656 static unsigned int UShortNqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9657 {
9658 unsigned short value2 = op2->__anon1.us;
9659
9660 exp->type = 2;
9661 exp->__anon1.__anon2.string = PrintUShort((unsigned short)(op1->__anon1.us != value2));
9662 if(!exp->expType)
9663 {
9664 exp->expType = op1->type;
9665 if(op1->type)
9666 op1->type->refCount++;
9667 }
9668 return 1;
9669 }
9670
9671 static unsigned int CharNqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9672 {
9673 char value2 = op2->__anon1.c;
9674
9675 exp->type = 2;
9676 exp->__anon1.__anon2.string = PrintChar((char)(op1->__anon1.c != value2));
9677 if(!exp->expType)
9678 {
9679 exp->expType = op1->type;
9680 if(op1->type)
9681 op1->type->refCount++;
9682 }
9683 return 1;
9684 }
9685
9686 static unsigned int UCharNqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9687 {
9688 unsigned char value2 = op2->__anon1.uc;
9689
9690 exp->type = 2;
9691 exp->__anon1.__anon2.string = PrintUChar((unsigned char)(op1->__anon1.uc != value2));
9692 if(!exp->expType)
9693 {
9694 exp->expType = op1->type;
9695 if(op1->type)
9696 op1->type->refCount++;
9697 }
9698 return 1;
9699 }
9700
9701 static unsigned int FloatNqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9702 {
9703 float value2 = op2->__anon1.f;
9704
9705 exp->type = 2;
9706 exp->__anon1.__anon2.string = PrintFloat((float)(op1->__anon1.f != value2));
9707 if(!exp->expType)
9708 {
9709 exp->expType = op1->type;
9710 if(op1->type)
9711 op1->type->refCount++;
9712 }
9713 return 1;
9714 }
9715
9716 static unsigned int DoubleNqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9717 {
9718 double value2 = op2->__anon1.d;
9719
9720 exp->type = 2;
9721 exp->__anon1.__anon2.string = PrintDouble((double)(op1->__anon1.d != value2));
9722 if(!exp->expType)
9723 {
9724 exp->expType = op1->type;
9725 if(op1->type)
9726 op1->type->refCount++;
9727 }
9728 return 1;
9729 }
9730
9731 static unsigned int IntAnd(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9732 {
9733 int value2 = op2->__anon1.i;
9734
9735 exp->type = 2;
9736 exp->__anon1.__anon2.string = PrintInt((int)(op1->__anon1.i && value2));
9737 if(!exp->expType)
9738 {
9739 exp->expType = op1->type;
9740 if(op1->type)
9741 op1->type->refCount++;
9742 }
9743 return 1;
9744 }
9745
9746 static unsigned int UIntAnd(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9747 {
9748 unsigned int value2 = op2->__anon1.ui;
9749
9750 exp->type = 2;
9751 exp->__anon1.__anon2.string = PrintUInt((unsigned int)(op1->__anon1.ui && value2));
9752 if(!exp->expType)
9753 {
9754 exp->expType = op1->type;
9755 if(op1->type)
9756 op1->type->refCount++;
9757 }
9758 return 1;
9759 }
9760
9761 static unsigned int Int64And(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9762 {
9763 long long value2 = op2->__anon1.i64;
9764
9765 exp->type = 2;
9766 exp->__anon1.__anon2.string = PrintInt64((long long)(op1->__anon1.i64 && value2));
9767 if(!exp->expType)
9768 {
9769 exp->expType = op1->type;
9770 if(op1->type)
9771 op1->type->refCount++;
9772 }
9773 return 1;
9774 }
9775
9776 static unsigned int UInt64And(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9777 {
9778 uint64 value2 = op2->__anon1.ui64;
9779
9780 exp->type = 2;
9781 exp->__anon1.__anon2.string = PrintUInt64((uint64)(op1->__anon1.ui64 && value2));
9782 if(!exp->expType)
9783 {
9784 exp->expType = op1->type;
9785 if(op1->type)
9786 op1->type->refCount++;
9787 }
9788 return 1;
9789 }
9790
9791 static unsigned int ShortAnd(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9792 {
9793 short value2 = op2->__anon1.s;
9794
9795 exp->type = 2;
9796 exp->__anon1.__anon2.string = PrintShort((short)(op1->__anon1.s && value2));
9797 if(!exp->expType)
9798 {
9799 exp->expType = op1->type;
9800 if(op1->type)
9801 op1->type->refCount++;
9802 }
9803 return 1;
9804 }
9805
9806 static unsigned int UShortAnd(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9807 {
9808 unsigned short value2 = op2->__anon1.us;
9809
9810 exp->type = 2;
9811 exp->__anon1.__anon2.string = PrintUShort((unsigned short)(op1->__anon1.us && value2));
9812 if(!exp->expType)
9813 {
9814 exp->expType = op1->type;
9815 if(op1->type)
9816 op1->type->refCount++;
9817 }
9818 return 1;
9819 }
9820
9821 static unsigned int CharAnd(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9822 {
9823 char value2 = op2->__anon1.c;
9824
9825 exp->type = 2;
9826 exp->__anon1.__anon2.string = PrintChar((char)(op1->__anon1.c && value2));
9827 if(!exp->expType)
9828 {
9829 exp->expType = op1->type;
9830 if(op1->type)
9831 op1->type->refCount++;
9832 }
9833 return 1;
9834 }
9835
9836 static unsigned int UCharAnd(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9837 {
9838 unsigned char value2 = op2->__anon1.uc;
9839
9840 exp->type = 2;
9841 exp->__anon1.__anon2.string = PrintUChar((unsigned char)(op1->__anon1.uc && value2));
9842 if(!exp->expType)
9843 {
9844 exp->expType = op1->type;
9845 if(op1->type)
9846 op1->type->refCount++;
9847 }
9848 return 1;
9849 }
9850
9851 static unsigned int FloatAnd(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9852 {
9853 float value2 = op2->__anon1.f;
9854
9855 exp->type = 2;
9856 exp->__anon1.__anon2.string = PrintFloat((float)(op1->__anon1.f && value2));
9857 if(!exp->expType)
9858 {
9859 exp->expType = op1->type;
9860 if(op1->type)
9861 op1->type->refCount++;
9862 }
9863 return 1;
9864 }
9865
9866 static unsigned int DoubleAnd(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9867 {
9868 double value2 = op2->__anon1.d;
9869
9870 exp->type = 2;
9871 exp->__anon1.__anon2.string = PrintDouble((double)(op1->__anon1.d && value2));
9872 if(!exp->expType)
9873 {
9874 exp->expType = op1->type;
9875 if(op1->type)
9876 op1->type->refCount++;
9877 }
9878 return 1;
9879 }
9880
9881 static unsigned int IntOr(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9882 {
9883 int value2 = op2->__anon1.i;
9884
9885 exp->type = 2;
9886 exp->__anon1.__anon2.string = PrintInt((int)(op1->__anon1.i || value2));
9887 if(!exp->expType)
9888 {
9889 exp->expType = op1->type;
9890 if(op1->type)
9891 op1->type->refCount++;
9892 }
9893 return 1;
9894 }
9895
9896 static unsigned int UIntOr(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9897 {
9898 unsigned int value2 = op2->__anon1.ui;
9899
9900 exp->type = 2;
9901 exp->__anon1.__anon2.string = PrintUInt((unsigned int)(op1->__anon1.ui || value2));
9902 if(!exp->expType)
9903 {
9904 exp->expType = op1->type;
9905 if(op1->type)
9906 op1->type->refCount++;
9907 }
9908 return 1;
9909 }
9910
9911 static unsigned int Int64Or(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9912 {
9913 long long value2 = op2->__anon1.i64;
9914
9915 exp->type = 2;
9916 exp->__anon1.__anon2.string = PrintInt64((long long)(op1->__anon1.i64 || value2));
9917 if(!exp->expType)
9918 {
9919 exp->expType = op1->type;
9920 if(op1->type)
9921 op1->type->refCount++;
9922 }
9923 return 1;
9924 }
9925
9926 static unsigned int UInt64Or(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9927 {
9928 uint64 value2 = op2->__anon1.ui64;
9929
9930 exp->type = 2;
9931 exp->__anon1.__anon2.string = PrintUInt64((uint64)(op1->__anon1.ui64 || value2));
9932 if(!exp->expType)
9933 {
9934 exp->expType = op1->type;
9935 if(op1->type)
9936 op1->type->refCount++;
9937 }
9938 return 1;
9939 }
9940
9941 static unsigned int ShortOr(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9942 {
9943 short value2 = op2->__anon1.s;
9944
9945 exp->type = 2;
9946 exp->__anon1.__anon2.string = PrintShort((short)(op1->__anon1.s || value2));
9947 if(!exp->expType)
9948 {
9949 exp->expType = op1->type;
9950 if(op1->type)
9951 op1->type->refCount++;
9952 }
9953 return 1;
9954 }
9955
9956 static unsigned int UShortOr(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9957 {
9958 unsigned short value2 = op2->__anon1.us;
9959
9960 exp->type = 2;
9961 exp->__anon1.__anon2.string = PrintUShort((unsigned short)(op1->__anon1.us || value2));
9962 if(!exp->expType)
9963 {
9964 exp->expType = op1->type;
9965 if(op1->type)
9966 op1->type->refCount++;
9967 }
9968 return 1;
9969 }
9970
9971 static unsigned int CharOr(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9972 {
9973 char value2 = op2->__anon1.c;
9974
9975 exp->type = 2;
9976 exp->__anon1.__anon2.string = PrintChar((char)(op1->__anon1.c || value2));
9977 if(!exp->expType)
9978 {
9979 exp->expType = op1->type;
9980 if(op1->type)
9981 op1->type->refCount++;
9982 }
9983 return 1;
9984 }
9985
9986 static unsigned int UCharOr(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9987 {
9988 unsigned char value2 = op2->__anon1.uc;
9989
9990 exp->type = 2;
9991 exp->__anon1.__anon2.string = PrintUChar((unsigned char)(op1->__anon1.uc || value2));
9992 if(!exp->expType)
9993 {
9994 exp->expType = op1->type;
9995 if(op1->type)
9996 op1->type->refCount++;
9997 }
9998 return 1;
9999 }
10000
10001 static unsigned int FloatOr(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10002 {
10003 float value2 = op2->__anon1.f;
10004
10005 exp->type = 2;
10006 exp->__anon1.__anon2.string = PrintFloat((float)(op1->__anon1.f || value2));
10007 if(!exp->expType)
10008 {
10009 exp->expType = op1->type;
10010 if(op1->type)
10011 op1->type->refCount++;
10012 }
10013 return 1;
10014 }
10015
10016 static unsigned int DoubleOr(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10017 {
10018 double value2 = op2->__anon1.d;
10019
10020 exp->type = 2;
10021 exp->__anon1.__anon2.string = PrintDouble((double)(op1->__anon1.d || value2));
10022 if(!exp->expType)
10023 {
10024 exp->expType = op1->type;
10025 if(op1->type)
10026 op1->type->refCount++;
10027 }
10028 return 1;
10029 }
10030
10031 static unsigned int IntGrt(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10032 {
10033 int value2 = op2->__anon1.i;
10034
10035 exp->type = 2;
10036 exp->__anon1.__anon2.string = PrintInt((int)(op1->__anon1.i > value2));
10037 if(!exp->expType)
10038 {
10039 exp->expType = op1->type;
10040 if(op1->type)
10041 op1->type->refCount++;
10042 }
10043 return 1;
10044 }
10045
10046 static unsigned int UIntGrt(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10047 {
10048 unsigned int value2 = op2->__anon1.ui;
10049
10050 exp->type = 2;
10051 exp->__anon1.__anon2.string = PrintUInt((unsigned int)(op1->__anon1.ui > value2));
10052 if(!exp->expType)
10053 {
10054 exp->expType = op1->type;
10055 if(op1->type)
10056 op1->type->refCount++;
10057 }
10058 return 1;
10059 }
10060
10061 static unsigned int Int64Grt(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10062 {
10063 long long value2 = op2->__anon1.i64;
10064
10065 exp->type = 2;
10066 exp->__anon1.__anon2.string = PrintInt64((long long)(op1->__anon1.i64 > value2));
10067 if(!exp->expType)
10068 {
10069 exp->expType = op1->type;
10070 if(op1->type)
10071 op1->type->refCount++;
10072 }
10073 return 1;
10074 }
10075
10076 static unsigned int UInt64Grt(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10077 {
10078 uint64 value2 = op2->__anon1.ui64;
10079
10080 exp->type = 2;
10081 exp->__anon1.__anon2.string = PrintUInt64((uint64)(op1->__anon1.ui64 > value2));
10082 if(!exp->expType)
10083 {
10084 exp->expType = op1->type;
10085 if(op1->type)
10086 op1->type->refCount++;
10087 }
10088 return 1;
10089 }
10090
10091 static unsigned int ShortGrt(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10092 {
10093 short value2 = op2->__anon1.s;
10094
10095 exp->type = 2;
10096 exp->__anon1.__anon2.string = PrintShort((short)(op1->__anon1.s > value2));
10097 if(!exp->expType)
10098 {
10099 exp->expType = op1->type;
10100 if(op1->type)
10101 op1->type->refCount++;
10102 }
10103 return 1;
10104 }
10105
10106 static unsigned int UShortGrt(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10107 {
10108 unsigned short value2 = op2->__anon1.us;
10109
10110 exp->type = 2;
10111 exp->__anon1.__anon2.string = PrintUShort((unsigned short)(op1->__anon1.us > value2));
10112 if(!exp->expType)
10113 {
10114 exp->expType = op1->type;
10115 if(op1->type)
10116 op1->type->refCount++;
10117 }
10118 return 1;
10119 }
10120
10121 static unsigned int CharGrt(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10122 {
10123 char value2 = op2->__anon1.c;
10124
10125 exp->type = 2;
10126 exp->__anon1.__anon2.string = PrintChar((char)(op1->__anon1.c > value2));
10127 if(!exp->expType)
10128 {
10129 exp->expType = op1->type;
10130 if(op1->type)
10131 op1->type->refCount++;
10132 }
10133 return 1;
10134 }
10135
10136 static unsigned int UCharGrt(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10137 {
10138 unsigned char value2 = op2->__anon1.uc;
10139
10140 exp->type = 2;
10141 exp->__anon1.__anon2.string = PrintUChar((unsigned char)(op1->__anon1.uc > value2));
10142 if(!exp->expType)
10143 {
10144 exp->expType = op1->type;
10145 if(op1->type)
10146 op1->type->refCount++;
10147 }
10148 return 1;
10149 }
10150
10151 static unsigned int FloatGrt(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10152 {
10153 float value2 = op2->__anon1.f;
10154
10155 exp->type = 2;
10156 exp->__anon1.__anon2.string = PrintFloat((float)(op1->__anon1.f > value2));
10157 if(!exp->expType)
10158 {
10159 exp->expType = op1->type;
10160 if(op1->type)
10161 op1->type->refCount++;
10162 }
10163 return 1;
10164 }
10165
10166 static unsigned int DoubleGrt(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10167 {
10168 double value2 = op2->__anon1.d;
10169
10170 exp->type = 2;
10171 exp->__anon1.__anon2.string = PrintDouble((double)(op1->__anon1.d > value2));
10172 if(!exp->expType)
10173 {
10174 exp->expType = op1->type;
10175 if(op1->type)
10176 op1->type->refCount++;
10177 }
10178 return 1;
10179 }
10180
10181 static unsigned int IntSma(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10182 {
10183 int value2 = op2->__anon1.i;
10184
10185 exp->type = 2;
10186 exp->__anon1.__anon2.string = PrintInt((int)(op1->__anon1.i < value2));
10187 if(!exp->expType)
10188 {
10189 exp->expType = op1->type;
10190 if(op1->type)
10191 op1->type->refCount++;
10192 }
10193 return 1;
10194 }
10195
10196 static unsigned int UIntSma(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10197 {
10198 unsigned int value2 = op2->__anon1.ui;
10199
10200 exp->type = 2;
10201 exp->__anon1.__anon2.string = PrintUInt((unsigned int)(op1->__anon1.ui < value2));
10202 if(!exp->expType)
10203 {
10204 exp->expType = op1->type;
10205 if(op1->type)
10206 op1->type->refCount++;
10207 }
10208 return 1;
10209 }
10210
10211 static unsigned int Int64Sma(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10212 {
10213 long long value2 = op2->__anon1.i64;
10214
10215 exp->type = 2;
10216 exp->__anon1.__anon2.string = PrintInt64((long long)(op1->__anon1.i64 < value2));
10217 if(!exp->expType)
10218 {
10219 exp->expType = op1->type;
10220 if(op1->type)
10221 op1->type->refCount++;
10222 }
10223 return 1;
10224 }
10225
10226 static unsigned int UInt64Sma(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10227 {
10228 uint64 value2 = op2->__anon1.ui64;
10229
10230 exp->type = 2;
10231 exp->__anon1.__anon2.string = PrintUInt64((uint64)(op1->__anon1.ui64 < value2));
10232 if(!exp->expType)
10233 {
10234 exp->expType = op1->type;
10235 if(op1->type)
10236 op1->type->refCount++;
10237 }
10238 return 1;
10239 }
10240
10241 static unsigned int ShortSma(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10242 {
10243 short value2 = op2->__anon1.s;
10244
10245 exp->type = 2;
10246 exp->__anon1.__anon2.string = PrintShort((short)(op1->__anon1.s < value2));
10247 if(!exp->expType)
10248 {
10249 exp->expType = op1->type;
10250 if(op1->type)
10251 op1->type->refCount++;
10252 }
10253 return 1;
10254 }
10255
10256 static unsigned int UShortSma(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10257 {
10258 unsigned short value2 = op2->__anon1.us;
10259
10260 exp->type = 2;
10261 exp->__anon1.__anon2.string = PrintUShort((unsigned short)(op1->__anon1.us < value2));
10262 if(!exp->expType)
10263 {
10264 exp->expType = op1->type;
10265 if(op1->type)
10266 op1->type->refCount++;
10267 }
10268 return 1;
10269 }
10270
10271 static unsigned int CharSma(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10272 {
10273 char value2 = op2->__anon1.c;
10274
10275 exp->type = 2;
10276 exp->__anon1.__anon2.string = PrintChar((char)(op1->__anon1.c < value2));
10277 if(!exp->expType)
10278 {
10279 exp->expType = op1->type;
10280 if(op1->type)
10281 op1->type->refCount++;
10282 }
10283 return 1;
10284 }
10285
10286 static unsigned int UCharSma(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10287 {
10288 unsigned char value2 = op2->__anon1.uc;
10289
10290 exp->type = 2;
10291 exp->__anon1.__anon2.string = PrintUChar((unsigned char)(op1->__anon1.uc < value2));
10292 if(!exp->expType)
10293 {
10294 exp->expType = op1->type;
10295 if(op1->type)
10296 op1->type->refCount++;
10297 }
10298 return 1;
10299 }
10300
10301 static unsigned int FloatSma(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10302 {
10303 float value2 = op2->__anon1.f;
10304
10305 exp->type = 2;
10306 exp->__anon1.__anon2.string = PrintFloat((float)(op1->__anon1.f < value2));
10307 if(!exp->expType)
10308 {
10309 exp->expType = op1->type;
10310 if(op1->type)
10311 op1->type->refCount++;
10312 }
10313 return 1;
10314 }
10315
10316 static unsigned int DoubleSma(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10317 {
10318 double value2 = op2->__anon1.d;
10319
10320 exp->type = 2;
10321 exp->__anon1.__anon2.string = PrintDouble((double)(op1->__anon1.d < value2));
10322 if(!exp->expType)
10323 {
10324 exp->expType = op1->type;
10325 if(op1->type)
10326 op1->type->refCount++;
10327 }
10328 return 1;
10329 }
10330
10331 static unsigned int IntGrtEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10332 {
10333 int value2 = op2->__anon1.i;
10334
10335 exp->type = 2;
10336 exp->__anon1.__anon2.string = PrintInt((int)(op1->__anon1.i >= value2));
10337 if(!exp->expType)
10338 {
10339 exp->expType = op1->type;
10340 if(op1->type)
10341 op1->type->refCount++;
10342 }
10343 return 1;
10344 }
10345
10346 static unsigned int UIntGrtEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10347 {
10348 unsigned int value2 = op2->__anon1.ui;
10349
10350 exp->type = 2;
10351 exp->__anon1.__anon2.string = PrintUInt((unsigned int)(op1->__anon1.ui >= value2));
10352 if(!exp->expType)
10353 {
10354 exp->expType = op1->type;
10355 if(op1->type)
10356 op1->type->refCount++;
10357 }
10358 return 1;
10359 }
10360
10361 static unsigned int Int64GrtEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10362 {
10363 long long value2 = op2->__anon1.i64;
10364
10365 exp->type = 2;
10366 exp->__anon1.__anon2.string = PrintInt64((long long)(op1->__anon1.i64 >= value2));
10367 if(!exp->expType)
10368 {
10369 exp->expType = op1->type;
10370 if(op1->type)
10371 op1->type->refCount++;
10372 }
10373 return 1;
10374 }
10375
10376 static unsigned int UInt64GrtEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10377 {
10378 uint64 value2 = op2->__anon1.ui64;
10379
10380 exp->type = 2;
10381 exp->__anon1.__anon2.string = PrintUInt64((uint64)(op1->__anon1.ui64 >= value2));
10382 if(!exp->expType)
10383 {
10384 exp->expType = op1->type;
10385 if(op1->type)
10386 op1->type->refCount++;
10387 }
10388 return 1;
10389 }
10390
10391 static unsigned int ShortGrtEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10392 {
10393 short value2 = op2->__anon1.s;
10394
10395 exp->type = 2;
10396 exp->__anon1.__anon2.string = PrintShort((short)(op1->__anon1.s >= value2));
10397 if(!exp->expType)
10398 {
10399 exp->expType = op1->type;
10400 if(op1->type)
10401 op1->type->refCount++;
10402 }
10403 return 1;
10404 }
10405
10406 static unsigned int UShortGrtEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10407 {
10408 unsigned short value2 = op2->__anon1.us;
10409
10410 exp->type = 2;
10411 exp->__anon1.__anon2.string = PrintUShort((unsigned short)(op1->__anon1.us >= value2));
10412 if(!exp->expType)
10413 {
10414 exp->expType = op1->type;
10415 if(op1->type)
10416 op1->type->refCount++;
10417 }
10418 return 1;
10419 }
10420
10421 static unsigned int CharGrtEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10422 {
10423 char value2 = op2->__anon1.c;
10424
10425 exp->type = 2;
10426 exp->__anon1.__anon2.string = PrintChar((char)(op1->__anon1.c >= value2));
10427 if(!exp->expType)
10428 {
10429 exp->expType = op1->type;
10430 if(op1->type)
10431 op1->type->refCount++;
10432 }
10433 return 1;
10434 }
10435
10436 static unsigned int UCharGrtEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10437 {
10438 unsigned char value2 = op2->__anon1.uc;
10439
10440 exp->type = 2;
10441 exp->__anon1.__anon2.string = PrintUChar((unsigned char)(op1->__anon1.uc >= value2));
10442 if(!exp->expType)
10443 {
10444 exp->expType = op1->type;
10445 if(op1->type)
10446 op1->type->refCount++;
10447 }
10448 return 1;
10449 }
10450
10451 static unsigned int FloatGrtEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10452 {
10453 float value2 = op2->__anon1.f;
10454
10455 exp->type = 2;
10456 exp->__anon1.__anon2.string = PrintFloat((float)(op1->__anon1.f >= value2));
10457 if(!exp->expType)
10458 {
10459 exp->expType = op1->type;
10460 if(op1->type)
10461 op1->type->refCount++;
10462 }
10463 return 1;
10464 }
10465
10466 static unsigned int DoubleGrtEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10467 {
10468 double value2 = op2->__anon1.d;
10469
10470 exp->type = 2;
10471 exp->__anon1.__anon2.string = PrintDouble((double)(op1->__anon1.d >= value2));
10472 if(!exp->expType)
10473 {
10474 exp->expType = op1->type;
10475 if(op1->type)
10476 op1->type->refCount++;
10477 }
10478 return 1;
10479 }
10480
10481 static unsigned int IntSmaEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10482 {
10483 int value2 = op2->__anon1.i;
10484
10485 exp->type = 2;
10486 exp->__anon1.__anon2.string = PrintInt((int)(op1->__anon1.i <= value2));
10487 if(!exp->expType)
10488 {
10489 exp->expType = op1->type;
10490 if(op1->type)
10491 op1->type->refCount++;
10492 }
10493 return 1;
10494 }
10495
10496 static unsigned int UIntSmaEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10497 {
10498 unsigned int value2 = op2->__anon1.ui;
10499
10500 exp->type = 2;
10501 exp->__anon1.__anon2.string = PrintUInt((unsigned int)(op1->__anon1.ui <= value2));
10502 if(!exp->expType)
10503 {
10504 exp->expType = op1->type;
10505 if(op1->type)
10506 op1->type->refCount++;
10507 }
10508 return 1;
10509 }
10510
10511 static unsigned int Int64SmaEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10512 {
10513 long long value2 = op2->__anon1.i64;
10514
10515 exp->type = 2;
10516 exp->__anon1.__anon2.string = PrintInt64((long long)(op1->__anon1.i64 <= value2));
10517 if(!exp->expType)
10518 {
10519 exp->expType = op1->type;
10520 if(op1->type)
10521 op1->type->refCount++;
10522 }
10523 return 1;
10524 }
10525
10526 static unsigned int UInt64SmaEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10527 {
10528 uint64 value2 = op2->__anon1.ui64;
10529
10530 exp->type = 2;
10531 exp->__anon1.__anon2.string = PrintUInt64((uint64)(op1->__anon1.ui64 <= value2));
10532 if(!exp->expType)
10533 {
10534 exp->expType = op1->type;
10535 if(op1->type)
10536 op1->type->refCount++;
10537 }
10538 return 1;
10539 }
10540
10541 static unsigned int ShortSmaEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10542 {
10543 short value2 = op2->__anon1.s;
10544
10545 exp->type = 2;
10546 exp->__anon1.__anon2.string = PrintShort((short)(op1->__anon1.s <= value2));
10547 if(!exp->expType)
10548 {
10549 exp->expType = op1->type;
10550 if(op1->type)
10551 op1->type->refCount++;
10552 }
10553 return 1;
10554 }
10555
10556 static unsigned int UShortSmaEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10557 {
10558 unsigned short value2 = op2->__anon1.us;
10559
10560 exp->type = 2;
10561 exp->__anon1.__anon2.string = PrintUShort((unsigned short)(op1->__anon1.us <= value2));
10562 if(!exp->expType)
10563 {
10564 exp->expType = op1->type;
10565 if(op1->type)
10566 op1->type->refCount++;
10567 }
10568 return 1;
10569 }
10570
10571 static unsigned int CharSmaEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10572 {
10573 char value2 = op2->__anon1.c;
10574
10575 exp->type = 2;
10576 exp->__anon1.__anon2.string = PrintChar((char)(op1->__anon1.c <= value2));
10577 if(!exp->expType)
10578 {
10579 exp->expType = op1->type;
10580 if(op1->type)
10581 op1->type->refCount++;
10582 }
10583 return 1;
10584 }
10585
10586 static unsigned int UCharSmaEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10587 {
10588 unsigned char value2 = op2->__anon1.uc;
10589
10590 exp->type = 2;
10591 exp->__anon1.__anon2.string = PrintUChar((unsigned char)(op1->__anon1.uc <= value2));
10592 if(!exp->expType)
10593 {
10594 exp->expType = op1->type;
10595 if(op1->type)
10596 op1->type->refCount++;
10597 }
10598 return 1;
10599 }
10600
10601 static unsigned int FloatSmaEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10602 {
10603 float value2 = op2->__anon1.f;
10604
10605 exp->type = 2;
10606 exp->__anon1.__anon2.string = PrintFloat((float)(op1->__anon1.f <= value2));
10607 if(!exp->expType)
10608 {
10609 exp->expType = op1->type;
10610 if(op1->type)
10611 op1->type->refCount++;
10612 }
10613 return 1;
10614 }
10615
10616 static unsigned int DoubleSmaEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10617 {
10618 double value2 = op2->__anon1.d;
10619
10620 exp->type = 2;
10621 exp->__anon1.__anon2.string = PrintDouble((double)(op1->__anon1.d <= value2));
10622 if(!exp->expType)
10623 {
10624 exp->expType = op1->type;
10625 if(op1->type)
10626 op1->type->refCount++;
10627 }
10628 return 1;
10629 }
10630
10631 static unsigned int IntCond(struct Expression * exp, struct Operand * op1, struct Operand * op2, struct Operand * op3)
10632 {
10633 exp->type = 2;
10634 exp->__anon1.__anon2.string = PrintInt(op1->__anon1.i ? op2->__anon1.i : op3->__anon1.i);
10635 if(!exp->expType)
10636 {
10637 exp->expType = op1->type;
10638 if(op1->type)
10639 op1->type->refCount++;
10640 }
10641 return 1;
10642 }
10643
10644 static unsigned int UIntCond(struct Expression * exp, struct Operand * op1, struct Operand * op2, struct Operand * op3)
10645 {
10646 exp->type = 2;
10647 exp->__anon1.__anon2.string = PrintUInt(op1->__anon1.ui ? op2->__anon1.ui : op3->__anon1.ui);
10648 if(!exp->expType)
10649 {
10650 exp->expType = op1->type;
10651 if(op1->type)
10652 op1->type->refCount++;
10653 }
10654 return 1;
10655 }
10656
10657 static unsigned int Int64Cond(struct Expression * exp, struct Operand * op1, struct Operand * op2, struct Operand * op3)
10658 {
10659 exp->type = 2;
10660 exp->__anon1.__anon2.string = PrintInt64(op1->__anon1.i64 ? op2->__anon1.i64 : op3->__anon1.i64);
10661 if(!exp->expType)
10662 {
10663 exp->expType = op1->type;
10664 if(op1->type)
10665 op1->type->refCount++;
10666 }
10667 return 1;
10668 }
10669
10670 static unsigned int UInt64Cond(struct Expression * exp, struct Operand * op1, struct Operand * op2, struct Operand * op3)
10671 {
10672 exp->type = 2;
10673 exp->__anon1.__anon2.string = PrintUInt64(op1->__anon1.ui64 ? op2->__anon1.ui64 : op3->__anon1.ui64);
10674 if(!exp->expType)
10675 {
10676 exp->expType = op1->type;
10677 if(op1->type)
10678 op1->type->refCount++;
10679 }
10680 return 1;
10681 }
10682
10683 static unsigned int ShortCond(struct Expression * exp, struct Operand * op1, struct Operand * op2, struct Operand * op3)
10684 {
10685 exp->type = 2;
10686 exp->__anon1.__anon2.string = PrintShort(op1->__anon1.s ? op2->__anon1.s : op3->__anon1.s);
10687 if(!exp->expType)
10688 {
10689 exp->expType = op1->type;
10690 if(op1->type)
10691 op1->type->refCount++;
10692 }
10693 return 1;
10694 }
10695
10696 static unsigned int UShortCond(struct Expression * exp, struct Operand * op1, struct Operand * op2, struct Operand * op3)
10697 {
10698 exp->type = 2;
10699 exp->__anon1.__anon2.string = PrintUShort(op1->__anon1.us ? op2->__anon1.us : op3->__anon1.us);
10700 if(!exp->expType)
10701 {
10702 exp->expType = op1->type;
10703 if(op1->type)
10704 op1->type->refCount++;
10705 }
10706 return 1;
10707 }
10708
10709 static unsigned int CharCond(struct Expression * exp, struct Operand * op1, struct Operand * op2, struct Operand * op3)
10710 {
10711 exp->type = 2;
10712 exp->__anon1.__anon2.string = PrintChar(op1->__anon1.c ? op2->__anon1.c : op3->__anon1.c);
10713 if(!exp->expType)
10714 {
10715 exp->expType = op1->type;
10716 if(op1->type)
10717 op1->type->refCount++;
10718 }
10719 return 1;
10720 }
10721
10722 static unsigned int UCharCond(struct Expression * exp, struct Operand * op1, struct Operand * op2, struct Operand * op3)
10723 {
10724 exp->type = 2;
10725 exp->__anon1.__anon2.string = PrintUChar(op1->__anon1.uc ? op2->__anon1.uc : op3->__anon1.uc);
10726 if(!exp->expType)
10727 {
10728 exp->expType = op1->type;
10729 if(op1->type)
10730 op1->type->refCount++;
10731 }
10732 return 1;
10733 }
10734
10735 struct OpTable intOps =
10736 {
10737 (void *)(IntAdd), (void *)(IntSub), (void *)(IntMul), (void *)(IntDiv), (void *)(IntMod), (void *)(IntNeg), (void *)(IntInc), (void *)(IntDec), (void *)(IntAsign), (void *)(IntAddAsign), (void *)(IntSubAsign), (void *)(IntMulAsign), (void *)(IntDivAsign), (void *)(IntModAsign), (void *)(IntBitAnd), (void *)(IntBitOr), (void *)(IntBitXor), (void *)(IntLShift), (void *)(IntRShift), (void *)(IntBitNot), (void *)(IntAndAsign), (void *)(IntOrAsign), (void *)(IntXorAsign), (void *)(IntLShiftAsign), (void *)(IntRShiftAsign), (void *)(IntNot), (void *)(IntEqu), (void *)(IntNqu), (void *)(IntAnd), (void *)(IntOr), (void *)(IntGrt), (void *)(IntSma), (void *)(IntGrtEqu), (void *)(IntSmaEqu), (void *)(IntCond)
10738 };
10739
10740 struct OpTable uintOps =
10741 {
10742 (void *)(UIntAdd), (void *)(UIntSub), (void *)(UIntMul), (void *)(UIntDiv), (void *)(UIntMod), (void *)(UIntNeg), (void *)(UIntInc), (void *)(UIntDec), (void *)(UIntAsign), (void *)(UIntAddAsign), (void *)(UIntSubAsign), (void *)(UIntMulAsign), (void *)(UIntDivAsign), (void *)(UIntModAsign), (void *)(UIntBitAnd), (void *)(UIntBitOr), (void *)(UIntBitXor), (void *)(UIntLShift), (void *)(UIntRShift), (void *)(UIntBitNot), (void *)(UIntAndAsign), (void *)(UIntOrAsign), (void *)(UIntXorAsign), (void *)(UIntLShiftAsign), (void *)(UIntRShiftAsign), (void *)(UIntNot), (void *)(UIntEqu), (void *)(UIntNqu), (void *)(UIntAnd), (void *)(UIntOr), (void *)(UIntGrt), (void *)(UIntSma), (void *)(UIntGrtEqu), (void *)(UIntSmaEqu), (void *)(UIntCond)
10743 };
10744
10745 struct OpTable int64Ops =
10746 {
10747 (void *)(Int64Add), (void *)(Int64Sub), (void *)(Int64Mul), (void *)(Int64Div), (void *)(Int64Mod), (void *)(Int64Neg), (void *)(Int64Inc), (void *)(Int64Dec), (void *)(Int64Asign), (void *)(Int64AddAsign), (void *)(Int64SubAsign), (void *)(Int64MulAsign), (void *)(Int64DivAsign), (void *)(Int64ModAsign), (void *)(Int64BitAnd), (void *)(Int64BitOr), (void *)(Int64BitXor), (void *)(Int64LShift), (void *)(Int64RShift), (void *)(Int64BitNot), (void *)(Int64AndAsign), (void *)(Int64OrAsign), (void *)(Int64XorAsign), (void *)(Int64LShiftAsign), (void *)(Int64RShiftAsign), (void *)(Int64Not), (void *)(Int64Equ), (void *)(Int64Nqu), (void *)(Int64And), (void *)(Int64Or), (void *)(Int64Grt), (void *)(Int64Sma), (void *)(Int64GrtEqu), (void *)(Int64SmaEqu), (void *)(Int64Cond)
10748 };
10749
10750 struct OpTable uint64Ops =
10751 {
10752 (void *)(UInt64Add), (void *)(UInt64Sub), (void *)(UInt64Mul), (void *)(UInt64Div), (void *)(UInt64Mod), (void *)(UInt64Neg), (void *)(UInt64Inc), (void *)(UInt64Dec), (void *)(UInt64Asign), (void *)(UInt64AddAsign), (void *)(UInt64SubAsign), (void *)(UInt64MulAsign), (void *)(UInt64DivAsign), (void *)(UInt64ModAsign), (void *)(UInt64BitAnd), (void *)(UInt64BitOr), (void *)(UInt64BitXor), (void *)(UInt64LShift), (void *)(UInt64RShift), (void *)(UInt64BitNot), (void *)(UInt64AndAsign), (void *)(UInt64OrAsign), (void *)(UInt64XorAsign), (void *)(UInt64LShiftAsign), (void *)(UInt64RShiftAsign), (void *)(UInt64Not), (void *)(UInt64Equ), (void *)(UInt64Nqu), (void *)(UInt64And), (void *)(UInt64Or), (void *)(UInt64Grt), (void *)(UInt64Sma), (void *)(UInt64GrtEqu), (void *)(UInt64SmaEqu), (void *)(UInt64Cond)
10753 };
10754
10755 struct OpTable shortOps =
10756 {
10757 (void *)(ShortAdd), (void *)(ShortSub), (void *)(ShortMul), (void *)(ShortDiv), (void *)(ShortMod), (void *)(ShortNeg), (void *)(ShortInc), (void *)(ShortDec), (void *)(ShortAsign), (void *)(ShortAddAsign), (void *)(ShortSubAsign), (void *)(ShortMulAsign), (void *)(ShortDivAsign), (void *)(ShortModAsign), (void *)(ShortBitAnd), (void *)(ShortBitOr), (void *)(ShortBitXor), (void *)(ShortLShift), (void *)(ShortRShift), (void *)(ShortBitNot), (void *)(ShortAndAsign), (void *)(ShortOrAsign), (void *)(ShortXorAsign), (void *)(ShortLShiftAsign), (void *)(ShortRShiftAsign), (void *)(ShortNot), (void *)(ShortEqu), (void *)(ShortNqu), (void *)(ShortAnd), (void *)(ShortOr), (void *)(ShortGrt), (void *)(ShortSma), (void *)(ShortGrtEqu), (void *)(ShortSmaEqu), (void *)(ShortCond)
10758 };
10759
10760 struct OpTable ushortOps =
10761 {
10762 (void *)(UShortAdd), (void *)(UShortSub), (void *)(UShortMul), (void *)(UShortDiv), (void *)(UShortMod), (void *)(UShortNeg), (void *)(UShortInc), (void *)(UShortDec), (void *)(UShortAsign), (void *)(UShortAddAsign), (void *)(UShortSubAsign), (void *)(UShortMulAsign), (void *)(UShortDivAsign), (void *)(UShortModAsign), (void *)(UShortBitAnd), (void *)(UShortBitOr), (void *)(UShortBitXor), (void *)(UShortLShift), (void *)(UShortRShift), (void *)(UShortBitNot), (void *)(UShortAndAsign), (void *)(UShortOrAsign), (void *)(UShortXorAsign), (void *)(UShortLShiftAsign), (void *)(UShortRShiftAsign), (void *)(UShortNot), (void *)(UShortEqu), (void *)(UShortNqu), (void *)(UShortAnd), (void *)(UShortOr), (void *)(UShortGrt), (void *)(UShortSma), (void *)(UShortGrtEqu), (void *)(UShortSmaEqu), (void *)(UShortCond)
10763 };
10764
10765 struct OpTable floatOps =
10766 {
10767 (void *)(FloatAdd), (void *)(FloatSub), (void *)(FloatMul), (void *)(FloatDiv), (((void *)0)), (void *)(FloatNeg), (void *)(FloatInc), (void *)(FloatDec), (void *)(FloatAsign), (void *)(FloatAddAsign), (void *)(FloatSubAsign), (void *)(FloatMulAsign), (void *)(FloatDivAsign), (((void *)0)), (((void *)0)), (((void *)0)), (((void *)0)), (((void *)0)), (((void *)0)), (((void *)0)), (((void *)0)), (((void *)0)), (((void *)0)), (((void *)0)), (((void *)0)), (((void *)0)), (void *)(FloatEqu), (void *)(FloatNqu), (void *)(FloatAnd), (void *)(FloatOr), (void *)(FloatGrt), (void *)(FloatSma), (void *)(FloatGrtEqu), (void *)(FloatSmaEqu)
10768 };
10769
10770 struct OpTable doubleOps =
10771 {
10772 (void *)(DoubleAdd), (void *)(DoubleSub), (void *)(DoubleMul), (void *)(DoubleDiv), (((void *)0)), (void *)(DoubleNeg), (void *)(DoubleInc), (void *)(DoubleDec), (void *)(DoubleAsign), (void *)(DoubleAddAsign), (void *)(DoubleSubAsign), (void *)(DoubleMulAsign), (void *)(DoubleDivAsign), (((void *)0)), (((void *)0)), (((void *)0)), (((void *)0)), (((void *)0)), (((void *)0)), (((void *)0)), (((void *)0)), (((void *)0)), (((void *)0)), (((void *)0)), (((void *)0)), (((void *)0)), (void *)(DoubleEqu), (void *)(DoubleNqu), (void *)(DoubleAnd), (void *)(DoubleOr), (void *)(DoubleGrt), (void *)(DoubleSma), (void *)(DoubleGrtEqu), (void *)(DoubleSmaEqu)
10773 };
10774
10775 struct OpTable charOps =
10776 {
10777 (void *)(CharAdd), (void *)(CharSub), (void *)(CharMul), (void *)(CharDiv), (void *)(CharMod), (void *)(CharNeg), (void *)(CharInc), (void *)(CharDec), (void *)(CharAsign), (void *)(CharAddAsign), (void *)(CharSubAsign), (void *)(CharMulAsign), (void *)(CharDivAsign), (void *)(CharModAsign), (void *)(CharBitAnd), (void *)(CharBitOr), (void *)(CharBitXor), (void *)(CharLShift), (void *)(CharRShift), (void *)(CharBitNot), (void *)(CharAndAsign), (void *)(CharOrAsign), (void *)(CharXorAsign), (void *)(CharLShiftAsign), (void *)(CharRShiftAsign), (void *)(CharNot), (void *)(CharEqu), (void *)(CharNqu), (void *)(CharAnd), (void *)(CharOr), (void *)(CharGrt), (void *)(CharSma), (void *)(CharGrtEqu), (void *)(CharSmaEqu), (void *)(CharCond)
10778 };
10779
10780 struct OpTable ucharOps =
10781 {
10782 (void *)(UCharAdd), (void *)(UCharSub), (void *)(UCharMul), (void *)(UCharDiv), (void *)(UCharMod), (void *)(UCharNeg), (void *)(UCharInc), (void *)(UCharDec), (void *)(UCharAsign), (void *)(UCharAddAsign), (void *)(UCharSubAsign), (void *)(UCharMulAsign), (void *)(UCharDivAsign), (void *)(UCharModAsign), (void *)(UCharBitAnd), (void *)(UCharBitOr), (void *)(UCharBitXor), (void *)(UCharLShift), (void *)(UCharRShift), (void *)(UCharBitNot), (void *)(UCharAndAsign), (void *)(UCharOrAsign), (void *)(UCharXorAsign), (void *)(UCharLShiftAsign), (void *)(UCharRShiftAsign), (void *)(UCharNot), (void *)(UCharEqu), (void *)(UCharNqu), (void *)(UCharAnd), (void *)(UCharOr), (void *)(UCharGrt), (void *)(UCharSma), (void *)(UCharGrtEqu), (void *)(UCharSmaEqu), (void *)(UCharCond)
10783 };
10784
10785 void ReadString(char * output, char * string)
10786 {
10787 int len = strlen(string);
10788 int c, d = 0;
10789 unsigned int quoted = 0, escaped = 0;
10790
10791 for(c = 0; c < len; c++)
10792 {
10793 char ch = string[c];
10794
10795 if(escaped)
10796 {
10797 switch(ch)
10798 {
10799 case 'n':
10800 output[d] = '\n';
10801 break;
10802 case 't':
10803 output[d] = '\t';
10804 break;
10805 case 'a':
10806 output[d] = '\a';
10807 break;
10808 case 'b':
10809 output[d] = '\b';
10810 break;
10811 case 'f':
10812 output[d] = '\f';
10813 break;
10814 case 'r':
10815 output[d] = '\r';
10816 break;
10817 case 'v':
10818 output[d] = '\v';
10819 break;
10820 case '\\':
10821 output[d] = '\\';
10822 break;
10823 case '\"':
10824 output[d] = '\"';
10825 break;
10826 case '\'':
10827 output[d] = '\'';
10828 break;
10829 default:
10830 output[d] = ch;
10831 }
10832 d++;
10833 escaped = 0;
10834 }
10835 else
10836 {
10837 if(ch == '\"')
10838 quoted ^= 1;
10839 else if(quoted)
10840 {
10841 if(ch == '\\')
10842 escaped = 1;
10843 else
10844 output[d++] = ch;
10845 }
10846 }
10847 }
10848 output[d] = '\0';
10849 }
10850
10851 int UnescapeString(char * d, char * s, int len)
10852 {
10853 int j = 0, k = 0;
10854 char ch;
10855
10856 while(j < len && (ch = s[j]))
10857 {
10858 switch(ch)
10859 {
10860 case '\\':
10861 switch((ch = s[++j]))
10862 {
10863 case 'n':
10864 d[k] = '\n';
10865 break;
10866 case 't':
10867 d[k] = '\t';
10868 break;
10869 case 'a':
10870 d[k] = '\a';
10871 break;
10872 case 'b':
10873 d[k] = '\b';
10874 break;
10875 case 'f':
10876 d[k] = '\f';
10877 break;
10878 case 'r':
10879 d[k] = '\r';
10880 break;
10881 case 'v':
10882 d[k] = '\v';
10883 break;
10884 case '\\':
10885 d[k] = '\\';
10886 break;
10887 case '\"':
10888 d[k] = '\"';
10889 break;
10890 case '\'':
10891 d[k] = '\'';
10892 break;
10893 default:
10894 d[k] = '\\';
10895 d[k] = ch;
10896 }
10897 break;
10898 default:
10899 d[k] = ch;
10900 }
10901 j++, k++;
10902 }
10903 d[k] = '\0';
10904 return k;
10905 }
10906
10907 char * OffsetEscapedString(char * s, int len, int offset)
10908 {
10909 char ch;
10910 int j = 0, k = 0;
10911
10912 while(j < len && k < offset && (ch = s[j]))
10913 {
10914 if(ch == '\\')
10915 ++j;
10916 j++, k++;
10917 }
10918 return (k == offset) ? s + j : (((void *)0));
10919 }
10920
10921 extern long long __ecereNameSpace__ecere__com___strtoi64(const char *  string, const char * *  endString, int base);
10922
10923 extern uint64 __ecereNameSpace__ecere__com___strtoui64(const char *  string, const char * *  endString, int base);
10924
10925 extern double strtod(const char * , char * * );
10926
10927 extern float (* __ecereMethod_float_inf)(void);
10928
10929 extern float (* __ecereMethod_float_nan)(void);
10930
10931 extern double (* __ecereMethod_double_inf)(void);
10932
10933 extern double (* __ecereMethod_double_nan)(void);
10934
10935 struct Operand GetOperand(struct Expression * exp)
10936 {
10937 struct Operand op =
10938 {
10939 0, 0, 0,
10940 .__anon1 = {
10941 .c = 0
10942 },
10943 {
10944 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
10945 }
10946 };
10947 struct Type * type = exp->expType;
10948
10949 if(type)
10950 {
10951 while(type->kind == 8 && type->__anon1._class->__anon1.registered && (type->__anon1._class->__anon1.registered->type == 2 || type->__anon1._class->__anon1.registered->type == 3 || type->__anon1._class->__anon1.registered->type == 4))
10952 {
10953 if(!type->__anon1._class->__anon1.registered->dataType)
10954 type->__anon1._class->__anon1.registered->dataType = ProcessTypeString(type->__anon1._class->__anon1.registered->dataTypeString, 0);
10955 type = type->__anon1._class->__anon1.registered->dataType;
10956 }
10957 if(exp->type == 3 && op.kind == 13)
10958 {
10959 op.__anon1.ui64 = (uint64)exp->__anon1.__anon2.string;
10960 op.kind = 13;
10961 op.ops = uint64Ops;
10962 }
10963 else if(exp->isConstant && exp->type == 2)
10964 {
10965 op.kind = type->kind;
10966 op.type = type;
10967 switch(op.kind)
10968 {
10969 case 24:
10970 case 1:
10971 {
10972 if(exp->__anon1.__anon1.constant[0] == '\'')
10973 {
10974 op.__anon1.c = exp->__anon1.__anon1.constant[1];
10975 op.ops = charOps;
10976 }
10977 else if(type->isSigned)
10978 {
10979 op.__anon1.c = (char)strtol(exp->__anon1.__anon1.constant, (((void *)0)), 0);
10980 op.ops = charOps;
10981 }
10982 else
10983 {
10984 op.__anon1.uc = (unsigned char)strtoul(exp->__anon1.__anon1.constant, (((void *)0)), 0);
10985 op.ops = ucharOps;
10986 }
10987 break;
10988 }
10989 case 2:
10990 if(type->isSigned)
10991 {
10992 op.__anon1.s = (short)strtol(exp->__anon1.__anon1.constant, (((void *)0)), 0);
10993 op.ops = shortOps;
10994 }
10995 else
10996 {
10997 op.__anon1.us = (unsigned short)strtoul(exp->__anon1.__anon1.constant, (((void *)0)), 0);
10998 op.ops = ushortOps;
10999 }
11000 break;
11001 case 3:
11002 case 5:
11003 if(type->isSigned)
11004 {
11005 op.__anon1.i = strtol(exp->__anon1.__anon1.constant, (((void *)0)), 0);
11006 op.ops = intOps;
11007 }
11008 else
11009 {
11010 op.__anon1.ui = strtoul(exp->__anon1.__anon1.constant, (((void *)0)), 0);
11011 op.ops = uintOps;
11012 }
11013 op.kind = 3;
11014 break;
11015 case 4:
11016 if(type->isSigned)
11017 {
11018 op.__anon1.i64 = __ecereNameSpace__ecere__com___strtoi64(exp->__anon1.__anon1.constant, (((void *)0)), 0);
11019 op.ops = int64Ops;
11020 }
11021 else
11022 {
11023 op.__anon1.ui64 = __ecereNameSpace__ecere__com___strtoui64(exp->__anon1.__anon1.constant, (((void *)0)), 0);
11024 op.ops = uint64Ops;
11025 }
11026 op.kind = 4;
11027 break;
11028 case 22:
11029 if(type->isSigned)
11030 {
11031 op.__anon1.i64 = __ecereNameSpace__ecere__com___strtoi64(exp->__anon1.__anon1.constant, (((void *)0)), 0);
11032 op.ops = int64Ops;
11033 }
11034 else
11035 {
11036 op.__anon1.ui64 = __ecereNameSpace__ecere__com___strtoui64(exp->__anon1.__anon1.constant, (((void *)0)), 0);
11037 op.ops = uint64Ops;
11038 }
11039 op.kind = 4;
11040 break;
11041 case 23:
11042 if(type->isSigned)
11043 {
11044 op.__anon1.i64 = __ecereNameSpace__ecere__com___strtoi64(exp->__anon1.__anon1.constant, (((void *)0)), 0);
11045 op.ops = int64Ops;
11046 }
11047 else
11048 {
11049 op.__anon1.ui64 = __ecereNameSpace__ecere__com___strtoui64(exp->__anon1.__anon1.constant, (((void *)0)), 0);
11050 op.ops = uint64Ops;
11051 }
11052 op.kind = 4;
11053 break;
11054 case 6:
11055 if(!strcmp(exp->__anon1.__anon1.constant, "inf"))
11056 op.__anon1.f = __ecereMethod_float_inf();
11057 else if(!strcmp(exp->__anon1.__anon1.constant, "-inf"))
11058 op.__anon1.f = -__ecereMethod_float_inf();
11059 else if(!strcmp(exp->__anon1.__anon1.constant, "nan"))
11060 op.__anon1.f = __ecereMethod_float_nan();
11061 else if(!strcmp(exp->__anon1.__anon1.constant, "-nan"))
11062 op.__anon1.f = -__ecereMethod_float_nan();
11063 else
11064 op.__anon1.f = (float)strtod(exp->__anon1.__anon1.constant, (((void *)0)));
11065 op.ops = floatOps;
11066 break;
11067 case 7:
11068 if(!strcmp(exp->__anon1.__anon1.constant, "inf"))
11069 op.__anon1.d = __ecereMethod_double_inf();
11070 else if(!strcmp(exp->__anon1.__anon1.constant, "-inf"))
11071 op.__anon1.d = -__ecereMethod_double_inf();
11072 else if(!strcmp(exp->__anon1.__anon1.constant, "nan"))
11073 op.__anon1.d = __ecereMethod_double_nan();
11074 else if(!strcmp(exp->__anon1.__anon1.constant, "-nan"))
11075 op.__anon1.d = -__ecereMethod_double_nan();
11076 else
11077 op.__anon1.d = (double)strtod(exp->__anon1.__anon1.constant, (((void *)0)));
11078 op.ops = doubleOps;
11079 break;
11080 case 12:
11081 case 13:
11082 case 8:
11083 op.__anon1.ui64 = __ecereNameSpace__ecere__com___strtoui64(exp->__anon1.__anon1.constant, (((void *)0)), 0);
11084 op.kind = 13;
11085 op.ops = uint64Ops;
11086 break;
11087 }
11088 }
11089 }
11090 return op;
11091 }
11092
11093 static long long GetEnumValue(struct __ecereNameSpace__ecere__com__Class * _class, void * ptr)
11094 {
11095 long long v = 0;
11096
11097 switch(_class->typeSize)
11098 {
11099 case 8:
11100 if(!strcmp(_class->dataTypeString, "uint64"))
11101 v = (long long)*(uint64 *)ptr;
11102 else
11103 v = *(long long *)ptr;
11104 break;
11105 case 4:
11106 if(!strcmp(_class->dataTypeString, "uint"))
11107 v = (long long)*(unsigned int *)ptr;
11108 else
11109 v = (long long)*(int *)ptr;
11110 break;
11111 case 2:
11112 if(!strcmp(_class->dataTypeString, "uint16"))
11113 v = (long long)*(unsigned short *)ptr;
11114 else
11115 v = (long long)*(short *)ptr;
11116 break;
11117 case 1:
11118 if(!strcmp(_class->dataTypeString, "byte"))
11119 v = (long long)*(unsigned char *)ptr;
11120 else
11121 v = (long long)*(char *)ptr;
11122 break;
11123 }
11124 return v;
11125 }
11126
11127 int __ecereVMethodID_class_OnGetString;
11128
11129 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_int;
11130
11131 static __attribute__((unused)) void UnusedFunction()
11132 {
11133 int a;
11134
11135 ((const char *  (*)(struct __ecereNameSpace__ecere__com__Class *, const void *, char *  tempString, void *  fieldData, unsigned int *  needClass))__ecereClass_int->_vTbl[__ecereVMethodID_class_OnGetString])(__ecereClass_int, (void *)&a, 0, 0, 0);
11136 }
11137
11138 extern int __ecereVMethodID_class_OnGetString;
11139
11140 static void PopulateInstanceProcessMember(struct Instantiation * inst, struct __ecereNameSpace__ecere__sys__OldList * memberList, struct __ecereNameSpace__ecere__com__DataMember * parentDataMember, unsigned int offset)
11141 {
11142 struct __ecereNameSpace__ecere__com__DataMember * dataMember;
11143
11144 for(dataMember = parentDataMember->members.first; dataMember; dataMember = dataMember->next)
11145 {
11146 if(!dataMember->name && (dataMember->type == 2 || dataMember->type == 1))
11147 PopulateInstanceProcessMember(inst, memberList, dataMember, offset + dataMember->offset);
11148 else
11149 {
11150 struct Expression * exp = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Expression);
11151 struct MemberInit * member = MkMemberInit(MkListOne(MkIdentifier(dataMember->name)), MkInitializerAssignment(exp));
11152 struct Type * type;
11153 void * ptr = inst->data + dataMember->offset + offset;
11154 char * result = (((void *)0));
11155
11156 exp->loc = member->loc = inst->loc;
11157 ((struct Identifier *)(*member->identifiers).first)->loc = inst->loc;
11158 if(!dataMember->dataType)
11159 dataMember->dataType = ProcessTypeString(dataMember->dataTypeString, 0);
11160 type = dataMember->dataType;
11161 if(type->kind == 8)
11162 {
11163 struct __ecereNameSpace__ecere__com__Class * _class = type->__anon1._class->__anon1.registered;
11164
11165 if(_class->type == 4)
11166 {
11167 struct __ecereNameSpace__ecere__com__Class * enumClass = __ecereNameSpace__ecere__com__eSystem_FindClass(privateModule, "enum");
11168
11169 if(enumClass)
11170 {
11171 struct __ecereNameSpace__ecere__com__EnumClassData * e = (_class ? ((void *)(((char *)_class->data) + enumClass->offsetClass)) : (((void *)0)));
11172 struct __ecereNameSpace__ecere__sys__NamedLink64 * item;
11173
11174 for(item = e->values.first; item; item = item->next)
11175 {
11176 if(item->data == GetEnumValue(_class, ptr))
11177 {
11178 result = item->name;
11179 break;
11180 }
11181 }
11182 if(result)
11183 {
11184 exp->__anon1.__anon1.identifier = MkIdentifier(result);
11185 exp->type = 0;
11186 exp->destType = MkClassType(_class->fullName);
11187 ProcessExpressionType(exp);
11188 }
11189 }
11190 }
11191 if(_class->type == 4 || _class->type == 3 || _class->type == 2)
11192 {
11193 if(!_class->dataType)
11194 _class->dataType = ProcessTypeString(_class->dataTypeString, 0);
11195 type = _class->dataType;
11196 }
11197 }
11198 if(!result)
11199 {
11200 switch(type->kind)
11201 {
11202 case 6:
11203 {
11204 FreeExpContents(exp);
11205 exp->__anon1.__anon1.constant = PrintFloat(*(float *)ptr);
11206 exp->type = 2;
11207 break;
11208 }
11209 case 7:
11210 {
11211 FreeExpContents(exp);
11212 exp->__anon1.__anon1.constant = PrintDouble(*(double *)ptr);
11213 exp->type = 2;
11214 break;
11215 }
11216 case 3:
11217 {
11218 FreeExpContents(exp);
11219 exp->__anon1.__anon1.constant = PrintInt(*(int *)ptr);
11220 exp->type = 2;
11221 break;
11222 }
11223 case 4:
11224 {
11225 FreeExpContents(exp);
11226 exp->__anon1.__anon1.constant = PrintInt64(*(long long *)ptr);
11227 exp->type = 2;
11228 break;
11229 }
11230 case 22:
11231 {
11232 FreeExpContents(exp);
11233 exp->__anon1.__anon1.constant = PrintInt64((long long)*(intptr_t *)ptr);
11234 exp->type = 2;
11235 break;
11236 }
11237 case 23:
11238 {
11239 FreeExpContents(exp);
11240 exp->__anon1.__anon1.constant = PrintInt64((long long)*(intptr_t *)ptr);
11241 exp->type = 2;
11242 break;
11243 }
11244 default:
11245 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "Unhandled type populating instance\n", (((void *)0))));
11246 }
11247 }
11248 ListAdd(memberList, member);
11249 }
11250 if(parentDataMember->type == 1)
11251 break;
11252 }
11253 }
11254
11255 extern struct MembersInit * MkMembersInitList(struct __ecereNameSpace__ecere__sys__OldList * dataMembers);
11256
11257 void PopulateInstance(struct Instantiation * inst)
11258 {
11259 struct Symbol * classSym = inst->_class->__anon1.__anon1.symbol;
11260 struct __ecereNameSpace__ecere__com__Class * _class = classSym->__anon1.registered;
11261 struct __ecereNameSpace__ecere__com__DataMember * dataMember;
11262 struct __ecereNameSpace__ecere__sys__OldList * memberList = MkList();
11263
11264 if(!inst->members)
11265 inst->members = MkListOne(MkMembersInitList(memberList));
11266 else
11267 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add((&*inst->members), MkMembersInitList(memberList));
11268 for(dataMember = _class->membersAndProperties.first; dataMember; dataMember = dataMember->next)
11269 {
11270 if(!dataMember->isProperty)
11271 {
11272 if(!dataMember->name && (dataMember->type == 2 || dataMember->type == 1))
11273 PopulateInstanceProcessMember(inst, memberList, dataMember, dataMember->offset);
11274 else
11275 {
11276 struct Expression * exp = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Expression);
11277 struct MemberInit * member = MkMemberInit(MkListOne(MkIdentifier(dataMember->name)), MkInitializerAssignment(exp));
11278 struct Type * type;
11279 void * ptr = inst->data + dataMember->offset;
11280 char * result = (((void *)0));
11281
11282 exp->loc = member->loc = inst->loc;
11283 ((struct Identifier *)(*member->identifiers).first)->loc = inst->loc;
11284 if(!dataMember->dataType)
11285 dataMember->dataType = ProcessTypeString(dataMember->dataTypeString, 0);
11286 type = dataMember->dataType;
11287 if(type->kind == 8)
11288 {
11289 struct __ecereNameSpace__ecere__com__Class * _class = type->__anon1._class->__anon1.registered;
11290
11291 if(_class->type == 4)
11292 {
11293 struct __ecereNameSpace__ecere__com__Class * enumClass = __ecereNameSpace__ecere__com__eSystem_FindClass(privateModule, "enum");
11294
11295 if(enumClass)
11296 {
11297 struct __ecereNameSpace__ecere__com__EnumClassData * e = (_class ? ((void *)(((char *)_class->data) + enumClass->offsetClass)) : (((void *)0)));
11298 struct __ecereNameSpace__ecere__sys__NamedLink64 * item;
11299
11300 for(item = e->values.first; item; item = item->next)
11301 {
11302 if(item->data == GetEnumValue(_class, ptr))
11303 {
11304 result = item->name;
11305 break;
11306 }
11307 }
11308 }
11309 if(result)
11310 {
11311 exp->__anon1.__anon1.identifier = MkIdentifier(result);
11312 exp->type = 0;
11313 exp->destType = MkClassType(_class->fullName);
11314 ProcessExpressionType(exp);
11315 }
11316 }
11317 if(_class->type == 4 || _class->type == 3 || _class->type == 2)
11318 {
11319 if(!_class->dataType)
11320 _class->dataType = ProcessTypeString(_class->dataTypeString, 0);
11321 type = _class->dataType;
11322 }
11323 }
11324 if(!result)
11325 {
11326 switch(type->kind)
11327 {
11328 case 6:
11329 {
11330 exp->__anon1.__anon1.constant = PrintFloat(*(float *)ptr);
11331 exp->type = 2;
11332 break;
11333 }
11334 case 7:
11335 {
11336 exp->__anon1.__anon1.constant = PrintDouble(*(double *)ptr);
11337 exp->type = 2;
11338 break;
11339 }
11340 case 3:
11341 {
11342 exp->__anon1.__anon1.constant = PrintInt(*(int *)ptr);
11343 exp->type = 2;
11344 break;
11345 }
11346 case 4:
11347 {
11348 exp->__anon1.__anon1.constant = PrintInt64(*(long long *)ptr);
11349 exp->type = 2;
11350 break;
11351 }
11352 case 22:
11353 {
11354 exp->__anon1.__anon1.constant = PrintInt64((long long)*(intptr_t *)ptr);
11355 exp->type = 2;
11356 break;
11357 }
11358 default:
11359 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "Unhandled type populating instance\n", (((void *)0))));
11360 }
11361 }
11362 ListAdd(memberList, member);
11363 }
11364 }
11365 }
11366 }
11367
11368 extern struct __ecereNameSpace__ecere__com__DataMember * __ecereNameSpace__ecere__com__eClass_FindDataMemberAndOffset(struct __ecereNameSpace__ecere__com__Class * _class, const char *  name, unsigned int *  offset, struct __ecereNameSpace__ecere__com__Instance * module, struct __ecereNameSpace__ecere__com__DataMember **  subMemberStack, int *  subMemberStackPos);
11369
11370 extern void FreeInstance(struct Instantiation * inst);
11371
11372 void ComputeInstantiation(struct Expression * exp)
11373 {
11374 struct Instantiation * inst = exp->__anon1.instance;
11375 struct MembersInit * members;
11376 struct Symbol * classSym = inst->_class ? inst->_class->__anon1.__anon1.symbol : (((void *)0));
11377 struct __ecereNameSpace__ecere__com__Class * _class = classSym ? classSym->__anon1.registered : (((void *)0));
11378 struct __ecereNameSpace__ecere__com__DataMember * curMember = (((void *)0));
11379 struct __ecereNameSpace__ecere__com__Class * curClass = (((void *)0));
11380 struct __ecereNameSpace__ecere__com__DataMember * subMemberStack[256];
11381 int subMemberStackPos = 0;
11382 uint64 bits = 0;
11383
11384 if(_class && (_class->type == 1 || _class->type == 0 || _class->type == 5))
11385 {
11386 if(inst->data)
11387 return ;
11388 if(_class->type == 0 || _class->type == 5)
11389 {
11390 inst->data = (unsigned char *)__ecereNameSpace__ecere__com__eInstance_New(_class);
11391 if(_class->type == 0)
11392 ((struct __ecereNameSpace__ecere__com__Instance *)(char *)((struct __ecereNameSpace__ecere__com__Instance *)inst->data))->_refCount++;
11393 }
11394 else
11395 inst->data = __ecereNameSpace__ecere__com__eSystem_New0(sizeof(unsigned char) * (_class->structSize));
11396 }
11397 if(inst->members)
11398 {
11399 for(members = (*inst->members).first; members; members = members->next)
11400 {
11401 switch(members->type)
11402 {
11403 case 0:
11404 {
11405 if(members->__anon1.dataMembers)
11406 {
11407 struct MemberInit * member;
11408
11409 for(member = (*members->__anon1.dataMembers).first; member; member = member->next)
11410 {
11411 struct Identifier * ident = member->identifiers ? (*member->identifiers).first : (((void *)0));
11412 unsigned int found = 0;
11413 struct __ecereNameSpace__ecere__com__Property * prop = (((void *)0));
11414 struct __ecereNameSpace__ecere__com__DataMember * dataMember = (((void *)0));
11415 unsigned int dataMemberOffset;
11416
11417 if(!ident)
11418 {
11419 __ecereNameSpace__ecere__com__eClass_FindNextMember(_class, &curClass, &curMember, subMemberStack, &subMemberStackPos);
11420 if(curMember)
11421 {
11422 if(curMember->isProperty)
11423 prop = (struct __ecereNameSpace__ecere__com__Property *)curMember;
11424 else
11425 {
11426 dataMember = curMember;
11427 __ecereNameSpace__ecere__com__eClass_FindDataMemberAndOffset(_class, dataMember->name, &dataMemberOffset, privateModule, (((void *)0)), (((void *)0)));
11428 if(_class->type == 0)
11429 dataMemberOffset += _class->base->structSize;
11430 }
11431 found = 1;
11432 }
11433 }
11434 else
11435 {
11436 prop = __ecereNameSpace__ecere__com__eClass_FindProperty(_class, ident->string, privateModule);
11437 if(prop)
11438 {
11439 found = 1;
11440 if(prop->memberAccess == 1)
11441 {
11442 curMember = (struct __ecereNameSpace__ecere__com__DataMember *)prop;
11443 curClass = prop->_class;
11444 }
11445 }
11446 else
11447 {
11448 struct __ecereNameSpace__ecere__com__DataMember * _subMemberStack[256];
11449 int _subMemberStackPos = 0;
11450
11451 dataMember = __ecereNameSpace__ecere__com__eClass_FindDataMemberAndOffset(_class, ident->string, &dataMemberOffset, privateModule, _subMemberStack, &_subMemberStackPos);
11452 if(dataMember)
11453 {
11454 found = 1;
11455 if(dataMember->memberAccess == 1)
11456 {
11457 curMember = dataMember;
11458 curClass = dataMember->_class;
11459 memcpy(subMemberStack, _subMemberStack, sizeof(struct __ecereNameSpace__ecere__com__DataMember *) * _subMemberStackPos);
11460 subMemberStackPos = _subMemberStackPos;
11461 }
11462 }
11463 }
11464 }
11465 if(found && member->initializer && member->initializer->type == 0)
11466 {
11467 struct Expression * value = member->initializer->__anon1.exp;
11468 struct Type * type = (((void *)0));
11469 unsigned int deepMember = 0;
11470
11471 if(prop)
11472 {
11473 type = prop->dataType;
11474 }
11475 else if(dataMember)
11476 {
11477 if(!dataMember->dataType)
11478 dataMember->dataType = ProcessTypeString(dataMember->dataTypeString, 0);
11479 type = dataMember->dataType;
11480 }
11481 if(ident && ident->next)
11482 {
11483 deepMember = 1;
11484 for(ident = ident->next; ident && type; ident = ident->next)
11485 {
11486 if(type->kind == 8)
11487 {
11488 prop = __ecereNameSpace__ecere__com__eClass_FindProperty(type->__anon1._class->__anon1.registered, ident->string, privateModule);
11489 if(prop)
11490 type = prop->dataType;
11491 else
11492 {
11493 dataMember = __ecereNameSpace__ecere__com__eClass_FindDataMemberAndOffset(type->__anon1._class->__anon1.registered, ident->string, &dataMemberOffset, privateModule, (((void *)0)), (((void *)0)));
11494 if(dataMember)
11495 type = dataMember->dataType;
11496 }
11497 }
11498 else if(type->kind == 9 || type->kind == 10)
11499 {
11500 struct Type * memberType;
11501
11502 for(memberType = type->__anon1.__anon1.members.first; memberType; memberType = memberType->next)
11503 {
11504 if(!strcmp(memberType->name, ident->string))
11505 {
11506 type = memberType;
11507 break;
11508 }
11509 }
11510 }
11511 }
11512 }
11513 if(value)
11514 {
11515 FreeType(value->destType);
11516 value->destType = type;
11517 if(type)
11518 type->refCount++;
11519 ComputeExpression(value);
11520 }
11521 if(!deepMember && type && value && (_class->type == 1 || _class->type == 0 || _class->type == 5))
11522 {
11523 if(type->kind == 8)
11524 {
11525 struct __ecereNameSpace__ecere__com__Class * _class = type->__anon1._class->__anon1.registered;
11526
11527 if(_class->type == 2 || _class->type == 3 || _class->type == 4)
11528 {
11529 if(!_class->dataType)
11530 _class->dataType = ProcessTypeString(_class->dataTypeString, 0);
11531 type = _class->dataType;
11532 }
11533 }
11534 if(dataMember)
11535 {
11536 void * ptr = inst->data + dataMemberOffset;
11537
11538 if(value->type == 2)
11539 {
11540 switch(type->kind)
11541 {
11542 case 3:
11543 {
11544 GetInt(value, (int *)ptr);
11545 break;
11546 }
11547 case 4:
11548 {
11549 GetInt64(value, (long long *)ptr);
11550 break;
11551 }
11552 case 22:
11553 {
11554 GetIntPtr(value, (intptr_t *)ptr);
11555 break;
11556 }
11557 case 23:
11558 {
11559 GetIntSize(value, (ssize_t *)ptr);
11560 break;
11561 }
11562 case 6:
11563 {
11564 GetFloat(value, (float *)ptr);
11565 break;
11566 }
11567 case 7:
11568 {
11569 GetDouble(value, (double *)ptr);
11570 break;
11571 }
11572 }
11573 }
11574 else if(value->type == 1)
11575 {
11576 if(type->kind == 8)
11577 {
11578 struct __ecereNameSpace__ecere__com__Class * _class = type->__anon1._class->__anon1.registered;
11579
11580 if(_class->type == 1)
11581 {
11582 ComputeTypeSize(type);
11583 if(value->__anon1.instance->data)
11584 memcpy(ptr, value->__anon1.instance->data, type->size);
11585 }
11586 }
11587 }
11588 }
11589 else if(prop)
11590 {
11591 if(value->type == 1 && value->__anon1.instance->data)
11592 {
11593 if(type->kind == 8)
11594 {
11595 struct __ecereNameSpace__ecere__com__Class * _class = type->__anon1._class->__anon1.registered;
11596
11597 if(_class && (_class->type != 0 || __ecereNameSpace__ecere__com__eClass_IsDerived(((struct __ecereNameSpace__ecere__com__Instance *)(char *)((struct __ecereNameSpace__ecere__com__Instance *)value->__anon1.instance->data))->_class, _class)))
11598 {
11599 void (* Set)(void *, void *) = (void *)prop->Set;
11600
11601 Set(inst->data, value->__anon1.instance->data);
11602 PopulateInstance(inst);
11603 }
11604 }
11605 }
11606 else if(value->type == 2)
11607 {
11608 switch(type->kind)
11609 {
11610 case 7:
11611 {
11612 void (* Set)(void *, double) = (void *)prop->Set;
11613
11614 Set(inst->data, strtod(value->__anon1.__anon1.constant, (((void *)0))));
11615 break;
11616 }
11617 case 6:
11618 {
11619 void (* Set)(void *, float) = (void *)prop->Set;
11620
11621 Set(inst->data, (float)(strtod(value->__anon1.__anon1.constant, (((void *)0)))));
11622 break;
11623 }
11624 case 3:
11625 {
11626 void (* Set)(void *, int) = (void *)prop->Set;
11627
11628 Set(inst->data, strtol(value->__anon1.__anon1.constant, (((void *)0)), 0));
11629 break;
11630 }
11631 case 4:
11632 {
11633 void (* Set)(void *, long long) = (void *)prop->Set;
11634
11635 Set(inst->data, __ecereNameSpace__ecere__com___strtoi64(value->__anon1.__anon1.constant, (((void *)0)), 0));
11636 break;
11637 }
11638 case 22:
11639 {
11640 void (* Set)(void *, intptr_t) = (void *)prop->Set;
11641
11642 Set(inst->data, (intptr_t)__ecereNameSpace__ecere__com___strtoi64(value->__anon1.__anon1.constant, (((void *)0)), 0));
11643 break;
11644 }
11645 case 23:
11646 {
11647 void (* Set)(void *, ssize_t) = (void *)prop->Set;
11648
11649 Set(inst->data, (ssize_t)__ecereNameSpace__ecere__com___strtoi64(value->__anon1.__anon1.constant, (((void *)0)), 0));
11650 break;
11651 }
11652 }
11653 }
11654 else if(value->type == 3)
11655 {
11656 char temp[1024];
11657
11658 ReadString(temp, value->__anon1.__anon2.string);
11659 ((void (*)(void *, void *))(void *)prop->Set)(inst->data, temp);
11660 }
11661 }
11662 }
11663 else if(!deepMember && type && _class->type == 3)
11664 {
11665 if(prop)
11666 {
11667 if(value->type == 2)
11668 {
11669 if(type->kind == 8)
11670 {
11671 struct __ecereNameSpace__ecere__com__Class * _class = type->__anon1._class->__anon1.registered;
11672
11673 if(_class->type == 3)
11674 {
11675 if(!_class->dataType)
11676 _class->dataType = ProcessTypeString(_class->dataTypeString, 0);
11677 type = _class->dataType;
11678 }
11679 }
11680 switch(type->kind)
11681 {
11682 case 6:
11683 {
11684 float fValue;
11685 float (* Set)(float) = (void *)prop->Set;
11686
11687 GetFloat(member->initializer->__anon1.exp, &fValue);
11688 exp->__anon1.__anon1.constant = PrintFloat(Set(fValue));
11689 exp->type = 2;
11690 break;
11691 }
11692 case 7:
11693 {
11694 double dValue;
11695 double (* Set)(double) = (void *)prop->Set;
11696
11697 GetDouble(member->initializer->__anon1.exp, &dValue);
11698 exp->__anon1.__anon1.constant = PrintDouble(Set(dValue));
11699 exp->type = 2;
11700 break;
11701 }
11702 }
11703 }
11704 }
11705 }
11706 else if(!deepMember && type && _class->type == 2)
11707 {
11708 if(prop)
11709 {
11710 if(value->type == 1 && value->__anon1.instance->data)
11711 {
11712 unsigned int (* Set)(void *) = (void *)prop->Set;
11713
11714 bits = Set(value->__anon1.instance->data);
11715 }
11716 else if(value->type == 2)
11717 {
11718 }
11719 }
11720 else if(dataMember)
11721 {
11722 struct __ecereNameSpace__ecere__com__BitMember * bitMember = (struct __ecereNameSpace__ecere__com__BitMember *)dataMember;
11723 struct Type * type;
11724 uint64 part = 0;
11725
11726 bits = (bits & ~bitMember->mask);
11727 if(!bitMember->dataType)
11728 bitMember->dataType = ProcessTypeString(bitMember->dataTypeString, 0);
11729 type = bitMember->dataType;
11730 if(type->kind == 8 && type->__anon1._class && type->__anon1._class->__anon1.registered)
11731 {
11732 if(!type->__anon1._class->__anon1.registered->dataType)
11733 type->__anon1._class->__anon1.registered->dataType = ProcessTypeString(type->__anon1._class->__anon1.registered->dataTypeString, 0);
11734 type = type->__anon1._class->__anon1.registered->dataType;
11735 }
11736 switch(type->kind)
11737 {
11738 case 24:
11739 case 1:
11740 {
11741 unsigned char v;
11742
11743 type->isSigned ? GetChar(value, (char *)&v) : GetUChar(value, &v);
11744 part = (uint64)v;
11745 break;
11746 }
11747 case 2:
11748 {
11749 unsigned short v;
11750
11751 type->isSigned ? GetShort(value, (short *)&v) : GetUShort(value, &v);
11752 part = (uint64)v;
11753 break;
11754 }
11755 case 3:
11756 case 5:
11757 {
11758 unsigned int v;
11759
11760 type->isSigned ? GetInt(value, (int *)&v) : GetUInt(value, &v);
11761 part = (uint64)v;
11762 break;
11763 }
11764 case 4:
11765 {
11766 uint64 v;
11767
11768 type->isSigned ? GetInt64(value, (long long *)&v) : GetUInt64(value, &v);
11769 part = v;
11770 break;
11771 }
11772 case 22:
11773 {
11774 uintptr_t v;
11775
11776 type->isSigned ? GetIntPtr(value, (intptr_t *)&v) : GetUIntPtr(value, &v);
11777 part = (uint64)v;
11778 break;
11779 }
11780 case 23:
11781 {
11782 size_t v;
11783
11784 type->isSigned ? GetIntSize(value, (ssize_t *)&v) : GetUIntSize(value, &v);
11785 part = (uint64)v;
11786 break;
11787 }
11788 }
11789 bits |= part << bitMember->pos;
11790 }
11791 }
11792 }
11793 else
11794 {
11795 if(_class && _class->type == 3)
11796 {
11797 ComputeExpression(member->initializer->__anon1.exp);
11798 exp->__anon1.__anon1.constant = member->initializer->__anon1.exp->__anon1.__anon1.constant;
11799 exp->type = 2;
11800 member->initializer->__anon1.exp->__anon1.__anon1.constant = (((void *)0));
11801 }
11802 }
11803 }
11804 }
11805 break;
11806 }
11807 }
11808 }
11809 }
11810 if(_class && _class->type == 2)
11811 {
11812 exp->__anon1.__anon1.constant = PrintHexUInt(bits);
11813 exp->type = 2;
11814 }
11815 if(exp->type != 1)
11816 {
11817 FreeInstance(inst);
11818 }
11819 }
11820
11821 static unsigned int Promote(struct Operand * op, int kind, unsigned int isSigned)
11822 {
11823 unsigned int result = 0;
11824
11825 switch(kind)
11826 {
11827 case 2:
11828 if(op->kind == 1 || op->kind == 15 || op->kind == 24)
11829 result = isSigned ? GetOpShort(op, &op->__anon1.s) : GetOpUShort(op, &op->__anon1.us);
11830 break;
11831 case 3:
11832 case 5:
11833 if(op->kind == 1 || op->kind == 2 || op->kind == 15 || op->kind == 24)
11834 result = isSigned ? GetOpInt(op, &op->__anon1.i) : GetOpUInt(op, &op->__anon1.ui);
11835 break;
11836 case 4:
11837 if(op->kind == 1 || op->kind == 2 || op->kind == 3 || op->kind == 4 || op->kind == 5 || op->kind == 6 || op->kind == 7 || op->kind == 13 || op->kind == 15 || op->kind == 22 || op->kind == 23 || op->kind == 24)
11838 result = isSigned ? GetOpInt64(op, &op->__anon1.i64) : GetOpUInt64(op, &op->__anon1.ui64);
11839 break;
11840 case 6:
11841 if(op->kind == 1 || op->kind == 2 || op->kind == 3 || op->kind == 4 || op->kind == 5 || op->kind == 15 || op->kind == 22 || op->kind == 23 || op->kind == 24)
11842 result = GetOpFloat(op, &op->__anon1.f);
11843 break;
11844 case 7:
11845 if(op->kind == 1 || op->kind == 2 || op->kind == 3 || op->kind == 4 || op->kind == 5 || op->kind == 6 || op->kind == 15 || op->kind == 22 || op->kind == 23 || op->kind == 24)
11846 result = GetOpDouble(op, &op->__anon1.d);
11847 break;
11848 case 13:
11849 if(op->kind == 1 || op->kind == 2 || op->kind == 3 || op->kind == 4 || op->kind == 5 || op->kind == 6 || op->kind == 7 || op->kind == 13 || op->kind == 15 || op->kind == 22 || op->kind == 23 || op->kind == 24)
11850 result = GetOpUInt64(op, &op->__anon1.ui64);
11851 break;
11852 case 15:
11853 if(op->kind == 1 || op->kind == 2 || op->kind == 3 || op->kind == 4 || op->kind == 5 || op->kind == 6 || op->kind == 7 || op->kind == 13 || op->kind == 15 || op->kind == 22 || op->kind == 23 || op->kind == 24)
11854 result = isSigned ? GetOpInt(op, &op->__anon1.i) : GetOpUInt(op, &op->__anon1.ui);
11855 break;
11856 case 22:
11857 if(op->kind == 1 || op->kind == 2 || op->kind == 3 || op->kind == 5 || op->kind == 15 || op->kind == 24)
11858 result = isSigned ? GetOpInt64(op, &op->__anon1.i64) : GetOpUInt64(op, &op->__anon1.ui64);
11859 break;
11860 case 23:
11861 if(op->kind == 1 || op->kind == 2 || op->kind == 3 || op->kind == 5 || op->kind == 15 || op->kind == 24)
11862 result = isSigned ? GetOpInt64(op, &op->__anon1.i64) : GetOpUInt64(op, &op->__anon1.ui64);
11863 break;
11864 }
11865 return result;
11866 }
11867
11868 void CallOperator(struct Expression * exp, struct Expression * exp1, struct Expression * exp2, struct Operand * op1, struct Operand * op2)
11869 {
11870 if(exp->__anon1.op.op == SIZEOF)
11871 {
11872 FreeExpContents(exp);
11873 exp->type = 2;
11874 exp->__anon1.__anon1.constant = PrintUInt(ComputeTypeSize(op1->type));
11875 }
11876 else
11877 {
11878 if(!exp->__anon1.op.exp1)
11879 {
11880 switch(exp->__anon1.op.op)
11881 {
11882 case '+':
11883 {
11884 struct Expression * exp2 = exp->__anon1.op.exp2;
11885
11886 exp->__anon1.op.exp2 = (((void *)0));
11887 FreeExpContents(exp);
11888 FreeType(exp->expType);
11889 FreeType(exp->destType);
11890 *exp = *exp2;
11891 ((exp2 ? (__ecereClass_Expression->Destructor ? __ecereClass_Expression->Destructor((void *)exp2) : 0, __ecereNameSpace__ecere__com__eSystem_Delete(exp2)) : 0), exp2 = 0);
11892 break;
11893 }
11894 case '-':
11895 if(op1->ops.Neg)
11896 {
11897 FreeExpContents(exp);
11898 op1->ops.Neg(exp, op1);
11899 }
11900 break;
11901 case '~':
11902 if(op1->ops.BitNot)
11903 {
11904 FreeExpContents(exp);
11905 op1->ops.BitNot(exp, op1);
11906 }
11907 break;
11908 case '!':
11909 if(op1->ops.Not)
11910 {
11911 FreeExpContents(exp);
11912 op1->ops.Not(exp, op1);
11913 }
11914 break;
11915 }
11916 }
11917 else
11918 {
11919 if(op1 && op2 && op1->type && op2->type && op1->kind != op2->kind)
11920 {
11921 if(Promote(op2, op1->kind, op1->type->isSigned))
11922 op2->kind = op1->kind, op2->ops = op1->ops;
11923 else if(Promote(op1, op2->kind, op2->type->isSigned))
11924 op1->kind = op2->kind, op1->ops = op2->ops;
11925 }
11926 switch(exp->__anon1.op.op)
11927 {
11928 case '+':
11929 if(op1->ops.Add)
11930 {
11931 FreeExpContents(exp);
11932 op1->ops.Add(exp, op1, op2);
11933 }
11934 break;
11935 case '-':
11936 if(op1->ops.Sub)
11937 {
11938 FreeExpContents(exp);
11939 op1->ops.Sub(exp, op1, op2);
11940 }
11941 break;
11942 case '*':
11943 if(op1->ops.Mul)
11944 {
11945 FreeExpContents(exp);
11946 op1->ops.Mul(exp, op1, op2);
11947 }
11948 break;
11949 case '/':
11950 if(op1->ops.Div)
11951 {
11952 FreeExpContents(exp);
11953 op1->ops.Div(exp, op1, op2);
11954 }
11955 break;
11956 case '%':
11957 if(op1->ops.Mod)
11958 {
11959 FreeExpContents(exp);
11960 op1->ops.Mod(exp, op1, op2);
11961 }
11962 break;
11963 case '&':
11964 if(exp->__anon1.op.exp2)
11965 {
11966 if(op1->ops.BitAnd)
11967 {
11968 FreeExpContents(exp);
11969 op1->ops.BitAnd(exp, op1, op2);
11970 }
11971 }
11972 break;
11973 case '|':
11974 if(op1->ops.BitOr)
11975 {
11976 FreeExpContents(exp);
11977 op1->ops.BitOr(exp, op1, op2);
11978 }
11979 break;
11980 case '^':
11981 if(op1->ops.BitXor)
11982 {
11983 FreeExpContents(exp);
11984 op1->ops.BitXor(exp, op1, op2);
11985 }
11986 break;
11987 case LEFT_OP:
11988 if(op1->ops.LShift)
11989 {
11990 FreeExpContents(exp);
11991 op1->ops.LShift(exp, op1, op2);
11992 }
11993 break;
11994 case RIGHT_OP:
11995 if(op1->ops.RShift)
11996 {
11997 FreeExpContents(exp);
11998 op1->ops.RShift(exp, op1, op2);
11999 }
12000 break;
12001 case EQ_OP:
12002 if(op1->ops.Equ)
12003 {
12004 FreeExpContents(exp);
12005 op1->ops.Equ(exp, op1, op2);
12006 }
12007 break;
12008 case NE_OP:
12009 if(op1->ops.Nqu)
12010 {
12011 FreeExpContents(exp);
12012 op1->ops.Nqu(exp, op1, op2);
12013 }
12014 break;
12015 case AND_OP:
12016 if(op1->ops.And)
12017 {
12018 FreeExpContents(exp);
12019 op1->ops.And(exp, op1, op2);
12020 }
12021 break;
12022 case OR_OP:
12023 if(op1->ops.Or)
12024 {
12025 FreeExpContents(exp);
12026 op1->ops.Or(exp, op1, op2);
12027 }
12028 break;
12029 case '>':
12030 if(op1->ops.Grt)
12031 {
12032 FreeExpContents(exp);
12033 op1->ops.Grt(exp, op1, op2);
12034 }
12035 break;
12036 case '<':
12037 if(op1->ops.Sma)
12038 {
12039 FreeExpContents(exp);
12040 op1->ops.Sma(exp, op1, op2);
12041 }
12042 break;
12043 case GE_OP:
12044 if(op1->ops.GrtEqu)
12045 {
12046 FreeExpContents(exp);
12047 op1->ops.GrtEqu(exp, op1, op2);
12048 }
12049 break;
12050 case LE_OP:
12051 if(op1->ops.SmaEqu)
12052 {
12053 FreeExpContents(exp);
12054 op1->ops.SmaEqu(exp, op1, op2);
12055 }
12056 break;
12057 }
12058 }
12059 }
12060 }
12061
12062 void PrintTypeNoConst(struct Type * type, char *  string, unsigned int printName, unsigned int fullName);
12063
12064 extern struct Expression * MkExpIdentifier(struct Identifier * id);
12065
12066 void ComputeExpression(struct Expression * exp)
12067 {
12068 switch(exp->type)
12069 {
12070 case 1:
12071 {
12072 ComputeInstantiation(exp);
12073 break;
12074 }
12075 case 4:
12076 {
12077 struct Expression * exp1, * exp2 = (((void *)0));
12078 struct Operand op1 =
12079 {
12080 0, 0, 0,
12081 .__anon1 = {
12082 .c = 0
12083 },
12084 {
12085 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
12086 }
12087 };
12088 struct Operand op2 =
12089 {
12090 0, 0, 0,
12091 .__anon1 = {
12092 .c = 0
12093 },
12094 {
12095 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
12096 }
12097 };
12098
12099 if(exp->__anon1.op.exp2)
12100 {
12101 struct Expression * e = exp->__anon1.op.exp2;
12102
12103 while((e->type == 5 || e->type == 32 || e->type == 23) && e->__anon1.list)
12104 {
12105 if(e->type == 5 || e->type == 32 || e->type == 23)
12106 {
12107 if(e->type == 23)
12108 e = (*((struct Statement *)(*e->__anon1.compound->__anon1.compound.statements).last)->__anon1.expressions).last;
12109 else
12110 e = (*e->__anon1.list).last;
12111 }
12112 }
12113 if(exp->__anon1.op.op == 261 && e && e->expType)
12114 {
12115 if(e->type == 3 && e->__anon1.__anon2.string)
12116 {
12117 char * string = e->__anon1.__anon2.string;
12118 int len = strlen(string);
12119 char * tmp = __ecereNameSpace__ecere__com__eSystem_New(sizeof(char) * (len - 2 + 1));
12120
12121 len = UnescapeString(tmp, string + 1, len - 2);
12122 (__ecereNameSpace__ecere__com__eSystem_Delete(tmp), tmp = 0);
12123 FreeExpContents(exp);
12124 exp->type = 2;
12125 exp->__anon1.__anon1.constant = PrintUInt(len + 1);
12126 }
12127 else
12128 {
12129 struct Type * type = e->expType;
12130
12131 type->refCount++;
12132 FreeExpContents(exp);
12133 exp->type = 2;
12134 exp->__anon1.__anon1.constant = PrintUInt(ComputeTypeSize(type));
12135 FreeType(type);
12136 }
12137 break;
12138 }
12139 else
12140 ComputeExpression(exp->__anon1.op.exp2);
12141 }
12142 if(exp->__anon1.op.exp1)
12143 {
12144 ComputeExpression(exp->__anon1.op.exp1);
12145 exp1 = exp->__anon1.op.exp1;
12146 exp2 = exp->__anon1.op.exp2;
12147 op1 = GetOperand(exp1);
12148 if(op1.type)
12149 op1.type->refCount++;
12150 if(exp2)
12151 {
12152 op2 = GetOperand(exp2);
12153 if(op2.type)
12154 op2.type->refCount++;
12155 }
12156 }
12157 else
12158 {
12159 exp1 = exp->__anon1.op.exp2;
12160 op1 = GetOperand(exp1);
12161 if(op1.type)
12162 op1.type->refCount++;
12163 }
12164 CallOperator(exp, exp1, exp2, &op1, &op2);
12165 if(op1.type)
12166 FreeType(op1.type);
12167 if(op2.type)
12168 FreeType(op2.type);
12169 break;
12170 }
12171 case 5:
12172 case 32:
12173 {
12174 struct Expression * e, * n;
12175
12176 for(e = (*exp->__anon1.list).first; e; e = n)
12177 {
12178 n = e->next;
12179 if(!n)
12180 {
12181 struct __ecereNameSpace__ecere__sys__OldList * list = exp->__anon1.list;
12182 struct Expression * prev = exp->prev;
12183 struct Expression * next = exp->next;
12184
12185 ComputeExpression(e);
12186 FreeType(exp->expType);
12187 FreeType(exp->destType);
12188 *exp = *e;
12189 exp->prev = prev;
12190 exp->next = next;
12191 ((e ? (__ecereClass_Expression->Destructor ? __ecereClass_Expression->Destructor((void *)e) : 0, __ecereNameSpace__ecere__com__eSystem_Delete(e)) : 0), e = 0);
12192 (__ecereNameSpace__ecere__com__eSystem_Delete(list), list = 0);
12193 }
12194 else
12195 {
12196 FreeExpression(e);
12197 }
12198 }
12199 break;
12200 }
12201 case 8:
12202 {
12203 struct Expression * memberExp = exp->__anon1.member.exp;
12204 struct Identifier * memberID = exp->__anon1.member.member;
12205 struct Type * type;
12206
12207 ComputeExpression(exp->__anon1.member.exp);
12208 type = exp->__anon1.member.exp->expType;
12209 if(type)
12210 {
12211 struct __ecereNameSpace__ecere__com__Class * _class = (exp->__anon1.member.member && exp->__anon1.member.member->classSym) ? exp->__anon1.member.member->classSym->__anon1.registered : (((type->kind == 8 || type->kind == 19) && type->__anon1._class) ? type->__anon1._class->__anon1.registered : (((void *)0)));
12212 struct __ecereNameSpace__ecere__com__Property * prop = (((void *)0));
12213 struct __ecereNameSpace__ecere__com__DataMember * member = (((void *)0));
12214 struct __ecereNameSpace__ecere__com__Class * convertTo = (((void *)0));
12215
12216 if(type->kind == 19 && exp->__anon1.member.exp->type == 24)
12217 _class = __ecereNameSpace__ecere__com__eSystem_FindClass(privateModule, "ecere::com::Class");
12218 if(!_class)
12219 {
12220 char string[256];
12221 struct Symbol * classSym;
12222
12223 string[0] = '\0';
12224 PrintTypeNoConst(type, string, 0, 1);
12225 classSym = FindClass(string);
12226 _class = classSym ? classSym->__anon1.registered : (((void *)0));
12227 }
12228 if(exp->__anon1.member.member)
12229 {
12230 prop = __ecereNameSpace__ecere__com__eClass_FindProperty(_class, exp->__anon1.member.member->string, privateModule);
12231 if(!prop)
12232 member = __ecereNameSpace__ecere__com__eClass_FindDataMember(_class, exp->__anon1.member.member->string, privateModule, (((void *)0)), (((void *)0)));
12233 }
12234 if(!prop && !member && _class && exp->__anon1.member.member)
12235 {
12236 struct Symbol * classSym = FindClass(exp->__anon1.member.member->string);
12237
12238 convertTo = _class;
12239 _class = classSym ? classSym->__anon1.registered : (((void *)0));
12240 prop = __ecereNameSpace__ecere__com__eClass_FindProperty(_class, convertTo->fullName, privateModule);
12241 }
12242 if(prop)
12243 {
12244 if(prop->compiled)
12245 {
12246 struct Type * type = prop->dataType;
12247
12248 if(_class->type == 3)
12249 {
12250 if(type->kind == 8)
12251 {
12252 struct __ecereNameSpace__ecere__com__Class * _class = type->__anon1._class->__anon1.registered;
12253
12254 if(_class->type == 3)
12255 {
12256 if(!_class->dataType)
12257 _class->dataType = ProcessTypeString(_class->dataTypeString, 0);
12258 type = _class->dataType;
12259 }
12260 }
12261 switch(type->kind)
12262 {
12263 case 6:
12264 {
12265 float value;
12266 float (* Get)(float) = (void *)prop->Get;
12267
12268 GetFloat(exp->__anon1.member.exp, &value);
12269 exp->__anon1.__anon1.constant = PrintFloat(Get ? Get(value) : value);
12270 exp->type = 2;
12271 break;
12272 }
12273 case 7:
12274 {
12275 double value;
12276 double (* Get)(double);
12277
12278 GetDouble(exp->__anon1.member.exp, &value);
12279 if(convertTo)
12280 Get = (void *)prop->Set;
12281 else
12282 Get = (void *)prop->Get;
12283 exp->__anon1.__anon1.constant = PrintDouble(Get ? Get(value) : value);
12284 exp->type = 2;
12285 break;
12286 }
12287 }
12288 }
12289 else
12290 {
12291 if(convertTo)
12292 {
12293 struct Expression * value = exp->__anon1.member.exp;
12294 struct Type * type;
12295
12296 if(!prop->dataType)
12297 ProcessPropertyType(prop);
12298 type = prop->dataType;
12299 if(!type)
12300 {
12301 }
12302 else if(_class->type == 1)
12303 {
12304 switch(type->kind)
12305 {
12306 case 8:
12307 {
12308 struct __ecereNameSpace__ecere__com__Class * propertyClass = type->__anon1._class->__anon1.registered;
12309
12310 if(propertyClass->type == 1 && value->type == 1)
12311 {
12312 void (* Set)(void *, void *) = (void *)prop->Set;
12313
12314 exp->__anon1.instance = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Instantiation);
12315 exp->__anon1.instance->data = __ecereNameSpace__ecere__com__eSystem_New0(sizeof(unsigned char) * (_class->structSize));
12316 exp->__anon1.instance->_class = MkSpecifierName(_class->fullName);
12317 exp->__anon1.instance->loc = exp->loc;
12318 exp->type = 1;
12319 Set(exp->__anon1.instance->data, value->__anon1.instance->data);
12320 PopulateInstance(exp->__anon1.instance);
12321 }
12322 break;
12323 }
12324 case 3:
12325 {
12326 int intValue;
12327 void (* Set)(void *, int) = (void *)prop->Set;
12328
12329 exp->__anon1.instance = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Instantiation);
12330 exp->__anon1.instance->data = __ecereNameSpace__ecere__com__eSystem_New0(sizeof(unsigned char) * (_class->structSize));
12331 exp->__anon1.instance->_class = MkSpecifierName(_class->fullName);
12332 exp->__anon1.instance->loc = exp->loc;
12333 exp->type = 1;
12334 GetInt(value, &intValue);
12335 Set(exp->__anon1.instance->data, intValue);
12336 PopulateInstance(exp->__anon1.instance);
12337 break;
12338 }
12339 case 4:
12340 {
12341 long long intValue;
12342 void (* Set)(void *, long long) = (void *)prop->Set;
12343
12344 exp->__anon1.instance = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Instantiation);
12345 exp->__anon1.instance->data = __ecereNameSpace__ecere__com__eSystem_New0(sizeof(unsigned char) * (_class->structSize));
12346 exp->__anon1.instance->_class = MkSpecifierName(_class->fullName);
12347 exp->__anon1.instance->loc = exp->loc;
12348 exp->type = 1;
12349 GetInt64(value, &intValue);
12350 Set(exp->__anon1.instance->data, intValue);
12351 PopulateInstance(exp->__anon1.instance);
12352 break;
12353 }
12354 case 22:
12355 {
12356 intptr_t intValue;
12357 void (* Set)(void *, intptr_t) = (void *)prop->Set;
12358
12359 exp->__anon1.instance = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Instantiation);
12360 exp->__anon1.instance->data = __ecereNameSpace__ecere__com__eSystem_New0(sizeof(unsigned char) * (_class->structSize));
12361 exp->__anon1.instance->_class = MkSpecifierName(_class->fullName);
12362 exp->__anon1.instance->loc = exp->loc;
12363 exp->type = 1;
12364 GetIntPtr(value, &intValue);
12365 Set(exp->__anon1.instance->data, intValue);
12366 PopulateInstance(exp->__anon1.instance);
12367 break;
12368 }
12369 case 23:
12370 {
12371 ssize_t intValue;
12372 void (* Set)(void *, ssize_t) = (void *)prop->Set;
12373
12374 exp->__anon1.instance = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Instantiation);
12375 exp->__anon1.instance->data = __ecereNameSpace__ecere__com__eSystem_New0(sizeof(unsigned char) * (_class->structSize));
12376 exp->__anon1.instance->_class = MkSpecifierName(_class->fullName);
12377 exp->__anon1.instance->loc = exp->loc;
12378 exp->type = 1;
12379 GetIntSize(value, &intValue);
12380 Set(exp->__anon1.instance->data, intValue);
12381 PopulateInstance(exp->__anon1.instance);
12382 break;
12383 }
12384 case 6:
12385 {
12386 float floatValue;
12387 void (* Set)(void *, float) = (void *)prop->Set;
12388
12389 exp->__anon1.instance = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Instantiation);
12390 exp->__anon1.instance->data = __ecereNameSpace__ecere__com__eSystem_New0(sizeof(unsigned char) * (_class->structSize));
12391 exp->__anon1.instance->_class = MkSpecifierName(_class->fullName);
12392 exp->__anon1.instance->loc = exp->loc;
12393 exp->type = 1;
12394 GetFloat(value, &floatValue);
12395 Set(exp->__anon1.instance->data, floatValue);
12396 PopulateInstance(exp->__anon1.instance);
12397 break;
12398 }
12399 case 7:
12400 {
12401 double doubleValue;
12402 void (* Set)(void *, double) = (void *)prop->Set;
12403
12404 exp->__anon1.instance = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Instantiation);
12405 exp->__anon1.instance->data = __ecereNameSpace__ecere__com__eSystem_New0(sizeof(unsigned char) * (_class->structSize));
12406 exp->__anon1.instance->_class = MkSpecifierName(_class->fullName);
12407 exp->__anon1.instance->loc = exp->loc;
12408 exp->type = 1;
12409 GetDouble(value, &doubleValue);
12410 Set(exp->__anon1.instance->data, doubleValue);
12411 PopulateInstance(exp->__anon1.instance);
12412 break;
12413 }
12414 }
12415 }
12416 else if(_class->type == 2)
12417 {
12418 switch(type->kind)
12419 {
12420 case 8:
12421 {
12422 struct __ecereNameSpace__ecere__com__Class * propertyClass = type->__anon1._class->__anon1.registered;
12423
12424 if(propertyClass->type == 1 && value->__anon1.instance->data)
12425 {
12426 unsigned int (* Set)(void *) = (void *)prop->Set;
12427 unsigned int bits = Set(value->__anon1.instance->data);
12428
12429 exp->__anon1.__anon1.constant = PrintHexUInt(bits);
12430 exp->type = 2;
12431 break;
12432 }
12433 else if(_class->type == 2)
12434 {
12435 unsigned int value;
12436 unsigned int (* Set)(unsigned int) = (void *)prop->Set;
12437 unsigned int bits;
12438
12439 GetUInt(exp->__anon1.member.exp, &value);
12440 bits = Set(value);
12441 exp->__anon1.__anon1.constant = PrintHexUInt(bits);
12442 exp->type = 2;
12443 }
12444 }
12445 }
12446 }
12447 }
12448 else
12449 {
12450 if(_class->type == 2)
12451 {
12452 unsigned int value;
12453
12454 GetUInt(exp->__anon1.member.exp, &value);
12455 switch(type->kind)
12456 {
12457 case 8:
12458 {
12459 struct __ecereNameSpace__ecere__com__Class * _class = type->__anon1._class->__anon1.registered;
12460
12461 if(_class->type == 1)
12462 {
12463 void (* Get)(unsigned int, void *) = (void *)prop->Get;
12464
12465 exp->__anon1.instance = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Instantiation);
12466 exp->__anon1.instance->data = __ecereNameSpace__ecere__com__eSystem_New0(sizeof(unsigned char) * (_class->structSize));
12467 exp->__anon1.instance->_class = MkSpecifierName(_class->fullName);
12468 exp->__anon1.instance->loc = exp->loc;
12469 exp->type = 1;
12470 Get(value, exp->__anon1.instance->data);
12471 PopulateInstance(exp->__anon1.instance);
12472 }
12473 else if(_class->type == 2)
12474 {
12475 unsigned int (* Get)(unsigned int) = (void *)prop->Get;
12476 uint64 bits = Get(value);
12477
12478 exp->__anon1.__anon1.constant = PrintHexUInt64(bits);
12479 exp->type = 2;
12480 }
12481 break;
12482 }
12483 }
12484 }
12485 else if(_class->type == 1)
12486 {
12487 unsigned char * value = (exp->__anon1.member.exp->type == 1) ? exp->__anon1.member.exp->__anon1.instance->data : (((void *)0));
12488
12489 switch(type->kind)
12490 {
12491 case 8:
12492 {
12493 struct __ecereNameSpace__ecere__com__Class * _class = type->__anon1._class->__anon1.registered;
12494
12495 if(_class->type == 1 && value)
12496 {
12497 void (* Get)(void *, void *) = (void *)prop->Get;
12498
12499 exp->__anon1.instance = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Instantiation);
12500 exp->__anon1.instance->data = __ecereNameSpace__ecere__com__eSystem_New0(sizeof(unsigned char) * (_class->structSize));
12501 exp->__anon1.instance->_class = MkSpecifierName(_class->fullName);
12502 exp->__anon1.instance->loc = exp->loc;
12503 exp->type = 1;
12504 Get(value, exp->__anon1.instance->data);
12505 PopulateInstance(exp->__anon1.instance);
12506 }
12507 break;
12508 }
12509 }
12510 }
12511 }
12512 }
12513 }
12514 else
12515 {
12516 exp->isConstant = 0;
12517 }
12518 }
12519 else if(member)
12520 {
12521 }
12522 }
12523 if(exp->type != 8)
12524 {
12525 FreeExpression(memberExp);
12526 FreeIdentifier(memberID);
12527 }
12528 break;
12529 }
12530 case 10:
12531 {
12532 struct Type * type = ProcessType(exp->__anon1.typeName->qualifiers, exp->__anon1.typeName->declarator);
12533
12534 FreeExpContents(exp);
12535 exp->__anon1.__anon1.constant = PrintUInt(ComputeTypeSize(type));
12536 exp->type = 2;
12537 FreeType(type);
12538 break;
12539 }
12540 case 15:
12541 {
12542 struct Symbol * classSym = exp->__anon1._class->__anon1.__anon1.symbol;
12543
12544 if(classSym && classSym->__anon1.registered)
12545 {
12546 if(classSym->__anon1.registered->fixed)
12547 {
12548 FreeSpecifier(exp->__anon1._class);
12549 exp->__anon1.__anon1.constant = PrintUInt(classSym->__anon1.registered->templateClass ? classSym->__anon1.registered->templateClass->structSize : classSym->__anon1.registered->structSize);
12550 exp->type = 2;
12551 }
12552 else
12553 {
12554 char className[1024];
12555
12556 strcpy(className, "__ecereClass_");
12557 FullClassNameCat(className, classSym->string, 1);
12558 DeclareClass(classSym, className);
12559 FreeExpContents(exp);
12560 exp->type = 9;
12561 exp->__anon1.member.exp = MkExpIdentifier(MkIdentifier(className));
12562 exp->__anon1.member.member = MkIdentifier("structSize");
12563 }
12564 }
12565 break;
12566 }
12567 case 11:
12568 {
12569 struct Type * type;
12570 struct Expression * e = exp;
12571
12572 if(exp->type == 11)
12573 {
12574 if(exp->__anon1.cast.exp)
12575 ComputeExpression(exp->__anon1.cast.exp);
12576 e = exp->__anon1.cast.exp;
12577 }
12578 if(e && exp->expType)
12579 {
12580 type = exp->expType;
12581 if(type->kind == 8)
12582 {
12583 struct __ecereNameSpace__ecere__com__Class * _class = type->__anon1._class->__anon1.registered;
12584
12585 if(_class && (_class->type == 3 || _class->type == 2))
12586 {
12587 if(!_class->dataType)
12588 _class->dataType = ProcessTypeString(_class->dataTypeString, 0);
12589 type = _class->dataType;
12590 }
12591 }
12592 switch(type->kind)
12593 {
12594 case 24:
12595 case 1:
12596 if(type->isSigned)
12597 {
12598 char value = (char)0;
12599
12600 if(GetChar(e, &value))
12601 {
12602 FreeExpContents(exp);
12603 exp->__anon1.__anon1.constant = PrintChar(value);
12604 exp->type = 2;
12605 }
12606 }
12607 else
12608 {
12609 unsigned char value = (unsigned char)0;
12610
12611 if(GetUChar(e, &value))
12612 {
12613 FreeExpContents(exp);
12614 exp->__anon1.__anon1.constant = PrintUChar(value);
12615 exp->type = 2;
12616 }
12617 }
12618 break;
12619 case 2:
12620 if(type->isSigned)
12621 {
12622 short value = (short)0;
12623
12624 if(GetShort(e, &value))
12625 {
12626 FreeExpContents(exp);
12627 exp->__anon1.__anon1.constant = PrintShort(value);
12628 exp->type = 2;
12629 }
12630 }
12631 else
12632 {
12633 unsigned short value = (unsigned short)0;
12634
12635 if(GetUShort(e, &value))
12636 {
12637 FreeExpContents(exp);
12638 exp->__anon1.__anon1.constant = PrintUShort(value);
12639 exp->type = 2;
12640 }
12641 }
12642 break;
12643 case 3:
12644 if(type->isSigned)
12645 {
12646 int value = 0;
12647
12648 if(GetInt(e, &value))
12649 {
12650 FreeExpContents(exp);
12651 exp->__anon1.__anon1.constant = PrintInt(value);
12652 exp->type = 2;
12653 }
12654 }
12655 else
12656 {
12657 unsigned int value = 0;
12658
12659 if(GetUInt(e, &value))
12660 {
12661 FreeExpContents(exp);
12662 exp->__anon1.__anon1.constant = PrintUInt(value);
12663 exp->type = 2;
12664 }
12665 }
12666 break;
12667 case 4:
12668 if(type->isSigned)
12669 {
12670 long long value = 0;
12671
12672 if(GetInt64(e, &value))
12673 {
12674 FreeExpContents(exp);
12675 exp->__anon1.__anon1.constant = PrintInt64(value);
12676 exp->type = 2;
12677 }
12678 }
12679 else
12680 {
12681 uint64 value = 0;
12682
12683 if(GetUInt64(e, &value))
12684 {
12685 FreeExpContents(exp);
12686 exp->__anon1.__anon1.constant = PrintUInt64(value);
12687 exp->type = 2;
12688 }
12689 }
12690 break;
12691 case 22:
12692 if(type->isSigned)
12693 {
12694 intptr_t value = 0;
12695
12696 if(GetIntPtr(e, &value))
12697 {
12698 FreeExpContents(exp);
12699 exp->__anon1.__anon1.constant = PrintInt64((long long)value);
12700 exp->type = 2;
12701 }
12702 }
12703 else
12704 {
12705 uintptr_t value = 0;
12706
12707 if(GetUIntPtr(e, &value))
12708 {
12709 FreeExpContents(exp);
12710 exp->__anon1.__anon1.constant = PrintUInt64((uint64)value);
12711 exp->type = 2;
12712 }
12713 }
12714 break;
12715 case 23:
12716 if(type->isSigned)
12717 {
12718 ssize_t value = 0;
12719
12720 if(GetIntSize(e, &value))
12721 {
12722 FreeExpContents(exp);
12723 exp->__anon1.__anon1.constant = PrintInt64((long long)value);
12724 exp->type = 2;
12725 }
12726 }
12727 else
12728 {
12729 size_t value = 0;
12730
12731 if(GetUIntSize(e, &value))
12732 {
12733 FreeExpContents(exp);
12734 exp->__anon1.__anon1.constant = PrintUInt64((uint64)value);
12735 exp->type = 2;
12736 }
12737 }
12738 break;
12739 case 6:
12740 {
12741 float value = 0;
12742
12743 if(GetFloat(e, &value))
12744 {
12745 FreeExpContents(exp);
12746 exp->__anon1.__anon1.constant = PrintFloat(value);
12747 exp->type = 2;
12748 }
12749 break;
12750 }
12751 case 7:
12752 {
12753 double value = 0;
12754
12755 if(GetDouble(e, &value))
12756 {
12757 FreeExpContents(exp);
12758 exp->__anon1.__anon1.constant = PrintDouble(value);
12759 exp->type = 2;
12760 }
12761 break;
12762 }
12763 }
12764 }
12765 break;
12766 }
12767 case 12:
12768 {
12769 struct Operand op1 =
12770 {
12771 0, 0, 0,
12772 .__anon1 = {
12773 .c = 0
12774 },
12775 {
12776 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
12777 }
12778 };
12779 struct Operand op2 =
12780 {
12781 0, 0, 0,
12782 .__anon1 = {
12783 .c = 0
12784 },
12785 {
12786 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
12787 }
12788 };
12789 struct Operand op3 =
12790 {
12791 0, 0, 0,
12792 .__anon1 = {
12793 .c = 0
12794 },
12795 {
12796 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
12797 }
12798 };
12799
12800 if(exp->__anon1.cond.exp)
12801 ComputeExpression((*exp->__anon1.cond.exp).last);
12802 if(exp->__anon1.cond.elseExp)
12803 ComputeExpression(exp->__anon1.cond.elseExp);
12804 if(exp->__anon1.cond.cond)
12805 ComputeExpression(exp->__anon1.cond.cond);
12806 op1 = GetOperand(exp->__anon1.cond.cond);
12807 if(op1.type)
12808 op1.type->refCount++;
12809 op2 = GetOperand((*exp->__anon1.cond.exp).last);
12810 if(op2.type)
12811 op2.type->refCount++;
12812 op3 = GetOperand(exp->__anon1.cond.elseExp);
12813 if(op3.type)
12814 op3.type->refCount++;
12815 if(op1.ops.Cond)
12816 {
12817 FreeExpContents(exp);
12818 op1.ops.Cond(exp, &op1, &op2, &op3);
12819 }
12820 if(op1.type)
12821 FreeType(op1.type);
12822 if(op2.type)
12823 FreeType(op2.type);
12824 if(op3.type)
12825 FreeType(op3.type);
12826 break;
12827 }
12828 }
12829 }
12830
12831 void ApplyAnyObjectLogic(struct Expression * e);
12832
12833 static unsigned int CheckExpressionType(struct Expression * exp, struct Type * destType, unsigned int skipUnitBla, unsigned int warnConst)
12834 {
12835 unsigned int result = 1;
12836
12837 if(destType)
12838 {
12839 struct __ecereNameSpace__ecere__sys__OldList converts =
12840 {
12841 0, 0, 0, 0, 0
12842 };
12843 struct Conversion * convert;
12844
12845 if(destType->kind == 0)
12846 return 0;
12847 if(!MatchTypeExpression(exp, destType, &converts, skipUnitBla, warnConst))
12848 result = 0;
12849 if(converts.count)
12850 {
12851 for(convert = converts.first; convert; convert = convert->next)
12852 {
12853 unsigned int empty = !(convert->isGet ? (void *)convert->convert->Get : (void *)convert->convert->Set);
12854
12855 if(!empty)
12856 {
12857 struct Expression * newExp = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Expression);
12858 int objectType = exp->expType ? exp->expType->classObjectType : 0;
12859
12860 *newExp = *exp;
12861 newExp->prev = (((void *)0));
12862 newExp->next = (((void *)0));
12863 newExp->destType = (((void *)0));
12864 if(convert->isGet)
12865 {
12866 exp->type = 8;
12867 exp->addedThis = 1;
12868 exp->__anon1.member.exp = newExp;
12869 FreeType(exp->__anon1.member.exp->expType);
12870 exp->__anon1.member.exp->expType = MkClassType(convert->convert->_class->fullName);
12871 exp->__anon1.member.exp->expType->classObjectType = objectType;
12872 exp->__anon1.member.member = MkIdentifier(convert->convert->dataTypeString);
12873 exp->__anon1.member.memberType = 1;
12874 exp->expType = convert->resultType ? convert->resultType : convert->convert->dataType;
12875 exp->needCast = 1;
12876 if(exp->expType)
12877 exp->expType->refCount++;
12878 ApplyAnyObjectLogic(exp->__anon1.member.exp);
12879 }
12880 else
12881 {
12882 {
12883 exp->type = 8;
12884 exp->addedThis = 1;
12885 exp->__anon1.member.exp = newExp;
12886 if(newExp->expType && newExp->expType->kind == 8 && newExp->expType->__anon1._class && newExp->expType->__anon1._class->__anon1.registered && newExp->expType->__anon1._class->__anon1.registered->type == 5)
12887 {
12888 newExp->byReference = 1;
12889 }
12890 FreeType(exp->__anon1.member.exp->expType);
12891 exp->__anon1.member.exp->expType = (((void *)0));
12892 if(convert->convert->dataType)
12893 {
12894 exp->__anon1.member.exp->expType = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
12895 CopyTypeInto(exp->__anon1.member.exp->expType, convert->convert->dataType);
12896 exp->__anon1.member.exp->expType->refCount = 1;
12897 exp->__anon1.member.exp->expType->classObjectType = objectType;
12898 ApplyAnyObjectLogic(exp->__anon1.member.exp);
12899 }
12900 exp->__anon1.member.member = MkIdentifier(convert->convert->_class->fullName);
12901 exp->__anon1.member.memberType = 4;
12902 exp->expType = convert->resultType ? convert->resultType : MkClassType(convert->convert->_class->fullName);
12903 exp->needCast = 1;
12904 if(convert->resultType)
12905 convert->resultType->refCount++;
12906 }
12907 }
12908 }
12909 else
12910 {
12911 FreeType(exp->expType);
12912 if(convert->isGet)
12913 {
12914 exp->expType = convert->resultType ? convert->resultType : convert->convert->dataType;
12915 if(exp->destType->casted)
12916 exp->needCast = 1;
12917 if(exp->expType)
12918 exp->expType->refCount++;
12919 }
12920 else
12921 {
12922 exp->expType = convert->resultType ? convert->resultType : MkClassType(convert->convert->_class->fullName);
12923 if(exp->destType->casted)
12924 exp->needCast = 1;
12925 if(convert->resultType)
12926 convert->resultType->refCount++;
12927 }
12928 }
12929 }
12930 if(exp->isConstant && inCompiler)
12931 ComputeExpression(exp);
12932 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Free(&converts, (void *)(FreeConvert));
12933 }
12934 if(!result && exp->expType && converts.count)
12935 {
12936 result = MatchTypes(exp->expType, exp->destType, (((void *)0)), (((void *)0)), (((void *)0)), 1, 1, 0, 0, warnConst);
12937 }
12938 if(!result && exp->expType && exp->destType)
12939 {
12940 if((exp->destType->kind == 8 && exp->expType->kind == 13 && exp->expType->__anon1.type->kind == 8 && exp->expType->__anon1.type->__anon1._class == exp->destType->__anon1._class && exp->destType->__anon1._class->__anon1.registered && exp->destType->__anon1._class->__anon1.registered->type == 1) || (exp->expType->kind == 8 && exp->destType->kind == 13 && exp->destType->__anon1.type->kind == 8 && exp->destType->__anon1.type->__anon1._class == exp->expType->__anon1._class && exp->expType->__anon1._class->__anon1.registered && exp->expType->__anon1._class->__anon1.registered->type == 1))
12941 result = 1;
12942 }
12943 }
12944 return result;
12945 }
12946
12947 extern struct Expression * GetNonBracketsExp(struct Expression * exp);
12948
12949 extern struct Statement * MkCompoundStmt(struct __ecereNameSpace__ecere__sys__OldList * declarations, struct __ecereNameSpace__ecere__sys__OldList * statements);
12950
12951 extern struct Statement * MkExpressionStmt(struct __ecereNameSpace__ecere__sys__OldList * expressions);
12952
12953 extern struct Expression * MkExpMember(struct Expression * expression, struct Identifier * member);
12954
12955 void CheckTemplateTypes(struct Expression * exp)
12956 {
12957 struct Expression * nbExp = GetNonBracketsExp(exp);
12958
12959 if(exp->destType && exp->destType->passAsTemplate && exp->expType && exp->expType->kind != 20 && !exp->expType->passAsTemplate && (nbExp == exp || nbExp->type != 11))
12960 {
12961 struct Expression * newExp = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Expression);
12962 struct Context * context;
12963
12964 *newExp = *exp;
12965 if(exp->destType)
12966 exp->destType->refCount++;
12967 if(exp->expType)
12968 exp->expType->refCount++;
12969 newExp->prev = (((void *)0));
12970 newExp->next = (((void *)0));
12971 switch(exp->expType->kind)
12972 {
12973 case 7:
12974 if(exp->destType->classObjectType)
12975 {
12976 if(exp->destType)
12977 exp->destType->refCount--;
12978 if(exp->expType)
12979 exp->expType->refCount--;
12980 ((newExp ? (__ecereClass_Expression->Destructor ? __ecereClass_Expression->Destructor((void *)newExp) : 0, __ecereNameSpace__ecere__com__eSystem_Delete(newExp)) : 0), newExp = 0);
12981 }
12982 else
12983 {
12984 struct __ecereNameSpace__ecere__sys__OldList * specs;
12985 struct __ecereNameSpace__ecere__sys__OldList * unionDefs = MkList();
12986 struct __ecereNameSpace__ecere__sys__OldList * statements = MkList();
12987
12988 context = PushContext();
12989 ListAdd(unionDefs, MkClassDefDeclaration(MkStructDeclaration(MkListOne(MkSpecifier(DOUBLE)), MkListOne(MkDeclaratorIdentifier(MkIdentifier("d"))), (((void *)0)))));
12990 ListAdd(unionDefs, MkClassDefDeclaration(MkStructDeclaration(MkListOne(MkSpecifierName("uint64")), MkListOne(MkDeclaratorIdentifier(MkIdentifier("i"))), (((void *)0)))));
12991 specs = MkListOne(MkStructOrUnion(4, (((void *)0)), unionDefs));
12992 exp->type = 23;
12993 exp->__anon1.compound = MkCompoundStmt(MkListOne(MkDeclaration(specs, MkListOne(MkInitDeclarator(MkDeclaratorIdentifier(MkIdentifier("__internal_union")), (((void *)0)))))), statements);
12994 ListAdd(statements, MkExpressionStmt(MkListOne(MkExpOp(MkExpMember(MkExpIdentifier(MkIdentifier("__internal_union")), MkIdentifier("d")), '=', newExp))));
12995 ListAdd(statements, MkExpressionStmt(MkListOne(MkExpMember(MkExpIdentifier(MkIdentifier("__internal_union")), MkIdentifier("i")))));
12996 exp->__anon1.compound->__anon1.compound.context = context;
12997 PopContext(context);
12998 }
12999 break;
13000 default:
13001 exp->type = 11;
13002 exp->__anon1.cast.typeName = MkTypeName(MkListOne(MkSpecifierName("uint64")), (((void *)0)));
13003 exp->__anon1.cast.exp = MkExpBrackets(MkListOne(newExp));
13004 exp->needCast = 1;
13005 break;
13006 }
13007 }
13008 else if(exp->expType && exp->expType->passAsTemplate && exp->destType && ((unsigned int)((exp->usage & 0x1) >> 0)) && exp->destType->kind != 20 && !exp->destType->passAsTemplate)
13009 {
13010 struct Expression * newExp = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Expression);
13011 struct Context * context;
13012
13013 *newExp = *exp;
13014 if(exp->destType)
13015 exp->destType->refCount++;
13016 if(exp->expType)
13017 exp->expType->refCount++;
13018 newExp->prev = (((void *)0));
13019 newExp->next = (((void *)0));
13020 switch(exp->expType->kind)
13021 {
13022 case 7:
13023 if(exp->destType->classObjectType)
13024 {
13025 if(exp->destType)
13026 exp->destType->refCount--;
13027 if(exp->expType)
13028 exp->expType->refCount--;
13029 ((newExp ? (__ecereClass_Expression->Destructor ? __ecereClass_Expression->Destructor((void *)newExp) : 0, __ecereNameSpace__ecere__com__eSystem_Delete(newExp)) : 0), newExp = 0);
13030 }
13031 else
13032 {
13033 struct __ecereNameSpace__ecere__sys__OldList * specs;
13034 struct __ecereNameSpace__ecere__sys__OldList * unionDefs = MkList();
13035 struct __ecereNameSpace__ecere__sys__OldList * statements = MkList();
13036
13037 context = PushContext();
13038 ListAdd(unionDefs, MkClassDefDeclaration(MkStructDeclaration(MkListOne(MkSpecifier(DOUBLE)), MkListOne(MkDeclaratorIdentifier(MkIdentifier("d"))), (((void *)0)))));
13039 ListAdd(unionDefs, MkClassDefDeclaration(MkStructDeclaration(MkListOne(MkSpecifierName("uint64")), MkListOne(MkDeclaratorIdentifier(MkIdentifier("i"))), (((void *)0)))));
13040 specs = MkListOne(MkStructOrUnion(4, (((void *)0)), unionDefs));
13041 exp->type = 23;
13042 exp->__anon1.compound = MkCompoundStmt(MkListOne(MkDeclaration(specs, MkListOne(MkInitDeclarator(MkDeclaratorIdentifier(MkIdentifier("__internal_union")), (((void *)0)))))), statements);
13043 ListAdd(statements, MkExpressionStmt(MkListOne(MkExpOp(MkExpMember(MkExpIdentifier(MkIdentifier("__internal_union")), MkIdentifier("i")), '=', newExp))));
13044 ListAdd(statements, MkExpressionStmt(MkListOne(MkExpMember(MkExpIdentifier(MkIdentifier("__internal_union")), MkIdentifier("d")))));
13045 exp->__anon1.compound->__anon1.compound.context = context;
13046 PopContext(context);
13047 }
13048 break;
13049 case 8:
13050 {
13051 if(exp->expType->__anon1._class && exp->expType->__anon1._class->__anon1.registered && exp->expType->__anon1._class->__anon1.registered->type == 1)
13052 {
13053 exp->type = 5;
13054 exp->__anon1.list = MkListOne(MkExpOp((((void *)0)), '*', MkExpCast(MkTypeName(MkListOne(MkSpecifierName(exp->expType->__anon1._class->string)), MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), (((void *)0)))), newExp)));
13055 ProcessExpressionType((*exp->__anon1.list).first);
13056 break;
13057 }
13058 else
13059 {
13060 exp->type = 5;
13061 exp->__anon1.list = MkListOne(MkExpCast(MkTypeName(MkListOne(MkSpecifierName(exp->expType->__anon1._class->string)), (((void *)0))), newExp));
13062 exp->needTemplateCast = 2;
13063 newExp->needCast = 1;
13064 newExp->needTemplateCast = 2;
13065 ProcessExpressionType((*exp->__anon1.list).first);
13066 break;
13067 }
13068 }
13069 default:
13070 {
13071 if(exp->expType->kind == 20)
13072 {
13073 struct Type * type = ProcessTemplateParameterType(exp->expType->__anon1.templateParameter);
13074
13075 if(type)
13076 {
13077 FreeType(exp->destType);
13078 FreeType(exp->expType);
13079 ((newExp ? (__ecereClass_Expression->Destructor ? __ecereClass_Expression->Destructor((void *)newExp) : 0, __ecereNameSpace__ecere__com__eSystem_Delete(newExp)) : 0), newExp = 0);
13080 break;
13081 }
13082 }
13083 if(newExp->type == 8 && newExp->__anon1.member.memberType == 3)
13084 {
13085 exp->type = 4;
13086 exp->__anon1.op.op = '*';
13087 exp->__anon1.op.exp1 = (((void *)0));
13088 exp->__anon1.op.exp2 = MkExpCast(MkTypeName(MkListOne(MkSpecifierName("uint64")), MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), (((void *)0)))), MkExpBrackets(MkListOne(MkExpOp((((void *)0)), '&', newExp))));
13089 }
13090 else
13091 {
13092 char typeString[1024];
13093 struct Declarator * decl;
13094 struct __ecereNameSpace__ecere__sys__OldList * specs = MkList();
13095
13096 typeString[0] = '\0';
13097 PrintType(exp->expType, typeString, 0, 0);
13098 decl = SpecDeclFromString(typeString, specs, (((void *)0)));
13099 exp->type = 11;
13100 exp->__anon1.cast.typeName = MkTypeName(specs, decl);
13101 exp->__anon1.cast.exp = MkExpBrackets(MkListOne(newExp));
13102 exp->__anon1.cast.exp->needCast = 1;
13103 }
13104 break;
13105 }
13106 }
13107 }
13108 }
13109
13110 extern int strncmp(const char * , const char * , size_t n);
13111
13112 struct __ecereNameSpace__ecere__sys__BTNode * __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_FindPrefix(struct __ecereNameSpace__ecere__sys__BinaryTree * this, const char *  key);
13113
13114 static struct Symbol * ScanWithNameSpace(struct __ecereNameSpace__ecere__sys__BinaryTree * tree, const char * nameSpace, const char * name)
13115 {
13116 int nsLen = strlen(nameSpace);
13117 struct Symbol * symbol;
13118
13119 for(symbol = (struct Symbol *)__ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_FindPrefix(tree, nameSpace); symbol; symbol = (struct Symbol *)__ecereProp___ecereNameSpace__ecere__sys__BTNode_Get_next(((struct __ecereNameSpace__ecere__sys__BTNode *)symbol)))
13120 {
13121 char * s = symbol->string;
13122
13123 if(!strncmp(s, nameSpace, nsLen))
13124 {
13125 int c;
13126 char * namePart;
13127
13128 for(c = strlen(s) - 1; c >= 0; c--)
13129 if(s[c] == ':')
13130 break;
13131 namePart = s + c + 1;
13132 if(!strcmp(namePart, name))
13133 {
13134 return symbol;
13135 }
13136 }
13137 else
13138 break;
13139 }
13140 return (((void *)0));
13141 }
13142
13143 static struct Symbol * FindWithNameSpace(struct __ecereNameSpace__ecere__sys__BinaryTree * tree, const char * name)
13144 {
13145 int c;
13146 char nameSpace[1024];
13147 const char * namePart;
13148 unsigned int gotColon = 0;
13149
13150 nameSpace[0] = '\0';
13151 for(c = strlen(name) - 1; c >= 0; c--)
13152 if(name[c] == ':')
13153 {
13154 gotColon = 1;
13155 break;
13156 }
13157 namePart = name + c + 1;
13158 while(c >= 0 && name[c] == ':')
13159 c--;
13160 if(c >= 0)
13161 {
13162 struct Symbol * symbol = (struct Symbol *)__ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_FindString(tree, name);
13163
13164 if(symbol)
13165 return symbol;
13166 memcpy(nameSpace, name, c + 1);
13167 nameSpace[c + 1] = (char)0;
13168 return ScanWithNameSpace(tree, nameSpace, namePart);
13169 }
13170 else if(gotColon)
13171 {
13172 struct Symbol * symbol = (struct Symbol *)__ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_FindString(tree, namePart);
13173
13174 return symbol;
13175 }
13176 else
13177 {
13178 struct Symbol * symbol = (struct Symbol *)__ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_FindString(tree, namePart);
13179
13180 if(symbol)
13181 return symbol;
13182 return ScanWithNameSpace(tree, "", namePart);
13183 }
13184 return (((void *)0));
13185 }
13186
13187 static void ProcessDeclaration(struct Declaration * decl);
13188
13189 struct Symbol * FindSymbol(const char * name, struct Context * startContext, struct Context * endContext, unsigned int isStruct, unsigned int globalNameSpace)
13190 {
13191 struct Context * ctx;
13192 struct Symbol * symbol = (((void *)0));
13193
13194 for(ctx = startContext; ctx && !symbol; ctx = ctx->parent)
13195 {
13196 if(ctx == globalContext && !globalNameSpace && ctx->hasNameSpace)
13197 {
13198 symbol = (((void *)0));
13199 if(thisNameSpace)
13200 {
13201 char curName[1024];
13202
13203 strcpy(curName, thisNameSpace);
13204 strcat(curName, "::");
13205 strcat(curName, name);
13206 symbol = FindWithNameSpace(isStruct ? &ctx->structSymbols : &ctx->symbols, curName);
13207 }
13208 if(!symbol)
13209 symbol = FindWithNameSpace(isStruct ? &ctx->structSymbols : &ctx->symbols, name);
13210 }
13211 else
13212 symbol = (struct Symbol *)__ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_FindString((isStruct ? &ctx->structSymbols : &ctx->symbols), name);
13213 if(symbol || ctx == endContext)
13214 break;
13215 }
13216 if(inCompiler && curExternal && symbol && ctx == globalContext && curExternal->symbol && symbol->id > curExternal->symbol->idCode && symbol->__anon2.__anon1.pointerExternal)
13217 {
13218 if(symbol->__anon2.__anon1.pointerExternal->type == 0)
13219 {
13220 struct FunctionDefinition * function = symbol->__anon2.__anon1.pointerExternal->__anon1.function;
13221 struct Context * tmpContext = curContext;
13222
13223 curContext = (((void *)0));
13224 symbol->__anon2.__anon1.pointerExternal = MkExternalDeclaration(MkDeclaration(CopyList(function->specifiers, (void *)(CopySpecifier)), MkListOne(MkInitDeclarator(CopyDeclarator(function->declarator), (((void *)0))))));
13225 curContext = tmpContext;
13226 symbol->__anon2.__anon1.pointerExternal->symbol = symbol;
13227 DeclareType(symbol->type, 1, 1);
13228 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*ast), curExternal->prev, symbol->__anon2.__anon1.pointerExternal);
13229 symbol->id = curExternal->symbol->idCode;
13230 }
13231 else if(symbol->__anon2.__anon1.pointerExternal->type == 1 && curExternal->symbol->idCode < symbol->__anon2.__anon1.pointerExternal->symbol->id)
13232 {
13233 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Move((&*ast), symbol->__anon2.__anon1.pointerExternal, curExternal->prev);
13234 symbol->id = curExternal->symbol->idCode;
13235 }
13236 }
13237 return symbol;
13238 }
13239
13240 static void GetTypeSpecs(struct Type * type, struct __ecereNameSpace__ecere__sys__OldList * specs)
13241 {
13242 if(!type->isSigned && type->kind != 22 && type->kind != 23)
13243 ListAdd(specs, MkSpecifier(UNSIGNED));
13244 switch(type->kind)
13245 {
13246 case 8:
13247 {
13248 if(type->__anon1._class->__anon1.registered)
13249 {
13250 if(!type->__anon1._class->__anon1.registered->dataType)
13251 type->__anon1._class->__anon1.registered->dataType = ProcessTypeString(type->__anon1._class->__anon1.registered->dataTypeString, 0);
13252 GetTypeSpecs(type->__anon1._class->__anon1.registered->dataType, specs);
13253 }
13254 break;
13255 }
13256 case 7:
13257 ListAdd(specs, MkSpecifier(DOUBLE));
13258 break;
13259 case 6:
13260 ListAdd(specs, MkSpecifier(FLOAT));
13261 break;
13262 case 1:
13263 ListAdd(specs, MkSpecifier(CHAR));
13264 break;
13265 case 24:
13266 ListAdd(specs, MkSpecifier(_BOOL));
13267 break;
13268 case 2:
13269 ListAdd(specs, MkSpecifier(SHORT));
13270 break;
13271 case 4:
13272 ListAdd(specs, MkSpecifier(INT64));
13273 break;
13274 case 22:
13275 ListAdd(specs, MkSpecifierName(type->isSigned ? "intptr" : "uintptr"));
13276 break;
13277 case 23:
13278 ListAdd(specs, MkSpecifierName(type->isSigned ? "intsize" : "uintsize"));
13279 break;
13280 case 3:
13281 default:
13282 ListAdd(specs, MkSpecifier(INT));
13283 break;
13284 }
13285 }
13286
13287 static void PrintArraySize(struct Type * arrayType, char * string)
13288 {
13289 char size[256];
13290
13291 size[0] = '\0';
13292 strcat(size, "[");
13293 if(arrayType->__anon1.__anon4.enumClass)
13294 strcat(size, arrayType->__anon1.__anon4.enumClass->string);
13295 else if(arrayType->__anon1.__anon4.arraySizeExp)
13296 PrintExpression(arrayType->__anon1.__anon4.arraySizeExp, size);
13297 strcat(size, "]");
13298 strcat(string, size);
13299 }
13300
13301 static void PrintTypeSpecs(struct Type * type, char * string, unsigned int fullName, unsigned int printConst)
13302 {
13303 if(type)
13304 {
13305 if(printConst && type->constant)
13306 strcat(string, "const ");
13307 switch(type->kind)
13308 {
13309 case 8:
13310 {
13311 struct Symbol * c = type->__anon1._class;
13312
13313 if(type->classObjectType == 2)
13314 strcat(string, "typed_object");
13315 else if(type->classObjectType == 3)
13316 strcat(string, "any_object");
13317 else
13318 {
13319 if(c && c->string)
13320 strcat(string, (fullName || !c->__anon1.registered) ? c->string : c->__anon1.registered->name);
13321 }
13322 if(type->byReference)
13323 strcat(string, " &");
13324 break;
13325 }
13326 case 0:
13327 strcat(string, "void");
13328 break;
13329 case 3:
13330 strcat(string, type->isSigned ? "int" : "uint");
13331 break;
13332 case 4:
13333 strcat(string, type->isSigned ? "int64" : "uint64");
13334 break;
13335 case 22:
13336 strcat(string, type->isSigned ? "intptr" : "uintptr");
13337 break;
13338 case 23:
13339 strcat(string, type->isSigned ? "intsize" : "uintsize");
13340 break;
13341 case 1:
13342 strcat(string, type->isSigned ? "char" : "byte");
13343 break;
13344 case 24:
13345 strcat(string, "_Bool");
13346 break;
13347 case 2:
13348 strcat(string, type->isSigned ? "short" : "uint16");
13349 break;
13350 case 6:
13351 strcat(string, "float");
13352 break;
13353 case 7:
13354 strcat(string, "double");
13355 break;
13356 case 9:
13357 if(type->__anon1.__anon1.enumName)
13358 {
13359 strcat(string, "struct ");
13360 strcat(string, type->__anon1.__anon1.enumName);
13361 }
13362 else if(type->typeName)
13363 strcat(string, type->typeName);
13364 else
13365 {
13366 struct Type * member;
13367
13368 strcat(string, "struct { ");
13369 for(member = type->__anon1.__anon1.members.first; member; member = member->next)
13370 {
13371 PrintType(member, string, 1, fullName);
13372 strcat(string, "; ");
13373 }
13374 strcat(string, "}");
13375 }
13376 break;
13377 case 10:
13378 if(type->__anon1.__anon1.enumName)
13379 {
13380 strcat(string, "union ");
13381 strcat(string, type->__anon1.__anon1.enumName);
13382 }
13383 else if(type->typeName)
13384 strcat(string, type->typeName);
13385 else
13386 {
13387 strcat(string, "union ");
13388 strcat(string, "(unnamed)");
13389 }
13390 break;
13391 case 15:
13392 if(type->__anon1.__anon1.enumName)
13393 {
13394 strcat(string, "enum ");
13395 strcat(string, type->__anon1.__anon1.enumName);
13396 }
13397 else if(type->typeName)
13398 strcat(string, type->typeName);
13399 else
13400 strcat(string, "int");
13401 break;
13402 case 14:
13403 strcat(string, "...");
13404 break;
13405 case 19:
13406 strcat(string, "subclass(");
13407 strcat(string, type->__anon1._class ? type->__anon1._class->string : "int");
13408 strcat(string, ")");
13409 break;
13410 case 20:
13411 strcat(string, type->__anon1.templateParameter->identifier->string);
13412 break;
13413 case 21:
13414 strcat(string, "thisclass");
13415 break;
13416 case 17:
13417 strcat(string, "__builtin_va_list");
13418 break;
13419 }
13420 }
13421 }
13422
13423 extern char *  __ecereNameSpace__ecere__sys__RSearchString(const char *  buffer, const char *  subStr, int maxLen, unsigned int matchCase, unsigned int matchWord);
13424
13425 static void PrintName(struct Type * type, char * string, unsigned int fullName)
13426 {
13427 if(type->name && type->name[0])
13428 {
13429 if(fullName)
13430 strcat(string, type->name);
13431 else
13432 {
13433 char * name = __ecereNameSpace__ecere__sys__RSearchString(type->name, "::", strlen(type->name), 1, 0);
13434
13435 if(name)
13436 name += 2;
13437 else
13438 name = type->name;
13439 strcat(string, name);
13440 }
13441 }
13442 }
13443
13444 static void PrintAttribs(struct Type * type, char * string)
13445 {
13446 if(type)
13447 {
13448 if(type->dllExport)
13449 strcat(string, "dllexport ");
13450 if(type->attrStdcall)
13451 strcat(string, "stdcall ");
13452 }
13453 }
13454
13455 static void PrePrintType(struct Type * type, char * string, unsigned int fullName, struct Type * parentType, unsigned int printConst)
13456 {
13457 if(type->kind == 12 || type->kind == 13 || type->kind == 11 || type->kind == 16)
13458 {
13459 if((type->kind == 11 || type->kind == 16) && (!parentType || parentType->kind != 13))
13460 PrintAttribs(type, string);
13461 if(printConst && type->constant && (type->kind == 11 || type->kind == 16))
13462 strcat(string, " const");
13463 PrePrintType(type->kind == 16 ? type->__anon1.__anon3.method->dataType : type->__anon1.type, string, fullName, type, printConst);
13464 if(type->kind == 13 && (type->__anon1.type->kind == 12 || type->__anon1.type->kind == 11 || type->__anon1.type->kind == 16))
13465 strcat(string, " (");
13466 if(type->kind == 13)
13467 {
13468 if(type->__anon1.type->kind == 11 || type->__anon1.type->kind == 16)
13469 PrintAttribs(type->__anon1.type, string);
13470 }
13471 if(type->kind == 13)
13472 {
13473 if(type->__anon1.type->kind == 11 || type->__anon1.type->kind == 16 || type->__anon1.type->kind == 12)
13474 strcat(string, "*");
13475 else
13476 strcat(string, " *");
13477 }
13478 if(printConst && type->constant && type->kind == 13)
13479 strcat(string, " const");
13480 }
13481 else
13482 PrintTypeSpecs(type, string, fullName, printConst);
13483 }
13484
13485 static void PostPrintType(struct Type * type, char * string, unsigned int fullName)
13486 {
13487 if(type->kind == 13 && (type->__anon1.type->kind == 12 || type->__anon1.type->kind == 11 || type->__anon1.type->kind == 16))
13488 strcat(string, ")");
13489 if(type->kind == 12)
13490 PrintArraySize(type, string);
13491 else if(type->kind == 11)
13492 {
13493 struct Type * param;
13494
13495 strcat(string, "(");
13496 for(param = type->__anon1.__anon2.params.first; param; param = param->next)
13497 {
13498 PrintType(param, string, 1, fullName);
13499 if(param->next)
13500 strcat(string, ", ");
13501 }
13502 strcat(string, ")");
13503 }
13504 if(type->kind == 12 || type->kind == 13 || type->kind == 11 || type->kind == 16)
13505 PostPrintType(type->kind == 16 ? type->__anon1.__anon3.method->dataType : type->__anon1.type, string, fullName);
13506 }
13507
13508 static void _PrintType(struct Type * type, char * string, unsigned int printName, unsigned int fullName, unsigned int printConst)
13509 {
13510 PrePrintType(type, string, fullName, (((void *)0)), printConst);
13511 if(type->__anon1.__anon2.thisClass || (printName && type->name && type->name[0]))
13512 strcat(string, " ");
13513 if((type->__anon1.__anon2.thisClass || type->__anon1.__anon2.staticMethod))
13514 {
13515 struct Symbol * _class = type->__anon1.__anon2.thisClass;
13516
13517 if((type->classObjectType == 2 || type->classObjectType == 1) || (_class && !strcmp(_class->string, "class")))
13518 {
13519 if(type->classObjectType == 1)
13520 strcat(string, "class");
13521 else
13522 strcat(string, type->byReference ? "typed_object&" : "typed_object");
13523 }
13524 else if(_class && _class->string)
13525 {
13526 char * s = _class->string;
13527
13528 if(fullName)
13529 strcat(string, s);
13530 else
13531 {
13532 char * name = __ecereNameSpace__ecere__sys__RSearchString(s, "::", strlen(s), 1, 0);
13533
13534 if(name)
13535 name += 2;
13536 else
13537 name = s;
13538 strcat(string, name);
13539 }
13540 }
13541 strcat(string, "::");
13542 }
13543 if(printName && type->name)
13544 PrintName(type, string, fullName);
13545 PostPrintType(type, string, fullName);
13546 if(type->bitFieldCount)
13547 {
13548 char count[100];
13549
13550 sprintf(count, ":%d", type->bitFieldCount);
13551 strcat(string, count);
13552 }
13553 }
13554
13555 void PrintType(struct Type * type, char * string, unsigned int printName, unsigned int fullName)
13556 {
13557 _PrintType(type, string, printName, fullName, 1);
13558 }
13559
13560 void PrintTypeNoConst(struct Type * type, char * string, unsigned int printName, unsigned int fullName)
13561 {
13562 _PrintType(type, string, printName, fullName, 0);
13563 }
13564
13565 static struct Type * FindMember(struct Type * type, char * string)
13566 {
13567 struct Type * memberType;
13568
13569 for(memberType = type->__anon1.__anon1.members.first; memberType; memberType = memberType->next)
13570 {
13571 if(!memberType->name)
13572 {
13573 struct Type * subType = FindMember(memberType, string);
13574
13575 if(subType)
13576 return subType;
13577 }
13578 else if(!strcmp(memberType->name, string))
13579 return memberType;
13580 }
13581 return (((void *)0));
13582 }
13583
13584 struct Type * FindMemberAndOffset(struct Type * type, char * string, unsigned int * offset)
13585 {
13586 struct Type * memberType;
13587
13588 for(memberType = type->__anon1.__anon1.members.first; memberType; memberType = memberType->next)
13589 {
13590 if(!memberType->name)
13591 {
13592 struct Type * subType = FindMember(memberType, string);
13593
13594 if(subType)
13595 {
13596 *offset += memberType->offset;
13597 return subType;
13598 }
13599 }
13600 else if(!strcmp(memberType->name, string))
13601 {
13602 *offset += memberType->offset;
13603 return memberType;
13604 }
13605 }
13606 return (((void *)0));
13607 }
13608
13609 extern unsigned int parseError;
13610
13611 unsigned int GetParseError()
13612 {
13613 return parseError;
13614 }
13615
13616 extern struct __ecereNameSpace__ecere__com__Instance * fileInput;
13617
13618 int __ecereVMethodID___ecereNameSpace__ecere__sys__File_Write;
13619
13620 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__sys__File;
13621
13622 struct Expression * ParseExpressionString(char * expression)
13623 {
13624 parseError = 0;
13625 fileInput = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass___ecereNameSpace__ecere__sys__TempFile);
13626 ((int (*)(struct __ecereNameSpace__ecere__com__Instance *, const void *  buffer, unsigned int size, unsigned int count))__extension__ ({
13627 struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = fileInput;
13628
13629 __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__sys__File->_vTbl;
13630 })[__ecereVMethodID___ecereNameSpace__ecere__sys__File_Write])(fileInput, expression, 1, strlen(expression));
13631 ((unsigned int (*)(struct __ecereNameSpace__ecere__com__Instance *, int pos, int mode))__extension__ ({
13632 struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = fileInput;
13633
13634 __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__sys__File->_vTbl;
13635 })[__ecereVMethodID___ecereNameSpace__ecere__sys__File_Seek])(fileInput, 0, 0);
13636 echoOn = 0;
13637 parsedExpression = (((void *)0));
13638 resetScanner();
13639 expression_yyparse();
13640 (__ecereNameSpace__ecere__com__eInstance_DecRef(fileInput), fileInput = 0);
13641 return parsedExpression;
13642 }
13643
13644 extern char *  QMkString(const char *  source);
13645
13646 static unsigned int ResolveIdWithClass(struct Expression * exp, struct __ecereNameSpace__ecere__com__Class * _class, unsigned int skipIDClassCheck)
13647 {
13648 struct Identifier * id = exp->__anon1.__anon1.identifier;
13649 struct __ecereNameSpace__ecere__com__Method * method = (((void *)0));
13650 struct __ecereNameSpace__ecere__com__Property * prop = (((void *)0));
13651 struct __ecereNameSpace__ecere__com__DataMember * member = (((void *)0));
13652 struct __ecereNameSpace__ecere__com__ClassProperty * classProp = (((void *)0));
13653
13654 if(_class && _class->type == 4)
13655 {
13656 struct __ecereNameSpace__ecere__sys__NamedLink64 * value = (((void *)0));
13657 struct __ecereNameSpace__ecere__com__Class * enumClass = __ecereNameSpace__ecere__com__eSystem_FindClass(privateModule, "enum");
13658
13659 if(enumClass)
13660 {
13661 struct __ecereNameSpace__ecere__com__Class * baseClass;
13662
13663 for(baseClass = _class; baseClass && baseClass->type == 4; baseClass = baseClass->base)
13664 {
13665 struct __ecereNameSpace__ecere__com__EnumClassData * e = (baseClass ? ((void *)(((char *)baseClass->data) + enumClass->offsetClass)) : (((void *)0)));
13666
13667 for(value = e->values.first; value; value = value->next)
13668 {
13669 if(!strcmp(value->name, id->string))
13670 break;
13671 }
13672 if(value)
13673 {
13674 char constant[256];
13675
13676 FreeExpContents(exp);
13677 exp->type = 2;
13678 exp->isConstant = 1;
13679 if(!strcmp(baseClass->dataTypeString, "int") || !strcmp(baseClass->dataTypeString, "int64") || !strcmp(baseClass->dataTypeString, "char") || !strcmp(baseClass->dataTypeString, "short"))
13680 sprintf(constant, ((__runtimePlatform == 1) ? "%I64d" : "%lld"), value->data);
13681 else
13682 sprintf(constant, ((__runtimePlatform == 1) ? "0x%I64X" : "0x%llX"), value->data);
13683 exp->__anon1.__anon1.constant = __ecereNameSpace__ecere__sys__CopyString(constant);
13684 exp->expType = MkClassType(baseClass->fullName);
13685 break;
13686 }
13687 }
13688 }
13689 if(value)
13690 return 1;
13691 }
13692 if((method = __ecereNameSpace__ecere__com__eClass_FindMethod(_class, id->string, privateModule)))
13693 {
13694 ProcessMethodType(method);
13695 exp->expType = __extension__ ({
13696 struct Type * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
13697
13698 __ecereInstance1->refCount = 1, __ecereInstance1->kind = 16, __ecereInstance1->__anon1.__anon3.method = method, __ecereInstance1->__anon1.__anon3.methodClass = (skipIDClassCheck || (id && id->_class)) ? _class : (((void *)0)), __ecereInstance1;
13699 });
13700 return 1;
13701 }
13702 else if((prop = __ecereNameSpace__ecere__com__eClass_FindProperty(_class, id->string, privateModule)))
13703 {
13704 if(!prop->dataType)
13705 ProcessPropertyType(prop);
13706 exp->expType = prop->dataType;
13707 if(prop->dataType)
13708 prop->dataType->refCount++;
13709 return 1;
13710 }
13711 else if((member = __ecereNameSpace__ecere__com__eClass_FindDataMember(_class, id->string, privateModule, (((void *)0)), (((void *)0)))))
13712 {
13713 if(!member->dataType)
13714 member->dataType = ProcessTypeString(member->dataTypeString, 0);
13715 exp->expType = member->dataType;
13716 if(member->dataType)
13717 member->dataType->refCount++;
13718 return 1;
13719 }
13720 else if((classProp = __ecereNameSpace__ecere__com__eClass_FindClassProperty(_class, id->string)))
13721 {
13722 if(!classProp->dataType)
13723 classProp->dataType = ProcessTypeString(classProp->dataTypeString, 0);
13724 if(classProp->constant)
13725 {
13726 FreeExpContents(exp);
13727 exp->isConstant = 1;
13728 if(classProp->dataType->kind == 13 && classProp->dataType->__anon1.type->kind == 1)
13729 {
13730 exp->type = 3;
13731 exp->__anon1.__anon1.constant = QMkString((char *)classProp->Get(_class));
13732 }
13733 else
13734 {
13735 char constant[256];
13736
13737 exp->type = 2;
13738 sprintf(constant, "%d", (int)classProp->Get(_class));
13739 exp->__anon1.__anon1.constant = __ecereNameSpace__ecere__sys__CopyString(constant);
13740 }
13741 }
13742 else
13743 {
13744 }
13745 exp->expType = classProp->dataType;
13746 if(classProp->dataType)
13747 classProp->dataType->refCount++;
13748 return 1;
13749 }
13750 return 0;
13751 }
13752
13753 static struct GlobalData * ScanGlobalData(struct __ecereNameSpace__ecere__com__NameSpace * nameSpace, char * name)
13754 {
13755 struct __ecereNameSpace__ecere__sys__BinaryTree * tree = &nameSpace->functions;
13756 struct GlobalData * data = (struct GlobalData *)__ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_FindString((&*tree), name);
13757 struct __ecereNameSpace__ecere__com__NameSpace * child;
13758
13759 if(!data)
13760 {
13761 for(child = (struct __ecereNameSpace__ecere__com__NameSpace *)__ecereProp___ecereNameSpace__ecere__sys__BinaryTree_Get_first(&nameSpace->nameSpaces); child; child = (struct __ecereNameSpace__ecere__com__NameSpace *)__ecereProp___ecereNameSpace__ecere__sys__BTNode_Get_next(((struct __ecereNameSpace__ecere__sys__BTNode *)child)))
13762 {
13763 data = ScanGlobalData(child, name);
13764 if(data)
13765 break;
13766 }
13767 }
13768 return data;
13769 }
13770
13771 extern struct __ecereNameSpace__ecere__com__NameSpace *  globalData;
13772
13773 extern char *  strncpy(char * , const char * , size_t n);
13774
13775 static struct GlobalData * FindGlobalData(char * name)
13776 {
13777 int start = 0, c;
13778 struct __ecereNameSpace__ecere__com__NameSpace * nameSpace;
13779
13780 nameSpace = globalData;
13781 for(c = 0; name[c]; c++)
13782 {
13783 if(name[c] == '.' || (name[c] == ':' && name[c + 1] == ':'))
13784 {
13785 struct __ecereNameSpace__ecere__com__NameSpace * newSpace;
13786 char * spaceName = __ecereNameSpace__ecere__com__eSystem_New(sizeof(char) * (c - start + 1));
13787
13788 strncpy(spaceName, name + start, c - start);
13789 spaceName[c - start] = '\0';
13790 newSpace = (struct __ecereNameSpace__ecere__com__NameSpace *)__ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_FindString(&(*nameSpace).nameSpaces, spaceName);
13791 (__ecereNameSpace__ecere__com__eSystem_Delete(spaceName), spaceName = 0);
13792 if(!newSpace)
13793 return (((void *)0));
13794 nameSpace = newSpace;
13795 if(name[c] == ':')
13796 c++;
13797 start = c + 1;
13798 }
13799 }
13800 if(c - start)
13801 {
13802 return ScanGlobalData(nameSpace, name + start);
13803 }
13804 return (((void *)0));
13805 }
13806
13807 static int definedExpStackPos;
13808
13809 static void * definedExpStack[512];
13810
13811 void ReplaceExpContents(struct Expression * checkedExp, struct Expression * newExp)
13812 {
13813 struct Expression * prev = checkedExp->prev, * next = checkedExp->next;
13814
13815 FreeExpContents(checkedExp);
13816 FreeType(checkedExp->expType);
13817 FreeType(checkedExp->destType);
13818 *checkedExp = *newExp;
13819 ((newExp ? (__ecereClass_Expression->Destructor ? __ecereClass_Expression->Destructor((void *)newExp) : 0, __ecereNameSpace__ecere__com__eSystem_Delete(newExp)) : 0), newExp = 0);
13820 checkedExp->prev = prev;
13821 checkedExp->next = next;
13822 }
13823
13824 extern struct Expression * MkExpCall(struct Expression * expression, struct __ecereNameSpace__ecere__sys__OldList * arguments);
13825
13826 extern int printf(const char * , ...);
13827
13828 void __ecereMethod_Expression_Clear();
13829
13830 void ApplyAnyObjectLogic(struct Expression * e)
13831 {
13832 struct Type * destType = e->destType;
13833
13834 if(destType && (destType->classObjectType == 3))
13835 {
13836 if(e && e->expType)
13837 {
13838 struct Type * type = e->expType;
13839 struct __ecereNameSpace__ecere__com__Class * _class = (((void *)0));
13840
13841 if(type->kind == 8 && type->__anon1._class && type->__anon1._class->__anon1.registered)
13842 {
13843 _class = type->__anon1._class->__anon1.registered;
13844 }
13845 else if(type->kind == 19)
13846 {
13847 _class = FindClass("ecere::com::Class")->__anon1.registered;
13848 }
13849 else
13850 {
13851 char string[1024] = "";
13852 struct Symbol * classSym;
13853
13854 PrintTypeNoConst(type, string, 0, 1);
13855 classSym = FindClass(string);
13856 if(classSym)
13857 _class = classSym->__anon1.registered;
13858 }
13859 if((_class && (_class->type == 4 || _class->type == 3 || _class->type == 2 || _class->type == 1000) && strcmp(_class->fullName, "class") && strcmp(_class->fullName, "uintptr") && strcmp(_class->fullName, "intptr")) || (!e->expType->classObjectType && (((type->kind != 13 && type->kind != 22 && type->kind != 19 && (type->kind != 8 || !type->__anon1._class || !type->__anon1._class->__anon1.registered || type->__anon1._class->__anon1.registered->type == 1))) || destType->byReference)))
13860 {
13861 if(!_class || strcmp(_class->fullName, "char *"))
13862 {
13863 struct Expression * checkedExp = e, * newExp;
13864
13865 while(((checkedExp->type == 5 || checkedExp->type == 32 || checkedExp->type == 23) && checkedExp->__anon1.list) || checkedExp->type == 11)
13866 {
13867 if(checkedExp->type == 5 || checkedExp->type == 32 || checkedExp->type == 23)
13868 {
13869 if(checkedExp->type == 23)
13870 {
13871 checkedExp = (*((struct Statement *)(*checkedExp->__anon1.compound->__anon1.compound.statements).last)->__anon1.expressions).last;
13872 }
13873 else
13874 checkedExp = (*checkedExp->__anon1.list).last;
13875 }
13876 else if(checkedExp->type == 11)
13877 checkedExp = checkedExp->__anon1.cast.exp;
13878 }
13879 if(checkedExp && checkedExp->type == 4 && checkedExp->__anon1.op.op == '*' && !checkedExp->__anon1.op.exp1)
13880 {
13881 newExp = checkedExp->__anon1.op.exp2;
13882 checkedExp->__anon1.op.exp2 = (((void *)0));
13883 FreeExpContents(checkedExp);
13884 if(e->expType && e->expType->passAsTemplate)
13885 {
13886 char size[100];
13887
13888 ComputeTypeSize(e->expType);
13889 sprintf(size, "%d", e->expType->size);
13890 newExp = MkExpBrackets(MkListOne(MkExpOp(MkExpCast(MkTypeName(MkListOne(MkSpecifier(CHAR)), MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), (((void *)0)))), newExp), '+', MkExpCall(MkExpIdentifier(MkIdentifier("__ENDIAN_PAD")), MkListOne(MkExpConstant(size))))));
13891 }
13892 ReplaceExpContents(checkedExp, newExp);
13893 e->byReference = 1;
13894 }
13895 else if(!e->byReference || (_class && _class->type == 5))
13896 {
13897 struct Expression * checkedExp;
13898
13899 {
13900 unsigned int hasAddress = e->type == 0 || (e->type == 8 && e->__anon1.member.memberType == 3) || (e->type == 9 && e->__anon1.member.memberType == 3) || (e->type == 4 && !e->__anon1.op.exp1 && e->__anon1.op.op == '*') || e->type == 6;
13901
13902 if(_class && _class->type != 5 && _class->type != 0 && _class->type != 1 && !hasAddress)
13903 {
13904 struct Context * context = PushContext();
13905 struct Declarator * decl;
13906 struct __ecereNameSpace__ecere__sys__OldList * specs = MkList();
13907 char typeString[1024];
13908 struct Expression * newExp = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Expression);
13909
13910 typeString[0] = '\0';
13911 *newExp = *e;
13912 newExp->prev = (((void *)0));
13913 newExp->next = (((void *)0));
13914 newExp->expType = (((void *)0));
13915 PrintTypeNoConst(e->expType, typeString, 0, 1);
13916 decl = SpecDeclFromString(typeString, specs, (((void *)0)));
13917 newExp->destType = ProcessType(specs, decl);
13918 curContext = context;
13919 if(curCompound)
13920 {
13921 char name[100];
13922 struct __ecereNameSpace__ecere__sys__OldList * stmts = MkList();
13923
13924 e->type = 23;
13925 sprintf(name, "__internalValue%03X", internalValueCounter++);
13926 if(!curCompound->__anon1.compound.declarations)
13927 curCompound->__anon1.compound.declarations = MkList();
13928 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*curCompound->__anon1.compound.declarations), (((void *)0)), MkDeclaration(specs, MkListOne(MkInitDeclarator(MkDeclaratorIdentifier(MkIdentifier(name)), (((void *)0))))));
13929 ListAdd(stmts, MkExpressionStmt(MkListOne(MkExpOp(MkExpIdentifier(MkIdentifier(name)), '=', newExp))));
13930 ListAdd(stmts, MkExpressionStmt(MkListOne(MkExpIdentifier(MkIdentifier(name)))));
13931 e->__anon1.compound = MkCompoundStmt((((void *)0)), stmts);
13932 }
13933 else
13934 printf("libec: compiler error, curCompound is null in ApplyAnyObjectLogic\n");
13935 {
13936 struct Type * type = e->destType;
13937
13938 e->destType = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
13939 CopyTypeInto(e->destType, type);
13940 e->destType->refCount = 1;
13941 e->destType->classObjectType = 0;
13942 FreeType(type);
13943 }
13944 e->__anon1.compound->__anon1.compound.context = context;
13945 PopContext(context);
13946 curContext = context->parent;
13947 }
13948 }
13949 checkedExp = e;
13950 while(((checkedExp->type == 5 || checkedExp->type == 32 || checkedExp->type == 23) && checkedExp->__anon1.list) || checkedExp->type == 11)
13951 {
13952 if(checkedExp->type == 5 || checkedExp->type == 32 || checkedExp->type == 23)
13953 {
13954 if(checkedExp->type == 23)
13955 {
13956 checkedExp = (*((struct Statement *)(*checkedExp->__anon1.compound->__anon1.compound.statements).last)->__anon1.expressions).last;
13957 }
13958 else
13959 checkedExp = (*checkedExp->__anon1.list).last;
13960 }
13961 else if(checkedExp->type == 11)
13962 checkedExp = checkedExp->__anon1.cast.exp;
13963 }
13964 {
13965 struct Expression * operand = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Expression);
13966
13967 *operand = *checkedExp;
13968 __ecereMethod_Expression_Clear(checkedExp);
13969 checkedExp->destType = ProcessTypeString("void *", 0);
13970 checkedExp->expType = checkedExp->destType;
13971 checkedExp->destType->refCount++;
13972 checkedExp->type = 4;
13973 checkedExp->__anon1.op.op = '&';
13974 checkedExp->__anon1.op.exp1 = (((void *)0));
13975 checkedExp->__anon1.op.exp2 = operand;
13976 }
13977 }
13978 }
13979 }
13980 }
13981 }
13982 {
13983 }
13984 if((!destType || destType->kind == 14 || destType->kind == 0) && e->expType && (e->expType->classObjectType == 3 || e->expType->classObjectType == 2) && (e->expType->byReference || (e->expType->kind == 8 && e->expType->__anon1._class && e->expType->__anon1._class->__anon1.registered && (e->expType->__anon1._class->__anon1.registered->type == 2 || e->expType->__anon1._class->__anon1.registered->type == 4 || e->expType->__anon1._class->__anon1.registered->type == 3))))
13985 {
13986 if(e->expType->classObjectType && destType && destType->classObjectType)
13987 {
13988 return ;
13989 }
13990 else
13991 {
13992 struct Expression * thisExp = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Expression);
13993
13994 *thisExp = *e;
13995 thisExp->prev = (((void *)0));
13996 thisExp->next = (((void *)0));
13997 __ecereMethod_Expression_Clear(e);
13998 e->type = 5;
13999 e->__anon1.list = MkListOne(MkExpOp((((void *)0)), '*', thisExp->type == 0 ? thisExp : MkExpBrackets(MkListOne(thisExp))));
14000 if(thisExp->expType->kind == 8 && thisExp->expType->__anon1._class && thisExp->expType->__anon1._class->__anon1.registered && thisExp->expType->__anon1._class->__anon1.registered->type == 5)
14001 ((struct Expression *)(*e->__anon1.list).first)->byReference = 1;
14002 {
14003 e->expType = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
14004 CopyTypeInto(e->expType, thisExp->expType);
14005 e->expType->byReference = 0;
14006 e->expType->refCount = 1;
14007 if(e->expType->kind == 8 && e->expType->__anon1._class && e->expType->__anon1._class->__anon1.registered && (e->expType->__anon1._class->__anon1.registered->type == 2 || e->expType->__anon1._class->__anon1.registered->type == 4 || e->expType->__anon1._class->__anon1.registered->type == 3))
14008 {
14009 e->expType->classObjectType = 0;
14010 }
14011 }
14012 }
14013 }
14014 else if(destType && e->expType && (e->expType->classObjectType == 3 || e->expType->classObjectType == 2) && !destType->classObjectType && destType->kind != 0)
14015 {
14016 if(destType->kind == 14)
14017 {
14018 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "Unspecified type\n", (((void *)0))));
14019 }
14020 else if(!(destType->truth && e->expType->kind == 8 && e->expType->__anon1._class && e->expType->__anon1._class->__anon1.registered && e->expType->__anon1._class->__anon1.registered->type == 1))
14021 {
14022 unsigned int byReference = e->expType->byReference;
14023 struct Expression * thisExp = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Expression);
14024 struct Declarator * decl;
14025 struct __ecereNameSpace__ecere__sys__OldList * specs = MkList();
14026 char typeString[1024];
14027 struct Type * type;
14028 int backupClassObjectType;
14029 unsigned int backupByReference;
14030
14031 if(e->expType->kind == 8 && e->expType->__anon1._class && e->expType->__anon1._class->__anon1.registered && strcmp(e->expType->__anon1._class->__anon1.registered->name, "class"))
14032 type = e->expType;
14033 else
14034 type = destType;
14035 backupClassObjectType = type->classObjectType;
14036 backupByReference = type->byReference;
14037 type->classObjectType = 0;
14038 type->byReference = 0;
14039 typeString[0] = '\0';
14040 PrintType(type, typeString, 0, 1);
14041 decl = SpecDeclFromString(typeString, specs, (((void *)0)));
14042 type->classObjectType = backupClassObjectType;
14043 type->byReference = backupByReference;
14044 *thisExp = *e;
14045 thisExp->prev = (((void *)0));
14046 thisExp->next = (((void *)0));
14047 __ecereMethod_Expression_Clear(e);
14048 if((type->kind == 8 && type->__anon1._class && type->__anon1._class->__anon1.registered && (type->__anon1._class->__anon1.registered->type == 1000 || type->__anon1._class->__anon1.registered->type == 2 || type->__anon1._class->__anon1.registered->type == 4 || type->__anon1._class->__anon1.registered->type == 3)) || (type->kind != 13 && type->kind != 22 && type->kind != 12 && type->kind != 8) || (!destType->byReference && byReference && (destType->kind != 13 || type->kind != 13)))
14049 {
14050 e->type = 4;
14051 e->__anon1.op.op = '*';
14052 e->__anon1.op.exp1 = (((void *)0));
14053 e->__anon1.op.exp2 = MkExpCast(MkTypeName(specs, MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), decl)), thisExp);
14054 e->expType = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
14055 CopyTypeInto(e->expType, type);
14056 e->expType->byReference = 0;
14057 e->expType->refCount = 1;
14058 }
14059 else
14060 {
14061 e->type = 11;
14062 e->__anon1.cast.typeName = MkTypeName(specs, decl);
14063 e->__anon1.cast.exp = thisExp;
14064 e->byReference = 1;
14065 e->expType = type;
14066 type->refCount++;
14067 }
14068 e->destType = destType;
14069 destType->refCount++;
14070 }
14071 }
14072 }
14073
14074 void ApplyLocation(struct Expression * exp, struct Location * loc)
14075 {
14076 exp->loc = *loc;
14077 switch(exp->type)
14078 {
14079 case 4:
14080 if(exp->__anon1.op.exp1)
14081 ApplyLocation(exp->__anon1.op.exp1, loc);
14082 if(exp->__anon1.op.exp2)
14083 ApplyLocation(exp->__anon1.op.exp2, loc);
14084 break;
14085 case 5:
14086 if(exp->__anon1.list)
14087 {
14088 struct Expression * e;
14089
14090 for(e = (*exp->__anon1.list).first; e; e = e->next)
14091 ApplyLocation(e, loc);
14092 }
14093 break;
14094 case 6:
14095 if(exp->__anon1.index.index)
14096 {
14097 struct Expression * e;
14098
14099 for(e = (*exp->__anon1.index.index).first; e; e = e->next)
14100 ApplyLocation(e, loc);
14101 }
14102 if(exp->__anon1.index.exp)
14103 ApplyLocation(exp->__anon1.index.exp, loc);
14104 break;
14105 case 7:
14106 if(exp->__anon1.call.arguments)
14107 {
14108 struct Expression * arg;
14109
14110 for(arg = (*exp->__anon1.call.arguments).first; arg; arg = arg->next)
14111 ApplyLocation(arg, loc);
14112 }
14113 if(exp->__anon1.call.exp)
14114 ApplyLocation(exp->__anon1.call.exp, loc);
14115 break;
14116 case 8:
14117 case 9:
14118 if(exp->__anon1.member.exp)
14119 ApplyLocation(exp->__anon1.member.exp, loc);
14120 break;
14121 case 11:
14122 if(exp->__anon1.cast.exp)
14123 ApplyLocation(exp->__anon1.cast.exp, loc);
14124 break;
14125 case 12:
14126 if(exp->__anon1.cond.exp)
14127 {
14128 struct Expression * e;
14129
14130 for(e = (*exp->__anon1.cond.exp).first; e; e = e->next)
14131 ApplyLocation(e, loc);
14132 }
14133 if(exp->__anon1.cond.cond)
14134 ApplyLocation(exp->__anon1.cond.cond, loc);
14135 if(exp->__anon1.cond.elseExp)
14136 ApplyLocation(exp->__anon1.cond.elseExp, loc);
14137 break;
14138 case 34:
14139 if(exp->__anon1.vaArg.exp)
14140 ApplyLocation(exp->__anon1.vaArg.exp, loc);
14141 break;
14142 default:
14143 break;
14144 }
14145 }
14146
14147 extern char *  strstr(const char * , const char * );
14148
14149 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__DefinedExpression;
14150
14151 struct __ecereNameSpace__ecere__com__DefinedExpression
14152 {
14153 struct __ecereNameSpace__ecere__com__DefinedExpression * prev;
14154 struct __ecereNameSpace__ecere__com__DefinedExpression * next;
14155 const char *  name;
14156 const char *  value;
14157 struct __ecereNameSpace__ecere__com__NameSpace *  nameSpace;
14158 } __attribute__ ((gcc_struct));
14159
14160 extern struct __ecereNameSpace__ecere__com__DefinedExpression * __ecereNameSpace__ecere__com__eSystem_FindDefine(struct __ecereNameSpace__ecere__com__Instance * module, const char *  name);
14161
14162 extern struct __ecereNameSpace__ecere__com__GlobalFunction * __ecereNameSpace__ecere__com__eSystem_FindFunction(struct __ecereNameSpace__ecere__com__Instance * module, const char *  name);
14163
14164 extern unsigned int __ecereNameSpace__ecere__sys__UTF8GetChar(const char *  string, int *  numBytes);
14165
14166 extern struct Expression * GetTemplateArgExp(struct TemplateParameter * param, struct __ecereNameSpace__ecere__com__Class * curClass, unsigned int pointer);
14167
14168 extern struct Expression * MkExpCondition(struct Expression * cond, struct __ecereNameSpace__ecere__sys__OldList * expressions, struct Expression * elseExp);
14169
14170 extern struct Expression * MkExpClass(struct __ecereNameSpace__ecere__sys__OldList *  specifiers, struct Declarator * decl);
14171
14172 static void ProcessStatement(struct Statement * stmt);
14173
14174 extern struct Expression * MkExpExtensionInitializer(struct TypeName * typeName, struct Initializer * initializer);
14175
14176 extern struct Initializer * MkInitializerList(struct __ecereNameSpace__ecere__sys__OldList * list);
14177
14178 extern char *  __ecereNameSpace__ecere__com__PrintString(struct __ecereNameSpace__ecere__com__Class * class, const void * object, ...);
14179
14180 extern const char *  sourceFile;
14181
14182 extern unsigned int IsVoidPtrCast(struct TypeName * typeName);
14183
14184 extern struct Expression * MoveExpContents(struct Expression * exp);
14185
14186 unsigned int __ecereProp_Type_Get_specConst(struct Type * this);
14187
14188 extern struct __ecereNameSpace__ecere__com__Property * __ecereProp_Type_specConst;
14189
14190 void __ecereMethod___ecereNameSpace__ecere__sys__OldList_Clear(struct __ecereNameSpace__ecere__sys__OldList * this);
14191
14192 void ProcessExpressionType(struct Expression * exp)
14193 {
14194 unsigned int unresolved = 0;
14195 struct Location oldyylloc = yylloc;
14196 unsigned int notByReference = 0;
14197
14198 if(!exp || exp->expType)
14199 return ;
14200 yylloc = exp->loc;
14201 switch(exp->type)
14202 {
14203 case 0:
14204 {
14205 struct Identifier * id = exp->__anon1.__anon1.identifier;
14206
14207 if(!id || !topContext)
14208 return ;
14209 if(id->_class && id->_class->__anon1.__anon1.name)
14210 {
14211 id->classSym = id->_class->__anon1.__anon1.symbol;
14212 }
14213 if(!strcmp(id->string, "__runtimePlatform"))
14214 {
14215 exp->expType = ProcessTypeString("ecere::com::Platform", 1);
14216 break;
14217 }
14218 else if(strstr(id->string, "__ecereClass") == id->string)
14219 {
14220 exp->expType = ProcessTypeString("ecere::com::Class", 1);
14221 break;
14222 }
14223 else if(id->_class && (id->classSym || (id->_class->__anon1.__anon1.name && !strcmp(id->_class->__anon1.__anon1.name, "property"))))
14224 {
14225 ReplaceClassMembers(exp, thisClass);
14226 if(exp->type != 0)
14227 {
14228 ProcessExpressionType(exp);
14229 break;
14230 }
14231 if(id->classSym && ResolveIdWithClass(exp, id->classSym->__anon1.registered, 0))
14232 break;
14233 }
14234 else
14235 {
14236 struct Symbol * symbol = FindSymbol(id->string, curContext, topContext, 0, id->_class && id->_class->__anon1.__anon1.name == (((void *)0)));
14237
14238 if(!symbol)
14239 {
14240 if(exp->destType && CheckExpressionType(exp, exp->destType, 0, 0))
14241 break;
14242 else
14243 {
14244 if(thisClass)
14245 {
14246 ReplaceClassMembers(exp, thisClass ? thisClass : currentClass);
14247 if(exp->type != 0)
14248 {
14249 ProcessExpressionType(exp);
14250 break;
14251 }
14252 }
14253 else if(currentClass && !id->_class)
14254 {
14255 if(ResolveIdWithClass(exp, currentClass, 1))
14256 break;
14257 }
14258 symbol = FindSymbol(id->string, topContext->parent, globalContext, 0, id->_class && id->_class->__anon1.__anon1.name == (((void *)0)));
14259 }
14260 }
14261 if(symbol)
14262 {
14263 struct Type * type = symbol->type;
14264 struct __ecereNameSpace__ecere__com__Class * _class = (type && type->kind == 8 && type->__anon1._class) ? type->__anon1._class->__anon1.registered : (((void *)0));
14265
14266 if(_class && !strcmp(id->string, "this") && !type->classObjectType)
14267 {
14268 struct Context * context = SetupTemplatesContext(_class);
14269
14270 type = ReplaceThisClassType(_class);
14271 FinishTemplatesContext(context);
14272 if(type)
14273 type->refCount = 0;
14274 }
14275 FreeSpecifier(id->_class);
14276 id->_class = (((void *)0));
14277 (__ecereNameSpace__ecere__com__eSystem_Delete(id->string), id->string = 0);
14278 id->string = __ecereNameSpace__ecere__sys__CopyString(symbol->string);
14279 id->classSym = (((void *)0));
14280 exp->expType = type;
14281 if(type)
14282 type->refCount++;
14283 if(type && (type->kind == 15))
14284 exp->isConstant = 1;
14285 if(symbol->isParam || !strcmp(id->string, "this"))
14286 {
14287 if(_class && _class->type == 1 && !type->declaredWithStruct)
14288 exp->byReference = 1;
14289 }
14290 if(symbol->isIterator)
14291 {
14292 if(symbol->isIterator == 3)
14293 {
14294 exp->type = 5;
14295 exp->__anon1.list = MkListOne(MkExpOp((((void *)0)), '*', MkExpIdentifier(exp->__anon1.__anon1.identifier)));
14296 ((struct Expression *)(*exp->__anon1.list).first)->__anon1.op.exp2->expType = exp->expType;
14297 exp->expType = (((void *)0));
14298 ProcessExpressionType(exp);
14299 }
14300 else if(symbol->isIterator != 4)
14301 {
14302 exp->type = 8;
14303 exp->__anon1.member.exp = MkExpIdentifier(exp->__anon1.__anon1.identifier);
14304 exp->__anon1.member.exp->expType = exp->expType;
14305 exp->__anon1.member.member = MkIdentifier("data");
14306 exp->expType = (((void *)0));
14307 ProcessExpressionType(exp);
14308 }
14309 }
14310 break;
14311 }
14312 else
14313 {
14314 struct __ecereNameSpace__ecere__com__DefinedExpression * definedExp = (((void *)0));
14315
14316 if(thisNameSpace && !(id->_class && !id->_class->__anon1.__anon1.name))
14317 {
14318 char name[1024];
14319
14320 strcpy(name, thisNameSpace);
14321 strcat(name, "::");
14322 strcat(name, id->string);
14323 definedExp = __ecereNameSpace__ecere__com__eSystem_FindDefine(privateModule, name);
14324 }
14325 if(!definedExp)
14326 definedExp = __ecereNameSpace__ecere__com__eSystem_FindDefine(privateModule, id->string);
14327 if(definedExp)
14328 {
14329 int c;
14330
14331 for(c = 0; c < definedExpStackPos; c++)
14332 if(definedExpStack[c] == definedExp)
14333 break;
14334 if(c == definedExpStackPos && c < sizeof (definedExpStack) / sizeof(void *))
14335 {
14336 struct Location backupYylloc = yylloc;
14337 struct __ecereNameSpace__ecere__com__Instance * backInput = fileInput;
14338
14339 definedExpStack[definedExpStackPos++] = definedExp;
14340 fileInput = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass___ecereNameSpace__ecere__sys__TempFile);
14341 ((int (*)(struct __ecereNameSpace__ecere__com__Instance *, const void *  buffer, unsigned int size, unsigned int count))__extension__ ({
14342 struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = fileInput;
14343
14344 __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__sys__File->_vTbl;
14345 })[__ecereVMethodID___ecereNameSpace__ecere__sys__File_Write])(fileInput, definedExp->value, 1, strlen(definedExp->value));
14346 ((unsigned int (*)(struct __ecereNameSpace__ecere__com__Instance *, int pos, int mode))__extension__ ({
14347 struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = fileInput;
14348
14349 __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__sys__File->_vTbl;
14350 })[__ecereVMethodID___ecereNameSpace__ecere__sys__File_Seek])(fileInput, 0, 0);
14351 echoOn = 0;
14352 parsedExpression = (((void *)0));
14353 resetScanner();
14354 expression_yyparse();
14355 (__ecereNameSpace__ecere__com__eInstance_DecRef(fileInput), fileInput = 0);
14356 if(backInput)
14357 fileInput = backInput;
14358 yylloc = backupYylloc;
14359 if(parsedExpression)
14360 {
14361 FreeIdentifier(id);
14362 exp->type = 5;
14363 exp->__anon1.list = MkListOne(parsedExpression);
14364 ApplyLocation(parsedExpression, &yylloc);
14365 ProcessExpressionType(exp);
14366 definedExpStackPos--;
14367 return ;
14368 }
14369 definedExpStackPos--;
14370 }
14371 else
14372 {
14373 if(inCompiler)
14374 {
14375 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "Recursion in defined expression %s\n", (((void *)0))), id->string);
14376 }
14377 }
14378 }
14379 else
14380 {
14381 struct GlobalData * data = (((void *)0));
14382
14383 if(thisNameSpace && !(id->_class && !id->_class->__anon1.__anon1.name))
14384 {
14385 char name[1024];
14386
14387 strcpy(name, thisNameSpace);
14388 strcat(name, "::");
14389 strcat(name, id->string);
14390 data = FindGlobalData(name);
14391 }
14392 if(!data)
14393 data = FindGlobalData(id->string);
14394 if(data)
14395 {
14396 DeclareGlobalData(data);
14397 exp->expType = data->dataType;
14398 if(data->dataType)
14399 data->dataType->refCount++;
14400 (__ecereNameSpace__ecere__com__eSystem_Delete(id->string), id->string = 0);
14401 id->string = __ecereNameSpace__ecere__sys__CopyString(data->fullName);
14402 FreeSpecifier(id->_class);
14403 id->_class = (((void *)0));
14404 break;
14405 }
14406 else
14407 {
14408 struct __ecereNameSpace__ecere__com__GlobalFunction * function = (((void *)0));
14409
14410 if(thisNameSpace && !(id->_class && !id->_class->__anon1.__anon1.name))
14411 {
14412 char name[1024];
14413
14414 strcpy(name, thisNameSpace);
14415 strcat(name, "::");
14416 strcat(name, id->string);
14417 function = __ecereNameSpace__ecere__com__eSystem_FindFunction(privateModule, name);
14418 }
14419 if(!function)
14420 function = __ecereNameSpace__ecere__com__eSystem_FindFunction(privateModule, id->string);
14421 if(function)
14422 {
14423 char name[1024];
14424
14425 (__ecereNameSpace__ecere__com__eSystem_Delete(id->string), id->string = 0);
14426 id->string = __ecereNameSpace__ecere__sys__CopyString(function->name);
14427 name[0] = (char)0;
14428 if(((struct __ecereNameSpace__ecere__com__Module *)(((char *)function->module + structSize_Instance)))->importType != 1 && (!function->dataType || !function->dataType->dllExport))
14429 strcpy(name, "__ecereFunction_");
14430 FullClassNameCat(name, id->string, 0);
14431 if(DeclareFunction(function, name))
14432 {
14433 (__ecereNameSpace__ecere__com__eSystem_Delete(id->string), id->string = 0);
14434 id->string = __ecereNameSpace__ecere__sys__CopyString(name);
14435 }
14436 exp->expType = function->dataType;
14437 if(function->dataType)
14438 function->dataType->refCount++;
14439 FreeSpecifier(id->_class);
14440 id->_class = (((void *)0));
14441 break;
14442 }
14443 }
14444 }
14445 }
14446 }
14447 unresolved = 1;
14448 break;
14449 }
14450 case 1:
14451 {
14452 if(!exp->__anon1.instance->_class)
14453 {
14454 if(exp->destType && exp->destType->kind == 8 && exp->destType->__anon1._class)
14455 {
14456 exp->__anon1.instance->_class = MkSpecifierName(exp->destType->__anon1._class->string);
14457 }
14458 }
14459 ProcessInstantiationType(exp->__anon1.instance);
14460 exp->isConstant = exp->__anon1.instance->isConstant;
14461 if(exp->__anon1.instance->_class)
14462 {
14463 exp->expType = MkClassType(exp->__anon1.instance->_class->__anon1.__anon1.name);
14464 }
14465 break;
14466 }
14467 case 2:
14468 {
14469 if(!exp->expType)
14470 {
14471 char * constant = exp->__anon1.__anon1.constant;
14472 struct Type * type = (type = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type), type->refCount = 1, type->constant = 1, type);
14473
14474 exp->expType = type;
14475 if(constant[0] == '\'')
14476 {
14477 if((int)((unsigned char *)constant)[1] > 127)
14478 {
14479 int nb;
14480 unsigned int ch = __ecereNameSpace__ecere__sys__UTF8GetChar(constant + 1, &nb);
14481
14482 if(nb < 2)
14483 ch = constant[1];
14484 (__ecereNameSpace__ecere__com__eSystem_Delete(constant), constant = 0);
14485 exp->__anon1.__anon1.constant = PrintUInt(ch);
14486 type->kind = 8;
14487 type->__anon1._class = FindClass("unichar");
14488 type->isSigned = 0;
14489 }
14490 else
14491 {
14492 type->kind = 1;
14493 type->isSigned = 1;
14494 }
14495 }
14496 else
14497 {
14498 char * dot = strchr(constant, '.');
14499 unsigned int isHex = (constant[0] == '0' && (constant[1] == 'x' || constant[1] == 'X'));
14500 char * exponent;
14501
14502 if(isHex)
14503 {
14504 exponent = strchr(constant, 'p');
14505 if(!exponent)
14506 exponent = strchr(constant, 'P');
14507 }
14508 else
14509 {
14510 exponent = strchr(constant, 'e');
14511 if(!exponent)
14512 exponent = strchr(constant, 'E');
14513 }
14514 if(dot || exponent)
14515 {
14516 if(strchr(constant, 'f') || strchr(constant, 'F'))
14517 type->kind = 6;
14518 else
14519 type->kind = 7;
14520 type->isSigned = 1;
14521 }
14522 else
14523 {
14524 unsigned int isSigned = constant[0] == '-';
14525 char * endP = (((void *)0));
14526 long long i64 = strtoll(constant, &endP, 0);
14527 uint64 ui64 = strtoull(constant, &endP, 0);
14528 unsigned int is64Bit = endP && (!strcmp(endP, "LL") || !strcmp(endP, "ll"));
14529
14530 if(isSigned)
14531 {
14532 if(i64 < (((int)0x80000000)))
14533 is64Bit = 1;
14534 }
14535 else
14536 {
14537 if(ui64 > (((int)0x7fffffff)))
14538 {
14539 if(ui64 > (0xffffffff))
14540 {
14541 is64Bit = 1;
14542 if(ui64 <= (((long long)0x7fffffffffffffffLL)) && (constant[0] != '0' || !constant[1]))
14543 isSigned = 1;
14544 }
14545 }
14546 else if(constant[0] != '0' || !constant[1])
14547 isSigned = 1;
14548 }
14549 type->kind = is64Bit ? 4 : 3;
14550 type->isSigned = isSigned;
14551 }
14552 }
14553 exp->isConstant = 1;
14554 if(exp->destType && exp->destType->kind == 7)
14555 type->kind = 7;
14556 else if(exp->destType && exp->destType->kind == 6)
14557 type->kind = 6;
14558 else if(exp->destType && exp->destType->kind == 4)
14559 type->kind = 4;
14560 }
14561 break;
14562 }
14563 case 3:
14564 {
14565 exp->isConstant = 1;
14566 exp->expType = __extension__ ({
14567 struct Type * __ecereInstance2 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
14568
14569 __ecereInstance2->refCount = 1, __ecereInstance2->kind = 13, __ecereInstance2->__anon1.type = __extension__ ({
14570 struct Type * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
14571
14572 __ecereInstance1->refCount = 1, __ecereInstance1->kind = exp->__anon1.__anon2.wideString ? 2 : 1, __ecereInstance1->constant = 1, __ecereInstance1->isSigned = exp->__anon1.__anon2.wideString ? 0 : 1, __ecereInstance1;
14573 }), __ecereInstance2;
14574 });
14575 break;
14576 }
14577 case 13:
14578 case 26:
14579 ProcessExpressionType(exp->__anon1._new.size);
14580 exp->expType = __extension__ ({
14581 struct Type * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
14582
14583 __ecereInstance1->refCount = 1, __ecereInstance1->kind = 13, __ecereInstance1->__anon1.type = ProcessType(exp->__anon1._new.typeName->qualifiers, exp->__anon1._new.typeName->declarator), __ecereInstance1;
14584 });
14585 DeclareType(exp->expType->__anon1.type, 0, 0);
14586 break;
14587 case 14:
14588 case 27:
14589 ProcessExpressionType(exp->__anon1._renew.size);
14590 ProcessExpressionType(exp->__anon1._renew.exp);
14591 exp->expType = __extension__ ({
14592 struct Type * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
14593
14594 __ecereInstance1->refCount = 1, __ecereInstance1->kind = 13, __ecereInstance1->__anon1.type = ProcessType(exp->__anon1._renew.typeName->qualifiers, exp->__anon1._renew.typeName->declarator), __ecereInstance1;
14595 });
14596 DeclareType(exp->expType->__anon1.type, 0, 0);
14597 break;
14598 case 4:
14599 {
14600 unsigned int assign = 0, boolResult = 0, boolOps = 0;
14601 struct Type * type1 = (((void *)0)), * type2 = (((void *)0));
14602 unsigned int useDestType = 0, useSideType = 0;
14603 struct Location oldyylloc = yylloc;
14604 unsigned int useSideUnit = 0;
14605 struct __ecereNameSpace__ecere__com__Class * destClass = (exp->destType && exp->destType->kind == 8 && exp->destType->__anon1._class) ? exp->destType->__anon1._class->__anon1.registered : (((void *)0));
14606 struct Type * dummy = (dummy = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type), dummy->count = 1, dummy->refCount = 1, dummy);
14607
14608 switch(exp->__anon1.op.op)
14609 {
14610 case '=':
14611 case MUL_ASSIGN:
14612 case DIV_ASSIGN:
14613 case MOD_ASSIGN:
14614 case ADD_ASSIGN:
14615 case SUB_ASSIGN:
14616 case LEFT_ASSIGN:
14617 case RIGHT_ASSIGN:
14618 case AND_ASSIGN:
14619 case XOR_ASSIGN:
14620 case OR_ASSIGN:
14621 assign = 1;
14622 break;
14623 case '!':
14624 break;
14625 case AND_OP:
14626 case OR_OP:
14627 boolOps = 1;
14628 boolResult = 1;
14629 break;
14630 case EQ_OP:
14631 case '<':
14632 case '>':
14633 case LE_OP:
14634 case GE_OP:
14635 case NE_OP:
14636 boolResult = 1;
14637 useSideType = 1;
14638 break;
14639 case '+':
14640 case '-':
14641 useSideUnit = 1;
14642 useSideType = 1;
14643 useDestType = 1;
14644 break;
14645 case LEFT_OP:
14646 case RIGHT_OP:
14647 useSideType = 1;
14648 useDestType = 1;
14649 break;
14650 case '|':
14651 case '^':
14652 useSideType = 1;
14653 useDestType = 1;
14654 break;
14655 case '/':
14656 case '%':
14657 useSideType = 1;
14658 useDestType = 1;
14659 break;
14660 case '&':
14661 case '*':
14662 if(exp->__anon1.op.exp1)
14663 {
14664 useSideType = 1;
14665 useDestType = 1;
14666 }
14667 break;
14668 }
14669 if(exp->__anon1.op.op == '&')
14670 {
14671 if(!exp->__anon1.op.exp1 && exp->__anon1.op.exp2 && exp->__anon1.op.exp2->type == 0 && exp->__anon1.op.exp2->__anon1.__anon1.identifier)
14672 {
14673 struct Identifier * id = exp->__anon1.op.exp2->__anon1.__anon1.identifier;
14674 struct Symbol * symbol = FindSymbol(id->string, curContext, topContext, 0, id->_class && id->_class->__anon1.__anon1.name == (((void *)0)));
14675
14676 if(symbol && symbol->isIterator == 2)
14677 {
14678 exp->type = 8;
14679 exp->__anon1.member.exp = exp->__anon1.op.exp2;
14680 exp->__anon1.member.member = MkIdentifier("key");
14681 exp->expType = (((void *)0));
14682 exp->__anon1.op.exp2->expType = symbol->type;
14683 symbol->type->refCount++;
14684 ProcessExpressionType(exp);
14685 FreeType(dummy);
14686 break;
14687 }
14688 }
14689 }
14690 if(exp->__anon1.op.exp1)
14691 {
14692 if(exp->__anon1.op.exp2 && useSideUnit && useDestType && destClass && destClass->type == 3 && destClass->base->type != 3)
14693 useDestType = 0;
14694 if(destClass && useDestType && ((destClass->type == 3 && useSideUnit) || destClass->type == 4 || destClass->type == 2))
14695 {
14696 if(exp->__anon1.op.exp1->destType)
14697 FreeType(exp->__anon1.op.exp1->destType);
14698 exp->__anon1.op.exp1->destType = exp->destType;
14699 exp->__anon1.op.exp1->opDestType = 1;
14700 if(exp->destType)
14701 exp->destType->refCount++;
14702 }
14703 else if(!assign)
14704 {
14705 if(exp->__anon1.op.exp1->destType)
14706 FreeType(exp->__anon1.op.exp1->destType);
14707 exp->__anon1.op.exp1->destType = dummy;
14708 dummy->refCount++;
14709 }
14710 if(exp->__anon1.op.exp1->destType && exp->__anon1.op.op != '=')
14711 exp->__anon1.op.exp1->destType->count++;
14712 ProcessExpressionType(exp->__anon1.op.exp1);
14713 if(exp->__anon1.op.exp1->destType && exp->__anon1.op.op != '=')
14714 exp->__anon1.op.exp1->destType->count--;
14715 exp->__anon1.op.exp1->opDestType = 0;
14716 if(!exp->__anon1.op.exp2 && (exp->__anon1.op.op == INC_OP || exp->__anon1.op.op == DEC_OP) && exp->__anon1.op.exp1->expType && exp->__anon1.op.exp1->expType->kind == 8 && exp->__anon1.op.exp1->expType->__anon1._class && exp->__anon1.op.exp1->expType->__anon1._class->__anon1.registered && exp->__anon1.op.exp1->expType->__anon1._class->__anon1.registered->type == 3)
14717 {
14718 exp->__anon1.op.exp2 = MkExpConstant("1");
14719 exp->__anon1.op.op = exp->__anon1.op.op == INC_OP ? ADD_ASSIGN : SUB_ASSIGN;
14720 assign = 1;
14721 }
14722 if(exp->__anon1.op.exp1->destType == dummy)
14723 {
14724 FreeType(dummy);
14725 exp->__anon1.op.exp1->destType = (((void *)0));
14726 }
14727 type1 = exp->__anon1.op.exp1->expType;
14728 }
14729 if(exp->__anon1.op.exp2)
14730 {
14731 char expString[10240];
14732
14733 expString[0] = '\0';
14734 if(exp->__anon1.op.exp2->type == 1 && !exp->__anon1.op.exp2->__anon1.instance->_class)
14735 {
14736 if(exp->__anon1.op.exp1)
14737 {
14738 exp->__anon1.op.exp2->destType = exp->__anon1.op.exp1->expType;
14739 if(exp->__anon1.op.exp1->expType)
14740 exp->__anon1.op.exp1->expType->refCount++;
14741 }
14742 else
14743 {
14744 exp->__anon1.op.exp2->destType = exp->destType;
14745 if(!exp->__anon1.op.exp1 || exp->__anon1.op.op != '&')
14746 exp->__anon1.op.exp2->opDestType = 1;
14747 if(exp->destType)
14748 exp->destType->refCount++;
14749 }
14750 if(type1)
14751 type1->refCount++;
14752 exp->expType = type1;
14753 }
14754 else if(assign)
14755 {
14756 if(inCompiler)
14757 PrintExpression(exp->__anon1.op.exp2, expString);
14758 if(type1 && type1->kind == 13)
14759 {
14760 if(exp->__anon1.op.op == MUL_ASSIGN || exp->__anon1.op.op == DIV_ASSIGN || exp->__anon1.op.op == MOD_ASSIGN || exp->__anon1.op.op == LEFT_ASSIGN || exp->__anon1.op.op == RIGHT_ASSIGN || exp->__anon1.op.op == AND_ASSIGN || exp->__anon1.op.op == OR_ASSIGN)
14761 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "operator %s illegal on pointer\n", (((void *)0))), exp->__anon1.op.op);
14762 else if(exp->__anon1.op.op == '=')
14763 {
14764 if(exp->__anon1.op.exp2->destType)
14765 FreeType(exp->__anon1.op.exp2->destType);
14766 exp->__anon1.op.exp2->destType = type1;
14767 if(type1)
14768 type1->refCount++;
14769 }
14770 }
14771 else
14772 {
14773 if(exp->__anon1.op.op == MUL_ASSIGN || exp->__anon1.op.op == DIV_ASSIGN || exp->__anon1.op.op == MOD_ASSIGN || exp->__anon1.op.op == LEFT_ASSIGN || exp->__anon1.op.op == RIGHT_ASSIGN)
14774 ;
14775 else
14776 {
14777 if(exp->__anon1.op.exp2->destType)
14778 FreeType(exp->__anon1.op.exp2->destType);
14779 exp->__anon1.op.exp2->destType = type1;
14780 if(type1)
14781 type1->refCount++;
14782 }
14783 }
14784 if(type1)
14785 type1->refCount++;
14786 exp->expType = type1;
14787 }
14788 else if(destClass && ((destClass->type == 3 && useDestType && useSideUnit) || (destClass->type == 4 && useDestType)))
14789 {
14790 if(exp->__anon1.op.exp2->destType)
14791 FreeType(exp->__anon1.op.exp2->destType);
14792 exp->__anon1.op.exp2->destType = exp->destType;
14793 if(exp->__anon1.op.op != '&')
14794 exp->__anon1.op.exp2->opDestType = 1;
14795 if(exp->destType)
14796 exp->destType->refCount++;
14797 }
14798 else
14799 {
14800 if(exp->__anon1.op.exp2->destType)
14801 FreeType(exp->__anon1.op.exp2->destType);
14802 exp->__anon1.op.exp2->destType = dummy;
14803 dummy->refCount++;
14804 }
14805 if(type1 && boolResult && useSideType && type1->kind == 8 && type1->__anon1._class && type1->__anon1._class->__anon1.registered && (type1->__anon1._class->__anon1.registered->type == 2 || type1->__anon1._class->__anon1.registered->type == 4))
14806 {
14807 FreeType(exp->__anon1.op.exp2->destType);
14808 exp->__anon1.op.exp2->destType = type1;
14809 type1->refCount++;
14810 }
14811 if(exp->__anon1.op.exp2->destType && exp->__anon1.op.op != '=')
14812 exp->__anon1.op.exp2->destType->count++;
14813 if(exp->__anon1.op.op == SIZEOF)
14814 {
14815 struct Expression * e = exp->__anon1.op.exp2;
14816
14817 while((e->type == 5 || e->type == 32 || e->type == 23) && e->__anon1.list)
14818 {
14819 if(e->type == 5 || e->type == 32 || e->type == 23)
14820 {
14821 if(e->type == 23)
14822 e = (*((struct Statement *)(*e->__anon1.compound->__anon1.compound.statements).last)->__anon1.expressions).last;
14823 else
14824 e = (*e->__anon1.list).last;
14825 }
14826 }
14827 if(e->type == 11 && e->__anon1.cast.exp)
14828 e->__anon1.cast.exp->needCast = 1;
14829 }
14830 ProcessExpressionType(exp->__anon1.op.exp2);
14831 exp->__anon1.op.exp2->opDestType = 0;
14832 if(exp->__anon1.op.exp2->destType && exp->__anon1.op.op != '=')
14833 exp->__anon1.op.exp2->destType->count--;
14834 if(assign && type1 && type1->kind == 13 && exp->__anon1.op.exp2->expType)
14835 {
14836 if(exp->__anon1.op.exp2->expType->kind == 23 || exp->__anon1.op.exp2->expType->kind == 22 || exp->__anon1.op.exp2->expType->kind == 4 || exp->__anon1.op.exp2->expType->kind == 3 || exp->__anon1.op.exp2->expType->kind == 2 || exp->__anon1.op.exp2->expType->kind == 1)
14837 {
14838 if(exp->__anon1.op.op != '=' && type1->__anon1.type->kind == 0)
14839 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "void *: unknown size\n", (((void *)0))));
14840 }
14841 else if(exp->__anon1.op.exp2->expType->kind == 13 || exp->__anon1.op.exp2->expType->kind == 12 || exp->__anon1.op.exp2->expType->kind == 11 || exp->__anon1.op.exp2->expType->kind == 16 || (type1->__anon1.type->kind == 0 && exp->__anon1.op.exp2->expType->kind == 8 && exp->__anon1.op.exp2->expType->__anon1._class->__anon1.registered && (exp->__anon1.op.exp2->expType->__anon1._class->__anon1.registered->type == 0 || exp->__anon1.op.exp2->expType->__anon1._class->__anon1.registered->type == 1 || exp->__anon1.op.exp2->expType->__anon1._class->__anon1.registered->type == 5)))
14842 {
14843 if(exp->__anon1.op.op == ADD_ASSIGN)
14844 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "cannot add two pointers\n", (((void *)0))));
14845 }
14846 else if((exp->__anon1.op.exp2->expType->kind == 8 && type1->kind == 13 && type1->__anon1.type->kind == 8 && type1->__anon1.type->__anon1._class == exp->__anon1.op.exp2->expType->__anon1._class && exp->__anon1.op.exp2->expType->__anon1._class->__anon1.registered && exp->__anon1.op.exp2->expType->__anon1._class->__anon1.registered->type == 1))
14847 {
14848 if(exp->__anon1.op.op == ADD_ASSIGN)
14849 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "cannot add two pointers\n", (((void *)0))));
14850 }
14851 else if(inCompiler)
14852 {
14853 char type1String[1024];
14854 char type2String[1024];
14855
14856 type1String[0] = '\0';
14857 type2String[0] = '\0';
14858 PrintType(exp->__anon1.op.exp2->expType, type1String, 0, 1);
14859 PrintType(type1, type2String, 0, 1);
14860 __ecereNameSpace__ecere__sys__ChangeCh(expString, '\n', ' ');
14861 Compiler_Warning(__ecereNameSpace__ecere__GetTranslatedString("ec", "incompatible expression %s (%s); expected %s\n", (((void *)0))), expString, type1String, type2String);
14862 }
14863 }
14864 if(exp->__anon1.op.exp2->destType == dummy)
14865 {
14866 FreeType(dummy);
14867 exp->__anon1.op.exp2->destType = (((void *)0));
14868 }
14869 if(exp->__anon1.op.op == '-' && !exp->__anon1.op.exp1 && exp->__anon1.op.exp2->expType && !exp->__anon1.op.exp2->expType->isSigned)
14870 {
14871 type2 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
14872 type2->refCount = 1;
14873 CopyTypeInto(type2, exp->__anon1.op.exp2->expType);
14874 type2->isSigned = 1;
14875 }
14876 else if(exp->__anon1.op.op == '~' && !exp->__anon1.op.exp1 && exp->__anon1.op.exp2->expType && (!exp->__anon1.op.exp2->expType->isSigned || exp->__anon1.op.exp2->expType->kind != 3))
14877 {
14878 type2 = __extension__ ({
14879 struct Type * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
14880
14881 __ecereInstance1->kind = 3, __ecereInstance1;
14882 });
14883 type2->refCount = 1;
14884 type2->isSigned = 1;
14885 }
14886 else
14887 {
14888 type2 = exp->__anon1.op.exp2->expType;
14889 if(type2)
14890 type2->refCount++;
14891 }
14892 }
14893 dummy->kind = 0;
14894 if(exp->__anon1.op.op == SIZEOF)
14895 {
14896 exp->expType = __extension__ ({
14897 struct Type * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
14898
14899 __ecereInstance1->refCount = 1, __ecereInstance1->kind = 23, __ecereInstance1;
14900 });
14901 exp->isConstant = 1;
14902 }
14903 else if(exp->__anon1.op.op == '*' && !exp->__anon1.op.exp1)
14904 {
14905 exp->expType = Dereference(type2);
14906 if(type2 && type2->kind == 8)
14907 notByReference = 1;
14908 }
14909 else if(exp->__anon1.op.op == '&' && !exp->__anon1.op.exp1)
14910 exp->expType = Reference(type2);
14911 else if(!assign)
14912 {
14913 if(boolOps)
14914 {
14915 if(exp->__anon1.op.exp1)
14916 {
14917 if(exp->__anon1.op.exp1->destType)
14918 FreeType(exp->__anon1.op.exp1->destType);
14919 exp->__anon1.op.exp1->destType = MkClassType("bool");
14920 exp->__anon1.op.exp1->destType->truth = 1;
14921 if(!exp->__anon1.op.exp1->expType)
14922 ProcessExpressionType(exp->__anon1.op.exp1);
14923 else
14924 CheckExpressionType(exp->__anon1.op.exp1, exp->__anon1.op.exp1->destType, 0, 0);
14925 FreeType(exp->__anon1.op.exp1->expType);
14926 exp->__anon1.op.exp1->expType = MkClassType("bool");
14927 exp->__anon1.op.exp1->expType->truth = 1;
14928 }
14929 if(exp->__anon1.op.exp2)
14930 {
14931 if(exp->__anon1.op.exp2->destType)
14932 FreeType(exp->__anon1.op.exp2->destType);
14933 exp->__anon1.op.exp2->destType = MkClassType("bool");
14934 exp->__anon1.op.exp2->destType->truth = 1;
14935 if(!exp->__anon1.op.exp2->expType)
14936 ProcessExpressionType(exp->__anon1.op.exp2);
14937 else
14938 CheckExpressionType(exp->__anon1.op.exp2, exp->__anon1.op.exp2->destType, 0, 0);
14939 FreeType(exp->__anon1.op.exp2->expType);
14940 exp->__anon1.op.exp2->expType = MkClassType("bool");
14941 exp->__anon1.op.exp2->expType->truth = 1;
14942 }
14943 }
14944 else if(exp->__anon1.op.exp1 && exp->__anon1.op.exp2 && ((useSideType) || ((!type1 || type1->kind != 8 || !strcmp(type1->__anon1._class->string, "String")) && (!type2 || type2->kind != 8 || !strcmp(type2->__anon1._class->string, "String")))))
14945 {
14946 if(type1 && type2 && ((type1->kind == 8 && type1->__anon1._class && strcmp(type1->__anon1._class->string, "String")) == (type2->kind == 8 && type2->__anon1._class && strcmp(type2->__anon1._class->string, "String"))))
14947 {
14948 if(exp->__anon1.op.op == '-' && ((type1->kind == 8 && type1->__anon1._class->__anon1.registered && type1->__anon1._class->__anon1.registered->type == 4) || (type2->kind == 8 && type2->__anon1._class->__anon1.registered && type2->__anon1._class->__anon1.registered->type == 4)))
14949 {
14950 struct Type * intType;
14951
14952 if(!type1->__anon1._class->__anon1.registered->dataType)
14953 type1->__anon1._class->__anon1.registered->dataType = ProcessTypeString(type1->__anon1._class->__anon1.registered->dataTypeString, 0);
14954 if(!type2->__anon1._class->__anon1.registered->dataType)
14955 type2->__anon1._class->__anon1.registered->dataType = ProcessTypeString(type2->__anon1._class->__anon1.registered->dataTypeString, 0);
14956 intType = ProcessTypeString((type1->__anon1._class->__anon1.registered->dataType->kind == 4 || type2->__anon1._class->__anon1.registered->dataType->kind == 4) ? "int64" : "int", 0);
14957 if(exp->__anon1.op.exp1->destType)
14958 FreeType(exp->__anon1.op.exp1->destType);
14959 if(exp->__anon1.op.exp2->destType)
14960 FreeType(exp->__anon1.op.exp2->destType);
14961 exp->__anon1.op.exp1->destType = intType;
14962 exp->__anon1.op.exp2->destType = intType;
14963 intType->refCount++;
14964 }
14965 else
14966 {
14967 if(exp->__anon1.op.exp2->destType)
14968 FreeType(exp->__anon1.op.exp2->destType);
14969 exp->__anon1.op.exp2->destType = type1;
14970 type1->refCount++;
14971 if(exp->__anon1.op.exp1->destType)
14972 FreeType(exp->__anon1.op.exp1->destType);
14973 exp->__anon1.op.exp1->destType = type2;
14974 type2->refCount++;
14975 }
14976 if(!boolResult && type1->kind == 8 && (!exp->destType || exp->destType->kind != 8) && type1->__anon1._class->__anon1.registered && type1->__anon1._class->__anon1.registered->type == 3 && type2->__anon1._class->__anon1.registered && type2->__anon1._class->__anon1.registered->type == 3 && type1->__anon1._class->__anon1.registered != type2->__anon1._class->__anon1.registered)
14977 Compiler_Warning(__ecereNameSpace__ecere__GetTranslatedString("ec", "operating on %s and %s with an untyped result, assuming %s\n", (((void *)0))), type1->__anon1._class->string, type2->__anon1._class->string, type1->__anon1._class->string);
14978 if(type1->kind == 13 && type1->__anon1.type->kind == 20 && type2->kind != 13)
14979 {
14980 struct Expression * argExp = GetTemplateArgExp(type1->__anon1.type->__anon1.templateParameter, thisClass, 1);
14981
14982 if(argExp)
14983 {
14984 struct Expression * classExp = MkExpMember(argExp, MkIdentifier("dataTypeClass"));
14985
14986 exp->__anon1.op.exp1 = MkExpBrackets(MkListOne(MkExpCast(MkTypeName(MkListOne(MkSpecifierName("byte")), MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), (((void *)0)))), exp->__anon1.op.exp1)));
14987 ProcessExpressionType(exp->__anon1.op.exp1);
14988 if(type2->kind != 13)
14989 {
14990 ProcessExpressionType(classExp);
14991 exp->__anon1.op.exp2 = MkExpBrackets(MkListOne(MkExpOp(exp->__anon1.op.exp2, '*', MkExpMember(classExp, MkIdentifier("typeSize")))));
14992 if(!exp->__anon1.op.exp2->expType)
14993 {
14994 if(type2)
14995 FreeType(type2);
14996 type2 = exp->__anon1.op.exp2->expType = ProcessTypeString("int", 0);
14997 type2->refCount++;
14998 }
14999 ProcessExpressionType(exp->__anon1.op.exp2);
15000 }
15001 }
15002 }
15003 if(!boolResult && ((type1->kind == 13 || type1->kind == 12 || (type1->kind == 8 && !strcmp(type1->__anon1._class->string, "String"))) && (type2->kind == 23 || type2->kind == 22 || type2->kind == 4 || type2->kind == 3 || type2->kind == 2 || type2->kind == 1)))
15004 {
15005 if(type1->kind != 8 && type1->__anon1.type->kind == 0)
15006 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "void *: unknown size\n", (((void *)0))));
15007 exp->expType = type1;
15008 if(type1)
15009 type1->refCount++;
15010 }
15011 else if(!boolResult && ((type2->kind == 13 || type2->kind == 12 || (type2->kind == 8 && !strcmp(type2->__anon1._class->string, "String"))) && (type1->kind == 23 || type1->kind == 22 || type1->kind == 4 || type1->kind == 3 || type1->kind == 2 || type1->kind == 1)))
15012 {
15013 if(type2->kind != 8 && type2->__anon1.type->kind == 0)
15014 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "void *: unknown size\n", (((void *)0))));
15015 exp->expType = type2;
15016 if(type2)
15017 type2->refCount++;
15018 }
15019 else if((type1->kind == 13 && type2->kind != 13 && type2->kind != 12 && type2->kind != 11 && type2->kind != 16 && type2->kind != 8 && type2->kind != 19) || (type2->kind == 13 && type1->kind != 13 && type1->kind != 12 && type1->kind != 11 && type1->kind != 16 && type1->kind != 8 && type1->kind != 19))
15020 {
15021 Compiler_Warning(__ecereNameSpace__ecere__GetTranslatedString("ec", "different levels of indirection\n", (((void *)0))));
15022 }
15023 else
15024 {
15025 unsigned int success = 0;
15026
15027 if(type1->kind == 13 && type2->kind == 13)
15028 {
15029 if(exp->__anon1.op.op == '+')
15030 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "cannot add two pointers\n", (((void *)0))));
15031 else if(exp->__anon1.op.op == '-')
15032 {
15033 if(MatchTypes(type1->__anon1.type, type2->__anon1.type, (((void *)0)), (((void *)0)), (((void *)0)), 0, 0, 0, 0, 0))
15034 {
15035 exp->expType = __extension__ ({
15036 struct Type * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
15037
15038 __ecereInstance1->kind = 3, __ecereInstance1->refCount = 1, __ecereInstance1;
15039 });
15040 success = 1;
15041 if(type1->__anon1.type->kind == 20)
15042 {
15043 struct Expression * argExp = GetTemplateArgExp(type1->__anon1.type->__anon1.templateParameter, thisClass, 1);
15044
15045 if(argExp)
15046 {
15047 struct Expression * classExp = MkExpMember(argExp, MkIdentifier("dataTypeClass"));
15048
15049 ProcessExpressionType(classExp);
15050 exp->type = 5;
15051 exp->__anon1.list = MkListOne(MkExpOp(MkExpBrackets(MkListOne(MkExpOp(MkExpCast(MkTypeName(MkListOne(MkSpecifierName("byte")), MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), (((void *)0)))), MkExpBrackets(MkListOne(exp->__anon1.op.exp1))), exp->__anon1.op.op, MkExpCast(MkTypeName(MkListOne(MkSpecifierName("byte")), MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), (((void *)0)))), MkExpBrackets(MkListOne(exp->__anon1.op.exp2)))))), '/', MkExpMember(classExp, MkIdentifier("typeSize"))));
15052 ProcessExpressionType(((struct Expression *)(*exp->__anon1.list).first)->__anon1.op.exp2);
15053 FreeType(dummy);
15054 return ;
15055 }
15056 }
15057 }
15058 }
15059 }
15060 if(!success && exp->__anon1.op.exp1->type == 2)
15061 {
15062 if(CheckExpressionType(exp->__anon1.op.exp1, exp->__anon1.op.exp1->destType, 0, 0))
15063 {
15064 if(exp->expType)
15065 FreeType(exp->expType);
15066 exp->expType = exp->__anon1.op.exp1->destType;
15067 if(exp->__anon1.op.exp1->destType)
15068 exp->__anon1.op.exp1->destType->refCount++;
15069 success = 1;
15070 }
15071 else if(CheckExpressionType(exp->__anon1.op.exp2, exp->__anon1.op.exp2->destType, 0, 0))
15072 {
15073 if(exp->expType)
15074 FreeType(exp->expType);
15075 exp->expType = exp->__anon1.op.exp2->destType;
15076 if(exp->__anon1.op.exp2->destType)
15077 exp->__anon1.op.exp2->destType->refCount++;
15078 success = 1;
15079 }
15080 }
15081 else if(!success)
15082 {
15083 if(CheckExpressionType(exp->__anon1.op.exp2, exp->__anon1.op.exp2->destType, 0, 0))
15084 {
15085 if(exp->expType)
15086 FreeType(exp->expType);
15087 exp->expType = exp->__anon1.op.exp2->destType;
15088 if(exp->__anon1.op.exp2->destType)
15089 exp->__anon1.op.exp2->destType->refCount++;
15090 success = 1;
15091 }
15092 else if(CheckExpressionType(exp->__anon1.op.exp1, exp->__anon1.op.exp1->destType, 0, 0))
15093 {
15094 if(exp->expType)
15095 FreeType(exp->expType);
15096 exp->expType = exp->__anon1.op.exp1->destType;
15097 if(exp->__anon1.op.exp1->destType)
15098 exp->__anon1.op.exp1->destType->refCount++;
15099 success = 1;
15100 }
15101 }
15102 if(!success)
15103 {
15104 char expString1[10240];
15105 char expString2[10240];
15106 char type1[1024];
15107 char type2[1024];
15108
15109 expString1[0] = '\0';
15110 expString2[0] = '\0';
15111 type1[0] = '\0';
15112 type2[0] = '\0';
15113 if(inCompiler)
15114 {
15115 PrintExpression(exp->__anon1.op.exp1, expString1);
15116 __ecereNameSpace__ecere__sys__ChangeCh(expString1, '\n', ' ');
15117 PrintExpression(exp->__anon1.op.exp2, expString2);
15118 __ecereNameSpace__ecere__sys__ChangeCh(expString2, '\n', ' ');
15119 PrintType(exp->__anon1.op.exp1->expType, type1, 0, 1);
15120 PrintType(exp->__anon1.op.exp2->expType, type2, 0, 1);
15121 }
15122 Compiler_Warning(__ecereNameSpace__ecere__GetTranslatedString("ec", "incompatible expressions %s (%s) and %s (%s)\n", (((void *)0))), expString1, type1, expString2, type2);
15123 }
15124 }
15125 }
15126 else if(!boolResult && (!useSideUnit) && type2 && type1 && type2->kind == 8 && type1->kind != 8 && type2->__anon1._class && type2->__anon1._class->__anon1.registered && type2->__anon1._class->__anon1.registered->type == 3)
15127 {
15128 if(exp->__anon1.op.exp1->destType)
15129 FreeType(exp->__anon1.op.exp1->destType);
15130 exp->__anon1.op.exp1->destType = type2->__anon1._class->__anon1.registered->dataType;
15131 if(type2->__anon1._class->__anon1.registered->dataType)
15132 type2->__anon1._class->__anon1.registered->dataType->refCount++;
15133 CheckExpressionType(exp->__anon1.op.exp1, exp->__anon1.op.exp1->destType, 0, 0);
15134 exp->expType = type2;
15135 if(type2)
15136 type2->refCount++;
15137 }
15138 else if(!boolResult && (!useSideUnit) && type1 && type2 && type1->kind == 8 && type2->kind != 8 && type1->__anon1._class && type1->__anon1._class->__anon1.registered && type1->__anon1._class->__anon1.registered->type == 3)
15139 {
15140 if(exp->__anon1.op.exp2->destType)
15141 FreeType(exp->__anon1.op.exp2->destType);
15142 exp->__anon1.op.exp2->destType = type1->__anon1._class->__anon1.registered->dataType;
15143 if(type1->__anon1._class->__anon1.registered->dataType)
15144 type1->__anon1._class->__anon1.registered->dataType->refCount++;
15145 CheckExpressionType(exp->__anon1.op.exp2, exp->__anon1.op.exp2->destType, 0, 0);
15146 exp->expType = type1;
15147 if(type1)
15148 type1->refCount++;
15149 }
15150 else if(type1)
15151 {
15152 unsigned int valid = 0;
15153
15154 if(!boolResult && useSideUnit && type1 && type1->kind == 8 && type1->__anon1._class->__anon1.registered && type1->__anon1._class->__anon1.registered->type == 3 && type2 && type2->kind != 8)
15155 {
15156 if(exp->__anon1.op.exp2->destType)
15157 FreeType(exp->__anon1.op.exp2->destType);
15158 if(!type1->__anon1._class->__anon1.registered->dataType)
15159 type1->__anon1._class->__anon1.registered->dataType = ProcessTypeString(type1->__anon1._class->__anon1.registered->dataTypeString, 0);
15160 exp->__anon1.op.exp2->destType = type1->__anon1._class->__anon1.registered->dataType;
15161 exp->__anon1.op.exp2->destType->refCount++;
15162 CheckExpressionType(exp->__anon1.op.exp2, exp->__anon1.op.exp2->destType, 0, 0);
15163 if(type2)
15164 FreeType(type2);
15165 type2 = exp->__anon1.op.exp2->destType;
15166 if(type2)
15167 type2->refCount++;
15168 exp->expType = type2;
15169 type2->refCount++;
15170 }
15171 if(!boolResult && useSideUnit && type2 && type2->kind == 8 && type2->__anon1._class->__anon1.registered && type2->__anon1._class->__anon1.registered->type == 3 && type1 && type1->kind != 8)
15172 {
15173 if(exp->__anon1.op.exp1->destType)
15174 FreeType(exp->__anon1.op.exp1->destType);
15175 if(!type2->__anon1._class->__anon1.registered->dataType)
15176 type2->__anon1._class->__anon1.registered->dataType = ProcessTypeString(type2->__anon1._class->__anon1.registered->dataTypeString, 0);
15177 exp->__anon1.op.exp1->destType = type2->__anon1._class->__anon1.registered->dataType;
15178 exp->__anon1.op.exp1->destType->refCount++;
15179 CheckExpressionType(exp->__anon1.op.exp1, exp->__anon1.op.exp1->destType, 0, 0);
15180 type1 = exp->__anon1.op.exp1->destType;
15181 exp->expType = type1;
15182 type1->refCount++;
15183 }
15184 if(!boolResult || exp->__anon1.op.op == '>' || exp->__anon1.op.op == '<' || exp->__anon1.op.op == GE_OP || exp->__anon1.op.op == LE_OP)
15185 {
15186 unsigned int op1IsEnum = type1 && type1->kind == 8 && type1->__anon1._class && type1->__anon1._class->__anon1.registered && type1->__anon1._class->__anon1.registered->type == 4;
15187 unsigned int op2IsEnum = type2 && type2->kind == 8 && type2->__anon1._class && type2->__anon1._class->__anon1.registered && type2->__anon1._class->__anon1.registered->type == 4;
15188
15189 if(exp->__anon1.op.op == '*' || exp->__anon1.op.op == '/' || exp->__anon1.op.op == '-' || exp->__anon1.op.op == '|' || exp->__anon1.op.op == '^')
15190 {
15191 if(op1IsEnum && exp->__anon1.op.exp2->expType)
15192 {
15193 if(CheckExpressionType(exp->__anon1.op.exp1, exp->__anon1.op.exp2->expType, 0, 0))
15194 {
15195 if(exp->expType)
15196 FreeType(exp->expType);
15197 exp->expType = exp->__anon1.op.exp2->expType;
15198 if(exp->__anon1.op.exp2->expType)
15199 exp->__anon1.op.exp2->expType->refCount++;
15200 valid = 1;
15201 }
15202 }
15203 else if(op2IsEnum && exp->__anon1.op.exp1->expType)
15204 {
15205 if(CheckExpressionType(exp->__anon1.op.exp2, exp->__anon1.op.exp1->expType, 0, 0))
15206 {
15207 if(exp->expType)
15208 FreeType(exp->expType);
15209 exp->expType = exp->__anon1.op.exp1->expType;
15210 if(exp->__anon1.op.exp1->expType)
15211 exp->__anon1.op.exp1->expType->refCount++;
15212 valid = 1;
15213 }
15214 }
15215 }
15216 else
15217 {
15218 if(op1IsEnum && exp->__anon1.op.exp2->expType)
15219 {
15220 if(CheckExpressionType(exp->__anon1.op.exp1, exp->__anon1.op.exp2->expType, 0, 0))
15221 {
15222 if(exp->expType)
15223 FreeType(exp->expType);
15224 exp->expType = exp->__anon1.op.exp1->expType;
15225 if(exp->__anon1.op.exp1->expType)
15226 exp->__anon1.op.exp1->expType->refCount++;
15227 valid = 1;
15228 }
15229 }
15230 else if(op2IsEnum && exp->__anon1.op.exp1->expType)
15231 {
15232 if(CheckExpressionType(exp->__anon1.op.exp2, exp->__anon1.op.exp1->expType, 0, 0))
15233 {
15234 if(exp->expType)
15235 FreeType(exp->expType);
15236 exp->expType = exp->__anon1.op.exp2->expType;
15237 if(exp->__anon1.op.exp2->expType)
15238 exp->__anon1.op.exp2->expType->refCount++;
15239 valid = 1;
15240 }
15241 }
15242 }
15243 }
15244 if(!valid)
15245 {
15246 if(type2 && type2->kind == 8 && type2->__anon1._class && type2->__anon1._class->__anon1.registered && type2->__anon1._class->__anon1.registered->type == 3 && (type1->kind != 8 || !type1->__anon1._class || !type1->__anon1._class->__anon1.registered || type1->__anon1._class->__anon1.registered->type != 3))
15247 {
15248 if(exp->__anon1.op.exp1->destType)
15249 FreeType(exp->__anon1.op.exp1->destType);
15250 exp->__anon1.op.exp1->destType = type2;
15251 type2->refCount++;
15252 if(CheckExpressionType(exp->__anon1.op.exp1, exp->__anon1.op.exp1->destType, 0, 0))
15253 {
15254 if(exp->expType)
15255 FreeType(exp->expType);
15256 exp->expType = exp->__anon1.op.exp1->destType;
15257 if(exp->__anon1.op.exp1->destType)
15258 exp->__anon1.op.exp1->destType->refCount++;
15259 }
15260 }
15261 else
15262 {
15263 if(exp->__anon1.op.exp2->destType)
15264 FreeType(exp->__anon1.op.exp2->destType);
15265 exp->__anon1.op.exp2->destType = type1;
15266 type1->refCount++;
15267 if(CheckExpressionType(exp->__anon1.op.exp2, exp->__anon1.op.exp2->destType, 0, 0))
15268 {
15269 if(exp->expType)
15270 FreeType(exp->expType);
15271 exp->expType = exp->__anon1.op.exp2->destType;
15272 if(exp->__anon1.op.exp2->destType)
15273 exp->__anon1.op.exp2->destType->refCount++;
15274 }
15275 else if(type1 && type2)
15276 {
15277 char expString1[10240];
15278 char expString2[10240];
15279 char type1String[1024];
15280 char type2String[1024];
15281
15282 expString1[0] = '\0';
15283 expString2[0] = '\0';
15284 type1String[0] = '\0';
15285 type2String[0] = '\0';
15286 if(inCompiler)
15287 {
15288 PrintExpression(exp->__anon1.op.exp1, expString1);
15289 __ecereNameSpace__ecere__sys__ChangeCh(expString1, '\n', ' ');
15290 PrintExpression(exp->__anon1.op.exp2, expString2);
15291 __ecereNameSpace__ecere__sys__ChangeCh(expString2, '\n', ' ');
15292 PrintType(exp->__anon1.op.exp1->expType, type1String, 0, 1);
15293 PrintType(exp->__anon1.op.exp2->expType, type2String, 0, 1);
15294 }
15295 Compiler_Warning(__ecereNameSpace__ecere__GetTranslatedString("ec", "incompatible expressions %s (%s) and %s (%s)\n", (((void *)0))), expString1, type1String, expString2, type2String);
15296 if(type1->kind == 8 && type1->__anon1._class && type1->__anon1._class->__anon1.registered && type1->__anon1._class->__anon1.registered->type == 4)
15297 {
15298 exp->expType = exp->__anon1.op.exp1->expType;
15299 if(exp->__anon1.op.exp1->expType)
15300 exp->__anon1.op.exp1->expType->refCount++;
15301 }
15302 else if(type2->kind == 8 && type2->__anon1._class && type2->__anon1._class->__anon1.registered && type2->__anon1._class->__anon1.registered->type == 4)
15303 {
15304 exp->expType = exp->__anon1.op.exp2->expType;
15305 if(exp->__anon1.op.exp2->expType)
15306 exp->__anon1.op.exp2->expType->refCount++;
15307 }
15308 }
15309 }
15310 }
15311 }
15312 else if(type2)
15313 {
15314 if(type2->kind == 8 && type2->__anon1._class && type2->__anon1._class->__anon1.registered && type2->__anon1._class->__anon1.registered->type == 4)
15315 {
15316 struct Type * oldType = exp->__anon1.op.exp1->expType;
15317
15318 exp->__anon1.op.exp1->expType = (((void *)0));
15319 if(CheckExpressionType(exp->__anon1.op.exp1, exp->__anon1.op.exp1->destType, 0, 0))
15320 FreeType(oldType);
15321 else
15322 exp->__anon1.op.exp1->expType = oldType;
15323 }
15324 if(exp->__anon1.op.exp1->destType)
15325 FreeType(exp->__anon1.op.exp1->destType);
15326 exp->__anon1.op.exp1->destType = type2;
15327 type2->refCount++;
15328 if(CheckExpressionType(exp->__anon1.op.exp1, exp->__anon1.op.exp1->destType, 0, 0))
15329 {
15330 if(exp->expType)
15331 FreeType(exp->expType);
15332 exp->expType = exp->__anon1.op.exp1->destType;
15333 if(exp->__anon1.op.exp1->destType)
15334 exp->__anon1.op.exp1->destType->refCount++;
15335 }
15336 }
15337 }
15338 else if(type2 && (!type1 || (type2->kind == 8 && type1->kind != 8)))
15339 {
15340 if(type1 && type2->__anon1._class && type2->__anon1._class->__anon1.registered && type2->__anon1._class->__anon1.registered->type == 3)
15341 {
15342 if(exp->__anon1.op.exp1->destType)
15343 FreeType(exp->__anon1.op.exp1->destType);
15344 exp->__anon1.op.exp1->destType = type2->__anon1._class->__anon1.registered->dataType;
15345 if(type2->__anon1._class->__anon1.registered->dataType)
15346 type2->__anon1._class->__anon1.registered->dataType->refCount++;
15347 CheckExpressionType(exp->__anon1.op.exp1, exp->__anon1.op.exp1->destType, 0, 0);
15348 }
15349 if(exp->__anon1.op.op == '!')
15350 {
15351 exp->expType = MkClassType("bool");
15352 exp->expType->truth = 1;
15353 }
15354 else
15355 {
15356 exp->expType = type2;
15357 if(type2)
15358 type2->refCount++;
15359 }
15360 }
15361 else if(type1 && (!type2 || (type1->kind == 8 && type2->kind != 8)))
15362 {
15363 if(type2 && type1->__anon1._class && type1->__anon1._class->__anon1.registered && type1->__anon1._class->__anon1.registered->type == 3)
15364 {
15365 if(exp->__anon1.op.exp2->destType)
15366 FreeType(exp->__anon1.op.exp2->destType);
15367 exp->__anon1.op.exp2->destType = type1->__anon1._class->__anon1.registered->dataType;
15368 if(type1->__anon1._class->__anon1.registered->dataType)
15369 type1->__anon1._class->__anon1.registered->dataType->refCount++;
15370 CheckExpressionType(exp->__anon1.op.exp2, exp->__anon1.op.exp2->destType, 0, 0);
15371 }
15372 exp->expType = type1;
15373 if(type1)
15374 type1->refCount++;
15375 }
15376 }
15377 yylloc = exp->loc;
15378 if(exp->__anon1.op.exp1 && !exp->__anon1.op.exp1->expType)
15379 {
15380 char expString[10000];
15381
15382 expString[0] = '\0';
15383 if(inCompiler)
15384 {
15385 PrintExpression(exp->__anon1.op.exp1, expString);
15386 __ecereNameSpace__ecere__sys__ChangeCh(expString, '\n', ' ');
15387 }
15388 if(expString[0])
15389 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "couldn't determine type of %s\n", (((void *)0))), expString);
15390 }
15391 if(exp->__anon1.op.exp2 && !exp->__anon1.op.exp2->expType)
15392 {
15393 char expString[10240];
15394
15395 expString[0] = '\0';
15396 if(inCompiler)
15397 {
15398 PrintExpression(exp->__anon1.op.exp2, expString);
15399 __ecereNameSpace__ecere__sys__ChangeCh(expString, '\n', ' ');
15400 }
15401 if(expString[0])
15402 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "couldn't determine type of %s\n", (((void *)0))), expString);
15403 }
15404 if(boolResult)
15405 {
15406 FreeType(exp->expType);
15407 exp->expType = MkClassType("bool");
15408 exp->expType->truth = 1;
15409 }
15410 if(exp->__anon1.op.op != SIZEOF)
15411 exp->isConstant = (!exp->__anon1.op.exp1 || exp->__anon1.op.exp1->isConstant) && (!exp->__anon1.op.exp2 || exp->__anon1.op.exp2->isConstant);
15412 if(exp->__anon1.op.op == SIZEOF && exp->__anon1.op.exp2->expType)
15413 {
15414 DeclareType(exp->__anon1.op.exp2->expType, 0, 0);
15415 }
15416 if(exp->__anon1.op.op == DELETE && exp->__anon1.op.exp2 && exp->__anon1.op.exp2->expType && __ecereProp_Type_Get_specConst(exp->__anon1.op.exp2->expType))
15417 Compiler_Warning(__ecereNameSpace__ecere__GetTranslatedString("ec", "deleting const qualified object\n", (((void *)0))));
15418 yylloc = oldyylloc;
15419 FreeType(dummy);
15420 if(type2)
15421 FreeType(type2);
15422 break;
15423 }
15424 case 5:
15425 case 32:
15426 {
15427 struct Expression * e;
15428
15429 exp->isConstant = 1;
15430 for(e = (*exp->__anon1.list).first; e; e = e->next)
15431 {
15432 unsigned int inced = 0;
15433
15434 if(!e->next)
15435 {
15436 FreeType(e->destType);
15437 e->opDestType = exp->opDestType;
15438 e->destType = exp->destType;
15439 if(e->destType)
15440 {
15441 exp->destType->refCount++;
15442 e->destType->count++;
15443 inced = 1;
15444 }
15445 }
15446 ProcessExpressionType(e);
15447 if(inced)
15448 exp->destType->count--;
15449 if(!exp->expType && !e->next)
15450 {
15451 exp->expType = e->expType;
15452 if(e->expType)
15453 e->expType->refCount++;
15454 }
15455 if(!e->isConstant)
15456 exp->isConstant = 0;
15457 }
15458 e = (*exp->__anon1.list).first;
15459 if(!e->next && e->type == 8)
15460 {
15461 struct Expression * next = exp->next, * prev = exp->prev;
15462
15463 FreeType(exp->expType);
15464 FreeType(exp->destType);
15465 (__ecereNameSpace__ecere__com__eSystem_Delete(exp->__anon1.list), exp->__anon1.list = 0);
15466 *exp = *e;
15467 exp->prev = prev;
15468 exp->next = next;
15469 ((e ? (__ecereClass_Expression->Destructor ? __ecereClass_Expression->Destructor((void *)e) : 0, __ecereNameSpace__ecere__com__eSystem_Delete(e)) : 0), e = 0);
15470 ProcessExpressionType(exp);
15471 }
15472 break;
15473 }
15474 case 6:
15475 {
15476 struct Expression * e;
15477
15478 exp->isConstant = 1;
15479 ProcessExpressionType(exp->__anon1.index.exp);
15480 if(!exp->__anon1.index.exp->isConstant)
15481 exp->isConstant = 0;
15482 if(exp->__anon1.index.exp->expType)
15483 {
15484 struct Type * source = exp->__anon1.index.exp->expType;
15485
15486 if(source->kind == 8 && source->__anon1._class && source->__anon1._class->__anon1.registered)
15487 {
15488 struct __ecereNameSpace__ecere__com__Class * _class = source->__anon1._class->__anon1.registered;
15489 struct __ecereNameSpace__ecere__com__Class * c = _class->templateClass ? _class->templateClass : _class;
15490
15491 if(_class != containerClass && __ecereNameSpace__ecere__com__eClass_IsDerived(c, containerClass) && _class->templateArgs)
15492 {
15493 exp->expType = ProcessTypeString(_class->templateArgs[2].__anon1.__anon1.dataTypeString, 0);
15494 if(exp->__anon1.index.index && (*exp->__anon1.index.index).last)
15495 {
15496 struct Type * type = ProcessTypeString(_class->templateArgs[1].__anon1.__anon1.dataTypeString, 0);
15497
15498 if(type->kind == 8)
15499 type->constant = 1;
15500 else if(type->kind == 13)
15501 {
15502 struct Type * t = type;
15503
15504 while(t->kind == 13)
15505 t = t->__anon1.type;
15506 t->constant = 1;
15507 }
15508 ((struct Expression *)(*exp->__anon1.index.index).last)->destType = type;
15509 }
15510 }
15511 }
15512 }
15513 for(e = (*exp->__anon1.index.index).first; e; e = e->next)
15514 {
15515 if(!e->next && exp->__anon1.index.exp->expType && exp->__anon1.index.exp->expType->kind == 12 && exp->__anon1.index.exp->expType->__anon1.__anon4.enumClass)
15516 {
15517 if(e->destType)
15518 FreeType(e->destType);
15519 e->destType = MkClassType(exp->__anon1.index.exp->expType->__anon1.__anon4.enumClass->string);
15520 }
15521 ProcessExpressionType(e);
15522 if(!e->next)
15523 {
15524 }
15525 if(!e->isConstant)
15526 exp->isConstant = 0;
15527 }
15528 if(!exp->expType)
15529 exp->expType = Dereference(exp->__anon1.index.exp->expType);
15530 if(exp->expType)
15531 DeclareType(exp->expType, 0, 0);
15532 break;
15533 }
15534 case 7:
15535 {
15536 struct Expression * e;
15537 struct Type * functionType;
15538 struct Type * methodType = (((void *)0));
15539 char name[1024];
15540
15541 name[0] = '\0';
15542 if(inCompiler)
15543 {
15544 PrintExpression(exp->__anon1.call.exp, name);
15545 if(exp->__anon1.call.exp->expType && !exp->__anon1.call.exp->expType->__anon1.__anon2.returnType)
15546 {
15547 PrintExpression(exp->__anon1.call.exp, name);
15548 }
15549 }
15550 if(exp->__anon1.call.exp->type == 0)
15551 {
15552 struct Expression * idExp = exp->__anon1.call.exp;
15553 struct Identifier * id = idExp->__anon1.__anon1.identifier;
15554
15555 if(!strcmp(id->string, "__builtin_frame_address"))
15556 {
15557 exp->expType = ProcessTypeString("void *", 1);
15558 if(exp->__anon1.call.arguments && (*exp->__anon1.call.arguments).first)
15559 ProcessExpressionType((*exp->__anon1.call.arguments).first);
15560 break;
15561 }
15562 else if(!strcmp(id->string, "__ENDIAN_PAD"))
15563 {
15564 exp->expType = ProcessTypeString("int", 1);
15565 if(exp->__anon1.call.arguments && (*exp->__anon1.call.arguments).first)
15566 ProcessExpressionType((*exp->__anon1.call.arguments).first);
15567 break;
15568 }
15569 else if(!strcmp(id->string, "Max") || !strcmp(id->string, "Min") || !strcmp(id->string, "Sgn") || !strcmp(id->string, "Abs"))
15570 {
15571 struct Expression * a = (((void *)0));
15572 struct Expression * b = (((void *)0));
15573 struct Expression * tempExp1 = (((void *)0)), * tempExp2 = (((void *)0));
15574
15575 if((!strcmp(id->string, "Max") || !strcmp(id->string, "Min")) && (*exp->__anon1.call.arguments).count == 2)
15576 {
15577 a = (*exp->__anon1.call.arguments).first;
15578 b = (*exp->__anon1.call.arguments).last;
15579 tempExp1 = a;
15580 tempExp2 = b;
15581 }
15582 else if((*exp->__anon1.call.arguments).count == 1)
15583 {
15584 a = (*exp->__anon1.call.arguments).first;
15585 tempExp1 = a;
15586 }
15587 if(a)
15588 {
15589 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Clear((&*exp->__anon1.call.arguments));
15590 idExp->__anon1.__anon1.identifier = (((void *)0));
15591 FreeExpContents(exp);
15592 ProcessExpressionType(a);
15593 if(b)
15594 ProcessExpressionType(b);
15595 exp->type = 5;
15596 exp->__anon1.list = MkList();
15597 if(a->expType && (!b || b->expType))
15598 {
15599 if((!a->isConstant && a->type != 0) || (b && !b->isConstant && b->type != 0))
15600 {
15601 if(inCompiler)
15602 {
15603 struct __ecereNameSpace__ecere__sys__OldList * specs = MkList();
15604 struct __ecereNameSpace__ecere__sys__OldList * decls = MkList();
15605 struct Declaration * decl;
15606 char temp1[1024], temp2[1024];
15607
15608 GetTypeSpecs(a->expType, specs);
15609 if(a && !a->isConstant && a->type != 0)
15610 {
15611 sprintf(temp1, "__simpleStruct%d", curContext->simpleID++);
15612 ListAdd(decls, MkInitDeclarator(MkDeclaratorIdentifier(MkIdentifier(temp1)), (((void *)0))));
15613 tempExp1 = QMkExpId(temp1);
15614 tempExp1->expType = a->expType;
15615 if(a->expType)
15616 a->expType->refCount++;
15617 ListAdd(exp->__anon1.list, MkExpOp(CopyExpression(tempExp1), '=', a));
15618 }
15619 if(b && !b->isConstant && b->type != 0)
15620 {
15621 sprintf(temp2, "__simpleStruct%d", curContext->simpleID++);
15622 ListAdd(decls, MkInitDeclarator(MkDeclaratorIdentifier(MkIdentifier(temp2)), (((void *)0))));
15623 tempExp2 = QMkExpId(temp2);
15624 tempExp2->expType = b->expType;
15625 if(b->expType)
15626 b->expType->refCount++;
15627 ListAdd(exp->__anon1.list, MkExpOp(CopyExpression(tempExp2), '=', b));
15628 }
15629 decl = MkDeclaration(specs, decls);
15630 if(!curCompound->__anon1.compound.declarations)
15631 curCompound->__anon1.compound.declarations = MkList();
15632 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*curCompound->__anon1.compound.declarations), (((void *)0)), decl);
15633 }
15634 }
15635 }
15636 if(!strcmp(id->string, "Max") || !strcmp(id->string, "Min"))
15637 {
15638 int op = (!strcmp(id->string, "Max")) ? '>' : '<';
15639
15640 ListAdd(exp->__anon1.list, MkExpCondition(MkExpBrackets(MkListOne(MkExpOp(CopyExpression(tempExp1), op, CopyExpression(tempExp2)))), MkListOne(CopyExpression(tempExp1)), CopyExpression(tempExp2)));
15641 exp->expType = a->expType;
15642 if(a->expType)
15643 a->expType->refCount++;
15644 }
15645 else if(!strcmp(id->string, "Abs"))
15646 {
15647 ListAdd(exp->__anon1.list, MkExpCondition(MkExpBrackets(MkListOne(MkExpOp(CopyExpression(tempExp1), '<', MkExpConstant("0")))), MkListOne(MkExpOp((((void *)0)), '-', CopyExpression(tempExp1))), CopyExpression(tempExp1)));
15648 exp->expType = a->expType;
15649 if(a->expType)
15650 a->expType->refCount++;
15651 }
15652 else if(!strcmp(id->string, "Sgn"))
15653 {
15654 ListAdd(exp->__anon1.list, MkExpCondition(MkExpBrackets(MkListOne(MkExpOp((((void *)0)), '!', CopyExpression(tempExp1)))), MkListOne(MkExpConstant("0")), MkExpBrackets(MkListOne(MkExpCondition(MkExpBrackets(MkListOne(MkExpOp(CopyExpression(tempExp1), '<', MkExpConstant("0")))), MkListOne(MkExpConstant("-1")), MkExpConstant("1"))))));
15655 exp->expType = ProcessTypeString("int", 0);
15656 }
15657 FreeExpression(tempExp1);
15658 if(tempExp2)
15659 FreeExpression(tempExp2);
15660 FreeIdentifier(id);
15661 break;
15662 }
15663 }
15664 }
15665 {
15666 struct Type * dummy = (dummy = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type), dummy->count = 1, dummy->refCount = 1, dummy);
15667
15668 if(!exp->__anon1.call.exp->destType)
15669 {
15670 exp->__anon1.call.exp->destType = dummy;
15671 dummy->refCount++;
15672 }
15673 ProcessExpressionType(exp->__anon1.call.exp);
15674 if(exp->__anon1.call.exp->destType == dummy)
15675 {
15676 FreeType(dummy);
15677 exp->__anon1.call.exp->destType = (((void *)0));
15678 }
15679 FreeType(dummy);
15680 }
15681 functionType = exp->__anon1.call.exp->expType;
15682 if(functionType && functionType->kind == 16)
15683 {
15684 methodType = functionType;
15685 functionType = methodType->__anon1.__anon3.method->dataType;
15686 if(exp->__anon1.call.exp->expType->__anon1.__anon3.usedClass)
15687 {
15688 char typeString[1024];
15689
15690 typeString[0] = '\0';
15691 {
15692 struct Symbol * back = functionType->__anon1.__anon2.thisClass;
15693
15694 functionType->__anon1.__anon2.thisClass = (((void *)0));
15695 PrintType(functionType, typeString, 1, 1);
15696 functionType->__anon1.__anon2.thisClass = back;
15697 }
15698 if(strstr(typeString, "thisclass"))
15699 {
15700 struct __ecereNameSpace__ecere__sys__OldList * specs = MkList();
15701 struct Declarator * decl;
15702
15703 {
15704 struct Context * context = SetupTemplatesContext(exp->__anon1.call.exp->expType->__anon1.__anon3.usedClass);
15705
15706 decl = SpecDeclFromString(typeString, specs, (((void *)0)));
15707 if(thisClass != (exp->__anon1.call.exp->expType->__anon1.__anon3.usedClass->templateClass ? exp->__anon1.call.exp->expType->__anon1.__anon3.usedClass->templateClass : exp->__anon1.call.exp->expType->__anon1.__anon3.usedClass))
15708 thisClassParams = 0;
15709 ReplaceThisClassSpecifiers(specs, exp->__anon1.call.exp->expType->__anon1.__anon3.usedClass);
15710 {
15711 struct __ecereNameSpace__ecere__com__Class * backupThisClass = thisClass;
15712
15713 thisClass = exp->__anon1.call.exp->expType->__anon1.__anon3.usedClass;
15714 ProcessDeclarator(decl);
15715 thisClass = backupThisClass;
15716 }
15717 thisClassParams = 1;
15718 functionType = ProcessType(specs, decl);
15719 functionType->refCount = 0;
15720 FinishTemplatesContext(context);
15721 }
15722 FreeList(specs, (void *)(FreeSpecifier));
15723 FreeDeclarator(decl);
15724 }
15725 }
15726 }
15727 if(functionType && functionType->kind == 13 && functionType->__anon1.type && functionType->__anon1.type->kind == 11)
15728 {
15729 struct Type * type = functionType->__anon1.type;
15730
15731 if(!functionType->refCount)
15732 {
15733 functionType->__anon1.type = (((void *)0));
15734 FreeType(functionType);
15735 }
15736 functionType = type;
15737 }
15738 if(functionType && functionType->kind != 11)
15739 {
15740 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "called object %s is not a function\n", (((void *)0))), name);
15741 }
15742 else if(functionType)
15743 {
15744 unsigned int emptyParams = 0, noParams = 0;
15745 struct Expression * e = exp->__anon1.call.arguments ? (*exp->__anon1.call.arguments).first : (((void *)0));
15746 struct Type * type = functionType->__anon1.__anon2.params.first;
15747 struct Expression * memberExp = (exp->__anon1.call.exp->type == 8) ? exp->__anon1.call.exp : (((void *)0));
15748 int extra = 0;
15749 struct Location oldyylloc = yylloc;
15750
15751 if(!type)
15752 emptyParams = 1;
15753 if(functionType->extraParam && e && functionType->__anon1.__anon2.thisClass)
15754 {
15755 e->destType = MkClassType(functionType->__anon1.__anon2.thisClass->string);
15756 e = e->next;
15757 }
15758 if(!functionType->__anon1.__anon2.staticMethod && !functionType->extraParam)
15759 {
15760 if(memberExp && memberExp->__anon1.member.exp && memberExp->__anon1.member.exp->expType && memberExp->__anon1.member.exp->expType->kind == 19 && memberExp->__anon1.member.exp->expType->__anon1._class)
15761 {
15762 type = MkClassType(memberExp->__anon1.member.exp->expType->__anon1._class->string);
15763 if(e)
15764 {
15765 e->destType = type;
15766 e = e->next;
15767 type = functionType->__anon1.__anon2.params.first;
15768 }
15769 else
15770 type->refCount = 0;
15771 }
15772 else if(!memberExp && (functionType->__anon1.__anon2.thisClass || (methodType && methodType->__anon1.__anon3.methodClass)))
15773 {
15774 type = MkClassType(functionType->__anon1.__anon2.thisClass ? functionType->__anon1.__anon2.thisClass->string : (methodType ? methodType->__anon1.__anon3.methodClass->fullName : (((void *)0))));
15775 type->byReference = functionType->byReference;
15776 type->typedByReference = functionType->typedByReference;
15777 if(e)
15778 {
15779 if(e->next && type->kind == 8 && (functionType && functionType->__anon1.__anon2.thisClass) && functionType->classObjectType == 2)
15780 e = e->next;
15781 e->destType = type;
15782 e = e->next;
15783 type = functionType->__anon1.__anon2.params.first;
15784 }
15785 else
15786 type->refCount = 0;
15787 }
15788 }
15789 if(type && type->kind == 0)
15790 {
15791 noParams = 1;
15792 if(!type->refCount)
15793 FreeType(type);
15794 type = (((void *)0));
15795 }
15796 for(; e; e = e->next)
15797 {
15798 if(!type && !emptyParams)
15799 {
15800 yylloc = e->loc;
15801 if(methodType && methodType->__anon1.__anon3.methodClass)
15802 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "too many arguments for method %s::%s (%d given, expected %d)\n", (((void *)0))), methodType->__anon1.__anon3.methodClass->fullName, methodType->__anon1.__anon3.method->name, (*exp->__anon1.call.arguments).count, noParams ? 0 : functionType->__anon1.__anon2.params.count);
15803 else
15804 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "too many arguments for function %s (%d given, expected %d)\n", (((void *)0))), name, (*exp->__anon1.call.arguments).count, noParams ? 0 : functionType->__anon1.__anon2.params.count);
15805 break;
15806 }
15807 if(methodType && type && type->kind == 20 && type->__anon1.templateParameter->type == 0)
15808 {
15809 struct Type * templatedType = (((void *)0));
15810 struct __ecereNameSpace__ecere__com__Class * _class = methodType->__anon1.__anon3.usedClass;
15811 struct __ecereNameSpace__ecere__com__ClassTemplateParameter * curParam = (((void *)0));
15812 int id = 0;
15813
15814 if(_class && _class->templateArgs)
15815 {
15816 struct __ecereNameSpace__ecere__com__Class * sClass;
15817
15818 for(sClass = _class; sClass; sClass = sClass->base)
15819 {
15820 if(sClass->templateClass)
15821 sClass = sClass->templateClass;
15822 id = 0;
15823 for(curParam = sClass->templateParams.first; curParam; curParam = curParam->next)
15824 {
15825 if(curParam->type == 0 && !strcmp(type->__anon1.templateParameter->identifier->string, curParam->name))
15826 {
15827 struct __ecereNameSpace__ecere__com__Class * nextClass;
15828
15829 for(nextClass = sClass->base; nextClass; nextClass = nextClass->base)
15830 {
15831 if(nextClass->templateClass)
15832 nextClass = nextClass->templateClass;
15833 id += nextClass->templateParams.count;
15834 }
15835 break;
15836 }
15837 id++;
15838 }
15839 if(curParam)
15840 break;
15841 }
15842 }
15843 if(curParam && _class->templateArgs[id].__anon1.__anon1.dataTypeString)
15844 {
15845 unsigned int constant = type->constant;
15846 struct __ecereNameSpace__ecere__com__ClassTemplateArgument arg = _class->templateArgs[id];
15847
15848 {
15849 struct Context * context = SetupTemplatesContext(_class);
15850
15851 templatedType = ProcessTypeString(arg.__anon1.__anon1.dataTypeString, 0);
15852 FinishTemplatesContext(context);
15853 }
15854 if(templatedType->kind == 8 && constant)
15855 templatedType->constant = 1;
15856 else if(templatedType->kind == 13)
15857 {
15858 struct Type * t = templatedType->__anon1.type;
15859
15860 while(t->kind == 13)
15861 t = t->__anon1.type;
15862 if(constant)
15863 t->constant = constant;
15864 }
15865 e->destType = templatedType;
15866 if(templatedType)
15867 {
15868 templatedType->passAsTemplate = 1;
15869 }
15870 }
15871 else
15872 {
15873 e->destType = type;
15874 if(type)
15875 type->refCount++;
15876 }
15877 }
15878 else
15879 {
15880 if(type && type->kind == 14 && type->prev && type->prev->kind == 8 && type->prev->classObjectType)
15881 {
15882 e->destType = type->prev;
15883 e->destType->refCount++;
15884 }
15885 else
15886 {
15887 e->destType = type;
15888 if(type)
15889 type->refCount++;
15890 }
15891 }
15892 if(type && type->kind != 14)
15893 {
15894 struct Type * next = type->next;
15895
15896 if(!type->refCount)
15897 FreeType(type);
15898 type = next;
15899 }
15900 }
15901 if(type && type->kind != 14)
15902 {
15903 if(methodType && methodType->__anon1.__anon3.methodClass)
15904 Compiler_Warning(__ecereNameSpace__ecere__GetTranslatedString("ec", "not enough arguments for method %s::%s (%d given, expected %d)\n", (((void *)0))), methodType->__anon1.__anon3.methodClass->fullName, methodType->__anon1.__anon3.method->name, exp->__anon1.call.arguments ? (*exp->__anon1.call.arguments).count : 0, functionType->__anon1.__anon2.params.count + extra);
15905 else
15906 Compiler_Warning(__ecereNameSpace__ecere__GetTranslatedString("ec", "not enough arguments for function %s (%d given, expected %d)\n", (((void *)0))), name, exp->__anon1.call.arguments ? (*exp->__anon1.call.arguments).count : 0, functionType->__anon1.__anon2.params.count + extra);
15907 }
15908 yylloc = oldyylloc;
15909 if(type && !type->refCount)
15910 FreeType(type);
15911 }
15912 else
15913 {
15914 functionType = __extension__ ({
15915 struct Type * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
15916
15917 __ecereInstance1->refCount = 0, __ecereInstance1->kind = 11, __ecereInstance1;
15918 });
15919 if(exp->__anon1.call.exp->type == 0)
15920 {
15921 char * string = exp->__anon1.call.exp->__anon1.__anon1.identifier->string;
15922
15923 if(inCompiler)
15924 {
15925 struct Symbol * symbol;
15926 struct Location oldyylloc = yylloc;
15927
15928 yylloc = exp->__anon1.call.exp->__anon1.__anon1.identifier->loc;
15929 if(strstr(string, "__builtin_") == string)
15930 {
15931 if(exp->destType)
15932 {
15933 functionType->__anon1.__anon2.returnType = exp->destType;
15934 exp->destType->refCount++;
15935 }
15936 }
15937 else
15938 Compiler_Warning(__ecereNameSpace__ecere__GetTranslatedString("ec", "%s undefined; assuming extern returning int\n", (((void *)0))), string);
15939 symbol = __extension__ ({
15940 struct Symbol * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol);
15941
15942 __ecereInstance1->string = __ecereNameSpace__ecere__sys__CopyString(string), __ecereInstance1->type = ProcessTypeString("int()", 1), __ecereInstance1;
15943 });
15944 __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Add(&globalContext->symbols, (struct __ecereNameSpace__ecere__sys__BTNode *)symbol);
15945 if(strstr(symbol->string, "::"))
15946 globalContext->hasNameSpace = 1;
15947 yylloc = oldyylloc;
15948 }
15949 }
15950 else if(exp->__anon1.call.exp->type == 8)
15951 {
15952 }
15953 else
15954 Compiler_Warning(__ecereNameSpace__ecere__GetTranslatedString("ec", "callable object undefined; extern assuming returning int\n", (((void *)0))));
15955 if(!functionType->__anon1.__anon2.returnType)
15956 {
15957 functionType->__anon1.__anon2.returnType = __extension__ ({
15958 struct Type * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
15959
15960 __ecereInstance1->refCount = 1, __ecereInstance1->kind = 3, __ecereInstance1;
15961 });
15962 }
15963 }
15964 if(functionType && functionType->kind == 11)
15965 {
15966 exp->expType = functionType->__anon1.__anon2.returnType;
15967 if(functionType->__anon1.__anon2.returnType)
15968 functionType->__anon1.__anon2.returnType->refCount++;
15969 if(!functionType->refCount)
15970 FreeType(functionType);
15971 }
15972 if(exp->__anon1.call.arguments)
15973 {
15974 for(e = (*exp->__anon1.call.arguments).first; e; e = e->next)
15975 ProcessExpressionType(e);
15976 }
15977 break;
15978 }
15979 case 8:
15980 {
15981 struct Type * type;
15982 struct Location oldyylloc = yylloc;
15983 unsigned int thisPtr;
15984 struct Expression * checkExp = exp->__anon1.member.exp;
15985
15986 while(checkExp)
15987 {
15988 if(checkExp->type == 11)
15989 checkExp = checkExp->__anon1.cast.exp;
15990 else if(checkExp->type == 5)
15991 checkExp = checkExp->__anon1.list ? (*checkExp->__anon1.list).first : (((void *)0));
15992 else
15993 break;
15994 }
15995 thisPtr = (checkExp && checkExp->type == 0 && !strcmp(checkExp->__anon1.__anon1.identifier->string, "this"));
15996 exp->thisPtr = thisPtr;
15997 if(exp->__anon1.member.member && exp->__anon1.member.member->_class && exp->__anon1.member.member->_class->__anon1.__anon1.name)
15998 {
15999 exp->__anon1.member.member->classSym = exp->__anon1.member.member->_class->__anon1.__anon1.symbol;
16000 }
16001 ProcessExpressionType(exp->__anon1.member.exp);
16002 if(exp->__anon1.member.exp->expType && exp->__anon1.member.exp->expType->kind == 8 && exp->__anon1.member.exp->expType->__anon1._class && exp->__anon1.member.exp->expType->__anon1._class->__anon1.registered && exp->__anon1.member.exp->expType->__anon1._class->__anon1.registered->type == 0)
16003 {
16004 exp->isConstant = 0;
16005 }
16006 else
16007 exp->isConstant = exp->__anon1.member.exp->isConstant;
16008 type = exp->__anon1.member.exp->expType;
16009 yylloc = exp->loc;
16010 if(type && (type->kind == 20))
16011 {
16012 struct __ecereNameSpace__ecere__com__Class * _class = thisClass ? thisClass : currentClass;
16013 struct __ecereNameSpace__ecere__com__ClassTemplateParameter * param = (((void *)0));
16014
16015 if(_class)
16016 {
16017 for(param = _class->templateParams.first; param; param = param->next)
16018 {
16019 if(param->type == 1 && exp->__anon1.member.member && exp->__anon1.member.member->string && !strcmp(param->name, exp->__anon1.member.member->string))
16020 break;
16021 }
16022 }
16023 if(param && param->defaultArg.__anon1.__anon2.__anon1.member)
16024 {
16025 struct Expression * argExp = GetTemplateArgExpByName(param->name, thisClass, 1);
16026
16027 if(argExp)
16028 {
16029 struct Expression * expMember = exp->__anon1.member.exp;
16030 struct Declarator * decl;
16031 struct __ecereNameSpace__ecere__sys__OldList * specs = MkList();
16032 char thisClassTypeString[1024];
16033
16034 FreeIdentifier(exp->__anon1.member.member);
16035 ProcessExpressionType(argExp);
16036 {
16037 char * colon = strstr(param->defaultArg.__anon1.__anon2.memberString, "::");
16038
16039 if(colon)
16040 {
16041 memcpy(thisClassTypeString, param->defaultArg.__anon1.__anon2.memberString, colon - param->defaultArg.__anon1.__anon2.memberString);
16042 thisClassTypeString[colon - param->defaultArg.__anon1.__anon2.memberString] = '\0';
16043 }
16044 else
16045 strcpy(thisClassTypeString, _class->fullName);
16046 }
16047 decl = SpecDeclFromString(param->defaultArg.__anon1.__anon2.__anon1.member->dataTypeString, specs, (((void *)0)));
16048 exp->expType = ProcessType(specs, decl);
16049 if(exp->expType->kind == 8 && exp->expType->__anon1._class && exp->expType->__anon1._class->__anon1.registered && exp->expType->__anon1._class->__anon1.registered->templateClass)
16050 {
16051 struct __ecereNameSpace__ecere__com__Class * expClass = exp->expType->__anon1._class->__anon1.registered;
16052 struct __ecereNameSpace__ecere__com__Class * cClass = (((void *)0));
16053 int paramCount = 0;
16054 int lastParam = -1;
16055 char templateString[1024];
16056 struct __ecereNameSpace__ecere__com__ClassTemplateParameter * param;
16057
16058 sprintf(templateString, "%s<", expClass->templateClass->fullName);
16059 for(cClass = expClass; cClass; cClass = cClass->base)
16060 {
16061 int p = 0;
16062
16063 for(param = cClass->templateParams.first; param; param = param->next)
16064 {
16065 int id = p;
16066 struct __ecereNameSpace__ecere__com__Class * sClass;
16067 struct __ecereNameSpace__ecere__com__ClassTemplateArgument arg;
16068
16069 for(sClass = cClass->base; sClass; sClass = sClass->base)
16070 id += sClass->templateParams.count;
16071 arg = expClass->templateArgs[id];
16072 for(sClass = _class; sClass; sClass = sClass->base)
16073 {
16074 struct __ecereNameSpace__ecere__com__ClassTemplateParameter * cParam;
16075 int p = 0;
16076 struct __ecereNameSpace__ecere__com__Class * nextClass;
16077
16078 for(nextClass = sClass->base; nextClass; nextClass = nextClass->base)
16079 p += nextClass->templateParams.count;
16080 for(cParam = sClass->templateParams.first; cParam; cParam = cParam->next, p++)
16081 {
16082 if(cParam->type == 0 && arg.__anon1.__anon1.dataTypeString && !strcmp(cParam->name, arg.__anon1.__anon1.dataTypeString))
16083 {
16084 if(_class->templateArgs && arg.__anon1.__anon1.dataTypeString && (!param->defaultArg.__anon1.__anon1.dataTypeString || strcmp(arg.__anon1.__anon1.dataTypeString, param->defaultArg.__anon1.__anon1.dataTypeString)))
16085 {
16086 arg.__anon1.__anon1.dataTypeString = _class->templateArgs[p].__anon1.__anon1.dataTypeString;
16087 arg.__anon1.__anon1.dataTypeClass = _class->templateArgs[p].__anon1.__anon1.dataTypeClass;
16088 break;
16089 }
16090 }
16091 }
16092 }
16093 {
16094 char argument[256];
16095
16096 argument[0] = '\0';
16097 switch(param->type)
16098 {
16099 case 2:
16100 {
16101 char expString[1024];
16102 struct __ecereNameSpace__ecere__sys__OldList * specs = MkList();
16103 struct Declarator * decl = SpecDeclFromString(param->__anon1.dataTypeString, specs, (((void *)0)));
16104 struct Expression * exp;
16105 char * string = PrintHexUInt64(arg.__anon1.expression.__anon1.ui64);
16106
16107 exp = MkExpCast(MkTypeName(specs, decl), MkExpConstant(string));
16108 (__ecereNameSpace__ecere__com__eSystem_Delete(string), string = 0);
16109 ProcessExpressionType(exp);
16110 ComputeExpression(exp);
16111 expString[0] = '\0';
16112 PrintExpression(exp, expString);
16113 strcat(argument, expString);
16114 FreeExpression(exp);
16115 break;
16116 }
16117 case 1:
16118 {
16119 strcat(argument, arg.__anon1.__anon2.__anon1.member->name);
16120 break;
16121 }
16122 case 0:
16123 {
16124 if(arg.__anon1.__anon1.dataTypeString && (!param->defaultArg.__anon1.__anon1.dataTypeString || strcmp(arg.__anon1.__anon1.dataTypeString, param->defaultArg.__anon1.__anon1.dataTypeString)))
16125 {
16126 if(!strcmp(arg.__anon1.__anon1.dataTypeString, "thisclass"))
16127 strcat(argument, thisClassTypeString);
16128 else
16129 strcat(argument, arg.__anon1.__anon1.dataTypeString);
16130 }
16131 break;
16132 }
16133 }
16134 if(argument[0])
16135 {
16136 if(paramCount)
16137 strcat(templateString, ", ");
16138 if(lastParam != p - 1)
16139 {
16140 strcat(templateString, param->name);
16141 strcat(templateString, " = ");
16142 }
16143 strcat(templateString, argument);
16144 paramCount++;
16145 lastParam = p;
16146 }
16147 p++;
16148 }
16149 }
16150 }
16151 {
16152 int len = strlen(templateString);
16153
16154 if(templateString[len - 1] == '>')
16155 templateString[len++] = ' ';
16156 templateString[len++] = '>';
16157 templateString[len++] = '\0';
16158 }
16159 {
16160 struct Context * context = SetupTemplatesContext(_class);
16161
16162 FreeType(exp->expType);
16163 exp->expType = ProcessTypeString(templateString, 0);
16164 FinishTemplatesContext(context);
16165 }
16166 }
16167 exp->type = 5;
16168 exp->__anon1.list = MkListOne(MkExpOp((((void *)0)), '*', MkExpCast(MkTypeName(specs, MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), decl)), MkExpBrackets(MkListOne(MkExpOp(MkExpBrackets(MkListOne(MkExpCast(MkTypeName(MkListOne(MkSpecifierName("byte")), MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), (((void *)0)))), expMember))), '+', MkExpOp(MkExpMember(MkExpMember(argExp, MkIdentifier("member")), MkIdentifier("offset")), '+', MkExpMember(MkExpMember(MkExpMember(CopyExpression(argExp), MkIdentifier("member")), MkIdentifier("_class")), MkIdentifier("offset")))))))));
16169 }
16170 }
16171 else if(type->__anon1.templateParameter && type->__anon1.templateParameter->type == 0 && (type->__anon1.templateParameter->__anon1.dataType || type->__anon1.templateParameter->dataTypeString))
16172 {
16173 type = ProcessTemplateParameterType(type->__anon1.templateParameter);
16174 }
16175 }
16176 if(type && (type->kind == 20))
16177 ;
16178 else if(type && (type->kind == 8 || type->kind == 19 || type->kind == 3 || type->kind == 15 || type->kind == 4 || type->kind == 2 || type->kind == 5 || type->kind == 1 || type->kind == 24 || type->kind == 22 || type->kind == 23 || type->kind == 6 || type->kind == 7 || (type->kind == 13 && type->__anon1.type->kind == 1)))
16179 {
16180 struct Identifier * id = exp->__anon1.member.member;
16181 int typeKind = type->kind;
16182 struct __ecereNameSpace__ecere__com__Class * _class = (id && (!id->_class || id->_class->__anon1.__anon1.name)) ? (id->classSym ? id->classSym->__anon1.registered : (type->__anon1._class ? type->__anon1._class->__anon1.registered : (((void *)0)))) : (((void *)0));
16183
16184 if(typeKind == 19 && exp->__anon1.member.exp->type == 24)
16185 {
16186 _class = __ecereNameSpace__ecere__com__eSystem_FindClass(privateModule, "ecere::com::Class");
16187 typeKind = 8;
16188 }
16189 if(id)
16190 {
16191 if(typeKind == 3 || typeKind == 15)
16192 _class = __ecereNameSpace__ecere__com__eSystem_FindClass(privateModule, "int");
16193 else if(!_class)
16194 {
16195 if(type->kind == 8 && type->__anon1._class && type->__anon1._class->__anon1.registered)
16196 {
16197 _class = type->__anon1._class->__anon1.registered;
16198 }
16199 else if((type->kind == 12 || type->kind == 13) && type->__anon1.type && type->__anon1.type->kind == 1)
16200 {
16201 _class = FindClass("char *")->__anon1.registered;
16202 }
16203 else if(type->kind == 13)
16204 {
16205 _class = __ecereNameSpace__ecere__com__eSystem_FindClass(privateModule, "uintptr");
16206 FreeType(exp->expType);
16207 exp->expType = ProcessTypeString("uintptr", 0);
16208 exp->byReference = 1;
16209 }
16210 else
16211 {
16212 char string[1024] = "";
16213 struct Symbol * classSym;
16214
16215 PrintTypeNoConst(type, string, 0, 1);
16216 classSym = FindClass(string);
16217 if(classSym)
16218 _class = classSym->__anon1.registered;
16219 }
16220 }
16221 }
16222 if(_class && id)
16223 {
16224 struct __ecereNameSpace__ecere__com__Property * prop = (((void *)0));
16225 struct __ecereNameSpace__ecere__com__Method * method = (((void *)0));
16226 struct __ecereNameSpace__ecere__com__DataMember * member = (((void *)0));
16227 struct __ecereNameSpace__ecere__com__Property * revConvert = (((void *)0));
16228 struct __ecereNameSpace__ecere__com__ClassProperty * classProp = (((void *)0));
16229
16230 if(id && id->_class && id->_class->__anon1.__anon1.name && !strcmp(id->_class->__anon1.__anon1.name, "property"))
16231 exp->__anon1.member.memberType = 1;
16232 if(id && id->_class && type->__anon1._class && !__ecereNameSpace__ecere__com__eClass_IsDerived(type->__anon1._class->__anon1.registered, _class))
16233 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "invalid class specifier %s for object of class %s\n", (((void *)0))), _class->fullName, type->__anon1._class->string);
16234 if(typeKind != 19)
16235 {
16236 if((exp->__anon1.member.memberType == 0 && thisPtr) || exp->__anon1.member.memberType == 3)
16237 {
16238 member = __ecereNameSpace__ecere__com__eClass_FindDataMember(_class, id->string, privateModule, (((void *)0)), (((void *)0)));
16239 if(member && member->_class != (_class->templateClass ? _class->templateClass : _class) && exp->__anon1.member.memberType != 3)
16240 {
16241 prop = __ecereNameSpace__ecere__com__eClass_FindProperty(_class, id->string, privateModule);
16242 if(prop)
16243 member = (((void *)0));
16244 }
16245 if(!member && !prop)
16246 prop = __ecereNameSpace__ecere__com__eClass_FindProperty(_class, id->string, privateModule);
16247 if((member && member->_class == (_class->templateClass ? _class->templateClass : _class)) || (prop && prop->_class == (_class->templateClass ? _class->templateClass : _class)))
16248 exp->__anon1.member.thisPtr = 1;
16249 }
16250 else
16251 {
16252 unsigned int useMemberForNonConst = 0;
16253
16254 if(!id->classSym)
16255 {
16256 prop = __ecereNameSpace__ecere__com__eClass_FindProperty(_class, id->string, (((void *)0)));
16257 useMemberForNonConst = prop && exp->destType && ((exp->destType->kind == 8 && !exp->destType->constant) || ((exp->destType->kind == 13 || exp->destType->kind == 12) && exp->destType->__anon1.type && !exp->destType->__anon1.type->constant)) && !strncmp(prop->dataTypeString, "const ", 6);
16258 if(useMemberForNonConst || !id->_class || !id->_class->__anon1.__anon1.name || strcmp(id->_class->__anon1.__anon1.name, "property"))
16259 member = __ecereNameSpace__ecere__com__eClass_FindDataMember(_class, id->string, (((void *)0)), (((void *)0)), (((void *)0)));
16260 }
16261 if((!prop || useMemberForNonConst) && !member)
16262 {
16263 method = useMemberForNonConst ? (((void *)0)) : __ecereNameSpace__ecere__com__eClass_FindMethod(_class, id->string, (((void *)0)));
16264 if(!method)
16265 {
16266 prop = __ecereNameSpace__ecere__com__eClass_FindProperty(_class, id->string, privateModule);
16267 useMemberForNonConst |= prop && exp->destType && ((exp->destType->kind == 8 && !exp->destType->constant) || ((exp->destType->kind == 13 || exp->destType->kind == 12) && exp->destType->__anon1.type && !exp->destType->__anon1.type->constant)) && !strncmp(prop->dataTypeString, "const ", 6);
16268 if(useMemberForNonConst || !id->_class || !id->_class->__anon1.__anon1.name || strcmp(id->_class->__anon1.__anon1.name, "property"))
16269 member = __ecereNameSpace__ecere__com__eClass_FindDataMember(_class, id->string, privateModule, (((void *)0)), (((void *)0)));
16270 }
16271 }
16272 if(member && prop)
16273 {
16274 if(useMemberForNonConst || (member->_class != prop->_class && !id->_class && __ecereNameSpace__ecere__com__eClass_IsDerived(member->_class, prop->_class)))
16275 prop = (((void *)0));
16276 else
16277 member = (((void *)0));
16278 }
16279 }
16280 }
16281 if(!prop && !member && !method)
16282 method = __ecereNameSpace__ecere__com__eClass_FindMethod(_class, id->string, privateModule);
16283 if(!prop && !member && !method)
16284 {
16285 if(typeKind == 19)
16286 {
16287 classProp = __ecereNameSpace__ecere__com__eClass_FindClassProperty(type->__anon1._class->__anon1.registered, exp->__anon1.member.member->string);
16288 if(classProp)
16289 {
16290 exp->__anon1.member.memberType = 5;
16291 exp->expType = ProcessTypeString(classProp->dataTypeString, 0);
16292 }
16293 else
16294 {
16295 char structName[1024];
16296 struct Identifier * id = exp->__anon1.member.member;
16297 struct Expression * classExp = exp->__anon1.member.exp;
16298
16299 type->refCount++;
16300 FreeType(classExp->expType);
16301 classExp->expType = ProcessTypeString("ecere::com::Class", 0);
16302 strcpy(structName, "__ecereClassData_");
16303 FullClassNameCat(structName, type->__anon1._class->string, 0);
16304 exp->type = 9;
16305 exp->__anon1.member.member = id;
16306 exp->__anon1.member.exp = MkExpBrackets(MkListOne(MkExpCast(MkTypeName(MkListOne(MkStructOrUnion(3, MkIdentifier(structName), (((void *)0)))), MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), (((void *)0)))), MkExpBrackets(MkListOne(MkExpOp(MkExpCast(MkTypeName(MkListOne(MkSpecifier(CHAR)), MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), (((void *)0)))), MkExpMember(classExp, MkIdentifier("data"))), '+', MkExpMember(MkExpClass(MkListOne(MkSpecifierName(type->__anon1._class->string)), (((void *)0))), MkIdentifier("offsetClass"))))))));
16307 FreeType(type);
16308 ProcessExpressionType(exp);
16309 return ;
16310 }
16311 }
16312 else
16313 {
16314 struct Symbol * classSym = FindClass(id->string);
16315
16316 if(classSym)
16317 {
16318 struct __ecereNameSpace__ecere__com__Class * convertClass = classSym->__anon1.registered;
16319
16320 if(convertClass)
16321 revConvert = __ecereNameSpace__ecere__com__eClass_FindProperty(convertClass, _class->fullName, privateModule);
16322 }
16323 }
16324 }
16325 if(exp->__anon1.member.exp->destType)
16326 FreeType(exp->__anon1.member.exp->destType);
16327 {
16328 if(method && !method->_class->symbol)
16329 method->_class->symbol = FindClass(method->_class->fullName);
16330 if(prop && !prop->_class->symbol)
16331 prop->_class->symbol = FindClass(prop->_class->fullName);
16332 exp->__anon1.member.exp->destType = __extension__ ({
16333 struct Type * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
16334
16335 __ecereInstance1->refCount = 1, __ecereInstance1->kind = 8, __ecereInstance1->__anon1._class = prop ? prop->_class->symbol : method ? method->_class->symbol : _class->symbol, __ecereInstance1;
16336 });
16337 }
16338 if(prop)
16339 {
16340 exp->__anon1.member.memberType = 1;
16341 if(!prop->dataType)
16342 ProcessPropertyType(prop);
16343 exp->expType = prop->dataType;
16344 if(!strcmp(_class->base->fullName, "eda::Row") && !exp->expType->constant && !exp->destType)
16345 {
16346 struct Type * type = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
16347
16348 CopyTypeInto(type, exp->expType);
16349 type->refCount = 1;
16350 type->constant = 1;
16351 exp->expType = type;
16352 }
16353 else if(prop->dataType)
16354 prop->dataType->refCount++;
16355 }
16356 else if(member)
16357 {
16358 if(exp->__anon1.member.exp->expType->classObjectType == 2 && !strcmp(exp->__anon1.member.member->string, "_class"))
16359 {
16360 FreeExpContents(exp);
16361 exp->type = 0;
16362 exp->__anon1.__anon1.identifier = MkIdentifier("class");
16363 ProcessExpressionType(exp);
16364 return ;
16365 }
16366 exp->__anon1.member.memberType = 3;
16367 DeclareStruct(_class->fullName, 0);
16368 if(!member->dataType)
16369 {
16370 struct Context * context = SetupTemplatesContext(_class);
16371
16372 member->dataType = ProcessTypeString(member->dataTypeString, 0);
16373 FinishTemplatesContext(context);
16374 }
16375 exp->expType = member->dataType;
16376 if(member->dataType)
16377 member->dataType->refCount++;
16378 }
16379 else if(revConvert)
16380 {
16381 exp->__anon1.member.memberType = 4;
16382 exp->expType = MkClassType(revConvert->_class->fullName);
16383 }
16384 else if(method)
16385 {
16386 {
16387 exp->__anon1.member.memberType = 2;
16388 }
16389 if(!method->dataType)
16390 ProcessMethodType(method);
16391 exp->expType = __extension__ ({
16392 struct Type * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
16393
16394 __ecereInstance1->refCount = 1, __ecereInstance1->kind = 16, __ecereInstance1->__anon1.__anon3.method = method, __ecereInstance1;
16395 });
16396 exp->expType->__anon1.__anon3.methodClass = (id && id->_class) ? _class : (((void *)0));
16397 exp->expType->__anon1.__anon3.usedClass = _class;
16398 }
16399 else if(!classProp)
16400 {
16401 if(exp->__anon1.member.exp->expType->classObjectType == 2 && !strcmp(exp->__anon1.member.member->string, "_class"))
16402 {
16403 FreeExpContents(exp);
16404 exp->type = 0;
16405 exp->__anon1.__anon1.identifier = MkIdentifier("class");
16406 FreeType(exp->expType);
16407 exp->expType = MkClassType("ecere::com::Class");
16408 return ;
16409 }
16410 yylloc = exp->__anon1.member.member->loc;
16411 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "couldn't find member %s in class %s\n", (((void *)0))), id->string, _class->fullName);
16412 if(inCompiler)
16413 __ecereNameSpace__ecere__com__eClass_AddDataMember(_class, id->string, "int", 0, 0, 1);
16414 }
16415 if(_class && exp->expType)
16416 {
16417 struct __ecereNameSpace__ecere__com__Class * tClass;
16418
16419 tClass = type->__anon1._class && type->__anon1._class->__anon1.registered ? type->__anon1._class->__anon1.registered : _class;
16420 while(tClass && !tClass->templateClass)
16421 tClass = tClass->base;
16422 if(tClass && exp->expType->kind == 20 && exp->expType->__anon1.templateParameter->type == 0)
16423 {
16424 int id = 0;
16425 struct __ecereNameSpace__ecere__com__ClassTemplateParameter * curParam = (((void *)0));
16426 struct __ecereNameSpace__ecere__com__Class * sClass;
16427
16428 for(sClass = tClass; sClass; sClass = sClass->base)
16429 {
16430 id = 0;
16431 if(sClass->templateClass)
16432 sClass = sClass->templateClass;
16433 for(curParam = sClass->templateParams.first; curParam; curParam = curParam->next)
16434 {
16435 if(curParam->type == 0 && !strcmp(exp->expType->__anon1.templateParameter->identifier->string, curParam->name))
16436 {
16437 for(sClass = sClass->base; sClass; sClass = sClass->base)
16438 id += sClass->templateParams.count;
16439 break;
16440 }
16441 id++;
16442 }
16443 if(curParam)
16444 break;
16445 }
16446 if(curParam && tClass->templateArgs[id].__anon1.__anon1.dataTypeString)
16447 {
16448 struct __ecereNameSpace__ecere__com__ClassTemplateArgument arg = tClass->templateArgs[id];
16449 struct Context * context = SetupTemplatesContext(tClass);
16450 unsigned int constant = exp->expType->constant;
16451
16452 FreeType(exp->expType);
16453 exp->expType = ProcessTypeString(arg.__anon1.__anon1.dataTypeString, 0);
16454 if(exp->expType->kind == 8 && constant)
16455 exp->expType->constant = 1;
16456 else if(exp->expType->kind == 13)
16457 {
16458 struct Type * t = exp->expType->__anon1.type;
16459
16460 while(t->kind == 13)
16461 t = t->__anon1.type;
16462 if(constant)
16463 t->constant = constant;
16464 }
16465 if(exp->expType)
16466 {
16467 if(exp->expType->kind == 21)
16468 {
16469 FreeType(exp->expType);
16470 exp->expType = ReplaceThisClassType(_class);
16471 }
16472 if(tClass->templateClass && (exp->expType->kind != 20 || (!exp->expType->__anon1.templateParameter || (!exp->expType->__anon1.templateParameter->dataTypeString && !exp->expType->__anon1.templateParameter->__anon1.dataType))))
16473 exp->expType->passAsTemplate = 1;
16474 if(!exp->destType)
16475 {
16476 exp->destType = ProcessTypeString(arg.__anon1.__anon1.dataTypeString, 0);
16477 if(exp->destType->kind == 8 && constant)
16478 exp->destType->constant = 1;
16479 else if(exp->destType->kind == 13)
16480 {
16481 struct Type * t = exp->destType->__anon1.type;
16482
16483 while(t->kind == 13)
16484 t = t->__anon1.type;
16485 if(constant)
16486 t->constant = constant;
16487 }
16488 if(exp->destType->kind == 21)
16489 {
16490 FreeType(exp->destType);
16491 exp->destType = ReplaceThisClassType(_class);
16492 }
16493 }
16494 }
16495 FinishTemplatesContext(context);
16496 }
16497 }
16498 else if(tClass && exp->expType->kind == 13 && exp->expType->__anon1.type && exp->expType->__anon1.type->kind == 20 && exp->expType->__anon1.type->__anon1.templateParameter->type == 0)
16499 {
16500 int id = 0;
16501 struct __ecereNameSpace__ecere__com__ClassTemplateParameter * curParam = (((void *)0));
16502 struct __ecereNameSpace__ecere__com__Class * sClass;
16503
16504 for(sClass = tClass; sClass; sClass = sClass->base)
16505 {
16506 id = 0;
16507 if(sClass->templateClass)
16508 sClass = sClass->templateClass;
16509 for(curParam = sClass->templateParams.first; curParam; curParam = curParam->next)
16510 {
16511 if(curParam->type == 0 && !strcmp(exp->expType->__anon1.type->__anon1.templateParameter->identifier->string, curParam->name))
16512 {
16513 for(sClass = sClass->base; sClass; sClass = sClass->base)
16514 id += sClass->templateParams.count;
16515 break;
16516 }
16517 id++;
16518 }
16519 if(curParam)
16520 break;
16521 }
16522 if(curParam)
16523 {
16524 struct __ecereNameSpace__ecere__com__ClassTemplateArgument arg = tClass->templateArgs[id];
16525 struct Context * context = SetupTemplatesContext(tClass);
16526 struct Type * basicType;
16527
16528 basicType = ProcessTypeString(arg.__anon1.__anon1.dataTypeString, 0);
16529 if(basicType)
16530 {
16531 if(basicType->kind == 21)
16532 {
16533 FreeType(basicType);
16534 basicType = ReplaceThisClassType(_class);
16535 }
16536 FreeType(exp->expType);
16537 exp->expType = __extension__ ({
16538 struct Type * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
16539
16540 __ecereInstance1->refCount = 1, __ecereInstance1->kind = 13, __ecereInstance1->__anon1.type = basicType, __ecereInstance1;
16541 });
16542 if(!exp->destType)
16543 {
16544 exp->destType = exp->expType;
16545 exp->destType->refCount++;
16546 }
16547 {
16548 struct Expression * newExp = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Expression);
16549 struct __ecereNameSpace__ecere__sys__OldList * specs = MkList();
16550 struct Declarator * decl;
16551
16552 decl = SpecDeclFromString(arg.__anon1.__anon1.dataTypeString, specs, (((void *)0)));
16553 *newExp = *exp;
16554 if(exp->destType)
16555 exp->destType->refCount++;
16556 if(exp->expType)
16557 exp->expType->refCount++;
16558 exp->type = 11;
16559 exp->__anon1.cast.typeName = MkTypeName(specs, MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), decl));
16560 exp->__anon1.cast.exp = newExp;
16561 }
16562 }
16563 FinishTemplatesContext(context);
16564 }
16565 }
16566 else if(tClass && exp->expType->kind == 8 && exp->expType->__anon1._class && strchr(exp->expType->__anon1._class->string, '<'))
16567 {
16568 struct __ecereNameSpace__ecere__com__Class * expClass = exp->expType->__anon1._class->__anon1.registered;
16569
16570 if(expClass)
16571 {
16572 struct __ecereNameSpace__ecere__com__Class * cClass = (((void *)0));
16573 int p = 0;
16574 int paramCount = 0;
16575 int lastParam = -1;
16576 char templateString[1024];
16577 struct __ecereNameSpace__ecere__com__ClassTemplateParameter * param;
16578
16579 sprintf(templateString, "%s<", expClass->templateClass->fullName);
16580 while(cClass != expClass)
16581 {
16582 struct __ecereNameSpace__ecere__com__Class * sClass;
16583
16584 for(sClass = expClass; sClass && sClass->base != cClass; sClass = sClass->base)
16585 ;
16586 cClass = sClass;
16587 for(param = cClass->templateParams.first; param; param = param->next)
16588 {
16589 struct __ecereNameSpace__ecere__com__Class * cClassCur = (((void *)0));
16590 int cp = 0;
16591 struct __ecereNameSpace__ecere__com__ClassTemplateParameter * paramCur = (((void *)0));
16592 struct __ecereNameSpace__ecere__com__ClassTemplateArgument arg;
16593
16594 while(cClassCur != tClass && !paramCur)
16595 {
16596 struct __ecereNameSpace__ecere__com__Class * sClassCur;
16597
16598 for(sClassCur = tClass; sClassCur && sClassCur->base != cClassCur; sClassCur = sClassCur->base)
16599 ;
16600 cClassCur = sClassCur;
16601 for(paramCur = cClassCur->templateParams.first; paramCur; paramCur = paramCur->next)
16602 {
16603 if(!strcmp(paramCur->name, param->name))
16604 {
16605 break;
16606 }
16607 cp++;
16608 }
16609 }
16610 if(paramCur && paramCur->type == 0)
16611 arg = tClass->templateArgs[cp];
16612 else
16613 arg = expClass->templateArgs[p];
16614 {
16615 char argument[256];
16616
16617 argument[0] = '\0';
16618 switch(param->type)
16619 {
16620 case 2:
16621 {
16622 char expString[1024];
16623 struct __ecereNameSpace__ecere__sys__OldList * specs = MkList();
16624 struct Declarator * decl = SpecDeclFromString(param->__anon1.dataTypeString, specs, (((void *)0)));
16625 struct Expression * exp;
16626 char * string = PrintHexUInt64(arg.__anon1.expression.__anon1.ui64);
16627
16628 exp = MkExpCast(MkTypeName(specs, decl), MkExpConstant(string));
16629 (__ecereNameSpace__ecere__com__eSystem_Delete(string), string = 0);
16630 ProcessExpressionType(exp);
16631 ComputeExpression(exp);
16632 expString[0] = '\0';
16633 PrintExpression(exp, expString);
16634 strcat(argument, expString);
16635 FreeExpression(exp);
16636 break;
16637 }
16638 case 1:
16639 {
16640 strcat(argument, arg.__anon1.__anon2.__anon1.member->name);
16641 break;
16642 }
16643 case 0:
16644 {
16645 if(arg.__anon1.__anon1.dataTypeString && (!param->defaultArg.__anon1.__anon1.dataTypeString || strcmp(arg.__anon1.__anon1.dataTypeString, param->defaultArg.__anon1.__anon1.dataTypeString)))
16646 strcat(argument, arg.__anon1.__anon1.dataTypeString);
16647 break;
16648 }
16649 }
16650 if(argument[0])
16651 {
16652 if(paramCount)
16653 strcat(templateString, ", ");
16654 if(lastParam != p - 1)
16655 {
16656 strcat(templateString, param->name);
16657 strcat(templateString, " = ");
16658 }
16659 strcat(templateString, argument);
16660 paramCount++;
16661 lastParam = p;
16662 }
16663 }
16664 p++;
16665 }
16666 }
16667 {
16668 int len = strlen(templateString);
16669
16670 if(templateString[len - 1] == '>')
16671 templateString[len++] = ' ';
16672 templateString[len++] = '>';
16673 templateString[len++] = '\0';
16674 }
16675 FreeType(exp->expType);
16676 {
16677 struct Context * context = SetupTemplatesContext(tClass);
16678
16679 exp->expType = ProcessTypeString(templateString, 0);
16680 FinishTemplatesContext(context);
16681 }
16682 }
16683 }
16684 }
16685 }
16686 else
16687 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "undefined class %s\n", (((void *)0))), (id && (!id->_class || id->_class->__anon1.__anon1.name)) ? (id->classSym ? id->classSym->string : (type->__anon1._class ? type->__anon1._class->string : (((void *)0)))) : "(null)");
16688 }
16689 else if(type && (type->kind == 9 || type->kind == 10))
16690 {
16691 struct Type * memberType = exp->__anon1.member.member ? FindMember(type, exp->__anon1.member.member->string) : (((void *)0));
16692
16693 if(memberType)
16694 {
16695 exp->expType = memberType;
16696 if(memberType)
16697 memberType->refCount++;
16698 }
16699 }
16700 else
16701 {
16702 char expString[10240];
16703
16704 expString[0] = '\0';
16705 if(inCompiler)
16706 {
16707 PrintExpression(exp, expString);
16708 __ecereNameSpace__ecere__sys__ChangeCh(expString, '\n', ' ');
16709 }
16710 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "member operator on non-structure type expression %s\n", (((void *)0))), expString);
16711 }
16712 if(exp->expType && exp->expType->kind == 21 && (!exp->destType || exp->destType->kind != 21))
16713 {
16714 if(type && (type->kind == 8 || type->kind == 19 || type->kind == 3 || type->kind == 15))
16715 {
16716 struct Identifier * id = exp->__anon1.member.member;
16717 struct __ecereNameSpace__ecere__com__Class * _class = (id && (!id->_class || id->_class->__anon1.__anon1.name)) ? (id->classSym ? id->classSym->__anon1.registered : (type->__anon1._class ? type->__anon1._class->__anon1.registered : (((void *)0)))) : (((void *)0));
16718
16719 if(_class)
16720 {
16721 FreeType(exp->expType);
16722 exp->expType = ReplaceThisClassType(_class);
16723 }
16724 }
16725 }
16726 yylloc = oldyylloc;
16727 break;
16728 }
16729 case 9:
16730 {
16731 struct Type * destType = exp->destType;
16732
16733 if(exp->__anon1.member.member && exp->__anon1.member.member->_class && exp->__anon1.member.member->_class->__anon1.__anon1.name)
16734 {
16735 exp->__anon1.member.member->classSym = exp->__anon1.member.member->_class->__anon1.__anon1.symbol;
16736 }
16737 exp->__anon1.member.exp = MkExpBrackets(MkListOne(MkExpOp((((void *)0)), '*', exp->__anon1.member.exp)));
16738 exp->type = 8;
16739 if(destType)
16740 destType->count++;
16741 ProcessExpressionType(exp);
16742 if(destType)
16743 destType->count--;
16744 break;
16745 }
16746 case 15:
16747 {
16748 struct Symbol * classSym = exp->__anon1._class->__anon1.__anon1.symbol;
16749
16750 if(classSym && classSym->__anon1.registered)
16751 {
16752 if(classSym->__anon1.registered->type == 5)
16753 {
16754 char name[1024];
16755
16756 name[0] = '\0';
16757 DeclareStruct(classSym->string, 0);
16758 FreeSpecifier(exp->__anon1._class);
16759 exp->type = 10;
16760 FullClassNameCat(name, classSym->string, 0);
16761 exp->__anon1.typeName = MkTypeName(MkListOne(MkStructOrUnion(3, MkIdentifier(name), (((void *)0)))), (((void *)0)));
16762 }
16763 else
16764 {
16765 if(classSym->__anon1.registered->fixed)
16766 {
16767 FreeSpecifier(exp->__anon1._class);
16768 exp->__anon1.__anon1.constant = PrintUInt(classSym->__anon1.registered->templateClass ? classSym->__anon1.registered->templateClass->structSize : classSym->__anon1.registered->structSize);
16769 exp->type = 2;
16770 }
16771 else
16772 {
16773 char className[1024];
16774
16775 strcpy(className, "__ecereClass_");
16776 FullClassNameCat(className, classSym->string, 1);
16777 DeclareClass(classSym, className);
16778 FreeExpContents(exp);
16779 exp->type = 9;
16780 exp->__anon1.member.exp = MkExpIdentifier(MkIdentifier(className));
16781 exp->__anon1.member.member = MkIdentifier("structSize");
16782 }
16783 }
16784 }
16785 exp->expType = __extension__ ({
16786 struct Type * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
16787
16788 __ecereInstance1->refCount = 1, __ecereInstance1->kind = 23, __ecereInstance1;
16789 });
16790 break;
16791 }
16792 case 10:
16793 {
16794 struct Type * type = ProcessType(exp->__anon1.typeName->qualifiers, exp->__anon1.typeName->declarator);
16795
16796 exp->expType = __extension__ ({
16797 struct Type * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
16798
16799 __ecereInstance1->refCount = 1, __ecereInstance1->kind = 23, __ecereInstance1;
16800 });
16801 exp->isConstant = 1;
16802 DeclareType(type, 0, 0);
16803 FreeType(type);
16804 break;
16805 }
16806 case 11:
16807 {
16808 struct Type * type = ProcessType(exp->__anon1.cast.typeName->qualifiers, exp->__anon1.cast.typeName->declarator);
16809
16810 type->count = 1;
16811 FreeType(exp->__anon1.cast.exp->destType);
16812 exp->__anon1.cast.exp->destType = type;
16813 type->refCount++;
16814 type->casted = 1;
16815 ProcessExpressionType(exp->__anon1.cast.exp);
16816 type->casted = 0;
16817 type->count = 0;
16818 exp->expType = type;
16819 if(!exp->__anon1.cast.exp->needCast && !NeedCast(exp->__anon1.cast.exp->expType, type))
16820 {
16821 void * prev = exp->prev, * next = exp->next;
16822 struct Type * expType = exp->__anon1.cast.exp->destType;
16823 struct Expression * castExp = exp->__anon1.cast.exp;
16824 struct Type * destType = exp->destType;
16825
16826 if(expType)
16827 expType->refCount++;
16828 FreeType(exp->expType);
16829 FreeTypeName(exp->__anon1.cast.typeName);
16830 *exp = *castExp;
16831 FreeType(exp->expType);
16832 FreeType(exp->destType);
16833 exp->expType = expType;
16834 exp->destType = destType;
16835 ((castExp ? (__ecereClass_Expression->Destructor ? __ecereClass_Expression->Destructor((void *)castExp) : 0, __ecereNameSpace__ecere__com__eSystem_Delete(castExp)) : 0), castExp = 0);
16836 exp->prev = prev;
16837 exp->next = next;
16838 }
16839 else
16840 {
16841 exp->isConstant = exp->__anon1.cast.exp->isConstant;
16842 }
16843 break;
16844 }
16845 case 33:
16846 {
16847 struct Type * type = ProcessType(exp->__anon1.initializer.typeName->qualifiers, exp->__anon1.initializer.typeName->declarator);
16848
16849 exp->expType = type;
16850 break;
16851 }
16852 case 34:
16853 {
16854 struct Type * type = ProcessType(exp->__anon1.vaArg.typeName->qualifiers, exp->__anon1.vaArg.typeName->declarator);
16855
16856 ProcessExpressionType(exp->__anon1.vaArg.exp);
16857 exp->expType = type;
16858 break;
16859 }
16860 case 12:
16861 {
16862 struct Expression * e;
16863
16864 exp->isConstant = 1;
16865 FreeType(exp->__anon1.cond.cond->destType);
16866 exp->__anon1.cond.cond->destType = MkClassType("bool");
16867 exp->__anon1.cond.cond->destType->truth = 1;
16868 ProcessExpressionType(exp->__anon1.cond.cond);
16869 if(!exp->__anon1.cond.cond->isConstant)
16870 exp->isConstant = 0;
16871 for(e = (*exp->__anon1.cond.exp).first; e; e = e->next)
16872 {
16873 if(!e->next)
16874 {
16875 FreeType(e->destType);
16876 e->destType = exp->destType;
16877 if(e->destType)
16878 e->destType->refCount++;
16879 }
16880 ProcessExpressionType(e);
16881 if(!e->next)
16882 {
16883 exp->expType = e->expType;
16884 if(e->expType)
16885 e->expType->refCount++;
16886 }
16887 if(!e->isConstant)
16888 exp->isConstant = 0;
16889 }
16890 FreeType(exp->__anon1.cond.elseExp->destType);
16891 exp->__anon1.cond.elseExp->destType = exp->destType ? exp->destType : exp->expType;
16892 if(exp->__anon1.cond.elseExp->destType)
16893 exp->__anon1.cond.elseExp->destType->refCount++;
16894 ProcessExpressionType(exp->__anon1.cond.elseExp);
16895 if(!exp->__anon1.cond.elseExp->isConstant)
16896 exp->isConstant = 0;
16897 break;
16898 }
16899 case 23:
16900 {
16901 if(exp->__anon1.compound && exp->__anon1.compound->__anon1.compound.statements && (*exp->__anon1.compound->__anon1.compound.statements).last)
16902 {
16903 struct Statement * last = (*exp->__anon1.compound->__anon1.compound.statements).last;
16904
16905 if(last->type == 3 && last->__anon1.expressions && (*last->__anon1.expressions).last)
16906 {
16907 ((struct Expression *)(*last->__anon1.expressions).last)->destType = exp->destType;
16908 if(exp->destType)
16909 exp->destType->refCount++;
16910 }
16911 ProcessStatement(exp->__anon1.compound);
16912 exp->expType = (last->__anon1.expressions && (*last->__anon1.expressions).last) ? ((struct Expression *)(*last->__anon1.expressions).last)->expType : (((void *)0));
16913 if(exp->expType)
16914 exp->expType->refCount++;
16915 }
16916 break;
16917 }
16918 case 24:
16919 {
16920 struct Specifier * spec = (*exp->__anon1._classExp.specifiers).first;
16921
16922 if(spec && spec->type == 1)
16923 {
16924 exp->expType = MkClassType(spec->__anon1.__anon1.name);
16925 exp->expType->kind = 19;
16926 exp->byReference = 1;
16927 }
16928 else
16929 {
16930 exp->expType = MkClassType("ecere::com::Class");
16931 exp->byReference = 1;
16932 }
16933 break;
16934 }
16935 case 25:
16936 {
16937 struct __ecereNameSpace__ecere__com__Class * _class = thisClass ? thisClass : currentClass;
16938
16939 if(_class)
16940 {
16941 struct Identifier * id = exp->__anon1.classData.id;
16942 char structName[1024];
16943 struct Expression * classExp;
16944
16945 strcpy(structName, "__ecereClassData_");
16946 FullClassNameCat(structName, _class->fullName, 0);
16947 exp->type = 9;
16948 exp->__anon1.member.member = id;
16949 if(curCompound && FindSymbol("this", curContext, curCompound->__anon1.compound.context, 0, 0))
16950 classExp = MkExpMember(MkExpIdentifier(MkIdentifier("this")), MkIdentifier("_class"));
16951 else
16952 classExp = MkExpIdentifier(MkIdentifier("class"));
16953 exp->__anon1.member.exp = MkExpBrackets(MkListOne(MkExpCast(MkTypeName(MkListOne(MkStructOrUnion(3, MkIdentifier(structName), (((void *)0)))), MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), (((void *)0)))), MkExpBrackets(MkListOne(MkExpOp(MkExpCast(MkTypeName(MkListOne(MkSpecifier(CHAR)), MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), (((void *)0)))), MkExpMember(classExp, MkIdentifier("data"))), '+', MkExpMember(MkExpClass(MkListOne(MkSpecifierName(_class->fullName)), (((void *)0))), MkIdentifier("offsetClass"))))))));
16954 ProcessExpressionType(exp);
16955 return ;
16956 }
16957 break;
16958 }
16959 case 35:
16960 {
16961 struct Type * type = (((void *)0));
16962 const char * typeString = (((void *)0));
16963 char typeStringBuf[1024];
16964
16965 if(exp->destType && exp->destType->kind == 8 && exp->destType->__anon1._class && exp->destType->__anon1._class->__anon1.registered && exp->destType->__anon1._class->__anon1.registered != containerClass && __ecereNameSpace__ecere__com__eClass_IsDerived(exp->destType->__anon1._class->__anon1.registered, containerClass))
16966 {
16967 struct __ecereNameSpace__ecere__com__Class * templateClass = exp->destType->__anon1._class->__anon1.registered;
16968
16969 typeString = templateClass->templateArgs[2].__anon1.__anon1.dataTypeString;
16970 }
16971 else if(exp->__anon1.list)
16972 {
16973 struct Expression * e;
16974
16975 for(e = (*exp->__anon1.list).first; e; e = e->next)
16976 {
16977 ProcessExpressionType(e);
16978 if(e->expType)
16979 {
16980 if(!type)
16981 {
16982 type = e->expType;
16983 type->refCount++;
16984 }
16985 else
16986 {
16987 if(!MatchTypeExpression(e, type, (((void *)0)), 0, 1))
16988 {
16989 FreeType(type);
16990 type = e->expType;
16991 e->expType = (((void *)0));
16992 e = (*exp->__anon1.list).first;
16993 ProcessExpressionType(e);
16994 if(e->expType)
16995 {
16996 if(!MatchTypeExpression(e, type, (((void *)0)), 0, 1))
16997 {
16998 FreeType(e->expType);
16999 e->expType = (((void *)0));
17000 FreeType(type);
17001 type = (((void *)0));
17002 break;
17003 }
17004 }
17005 }
17006 }
17007 if(e->expType)
17008 {
17009 FreeType(e->expType);
17010 e->expType = (((void *)0));
17011 }
17012 }
17013 }
17014 if(type)
17015 {
17016 typeStringBuf[0] = '\0';
17017 PrintTypeNoConst(type, typeStringBuf, 0, 1);
17018 typeString = typeStringBuf;
17019 FreeType(type);
17020 type = (((void *)0));
17021 }
17022 }
17023 if(typeString)
17024 {
17025 char templateString[1024];
17026 struct __ecereNameSpace__ecere__sys__OldList * initializers = MkList();
17027 struct __ecereNameSpace__ecere__sys__OldList * structInitializers = MkList();
17028 struct __ecereNameSpace__ecere__sys__OldList * specs = MkList();
17029 struct Expression * expExt;
17030 struct Declarator * decl = SpecDeclFromString(typeString, specs, (((void *)0)));
17031
17032 sprintf(templateString, "Container<%s>", typeString);
17033 if(exp->__anon1.list)
17034 {
17035 struct Expression * e;
17036
17037 type = ProcessTypeString(typeString, 0);
17038 while((e = (*exp->__anon1.list).first))
17039 {
17040 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Remove((&*exp->__anon1.list), e);
17041 e->destType = type;
17042 type->refCount++;
17043 ProcessExpressionType(e);
17044 ListAdd(initializers, MkInitializerAssignment(e));
17045 }
17046 FreeType(type);
17047 (__ecereNameSpace__ecere__com__eSystem_Delete(exp->__anon1.list), exp->__anon1.list = 0);
17048 }
17049 DeclareStruct("ecere::com::BuiltInContainer", 0);
17050 ListAdd(structInitializers, MkInitializerAssignment(MkExpMember(MkExpClass(MkListOne(MkSpecifierName("BuiltInContainer")), (((void *)0))), MkIdentifier("_vTbl"))));
17051 ProcessExpressionType(((struct Initializer *)(*structInitializers).last)->__anon1.exp);
17052 ListAdd(structInitializers, MkInitializerAssignment(MkExpClass(MkListOne(MkSpecifierName("BuiltInContainer")), (((void *)0)))));
17053 ProcessExpressionType(((struct Initializer *)(*structInitializers).last)->__anon1.exp);
17054 ListAdd(structInitializers, MkInitializerAssignment(MkExpConstant("0")));
17055 ProcessExpressionType(((struct Initializer *)(*structInitializers).last)->__anon1.exp);
17056 ListAdd(structInitializers, MkInitializerAssignment(MkExpExtensionInitializer(MkTypeName(specs, MkDeclaratorArray(decl, (((void *)0)))), MkInitializerList(initializers))));
17057 ProcessExpressionType(((struct Initializer *)(*structInitializers).last)->__anon1.exp);
17058 ListAdd(structInitializers, MkInitializerAssignment(__extension__ ({
17059 struct Expression * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Expression);
17060
17061 __ecereInstance1->type = 2, __ecereInstance1->__anon1.__anon1.constant = __ecereNameSpace__ecere__com__PrintString(__ecereClass_int, (void *)&(*initializers).count, (void *)0), __ecereInstance1;
17062 })));
17063 ProcessExpressionType(((struct Initializer *)(*structInitializers).last)->__anon1.exp);
17064 ListAdd(structInitializers, MkInitializerAssignment(MkExpClass(CopyList(specs, (void *)(CopySpecifier)), CopyDeclarator(decl))));
17065 ProcessExpressionType(((struct Initializer *)(*structInitializers).last)->__anon1.exp);
17066 exp->expType = ProcessTypeString(templateString, 0);
17067 exp->type = 5;
17068 exp->__anon1.list = MkListOne(MkExpCast(MkTypeName(MkListOne(MkSpecifierName(templateString)), (((void *)0))), MkExpOp((((void *)0)), '&', expExt = MkExpExtensionInitializer(MkTypeName(MkListOne(MkSpecifierName("BuiltInContainer")), (((void *)0))), MkInitializerList(structInitializers)))));
17069 ProcessExpressionType(expExt);
17070 }
17071 else
17072 {
17073 exp->expType = ProcessTypeString("Container", 0);
17074 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "Couldn't determine type of array elements\n", (((void *)0))));
17075 }
17076 break;
17077 }
17078 }
17079 if(exp->expType && exp->expType->kind == 21 && thisClass && (!exp->destType || exp->destType->kind != 21))
17080 {
17081 FreeType(exp->expType);
17082 exp->expType = ReplaceThisClassType(thisClass);
17083 }
17084 if(exp->expType && (exp->expType->kind == 9 || exp->expType->kind == 10 || exp->expType->kind == 15) && !exp->expType->__anon1.__anon1.members.first && exp->expType->__anon1.__anon1.enumName)
17085 {
17086 struct Symbol * symbol = FindSymbol(exp->expType->__anon1.__anon1.enumName, curContext, globalContext, 1, 0);
17087
17088 if(symbol)
17089 {
17090 if(exp->expType->kind != 15)
17091 {
17092 struct Type * member;
17093 char * enumName = __ecereNameSpace__ecere__sys__CopyString(exp->expType->__anon1.__anon1.enumName);
17094
17095 FreeType(exp->expType);
17096 exp->expType = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
17097 exp->expType->kind = symbol->type->kind;
17098 exp->expType->refCount++;
17099 exp->expType->__anon1.__anon1.enumName = enumName;
17100 exp->expType->__anon1.__anon1.members = symbol->type->__anon1.__anon1.members;
17101 for(member = symbol->type->__anon1.__anon1.members.first; member; member = member->next)
17102 member->refCount++;
17103 }
17104 else
17105 {
17106 struct __ecereNameSpace__ecere__sys__NamedLink64 * member;
17107
17108 for(member = symbol->type->__anon1.__anon1.members.first; member; member = member->next)
17109 {
17110 struct __ecereNameSpace__ecere__sys__NamedLink64 * value = (value = __ecereNameSpace__ecere__com__eSystem_New0(structSize_NamedLink64), value->name = __ecereNameSpace__ecere__sys__CopyString(member->name), value);
17111
17112 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(&exp->expType->__anon1.__anon1.members, value);
17113 }
17114 }
17115 }
17116 }
17117 yylloc = exp->loc;
17118 if(exp->destType && (exp->destType->kind == 18))
17119 ;
17120 else if(exp->destType && !exp->destType->keepCast)
17121 {
17122 if(!exp->needTemplateCast && exp->expType && (exp->expType->kind == 20 || exp->expType->passAsTemplate))
17123 exp->needTemplateCast = 1;
17124 if(exp->destType->kind == 0)
17125 ;
17126 else if(!CheckExpressionType(exp, exp->destType, 0, !exp->destType->casted))
17127 {
17128 if(!exp->destType->count || unresolved)
17129 {
17130 if(!exp->expType)
17131 {
17132 yylloc = exp->loc;
17133 if(exp->destType->kind != 14)
17134 {
17135 char type2[1024];
17136
17137 type2[0] = '\0';
17138 if(inCompiler)
17139 {
17140 char expString[10240];
17141
17142 expString[0] = '\0';
17143 PrintType(exp->destType, type2, 0, 1);
17144 if(inCompiler)
17145 {
17146 PrintExpression(exp, expString);
17147 __ecereNameSpace__ecere__sys__ChangeCh(expString, '\n', ' ');
17148 }
17149 if(unresolved)
17150 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "unresolved identifier %s; expected %s\n", (((void *)0))), expString, type2);
17151 else if(exp->type != 16)
17152 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "couldn't determine type of %s; expected %s\n", (((void *)0))), expString, type2);
17153 }
17154 }
17155 else
17156 {
17157 char expString[10240];
17158
17159 expString[0] = '\0';
17160 if(inCompiler)
17161 {
17162 PrintExpression(exp, expString);
17163 __ecereNameSpace__ecere__sys__ChangeCh(expString, '\n', ' ');
17164 }
17165 if(unresolved)
17166 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "unresolved identifier %s\n", (((void *)0))), expString);
17167 else if(exp->type != 16)
17168 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "couldn't determine type of %s\n", (((void *)0))), expString);
17169 }
17170 }
17171 else
17172 {
17173 char type1[1024];
17174 char type2[1024];
17175
17176 type1[0] = '\0';
17177 type2[0] = '\0';
17178 if(inCompiler)
17179 {
17180 PrintType(exp->expType, type1, 0, 1);
17181 PrintType(exp->destType, type2, 0, 1);
17182 }
17183 if(exp->destType->truth && exp->destType->__anon1._class && exp->destType->__anon1._class->__anon1.registered && !strcmp(exp->destType->__anon1._class->__anon1.registered->name, "bool") && exp->expType->kind != 0 && exp->expType->kind != 9 && exp->expType->kind != 10 && (exp->expType->kind != 8 || exp->expType->classObjectType || (exp->expType->__anon1._class && exp->expType->__anon1._class->__anon1.registered && exp->expType->__anon1._class->__anon1.registered->type != 1)))
17184 ;
17185 else
17186 {
17187 char expString[10240];
17188
17189 expString[0] = '\0';
17190 if(inCompiler)
17191 {
17192 PrintExpression(exp, expString);
17193 __ecereNameSpace__ecere__sys__ChangeCh(expString, '\n', ' ');
17194 }
17195 if(!sourceFile || (!strstr(sourceFile, "src\\lexer.ec") && !strstr(sourceFile, "src/lexer.ec") && !strstr(sourceFile, "src\\grammar.ec") && !strstr(sourceFile, "src/grammar.ec") && !strstr(sourceFile, "src\\type.ec") && !strstr(sourceFile, "src/type.ec") && !strstr(sourceFile, "src\\expression.ec") && !strstr(sourceFile, "src/expression.ec")))
17196 Compiler_Warning(__ecereNameSpace__ecere__GetTranslatedString("ec", "incompatible expression %s (%s); expected %s\n", (((void *)0))), expString, type1, type2);
17197 FreeType(exp->expType);
17198 exp->destType->refCount++;
17199 exp->expType = exp->destType;
17200 }
17201 }
17202 }
17203 }
17204 else if(exp->destType && exp->destType->kind == 13 && exp->destType->__anon1.type && exp->destType->__anon1.type->kind == 11 && exp->expType && (exp->expType->kind == 11 || exp->expType->kind == 16))
17205 {
17206 struct Expression * nbExp = GetNonBracketsExp(exp);
17207
17208 if(nbExp->type != 11 || !IsVoidPtrCast(nbExp->__anon1.cast.typeName))
17209 {
17210 struct Expression * e = MoveExpContents(exp);
17211
17212 exp->__anon1.cast.exp = MkExpBrackets(MkListOne(e));
17213 exp->type = 11;
17214 exp->__anon1.cast.exp->destType = exp->destType;
17215 if(exp->destType)
17216 exp->destType->refCount++;
17217 exp->__anon1.cast.typeName = MkTypeName(MkListOne(MkSpecifier(VOID)), MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), (((void *)0))));
17218 }
17219 }
17220 }
17221 else if(unresolved)
17222 {
17223 if(exp->__anon1.__anon1.identifier->_class && exp->__anon1.__anon1.identifier->_class->__anon1.__anon1.name)
17224 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "unresolved identifier %s::%s\n", (((void *)0))), exp->__anon1.__anon1.identifier->_class->__anon1.__anon1.name, exp->__anon1.__anon1.identifier->string);
17225 else if(exp->__anon1.__anon1.identifier->string && exp->__anon1.__anon1.identifier->string[0])
17226 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "unresolved identifier %s\n", (((void *)0))), exp->__anon1.__anon1.identifier->string);
17227 }
17228 else if(!exp->expType && exp->type != 16)
17229 {
17230 char expString[10240];
17231
17232 expString[0] = '\0';
17233 if(inCompiler)
17234 {
17235 PrintExpression(exp, expString);
17236 __ecereNameSpace__ecere__sys__ChangeCh(expString, '\n', ' ');
17237 }
17238 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "couldn't determine type of %s\n", (((void *)0))), expString);
17239 }
17240 if(inCompiler)
17241 ApplyAnyObjectLogic(exp);
17242 if(!notByReference && exp->expType && exp->expType->kind == 8 && exp->expType->__anon1._class && exp->expType->__anon1._class->__anon1.registered && exp->expType->__anon1._class->__anon1.registered->type == 5 && (!exp->destType || (exp->destType->kind != 3 && exp->destType->kind != 4 && exp->destType->kind != 22 && exp->destType->kind != 23 && exp->destType->kind != 5 && exp->destType->kind != 2 && exp->destType->kind != 1 && exp->destType->kind != 24)))
17243 {
17244 exp->byReference = 1;
17245 }
17246 yylloc = oldyylloc;
17247 }
17248
17249 static void FindNextDataMember(struct __ecereNameSpace__ecere__com__Class * _class, struct __ecereNameSpace__ecere__com__Class ** curClass, struct __ecereNameSpace__ecere__com__DataMember ** curMember, struct __ecereNameSpace__ecere__com__DataMember ** subMemberStack, int * subMemberStackPos)
17250 {
17251 if(*curMember)
17252 {
17253 *curMember = (*curMember)->next;
17254 if(subMemberStackPos && *subMemberStackPos > 0 && subMemberStack[*subMemberStackPos - 1]->type == 1)
17255 {
17256 *curMember = subMemberStack[--(*subMemberStackPos)];
17257 *curMember = (*curMember)->next;
17258 }
17259 while((*curMember) && (*curMember)->isProperty)
17260 *curMember = (*curMember)->next;
17261 if(subMemberStackPos)
17262 {
17263 while((*curMember) && !(*curMember)->isProperty && !(*curMember)->name && ((*curMember)->type == 2 || (*curMember)->type == 1))
17264 {
17265 subMemberStack[(*subMemberStackPos)++] = *curMember;
17266 *curMember = (*curMember)->members.first;
17267 while(*curMember && (*curMember)->isProperty)
17268 *curMember = (*curMember)->next;
17269 }
17270 }
17271 }
17272 while(!*curMember)
17273 {
17274 if(!*curMember)
17275 {
17276 if(subMemberStackPos && *subMemberStackPos)
17277 {
17278 *curMember = subMemberStack[--(*subMemberStackPos)];
17279 *curMember = (*curMember)->next;
17280 }
17281 else
17282 {
17283 struct __ecereNameSpace__ecere__com__Class * lastCurClass = *curClass;
17284
17285 if(*curClass == _class)
17286 break;
17287 for(*curClass = _class; (*curClass)->base != lastCurClass && (*curClass)->base->type != 1000; *curClass = (*curClass)->base)
17288 ;
17289 *curMember = (*curClass)->membersAndProperties.first;
17290 }
17291 while((*curMember) && (*curMember)->isProperty)
17292 *curMember = (*curMember)->next;
17293 if(subMemberStackPos)
17294 {
17295 while((*curMember) && !(*curMember)->isProperty && !(*curMember)->name && ((*curMember)->type == 2 || (*curMember)->type == 1))
17296 {
17297 subMemberStack[(*subMemberStackPos)++] = *curMember;
17298 *curMember = (*curMember)->members.first;
17299 while(*curMember && (*curMember)->isProperty)
17300 *curMember = (*curMember)->next;
17301 }
17302 }
17303 }
17304 }
17305 }
17306
17307 static void ProcessInitializer(struct Initializer * init, struct Type * type)
17308 {
17309 switch(init->type)
17310 {
17311 case 0:
17312 if(!init->__anon1.exp || init->__anon1.exp->type != 1 || !init->__anon1.exp->__anon1.instance || init->__anon1.exp->__anon1.instance->_class || !type || type->kind == 8)
17313 {
17314 if(init->__anon1.exp && !init->__anon1.exp->destType)
17315 {
17316 FreeType(init->__anon1.exp->destType);
17317 init->__anon1.exp->destType = type;
17318 if(type)
17319 type->refCount++;
17320 }
17321 if(init->__anon1.exp)
17322 {
17323 ProcessExpressionType(init->__anon1.exp);
17324 init->isConstant = init->__anon1.exp->isConstant;
17325 }
17326 break;
17327 }
17328 else
17329 {
17330 struct Expression * exp = init->__anon1.exp;
17331 struct Instantiation * inst = exp->__anon1.instance;
17332 struct MembersInit * members;
17333
17334 init->type = 1;
17335 init->__anon1.list = MkList();
17336 if(inst->members)
17337 {
17338 for(members = (*inst->members).first; members; members = members->next)
17339 {
17340 if(members->type == 0)
17341 {
17342 struct MemberInit * member;
17343
17344 for(member = (*members->__anon1.dataMembers).first; member; member = member->next)
17345 {
17346 ListAdd(init->__anon1.list, member->initializer);
17347 member->initializer = (((void *)0));
17348 }
17349 }
17350 }
17351 }
17352 FreeExpression(exp);
17353 }
17354 case 1:
17355 {
17356 struct Initializer * i;
17357 struct Type * initializerType = (((void *)0));
17358 struct __ecereNameSpace__ecere__com__Class * curClass = (((void *)0));
17359 struct __ecereNameSpace__ecere__com__DataMember * curMember = (((void *)0));
17360 struct __ecereNameSpace__ecere__com__DataMember * subMemberStack[256];
17361 int subMemberStackPos = 0;
17362
17363 if(type && type->kind == 12)
17364 initializerType = Dereference(type);
17365 else if(type && (type->kind == 9 || type->kind == 10))
17366 initializerType = type->__anon1.__anon1.members.first;
17367 for(i = (*init->__anon1.list).first; i; i = i->next)
17368 {
17369 if(type && type->kind == 8 && type->__anon1._class && type->__anon1._class->__anon1.registered)
17370 {
17371 FindNextDataMember(type->__anon1._class->__anon1.registered, &curClass, &curMember, subMemberStack, &subMemberStackPos);
17372 if(curMember)
17373 {
17374 if(!curMember->dataType)
17375 curMember->dataType = ProcessTypeString(curMember->dataTypeString, 0);
17376 initializerType = curMember->dataType;
17377 }
17378 }
17379 ProcessInitializer(i, initializerType);
17380 if(initializerType && type && (type->kind == 9 || type->kind == 10))
17381 initializerType = initializerType->next;
17382 if(!i->isConstant)
17383 init->isConstant = 0;
17384 }
17385 if(type && type->kind == 12)
17386 FreeType(initializerType);
17387 if(type && type->kind != 12 && type->kind != 9 && type->kind != 10 && (type->kind != 8 || !type->__anon1._class->__anon1.registered || type->__anon1._class->__anon1.registered->type != 1))
17388 {
17389 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "Assigning list initializer to non list\n", (((void *)0))));
17390 }
17391 break;
17392 }
17393 }
17394 }
17395
17396 extern struct Symbol * FindType(struct Context * ctx, const char *  name);
17397
17398 static void ProcessClass(struct __ecereNameSpace__ecere__sys__OldList * definitions, struct Symbol * symbol);
17399
17400 static void ProcessSpecifier(struct Specifier * spec, unsigned int declareStruct)
17401 {
17402 switch(spec->type)
17403 {
17404 case 0:
17405 {
17406 if(spec->__anon1.specifier == THISCLASS)
17407 {
17408 if(thisClass)
17409 {
17410 spec->type = 1;
17411 spec->__anon1.__anon1.name = ReplaceThisClass(thisClass);
17412 spec->__anon1.__anon1.symbol = FindClass(spec->__anon1.__anon1.name);
17413 ProcessSpecifier(spec, declareStruct);
17414 }
17415 }
17416 break;
17417 }
17418 case 1:
17419 {
17420 struct Symbol * symbol = FindType(curContext, spec->__anon1.__anon1.name);
17421
17422 if(symbol)
17423 DeclareType(symbol->type, 1, 1);
17424 else if((symbol = spec->__anon1.__anon1.symbol) && symbol->__anon1.registered && symbol->__anon1.registered->type == 1 && declareStruct)
17425 DeclareStruct(spec->__anon1.__anon1.name, 0);
17426 break;
17427 }
17428 case 2:
17429 {
17430 struct Enumerator * e;
17431
17432 if(spec->__anon1.__anon2.list)
17433 {
17434 for(e = (*spec->__anon1.__anon2.list).first; e; e = e->next)
17435 {
17436 if(e->exp)
17437 ProcessExpressionType(e->exp);
17438 }
17439 }
17440 break;
17441 }
17442 case 3:
17443 case 4:
17444 {
17445 if(spec->__anon1.__anon2.definitions)
17446 {
17447 struct Symbol * symbol = spec->__anon1.__anon2.id ? FindClass(spec->__anon1.__anon2.id->string) : (((void *)0));
17448
17449 ProcessClass(spec->__anon1.__anon2.definitions, symbol);
17450 }
17451 break;
17452 }
17453 }
17454 }
17455
17456 static void ProcessDeclarator(struct Declarator * decl)
17457 {
17458 switch(decl->type)
17459 {
17460 case 1:
17461 if(decl->__anon1.identifier->classSym)
17462 {
17463 FreeSpecifier(decl->__anon1.identifier->_class);
17464 decl->__anon1.identifier->_class = (((void *)0));
17465 }
17466 break;
17467 case 3:
17468 if(decl->__anon1.array.exp)
17469 ProcessExpressionType(decl->__anon1.array.exp);
17470 case 0:
17471 case 2:
17472 case 4:
17473 case 5:
17474 case 6:
17475 case 7:
17476 if(decl->declarator)
17477 ProcessDeclarator(decl->declarator);
17478 if(decl->type == 4)
17479 {
17480 struct Identifier * id = GetDeclId(decl);
17481
17482 if(id && id->_class)
17483 {
17484 struct TypeName * param = (param = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_TypeName), param->qualifiers = MkListOne(id->_class), param->declarator = (((void *)0)), param);
17485
17486 if(!decl->__anon1.function.parameters)
17487 decl->__anon1.function.parameters = MkList();
17488 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*decl->__anon1.function.parameters), (((void *)0)), param);
17489 id->_class = (((void *)0));
17490 }
17491 if(decl->__anon1.function.parameters)
17492 {
17493 struct TypeName * param;
17494
17495 for(param = (*decl->__anon1.function.parameters).first; param; param = param->next)
17496 {
17497 if(param->qualifiers && (*param->qualifiers).first)
17498 {
17499 struct Specifier * spec = (*param->qualifiers).first;
17500
17501 if(spec && spec->__anon1.specifier == TYPED_OBJECT)
17502 {
17503 struct Declarator * d = param->declarator;
17504 struct TypeName * newParam = (newParam = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_TypeName), newParam->qualifiers = MkListOne(MkSpecifier(VOID)), newParam->declarator = MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), d), newParam);
17505
17506 if(d->type != 5)
17507 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*newParam->qualifiers), (((void *)0)), MkSpecifier(CONST));
17508 FreeList(param->qualifiers, (void *)(FreeSpecifier));
17509 param->qualifiers = MkListOne(MkStructOrUnion(3, MkIdentifier("__ecereNameSpace__ecere__com__Class"), (((void *)0))));
17510 param->declarator = MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), MkDeclaratorIdentifier(MkIdentifier("class")));
17511 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*decl->__anon1.function.parameters), param, newParam);
17512 param = newParam;
17513 }
17514 else if(spec && spec->__anon1.specifier == ANY_OBJECT)
17515 {
17516 struct Declarator * d = param->declarator;
17517
17518 FreeList(param->qualifiers, (void *)(FreeSpecifier));
17519 param->qualifiers = MkListOne(MkSpecifier(VOID));
17520 if(d->type != 5)
17521 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*param->qualifiers), (((void *)0)), MkSpecifier(CONST));
17522 param->declarator = MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), d);
17523 }
17524 else if(spec->__anon1.specifier == THISCLASS)
17525 {
17526 if(thisClass)
17527 {
17528 spec->type = 1;
17529 spec->__anon1.__anon1.name = ReplaceThisClass(thisClass);
17530 spec->__anon1.__anon1.symbol = FindClass(spec->__anon1.__anon1.name);
17531 ProcessSpecifier(spec, 0);
17532 }
17533 }
17534 }
17535 if(param->declarator)
17536 ProcessDeclarator(param->declarator);
17537 }
17538 }
17539 }
17540 break;
17541 }
17542 }
17543
17544 extern struct Identifier * CopyIdentifier(struct Identifier * id);
17545
17546 extern void FreeInitDeclarator(struct InitDeclarator * decl);
17547
17548 static void ProcessDeclaration(struct Declaration * decl)
17549 {
17550 yylloc = decl->loc;
17551 switch(decl->type)
17552 {
17553 case 1:
17554 {
17555 unsigned int declareStruct = 0;
17556
17557 if(decl->__anon1.__anon1.declarators)
17558 {
17559 struct InitDeclarator * d;
17560
17561 for(d = (*decl->__anon1.__anon1.declarators).first; d; d = d->next)
17562 {
17563 struct Type * type, * subType;
17564
17565 ProcessDeclarator(d->declarator);
17566 type = ProcessType(decl->__anon1.__anon1.specifiers, d->declarator);
17567 if(d->initializer)
17568 {
17569 ProcessInitializer(d->initializer, type);
17570 if((*decl->__anon1.__anon1.declarators).count == 1 && d->initializer->type == 0 && d->initializer->__anon1.exp->type == 1)
17571 {
17572 if(type->kind == 8 && type->__anon1._class == d->initializer->__anon1.exp->expType->__anon1._class)
17573 {
17574 struct Instantiation * inst = d->initializer->__anon1.exp->__anon1.instance;
17575
17576 inst->exp = MkExpIdentifier(CopyIdentifier(GetDeclId(d->declarator)));
17577 d->initializer->__anon1.exp->__anon1.instance = (((void *)0));
17578 if(decl->__anon1.__anon1.specifiers)
17579 FreeList(decl->__anon1.__anon1.specifiers, (void *)(FreeSpecifier));
17580 FreeList(decl->__anon1.__anon1.declarators, (void *)(FreeInitDeclarator));
17581 d = (((void *)0));
17582 decl->type = 2;
17583 decl->__anon1.inst = inst;
17584 }
17585 }
17586 }
17587 for(subType = type; subType; )
17588 {
17589 if(subType->kind == 8)
17590 {
17591 declareStruct = 1;
17592 break;
17593 }
17594 else if(subType->kind == 13)
17595 break;
17596 else if(subType->kind == 12)
17597 subType = subType->__anon1.__anon4.arrayType;
17598 else
17599 break;
17600 }
17601 FreeType(type);
17602 if(!d)
17603 break;
17604 }
17605 }
17606 if(decl->__anon1.__anon1.specifiers)
17607 {
17608 struct Specifier * s;
17609
17610 for(s = (*decl->__anon1.__anon1.specifiers).first; s; s = s->next)
17611 {
17612 ProcessSpecifier(s, declareStruct);
17613 }
17614 }
17615 break;
17616 }
17617 case 2:
17618 {
17619 ProcessInstantiationType(decl->__anon1.inst);
17620 break;
17621 }
17622 case 0:
17623 {
17624 struct Specifier * spec;
17625 struct Declarator * d;
17626 unsigned int declareStruct = 0;
17627
17628 if(decl->__anon1.__anon1.declarators)
17629 {
17630 for(d = (*decl->__anon1.__anon1.declarators).first; d; d = d->next)
17631 {
17632 struct Type * type = ProcessType(decl->__anon1.__anon1.specifiers, d->declarator);
17633 struct Type * subType;
17634
17635 ProcessDeclarator(d);
17636 for(subType = type; subType; )
17637 {
17638 if(subType->kind == 8)
17639 {
17640 declareStruct = 1;
17641 break;
17642 }
17643 else if(subType->kind == 13)
17644 break;
17645 else if(subType->kind == 12)
17646 subType = subType->__anon1.__anon4.arrayType;
17647 else
17648 break;
17649 }
17650 FreeType(type);
17651 }
17652 }
17653 if(decl->__anon1.__anon1.specifiers)
17654 {
17655 for(spec = (*decl->__anon1.__anon1.specifiers).first; spec; spec = spec->next)
17656 ProcessSpecifier(spec, declareStruct);
17657 }
17658 break;
17659 }
17660 }
17661 }
17662
17663 static struct FunctionDefinition * curFunction;
17664
17665 static void CreateFireWatcher(struct __ecereNameSpace__ecere__com__Property * prop, struct Expression * object, struct Statement * stmt)
17666 {
17667 char propName[1024], propNameM[1024];
17668 char getName[1024], setName[1024];
17669 struct __ecereNameSpace__ecere__sys__OldList * args;
17670
17671 DeclareProperty(prop, setName, getName);
17672 strcpy(propName, "__ecereProp_");
17673 FullClassNameCat(propName, prop->_class->fullName, 0);
17674 strcat(propName, "_");
17675 FullClassNameCat(propName, prop->name, 1);
17676 strcpy(propNameM, "__ecerePropM_");
17677 FullClassNameCat(propNameM, prop->_class->fullName, 0);
17678 strcat(propNameM, "_");
17679 FullClassNameCat(propNameM, prop->name, 1);
17680 if(prop->isWatchable)
17681 {
17682 args = MkList();
17683 ListAdd(args, object ? CopyExpression(object) : MkExpIdentifier(MkIdentifier("this")));
17684 ListAdd(args, MkExpIdentifier(MkIdentifier(propName)));
17685 ListAdd(stmt->__anon1.expressions, MkExpCall(MkExpIdentifier(MkIdentifier("ecere::com::eInstance_FireWatchers")), args));
17686 args = MkList();
17687 ListAdd(args, object ? CopyExpression(object) : MkExpIdentifier(MkIdentifier("this")));
17688 ListAdd(args, MkExpIdentifier(MkIdentifier(propNameM)));
17689 ListAdd(stmt->__anon1.expressions, MkExpCall(MkExpIdentifier(MkIdentifier("ecere::com::eInstance_FireWatchers")), args));
17690 }
17691 {
17692 args = MkList();
17693 ListAdd(args, object ? CopyExpression(object) : MkExpIdentifier(MkIdentifier("this")));
17694 ListAdd(args, MkExpIdentifier(MkIdentifier(propName)));
17695 ListAdd(stmt->__anon1.expressions, MkExpCall(MkExpIdentifier(MkIdentifier("ecere::com::eInstance_FireSelfWatchers")), args));
17696 args = MkList();
17697 ListAdd(args, object ? CopyExpression(object) : MkExpIdentifier(MkIdentifier("this")));
17698 ListAdd(args, MkExpIdentifier(MkIdentifier(propNameM)));
17699 ListAdd(stmt->__anon1.expressions, MkExpCall(MkExpIdentifier(MkIdentifier("ecere::com::eInstance_FireSelfWatchers")), args));
17700 }
17701 if(curFunction->propSet && !strcmp(curFunction->propSet->string, prop->name) && (!object || (object->type == 0 && !strcmp(object->__anon1.__anon1.identifier->string, "this"))))
17702 curFunction->propSet->fireWatchersDone = 1;
17703 }
17704
17705 extern struct Declaration * MkDeclarationInst(struct Instantiation * inst);
17706
17707 extern struct Instantiation * MkInstantiationNamed(struct __ecereNameSpace__ecere__sys__OldList * specs, struct Expression * exp, struct __ecereNameSpace__ecere__sys__OldList * members);
17708
17709 extern struct Statement * MkIfStmt(struct __ecereNameSpace__ecere__sys__OldList * exp, struct Statement * statement, struct Statement * elseStmt);
17710
17711 extern struct Statement * MkForStmt(struct Statement * init, struct Statement * check, struct __ecereNameSpace__ecere__sys__OldList * inc, struct Statement * statement);
17712
17713 extern struct Statement * MkWhileStmt(struct __ecereNameSpace__ecere__sys__OldList * exp, struct Statement * statement);
17714
17715 extern struct ClassFunction * MkClassFunction(struct __ecereNameSpace__ecere__sys__OldList * specifiers, struct Specifier * _class, struct Declarator * decl, struct __ecereNameSpace__ecere__sys__OldList * declList);
17716
17717 extern void ProcessClassFunctionBody(struct ClassFunction * func, struct Statement * body);
17718
17719 extern void FreePropertyWatch(struct PropertyWatch * watcher);
17720
17721 static void ProcessStatement(struct Statement * stmt)
17722 {
17723 yylloc = stmt->loc;
17724 switch(stmt->type)
17725 {
17726 case 0:
17727 ProcessStatement(stmt->__anon1.labeled.stmt);
17728 break;
17729 case 1:
17730 if(stmt->__anon1.caseStmt.exp)
17731 {
17732 FreeType(stmt->__anon1.caseStmt.exp->destType);
17733 stmt->__anon1.caseStmt.exp->destType = curSwitchType;
17734 if(curSwitchType)
17735 curSwitchType->refCount++;
17736 ProcessExpressionType(stmt->__anon1.caseStmt.exp);
17737 ComputeExpression(stmt->__anon1.caseStmt.exp);
17738 }
17739 if(stmt->__anon1.caseStmt.stmt)
17740 ProcessStatement(stmt->__anon1.caseStmt.stmt);
17741 break;
17742 case 2:
17743 {
17744 if(stmt->__anon1.compound.context)
17745 {
17746 struct Declaration * decl;
17747 struct Statement * s;
17748 struct Statement * prevCompound = curCompound;
17749 struct Context * prevContext = curContext;
17750
17751 if(!stmt->__anon1.compound.isSwitch)
17752 curCompound = stmt;
17753 curContext = stmt->__anon1.compound.context;
17754 if(stmt->__anon1.compound.declarations)
17755 {
17756 for(decl = (*stmt->__anon1.compound.declarations).first; decl; decl = decl->next)
17757 ProcessDeclaration(decl);
17758 }
17759 if(stmt->__anon1.compound.statements)
17760 {
17761 for(s = (*stmt->__anon1.compound.statements).first; s; s = s->next)
17762 ProcessStatement(s);
17763 }
17764 curContext = prevContext;
17765 curCompound = prevCompound;
17766 }
17767 break;
17768 }
17769 case 3:
17770 {
17771 struct Expression * exp;
17772
17773 if(stmt->__anon1.expressions)
17774 {
17775 for(exp = (*stmt->__anon1.expressions).first; exp; exp = exp->next)
17776 ProcessExpressionType(exp);
17777 }
17778 break;
17779 }
17780 case 4:
17781 {
17782 struct Expression * exp;
17783
17784 FreeType(((struct Expression *)(*stmt->__anon1.ifStmt.exp).last)->destType);
17785 ((struct Expression *)(*stmt->__anon1.ifStmt.exp).last)->destType = MkClassType("bool");
17786 ((struct Expression *)(*stmt->__anon1.ifStmt.exp).last)->destType->truth = 1;
17787 for(exp = (*stmt->__anon1.ifStmt.exp).first; exp; exp = exp->next)
17788 {
17789 ProcessExpressionType(exp);
17790 }
17791 if(stmt->__anon1.ifStmt.stmt)
17792 ProcessStatement(stmt->__anon1.ifStmt.stmt);
17793 if(stmt->__anon1.ifStmt.elseStmt)
17794 ProcessStatement(stmt->__anon1.ifStmt.elseStmt);
17795 break;
17796 }
17797 case 5:
17798 {
17799 struct Type * oldSwitchType = curSwitchType;
17800
17801 if(stmt->__anon1.switchStmt.exp)
17802 {
17803 struct Expression * exp;
17804
17805 for(exp = (*stmt->__anon1.switchStmt.exp).first; exp; exp = exp->next)
17806 {
17807 if(!exp->next)
17808 {
17809 ProcessExpressionType(exp);
17810 }
17811 if(!exp->next)
17812 curSwitchType = exp->expType;
17813 }
17814 }
17815 ProcessStatement(stmt->__anon1.switchStmt.stmt);
17816 curSwitchType = oldSwitchType;
17817 break;
17818 }
17819 case 6:
17820 {
17821 if(stmt->__anon1.whileStmt.exp)
17822 {
17823 struct Expression * exp;
17824
17825 FreeType(((struct Expression *)(*stmt->__anon1.whileStmt.exp).last)->destType);
17826 ((struct Expression *)(*stmt->__anon1.whileStmt.exp).last)->destType = MkClassType("bool");
17827 ((struct Expression *)(*stmt->__anon1.whileStmt.exp).last)->destType->truth = 1;
17828 for(exp = (*stmt->__anon1.whileStmt.exp).first; exp; exp = exp->next)
17829 {
17830 ProcessExpressionType(exp);
17831 }
17832 }
17833 if(stmt->__anon1.whileStmt.stmt)
17834 ProcessStatement(stmt->__anon1.whileStmt.stmt);
17835 break;
17836 }
17837 case 7:
17838 {
17839 if(stmt->__anon1.doWhile.exp)
17840 {
17841 struct Expression * exp;
17842
17843 if((*stmt->__anon1.doWhile.exp).last)
17844 {
17845 FreeType(((struct Expression *)(*stmt->__anon1.doWhile.exp).last)->destType);
17846 ((struct Expression *)(*stmt->__anon1.doWhile.exp).last)->destType = MkClassType("bool");
17847 ((struct Expression *)(*stmt->__anon1.doWhile.exp).last)->destType->truth = 1;
17848 }
17849 for(exp = (*stmt->__anon1.doWhile.exp).first; exp; exp = exp->next)
17850 {
17851 ProcessExpressionType(exp);
17852 }
17853 }
17854 if(stmt->__anon1.doWhile.stmt)
17855 ProcessStatement(stmt->__anon1.doWhile.stmt);
17856 break;
17857 }
17858 case 8:
17859 {
17860 struct Expression * exp;
17861
17862 if(stmt->__anon1.forStmt.init)
17863 ProcessStatement(stmt->__anon1.forStmt.init);
17864 if(stmt->__anon1.forStmt.check && stmt->__anon1.forStmt.check->__anon1.expressions)
17865 {
17866 FreeType(((struct Expression *)(*stmt->__anon1.forStmt.check->__anon1.expressions).last)->destType);
17867 ((struct Expression *)(*stmt->__anon1.forStmt.check->__anon1.expressions).last)->destType = MkClassType("bool");
17868 ((struct Expression *)(*stmt->__anon1.forStmt.check->__anon1.expressions).last)->destType->truth = 1;
17869 }
17870 if(stmt->__anon1.forStmt.check)
17871 ProcessStatement(stmt->__anon1.forStmt.check);
17872 if(stmt->__anon1.forStmt.increment)
17873 {
17874 for(exp = (*stmt->__anon1.forStmt.increment).first; exp; exp = exp->next)
17875 ProcessExpressionType(exp);
17876 }
17877 if(stmt->__anon1.forStmt.stmt)
17878 ProcessStatement(stmt->__anon1.forStmt.stmt);
17879 break;
17880 }
17881 case 18:
17882 {
17883 struct Identifier * id = stmt->__anon1.forEachStmt.id;
17884 struct __ecereNameSpace__ecere__sys__OldList * exp = stmt->__anon1.forEachStmt.exp;
17885 struct __ecereNameSpace__ecere__sys__OldList * filter = stmt->__anon1.forEachStmt.filter;
17886 struct Statement * block = stmt->__anon1.forEachStmt.stmt;
17887 char iteratorType[1024];
17888 struct Type * source;
17889 struct Expression * e;
17890 unsigned int isBuiltin = exp && (*exp).last && (((struct Expression *)(*exp).last)->type == 35 || (((struct Expression *)(*exp).last)->type == 11 && ((struct Expression *)(*exp).last)->__anon1.cast.exp->type == 35));
17891 struct Expression * arrayExp;
17892 const char * typeString = (((void *)0));
17893 int builtinCount = 0;
17894
17895 for(e = exp ? (*exp).first : (((void *)0)); e; e = e->next)
17896 {
17897 if(!e->next)
17898 {
17899 FreeType(e->destType);
17900 e->destType = ProcessTypeString("Container", 0);
17901 }
17902 if(!isBuiltin || e->next)
17903 ProcessExpressionType(e);
17904 }
17905 source = (exp && (*exp).last) ? ((struct Expression *)(*exp).last)->expType : (((void *)0));
17906 if(isBuiltin || (source && source->kind == 8 && source->__anon1._class && source->__anon1._class->__anon1.registered && source->__anon1._class->__anon1.registered != containerClass && __ecereNameSpace__ecere__com__eClass_IsDerived(source->__anon1._class->__anon1.registered, containerClass)))
17907 {
17908 struct __ecereNameSpace__ecere__com__Class * _class = source ? source->__anon1._class->__anon1.registered : (((void *)0));
17909 struct Symbol * symbol;
17910 struct Expression * expIt = (((void *)0));
17911 unsigned int isMap = 0, isArray = 0, isLinkList = 0, isList = 0, isCustomAVLTree = 0;
17912 struct __ecereNameSpace__ecere__com__Class * arrayClass = __ecereNameSpace__ecere__com__eSystem_FindClass(privateModule, "Array");
17913 struct __ecereNameSpace__ecere__com__Class * linkListClass = __ecereNameSpace__ecere__com__eSystem_FindClass(privateModule, "LinkList");
17914 struct __ecereNameSpace__ecere__com__Class * customAVLTreeClass = __ecereNameSpace__ecere__com__eSystem_FindClass(privateModule, "CustomAVLTree");
17915
17916 stmt->type = 2;
17917 stmt->__anon1.compound.context = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Context);
17918 stmt->__anon1.compound.context->parent = curContext;
17919 curContext = stmt->__anon1.compound.context;
17920 if(source && __ecereNameSpace__ecere__com__eClass_IsDerived(source->__anon1._class->__anon1.registered, customAVLTreeClass))
17921 {
17922 struct __ecereNameSpace__ecere__com__Class * mapClass = __ecereNameSpace__ecere__com__eSystem_FindClass(privateModule, "Map");
17923
17924 isCustomAVLTree = 1;
17925 if(__ecereNameSpace__ecere__com__eClass_IsDerived(source->__anon1._class->__anon1.registered, mapClass))
17926 isMap = 1;
17927 }
17928 else if(source && __ecereNameSpace__ecere__com__eClass_IsDerived(source->__anon1._class->__anon1.registered, arrayClass))
17929 isArray = 1;
17930 else if(source && __ecereNameSpace__ecere__com__eClass_IsDerived(source->__anon1._class->__anon1.registered, linkListClass))
17931 {
17932 struct __ecereNameSpace__ecere__com__Class * listClass = __ecereNameSpace__ecere__com__eSystem_FindClass(privateModule, "List");
17933
17934 isLinkList = 1;
17935 isList = __ecereNameSpace__ecere__com__eClass_IsDerived(source->__anon1._class->__anon1.registered, listClass);
17936 }
17937 if(isArray)
17938 {
17939 struct Declarator * decl;
17940 struct __ecereNameSpace__ecere__sys__OldList * specs = MkList();
17941
17942 decl = SpecDeclFromString(_class->templateArgs[2].__anon1.__anon1.dataTypeString, specs, MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), MkDeclaratorIdentifier(id)));
17943 stmt->__anon1.compound.declarations = MkListOne(MkDeclaration(specs, MkListOne(MkInitDeclarator(decl, (((void *)0))))));
17944 ListAdd(stmt->__anon1.compound.declarations, MkDeclaration(MkListOne(MkSpecifierName(source->__anon1._class->__anon1.registered->fullName)), MkListOne(MkInitDeclarator(MkDeclaratorIdentifier(MkIdentifier("__internalArray")), MkInitializerAssignment(MkExpBrackets(exp))))));
17945 }
17946 else if(isBuiltin)
17947 {
17948 struct Type * type = (((void *)0));
17949 char typeStringBuf[1024];
17950
17951 arrayExp = (((struct Expression *)(*exp).last)->type == 35) ? (struct Expression *)(*exp).last : ((struct Expression *)(*exp).last)->__anon1.cast.exp;
17952 if(((struct Expression *)(*exp).last)->type == 11)
17953 {
17954 struct TypeName * typeName = ((struct Expression *)(*exp).last)->__anon1.cast.typeName;
17955
17956 if(typeName)
17957 arrayExp->destType = ProcessType(typeName->qualifiers, typeName->declarator);
17958 }
17959 if(arrayExp->destType && arrayExp->destType->kind == 8 && arrayExp->destType->__anon1._class && arrayExp->destType->__anon1._class->__anon1.registered && arrayExp->destType->__anon1._class->__anon1.registered != containerClass && __ecereNameSpace__ecere__com__eClass_IsDerived(arrayExp->destType->__anon1._class->__anon1.registered, containerClass) && arrayExp->destType->__anon1._class->__anon1.registered->templateArgs)
17960 {
17961 struct __ecereNameSpace__ecere__com__Class * templateClass = arrayExp->destType->__anon1._class->__anon1.registered;
17962
17963 typeString = templateClass->templateArgs[2].__anon1.__anon1.dataTypeString;
17964 }
17965 else if(arrayExp->__anon1.list)
17966 {
17967 struct Expression * e;
17968
17969 for(e = (*arrayExp->__anon1.list).first; e; e = e->next)
17970 {
17971 ProcessExpressionType(e);
17972 if(e->expType)
17973 {
17974 if(!type)
17975 {
17976 type = e->expType;
17977 type->refCount++;
17978 }
17979 else
17980 {
17981 if(!MatchTypeExpression(e, type, (((void *)0)), 0, 1))
17982 {
17983 FreeType(type);
17984 type = e->expType;
17985 e->expType = (((void *)0));
17986 e = (*arrayExp->__anon1.list).first;
17987 ProcessExpressionType(e);
17988 if(e->expType)
17989 {
17990 if(!MatchTypeExpression(e, type, (((void *)0)), 0, 1))
17991 {
17992 FreeType(e->expType);
17993 e->expType = (((void *)0));
17994 FreeType(type);
17995 type = (((void *)0));
17996 break;
17997 }
17998 }
17999 }
18000 }
18001 if(e->expType)
18002 {
18003 FreeType(e->expType);
18004 e->expType = (((void *)0));
18005 }
18006 }
18007 }
18008 if(type)
18009 {
18010 typeStringBuf[0] = '\0';
18011 PrintType(type, typeStringBuf, 0, 1);
18012 typeString = typeStringBuf;
18013 FreeType(type);
18014 }
18015 }
18016 if(typeString)
18017 {
18018 struct __ecereNameSpace__ecere__sys__OldList * initializers = MkList();
18019 struct Declarator * decl;
18020 struct __ecereNameSpace__ecere__sys__OldList * specs = MkList();
18021
18022 if(arrayExp->__anon1.list)
18023 {
18024 struct Expression * e;
18025
18026 builtinCount = (*arrayExp->__anon1.list).count;
18027 type = ProcessTypeString(typeString, 0);
18028 while((e = (*arrayExp->__anon1.list).first))
18029 {
18030 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Remove((&*arrayExp->__anon1.list), e);
18031 e->destType = type;
18032 type->refCount++;
18033 ProcessExpressionType(e);
18034 ListAdd(initializers, MkInitializerAssignment(e));
18035 }
18036 FreeType(type);
18037 (__ecereNameSpace__ecere__com__eSystem_Delete(arrayExp->__anon1.list), arrayExp->__anon1.list = 0);
18038 }
18039 decl = SpecDeclFromString(typeString, specs, MkDeclaratorIdentifier(id));
18040 stmt->__anon1.compound.declarations = MkListOne(MkDeclaration(CopyList(specs, (void *)(CopySpecifier)), MkListOne(MkInitDeclarator(MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), decl), (((void *)0))))));
18041 ListAdd(stmt->__anon1.compound.declarations, MkDeclaration(specs, MkListOne(MkInitDeclarator(PlugDeclarator(decl, MkDeclaratorArray(MkDeclaratorIdentifier(MkIdentifier("__internalArray")), (((void *)0)))), MkInitializerList(initializers)))));
18042 FreeList(exp, (void *)(FreeExpression));
18043 }
18044 else
18045 {
18046 arrayExp->expType = ProcessTypeString("Container", 0);
18047 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "Couldn't determine type of array elements\n", (((void *)0))));
18048 }
18049 }
18050 else if(isLinkList && !isList)
18051 {
18052 struct Declarator * decl;
18053 struct __ecereNameSpace__ecere__sys__OldList * specs = MkList();
18054
18055 decl = SpecDeclFromString(_class->templateArgs[3].__anon1.__anon1.dataTypeString, specs, MkDeclaratorIdentifier(id));
18056 stmt->__anon1.compound.declarations = MkListOne(MkDeclaration(specs, MkListOne(MkInitDeclarator(decl, (((void *)0))))));
18057 ListAdd(stmt->__anon1.compound.declarations, MkDeclaration(MkListOne(MkSpecifierName(source->__anon1._class->__anon1.registered->fullName)), MkListOne(MkInitDeclarator(MkDeclaratorIdentifier(MkIdentifier("__internalLinkList")), MkInitializerAssignment(MkExpBrackets(exp))))));
18058 }
18059 else if(_class->templateArgs)
18060 {
18061 if(isMap)
18062 sprintf(iteratorType, "MapIterator<%s, %s >", _class->templateArgs[5].__anon1.__anon1.dataTypeString, _class->templateArgs[6].__anon1.__anon1.dataTypeString);
18063 else
18064 sprintf(iteratorType, "Iterator<%s, %s >", _class->templateArgs[2].__anon1.__anon1.dataTypeString, _class->templateArgs[1].__anon1.__anon1.dataTypeString);
18065 stmt->__anon1.compound.declarations = MkListOne(MkDeclarationInst(MkInstantiationNamed(MkListOne(MkSpecifierName(iteratorType)), MkExpIdentifier(id), MkListOne(MkMembersInitList(MkListOne(MkMemberInit(isMap ? MkListOne(MkIdentifier("map")) : (((void *)0)), MkInitializerAssignment(MkExpBrackets(exp)))))))));
18066 }
18067 symbol = FindSymbol(id->string, curContext, curContext, 0, 0);
18068 if(block)
18069 {
18070 switch(block->type)
18071 {
18072 case 2:
18073 if(block->__anon1.compound.context)
18074 block->__anon1.compound.context->parent = stmt->__anon1.compound.context;
18075 break;
18076 case 4:
18077 if(block->__anon1.ifStmt.stmt && block->__anon1.ifStmt.stmt->type == 2 && block->__anon1.ifStmt.stmt->__anon1.compound.context)
18078 block->__anon1.ifStmt.stmt->__anon1.compound.context->parent = stmt->__anon1.compound.context;
18079 if(block->__anon1.ifStmt.elseStmt && block->__anon1.ifStmt.elseStmt->type == 2 && block->__anon1.ifStmt.elseStmt->__anon1.compound.context)
18080 block->__anon1.ifStmt.elseStmt->__anon1.compound.context->parent = stmt->__anon1.compound.context;
18081 break;
18082 case 5:
18083 if(block->__anon1.switchStmt.stmt && block->__anon1.switchStmt.stmt->type == 2 && block->__anon1.switchStmt.stmt->__anon1.compound.context)
18084 block->__anon1.switchStmt.stmt->__anon1.compound.context->parent = stmt->__anon1.compound.context;
18085 break;
18086 case 6:
18087 if(block->__anon1.whileStmt.stmt && block->__anon1.whileStmt.stmt->type == 2 && block->__anon1.whileStmt.stmt->__anon1.compound.context)
18088 block->__anon1.whileStmt.stmt->__anon1.compound.context->parent = stmt->__anon1.compound.context;
18089 break;
18090 case 7:
18091 if(block->__anon1.doWhile.stmt && block->__anon1.doWhile.stmt->type == 2 && block->__anon1.doWhile.stmt->__anon1.compound.context)
18092 block->__anon1.doWhile.stmt->__anon1.compound.context->parent = stmt->__anon1.compound.context;
18093 break;
18094 case 8:
18095 if(block->__anon1.forStmt.stmt && block->__anon1.forStmt.stmt->type == 2 && block->__anon1.forStmt.stmt->__anon1.compound.context)
18096 block->__anon1.forStmt.stmt->__anon1.compound.context->parent = stmt->__anon1.compound.context;
18097 break;
18098 case 18:
18099 if(block->__anon1.forEachStmt.stmt && block->__anon1.forEachStmt.stmt->type == 2 && block->__anon1.forEachStmt.stmt->__anon1.compound.context)
18100 block->__anon1.forEachStmt.stmt->__anon1.compound.context->parent = stmt->__anon1.compound.context;
18101 break;
18102 }
18103 }
18104 if(filter)
18105 {
18106 block = MkIfStmt(filter, block, (((void *)0)));
18107 }
18108 if(isArray)
18109 {
18110 stmt->__anon1.compound.statements = MkListOne(MkForStmt(MkExpressionStmt(MkListOne(MkExpOp(MkExpIdentifier(CopyIdentifier(id)), '=', MkExpMember(MkExpIdentifier(MkIdentifier("__internalArray")), MkIdentifier("array"))))), MkExpressionStmt(MkListOne(MkExpOp(MkExpIdentifier(CopyIdentifier(id)), '<', MkExpOp(MkExpMember(MkExpIdentifier(MkIdentifier("__internalArray")), MkIdentifier("array")), '+', MkExpMember(MkExpIdentifier(MkIdentifier("__internalArray")), MkIdentifier("count")))))), MkListOne(MkExpOp(MkExpIdentifier(CopyIdentifier(id)), INC_OP, (((void *)0)))), block));
18111 ProcessStatement(((struct Statement *)(*stmt->__anon1.compound.statements).first)->__anon1.forStmt.init);
18112 ProcessStatement(((struct Statement *)(*stmt->__anon1.compound.statements).first)->__anon1.forStmt.check);
18113 ProcessExpressionType((*((struct Statement *)(*stmt->__anon1.compound.statements).first)->__anon1.forStmt.increment).first);
18114 }
18115 else if(isBuiltin)
18116 {
18117 char count[128];
18118
18119 sprintf(count, "%d", builtinCount);
18120 stmt->__anon1.compound.statements = MkListOne(MkForStmt(MkExpressionStmt(MkListOne(MkExpOp(MkExpIdentifier(CopyIdentifier(id)), '=', MkExpIdentifier(MkIdentifier("__internalArray"))))), MkExpressionStmt(MkListOne(MkExpOp(MkExpIdentifier(CopyIdentifier(id)), '<', MkExpOp(MkExpIdentifier(MkIdentifier("__internalArray")), '+', MkExpConstant(count))))), MkListOne(MkExpOp(MkExpIdentifier(CopyIdentifier(id)), INC_OP, (((void *)0)))), block));
18121 ProcessStatement(((struct Statement *)(*stmt->__anon1.compound.statements).first)->__anon1.forStmt.init);
18122 ProcessStatement(((struct Statement *)(*stmt->__anon1.compound.statements).first)->__anon1.forStmt.check);
18123 ProcessExpressionType((*((struct Statement *)(*stmt->__anon1.compound.statements).first)->__anon1.forStmt.increment).first);
18124 }
18125 else if(isLinkList && !isList)
18126 {
18127 struct __ecereNameSpace__ecere__com__Class * typeClass = __ecereNameSpace__ecere__com__eSystem_FindClass(_class->module, _class->templateArgs[3].__anon1.__anon1.dataTypeString);
18128 struct __ecereNameSpace__ecere__com__Class * listItemClass = __ecereNameSpace__ecere__com__eSystem_FindClass(_class->module, "ListItem");
18129
18130 if(typeClass && __ecereNameSpace__ecere__com__eClass_IsDerived(typeClass, listItemClass) && _class->templateArgs[5].__anon1.__anon1.dataTypeString && !strcmp(_class->templateArgs[5].__anon1.__anon1.dataTypeString, "LT::link"))
18131 {
18132 stmt->__anon1.compound.statements = MkListOne(MkForStmt(MkExpressionStmt(MkListOne(MkExpOp(MkExpIdentifier(CopyIdentifier(id)), '=', MkExpMember(MkExpIdentifier(MkIdentifier("__internalLinkList")), MkIdentifier("first"))))), MkExpressionStmt(MkListOne(MkExpIdentifier(CopyIdentifier(id)))), MkListOne(MkExpOp(MkExpIdentifier(CopyIdentifier(id)), '=', MkExpMember(MkExpIdentifier(CopyIdentifier(id)), MkIdentifier("next")))), block));
18133 }
18134 else
18135 {
18136 struct __ecereNameSpace__ecere__sys__OldList * specs = MkList();
18137 struct Declarator * decl = SpecDeclFromString(_class->templateArgs[3].__anon1.__anon1.dataTypeString, specs, (((void *)0)));
18138
18139 stmt->__anon1.compound.statements = MkListOne(MkForStmt(MkExpressionStmt(MkListOne(MkExpOp(MkExpIdentifier(CopyIdentifier(id)), '=', MkExpMember(MkExpIdentifier(MkIdentifier("__internalLinkList")), MkIdentifier("first"))))), MkExpressionStmt(MkListOne(MkExpIdentifier(CopyIdentifier(id)))), MkListOne(MkExpOp(MkExpIdentifier(CopyIdentifier(id)), '=', MkExpCast(MkTypeName(specs, decl), MkExpCall(MkExpMember(MkExpIdentifier(MkIdentifier("__internalLinkList")), MkIdentifier("GetNext")), MkListOne(MkExpCast(MkTypeName(MkListOne(MkSpecifierName("IteratorPointer")), (((void *)0))), MkExpIdentifier(CopyIdentifier(id)))))))), block));
18140 }
18141 ProcessStatement(((struct Statement *)(*stmt->__anon1.compound.statements).first)->__anon1.forStmt.init);
18142 ProcessStatement(((struct Statement *)(*stmt->__anon1.compound.statements).first)->__anon1.forStmt.check);
18143 ProcessExpressionType((*((struct Statement *)(*stmt->__anon1.compound.statements).first)->__anon1.forStmt.increment).first);
18144 }
18145 else
18146 {
18147 stmt->__anon1.compound.statements = MkListOne(MkWhileStmt(MkListOne(MkExpCall(MkExpMember(expIt = MkExpIdentifier(CopyIdentifier(id)), MkIdentifier("Next")), (((void *)0)))), block));
18148 }
18149 ProcessExpressionType(expIt);
18150 if((*stmt->__anon1.compound.declarations).first)
18151 ProcessDeclaration((*stmt->__anon1.compound.declarations).first);
18152 if(symbol)
18153 symbol->isIterator = isMap ? 2 : ((isArray || isBuiltin) ? 3 : (isLinkList ? (isList ? 5 : 4) : (isCustomAVLTree ? 6 : 1)));
18154 ProcessStatement(stmt);
18155 curContext = stmt->__anon1.compound.context->parent;
18156 break;
18157 }
18158 else
18159 {
18160 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "Expression is not a container\n", (((void *)0))));
18161 }
18162 break;
18163 }
18164 case 9:
18165 break;
18166 case 10:
18167 break;
18168 case 11:
18169 break;
18170 case 12:
18171 {
18172 struct Expression * exp;
18173
18174 if(stmt->__anon1.expressions)
18175 {
18176 for(exp = (*stmt->__anon1.expressions).first; exp; exp = exp->next)
18177 {
18178 if(!exp->next)
18179 {
18180 if(curFunction && !curFunction->type)
18181 curFunction->type = ProcessType(curFunction->specifiers, curFunction->declarator);
18182 FreeType(exp->destType);
18183 exp->destType = (curFunction && curFunction->type && curFunction->type->kind == 11) ? curFunction->type->__anon1.__anon2.returnType : (((void *)0));
18184 if(exp->destType)
18185 exp->destType->refCount++;
18186 }
18187 ProcessExpressionType(exp);
18188 }
18189 }
18190 break;
18191 }
18192 case 14:
18193 {
18194 ProcessDeclaration(stmt->__anon1.decl);
18195 break;
18196 }
18197 case 13:
18198 {
18199 struct AsmField * field;
18200
18201 if(stmt->__anon1.asmStmt.inputFields)
18202 {
18203 for(field = (*stmt->__anon1.asmStmt.inputFields).first; field; field = field->next)
18204 if(field->expression)
18205 ProcessExpressionType(field->expression);
18206 }
18207 if(stmt->__anon1.asmStmt.outputFields)
18208 {
18209 for(field = (*stmt->__anon1.asmStmt.outputFields).first; field; field = field->next)
18210 if(field->expression)
18211 ProcessExpressionType(field->expression);
18212 }
18213 if(stmt->__anon1.asmStmt.clobberedFields)
18214 {
18215 for(field = (*stmt->__anon1.asmStmt.clobberedFields).first; field; field = field->next)
18216 {
18217 if(field->expression)
18218 ProcessExpressionType(field->expression);
18219 }
18220 }
18221 break;
18222 }
18223 case 17:
18224 {
18225 struct PropertyWatch * propWatch;
18226 struct __ecereNameSpace__ecere__sys__OldList * watches = stmt->__anon1._watch.watches;
18227 struct Expression * object = stmt->__anon1._watch.object;
18228 struct Expression * watcher = stmt->__anon1._watch.watcher;
18229
18230 if(watcher)
18231 ProcessExpressionType(watcher);
18232 if(object)
18233 ProcessExpressionType(object);
18234 if(inCompiler)
18235 {
18236 if(watcher || thisClass)
18237 {
18238 struct External * external = curExternal;
18239 struct Context * context = curContext;
18240
18241 stmt->type = 3;
18242 stmt->__anon1.expressions = MkList();
18243 curExternal = external->prev;
18244 for(propWatch = (*watches).first; propWatch; propWatch = propWatch->next)
18245 {
18246 struct ClassFunction * func;
18247 char watcherName[1024];
18248 struct __ecereNameSpace__ecere__com__Class * watcherClass = watcher ? ((watcher->expType && watcher->expType->kind == 8 && watcher->expType->__anon1._class) ? watcher->expType->__anon1._class->__anon1.registered : (((void *)0))) : thisClass;
18249 struct External * createdExternal;
18250 struct External * externalDecl = MkExternalDeclaration((((void *)0)));
18251
18252 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*ast), curExternal->prev, externalDecl);
18253 sprintf(watcherName, "__ecerePropertyWatcher_%d", propWatcherID++);
18254 if(propWatch->deleteWatch)
18255 strcat(watcherName, "_delete");
18256 else
18257 {
18258 struct Identifier * propID;
18259
18260 for(propID = (*propWatch->properties).first; propID; propID = propID->next)
18261 {
18262 strcat(watcherName, "_");
18263 strcat(watcherName, propID->string);
18264 }
18265 }
18266 if(object && object->expType && object->expType->kind == 8 && object->expType->__anon1._class && object->expType->__anon1._class->__anon1.registered)
18267 {
18268 func = MkClassFunction(MkListOne(MkSpecifier(VOID)), (((void *)0)), MkDeclaratorFunction(MkDeclaratorIdentifier(MkIdentifier(watcherName)), MkListOne(MkTypeName(MkListOne(MkSpecifierName(object->expType->__anon1._class->string)), MkDeclaratorIdentifier(MkIdentifier("value"))))), (((void *)0)));
18269 ProcessClassFunctionBody(func, propWatch->compound);
18270 propWatch->compound = (((void *)0));
18271 createdExternal = ProcessClassFunction(watcherClass, func, ast, curExternal, 1);
18272 createdExternal->symbol->idCode = external->symbol->idCode;
18273 curExternal = createdExternal;
18274 ProcessFunction(createdExternal->__anon1.function);
18275 {
18276 struct Declaration * decl = MkDeclaration(CopyList(createdExternal->__anon1.function->specifiers, (void *)(CopySpecifier)), MkListOne(MkInitDeclarator(CopyDeclarator(createdExternal->__anon1.function->declarator), (((void *)0)))));
18277
18278 externalDecl->__anon1.declaration = decl;
18279 if(decl->symbol && !decl->symbol->__anon2.__anon1.pointerExternal)
18280 decl->symbol->__anon2.__anon1.pointerExternal = externalDecl;
18281 }
18282 if(propWatch->deleteWatch)
18283 {
18284 struct __ecereNameSpace__ecere__sys__OldList * args = MkList();
18285
18286 ListAdd(args, CopyExpression(object));
18287 ListAdd(args, watcher ? CopyExpression(watcher) : MkExpIdentifier(MkIdentifier("this")));
18288 ListAdd(args, MkExpIdentifier(MkIdentifier(watcherName)));
18289 ListAdd(stmt->__anon1.expressions, MkExpCall(MkExpIdentifier(MkIdentifier("ecere::com::eInstance_WatchDestruction")), args));
18290 }
18291 else
18292 {
18293 struct __ecereNameSpace__ecere__com__Class * _class = object->expType->__anon1._class->__anon1.registered;
18294 struct Identifier * propID;
18295
18296 for(propID = (*propWatch->properties).first; propID; propID = propID->next)
18297 {
18298 char propName[1024];
18299 struct __ecereNameSpace__ecere__com__Property * prop = __ecereNameSpace__ecere__com__eClass_FindProperty(_class, propID->string, privateModule);
18300
18301 if(prop)
18302 {
18303 char getName[1024], setName[1024];
18304 struct __ecereNameSpace__ecere__sys__OldList * args = MkList();
18305
18306 DeclareProperty(prop, setName, getName);
18307 strcpy(propName, "__ecereProp_");
18308 FullClassNameCat(propName, prop->_class->fullName, 0);
18309 strcat(propName, "_");
18310 FullClassNameCat(propName, prop->name, 1);
18311 ListAdd(args, CopyExpression(object));
18312 ListAdd(args, MkExpIdentifier(MkIdentifier(propName)));
18313 ListAdd(args, watcher ? CopyExpression(watcher) : MkExpIdentifier(MkIdentifier("this")));
18314 ListAdd(args, MkExpCast(MkTypeName(MkListOne(MkSpecifier(VOID)), MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), (((void *)0)))), MkExpIdentifier(MkIdentifier(watcherName))));
18315 ListAdd(stmt->__anon1.expressions, MkExpCall(MkExpIdentifier(MkIdentifier("ecere::com::eInstance_Watch")), args));
18316 }
18317 else
18318 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "Property %s not found in class %s\n", (((void *)0))), propID->string, _class->fullName);
18319 }
18320 }
18321 }
18322 else
18323 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "Invalid watched object\n", (((void *)0))));
18324 }
18325 curExternal = external;
18326 curContext = context;
18327 if(watcher)
18328 FreeExpression(watcher);
18329 if(object)
18330 FreeExpression(object);
18331 FreeList(watches, (void *)(FreePropertyWatch));
18332 }
18333 else
18334 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "No observer specified and not inside a _class\n", (((void *)0))));
18335 }
18336 else
18337 {
18338 for(propWatch = (*watches).first; propWatch; propWatch = propWatch->next)
18339 {
18340 ProcessStatement(propWatch->compound);
18341 }
18342 }
18343 break;
18344 }
18345 case 15:
18346 {
18347 struct __ecereNameSpace__ecere__sys__OldList * watches = stmt->__anon1._watch.watches;
18348 struct Expression * object = stmt->__anon1._watch.object;
18349 struct __ecereNameSpace__ecere__com__Class * _class;
18350
18351 if(object)
18352 ProcessExpressionType(object);
18353 if(inCompiler)
18354 {
18355 _class = object ? ((object->expType && object->expType->kind == 8 && object->expType->__anon1._class) ? object->expType->__anon1._class->__anon1.registered : (((void *)0))) : thisClass;
18356 if(_class)
18357 {
18358 struct Identifier * propID;
18359
18360 stmt->type = 3;
18361 stmt->__anon1.expressions = MkList();
18362 if(!watches && curFunction->propSet && (!object || (object->type == 0 && !strcmp(object->__anon1.__anon1.identifier->string, "this"))))
18363 {
18364 watches = MkListOne(MkIdentifier(curFunction->propSet->string));
18365 }
18366 else if(!watches)
18367 {
18368 }
18369 if(watches)
18370 {
18371 for(propID = (*watches).first; propID; propID = propID->next)
18372 {
18373 struct __ecereNameSpace__ecere__com__Property * prop = __ecereNameSpace__ecere__com__eClass_FindProperty(_class, propID->string, privateModule);
18374
18375 if(prop)
18376 {
18377 CreateFireWatcher(prop, object, stmt);
18378 }
18379 else
18380 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "Property %s not found in class %s\n", (((void *)0))), propID->string, _class->fullName);
18381 }
18382 }
18383 else
18384 {
18385 struct __ecereNameSpace__ecere__com__Property * prop;
18386 struct __ecereNameSpace__ecere__com__Class * base;
18387
18388 for(base = _class; base; base = base->base)
18389 {
18390 for(prop = base->membersAndProperties.first; prop; prop = prop->next)
18391 {
18392 if(prop->isProperty && prop->isWatchable)
18393 {
18394 CreateFireWatcher(prop, object, stmt);
18395 }
18396 }
18397 }
18398 }
18399 if(object)
18400 FreeExpression(object);
18401 FreeList(watches, (void *)(FreeIdentifier));
18402 }
18403 else
18404 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "Invalid object specified and not inside a class\n", (((void *)0))));
18405 }
18406 break;
18407 }
18408 case 16:
18409 {
18410 struct __ecereNameSpace__ecere__sys__OldList * watches = stmt->__anon1._watch.watches;
18411 struct Expression * object = stmt->__anon1._watch.object;
18412 struct Expression * watcher = stmt->__anon1._watch.watcher;
18413 struct __ecereNameSpace__ecere__com__Class * _class;
18414
18415 if(object)
18416 ProcessExpressionType(object);
18417 if(watcher)
18418 ProcessExpressionType(watcher);
18419 if(inCompiler)
18420 {
18421 _class = (object && object->expType && object->expType->kind == 8 && object->expType->__anon1._class) ? object->expType->__anon1._class->__anon1.registered : (((void *)0));
18422 if(watcher || thisClass)
18423 {
18424 if(_class)
18425 {
18426 struct Identifier * propID;
18427
18428 stmt->type = 3;
18429 stmt->__anon1.expressions = MkList();
18430 if(!watches)
18431 {
18432 struct __ecereNameSpace__ecere__sys__OldList * args;
18433
18434 args = MkList();
18435 ListAdd(args, CopyExpression(object));
18436 ListAdd(args, MkExpConstant("0"));
18437 ListAdd(args, watcher ? CopyExpression(watcher) : MkExpIdentifier(MkIdentifier("this")));
18438 ListAdd(stmt->__anon1.expressions, MkExpCall(MkExpIdentifier(MkIdentifier("ecere::com::eInstance_StopWatching")), args));
18439 }
18440 else
18441 {
18442 for(propID = (*watches).first; propID; propID = propID->next)
18443 {
18444 char propName[1024];
18445 struct __ecereNameSpace__ecere__com__Property * prop = __ecereNameSpace__ecere__com__eClass_FindProperty(_class, propID->string, privateModule);
18446
18447 if(prop)
18448 {
18449 char getName[1024], setName[1024];
18450 struct __ecereNameSpace__ecere__sys__OldList * args = MkList();
18451
18452 DeclareProperty(prop, setName, getName);
18453 strcpy(propName, "__ecereProp_");
18454 FullClassNameCat(propName, prop->_class->fullName, 0);
18455 strcat(propName, "_");
18456 FullClassNameCat(propName, prop->name, 1);
18457 ListAdd(args, CopyExpression(object));
18458 ListAdd(args, MkExpIdentifier(MkIdentifier(propName)));
18459 ListAdd(args, watcher ? CopyExpression(watcher) : MkExpIdentifier(MkIdentifier("this")));
18460 ListAdd(stmt->__anon1.expressions, MkExpCall(MkExpIdentifier(MkIdentifier("ecere::com::eInstance_StopWatching")), args));
18461 }
18462 else
18463 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "Property %s not found in class %s\n", (((void *)0))), propID->string, _class->fullName);
18464 }
18465 }
18466 if(object)
18467 FreeExpression(object);
18468 if(watcher)
18469 FreeExpression(watcher);
18470 FreeList(watches, (void *)(FreeIdentifier));
18471 }
18472 else
18473 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "Invalid object specified and not inside a class\n", (((void *)0))));
18474 }
18475 else
18476 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "No observer specified and not inside a class\n", (((void *)0))));
18477 }
18478 break;
18479 }
18480 }
18481 }
18482
18483 extern struct Expression * QBrackets(struct Expression * exp);
18484
18485 extern struct TypeName * QMkType(const char *  spec, struct Declarator * decl);
18486
18487 extern struct Declarator * QMkPtrDecl(const char *  id);
18488
18489 extern struct Expression * MkExpPointer(struct Expression * expression, struct Identifier * member);
18490
18491 extern struct Expression * QMkExpCond(struct Expression * cond, struct Expression * exp, struct Expression * elseExp);
18492
18493 extern struct Statement * MkFireWatchersStmt(struct Expression * object, struct __ecereNameSpace__ecere__sys__OldList * watches);
18494
18495 static void ProcessFunction(struct FunctionDefinition * function)
18496 {
18497 struct Identifier * id = GetDeclId(function->declarator);
18498 struct Symbol * symbol = function->declarator ? function->declarator->symbol : (((void *)0));
18499 struct Type * type = symbol ? symbol->type : (((void *)0));
18500 struct __ecereNameSpace__ecere__com__Class * oldThisClass = thisClass;
18501 struct Context * oldTopContext = topContext;
18502
18503 yylloc = function->loc;
18504 if(type && type->__anon1.__anon2.thisClass)
18505 {
18506 struct Symbol * classSym = type->__anon1.__anon2.thisClass;
18507 struct __ecereNameSpace__ecere__com__Class * _class = type->__anon1.__anon2.thisClass->__anon1.registered;
18508 char className[1024];
18509 char structName[1024];
18510 struct Declarator * funcDecl;
18511 struct Symbol * thisSymbol;
18512 unsigned int typedObject = 0;
18513
18514 if(_class && !_class->base)
18515 {
18516 _class = currentClass;
18517 if(_class && !_class->symbol)
18518 _class->symbol = FindClass(_class->fullName);
18519 classSym = _class ? _class->symbol : (((void *)0));
18520 typedObject = 1;
18521 }
18522 thisClass = _class;
18523 if(inCompiler && _class)
18524 {
18525 if(type->kind == 11)
18526 {
18527 if(symbol->type->__anon1.__anon2.params.count == 1 && ((struct Type *)symbol->type->__anon1.__anon2.params.first)->kind == 0)
18528 {
18529 struct Type * param = symbol->type->__anon1.__anon2.params.first;
18530
18531 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Remove(&symbol->type->__anon1.__anon2.params, param);
18532 FreeType(param);
18533 }
18534 if(type->classObjectType != 1)
18535 {
18536 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert(&symbol->type->__anon1.__anon2.params, (((void *)0)), MkClassType(_class->fullName));
18537 symbol->type->__anon1.__anon2.staticMethod = 1;
18538 symbol->type->__anon1.__anon2.thisClass = (((void *)0));
18539 symbol->type->extraParam = 0;
18540 }
18541 }
18542 strcpy(className, "__ecereClass_");
18543 FullClassNameCat(className, _class->fullName, 1);
18544 structName[0] = (char)0;
18545 FullClassNameCat(structName, _class->fullName, 0);
18546 funcDecl = GetFuncDecl(function->declarator);
18547 if(funcDecl)
18548 {
18549 if(funcDecl->__anon1.function.parameters && (*funcDecl->__anon1.function.parameters).count == 1)
18550 {
18551 struct TypeName * param = (*funcDecl->__anon1.function.parameters).first;
18552
18553 if(param->qualifiers && (*param->qualifiers).count == 1 && ((struct Specifier *)(*param->qualifiers).first)->__anon1.specifier == VOID && !param->declarator)
18554 {
18555 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Remove((&*funcDecl->__anon1.function.parameters), param);
18556 FreeTypeName(param);
18557 }
18558 }
18559 if(!function->propertyNoThis)
18560 {
18561 struct TypeName * thisParam = (((void *)0));
18562
18563 if(type->classObjectType != 1)
18564 {
18565 thisParam = QMkClass(_class->fullName, MkDeclaratorIdentifier(MkIdentifier("this")));
18566 if(!funcDecl->__anon1.function.parameters)
18567 funcDecl->__anon1.function.parameters = MkList();
18568 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*funcDecl->__anon1.function.parameters), (((void *)0)), thisParam);
18569 }
18570 if(typedObject)
18571 {
18572 if(type->classObjectType != 1)
18573 {
18574 if(type->byReference || _class->type == 3 || _class->type == 1000 || _class->type == 4 || _class->type == 2)
18575 thisParam->declarator = MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), thisParam->declarator);
18576 }
18577 thisParam = __extension__ ({
18578 struct TypeName * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_TypeName);
18579
18580 __ecereInstance1->declarator = MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), MkDeclaratorIdentifier(MkIdentifier("class"))), __ecereInstance1->qualifiers = MkListOne(MkStructOrUnion(3, MkIdentifier("__ecereNameSpace__ecere__com__Class"), (((void *)0)))), __ecereInstance1;
18581 });
18582 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*funcDecl->__anon1.function.parameters), (((void *)0)), thisParam);
18583 }
18584 }
18585 }
18586 if(symbol && symbol->__anon2.__anon1.pointerExternal && symbol->__anon2.__anon1.pointerExternal->type == 1)
18587 {
18588 struct InitDeclarator * initDecl = (*symbol->__anon2.__anon1.pointerExternal->__anon1.declaration->__anon1.__anon1.declarators).first;
18589
18590 funcDecl = GetFuncDecl(initDecl->declarator);
18591 if(funcDecl)
18592 {
18593 if(funcDecl->__anon1.function.parameters && (*funcDecl->__anon1.function.parameters).count == 1)
18594 {
18595 struct TypeName * param = (*funcDecl->__anon1.function.parameters).first;
18596
18597 if(param->qualifiers && (*param->qualifiers).count == 1 && ((struct Specifier *)(*param->qualifiers).first)->__anon1.specifier == VOID && !param->declarator)
18598 {
18599 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Remove((&*funcDecl->__anon1.function.parameters), param);
18600 FreeTypeName(param);
18601 }
18602 }
18603 if(type->classObjectType != 1)
18604 {
18605 if((_class->type != 2 && _class->type != 3 && _class->type != 4) || function != (struct FunctionDefinition *)symbol->__anon2.__anon2.externalSet)
18606 {
18607 struct TypeName * thisParam = QMkClass(_class->fullName, MkDeclaratorIdentifier(MkIdentifier("this")));
18608
18609 if(!funcDecl->__anon1.function.parameters)
18610 funcDecl->__anon1.function.parameters = MkList();
18611 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*funcDecl->__anon1.function.parameters), (((void *)0)), thisParam);
18612 }
18613 }
18614 }
18615 }
18616 }
18617 if(function->body)
18618 {
18619 if(type->classObjectType != 1)
18620 {
18621 thisSymbol = __extension__ ({
18622 struct Symbol * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol);
18623
18624 __ecereInstance1->string = __ecereNameSpace__ecere__sys__CopyString("this"), __ecereInstance1->type = classSym ? MkClassType(classSym->string) : (((void *)0)), __ecereInstance1;
18625 });
18626 __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Add(&function->body->__anon1.compound.context->symbols, (struct __ecereNameSpace__ecere__sys__BTNode *)thisSymbol);
18627 if(typedObject && thisSymbol->type)
18628 {
18629 thisSymbol->type->classObjectType = 2;
18630 thisSymbol->type->byReference = type->byReference;
18631 thisSymbol->type->typedByReference = type->byReference;
18632 }
18633 }
18634 }
18635 if(inCompiler && _class && (_class->type == 0) && type->classObjectType != 1)
18636 {
18637 struct __ecereNameSpace__ecere__com__DataMember * member = (((void *)0));
18638
18639 {
18640 struct __ecereNameSpace__ecere__com__Class * base;
18641
18642 for(base = _class; base && base->type != 1000; base = base->next)
18643 {
18644 for(member = base->membersAndProperties.first; member; member = member->next)
18645 if(!member->isProperty)
18646 break;
18647 if(member)
18648 break;
18649 }
18650 }
18651 for(member = _class->membersAndProperties.first; member; member = member->next)
18652 if(!member->isProperty)
18653 break;
18654 if(member)
18655 {
18656 char pointerName[1024];
18657 struct Declaration * decl;
18658 struct Initializer * initializer;
18659 struct Expression * exp, * bytePtr;
18660
18661 strcpy(pointerName, "__ecerePointer_");
18662 FullClassNameCat(pointerName, _class->fullName, 0);
18663 {
18664 char className[1024];
18665
18666 strcpy(className, "__ecereClass_");
18667 FullClassNameCat(className, classSym->string, 1);
18668 DeclareClass(classSym, className);
18669 }
18670 bytePtr = QBrackets(MkExpCast(QMkType("char", QMkPtrDecl((((void *)0)))), QMkExpId("this")));
18671 if(_class->fixed)
18672 {
18673 char string[256];
18674
18675 sprintf(string, "%d", _class->offset);
18676 exp = QBrackets(MkExpOp(bytePtr, '+', MkExpConstant(string)));
18677 }
18678 else
18679 {
18680 exp = QBrackets(MkExpOp(bytePtr, '+', MkExpPointer(QMkExpId(className), MkIdentifier("offset"))));
18681 }
18682 exp = QBrackets(QMkExpCond(QMkExpId("this"), exp, MkExpConstant("0")));
18683 exp->expType = __extension__ ({
18684 struct Type * __ecereInstance2 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
18685
18686 __ecereInstance2->refCount = 1, __ecereInstance2->kind = 13, __ecereInstance2->__anon1.type = __extension__ ({
18687 struct Type * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
18688
18689 __ecereInstance1->refCount = 1, __ecereInstance1->kind = 0, __ecereInstance1;
18690 }), __ecereInstance2;
18691 });
18692 if(function->body)
18693 {
18694 yylloc = function->body->loc;
18695 initializer = MkInitializerAssignment(MkExpCast(MkTypeName(MkListOne(MkStructOrUnion(3, MkIdentifier(structName), (((void *)0)))), MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), (((void *)0)))), exp));
18696 {
18697 struct Context * prevContext = curContext;
18698 struct __ecereNameSpace__ecere__sys__OldList * list;
18699
18700 curContext = function->body->__anon1.compound.context;
18701 decl = MkDeclaration((list = MkListOne(MkStructOrUnion(3, MkIdentifier(structName), (((void *)0))))), MkListOne(MkInitDeclarator(QMkPtrDecl(pointerName), initializer)));
18702 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*list), (((void *)0)), MkSpecifierExtended(MkExtDeclAttrib(MkAttrib(ATTRIB, MkListOne(MkAttribute(__ecereNameSpace__ecere__sys__CopyString("unused"), (((void *)0))))))));
18703 curContext = prevContext;
18704 }
18705 decl->symbol = (((void *)0));
18706 if(!function->body->__anon1.compound.declarations)
18707 function->body->__anon1.compound.declarations = MkList();
18708 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*function->body->__anon1.compound.declarations), (((void *)0)), decl);
18709 }
18710 }
18711 }
18712 }
18713 else
18714 thisClass = (((void *)0));
18715 if(id)
18716 {
18717 FreeSpecifier(id->_class);
18718 id->_class = (((void *)0));
18719 if(symbol && symbol->__anon2.__anon1.pointerExternal && symbol->__anon2.__anon1.pointerExternal->type == 1)
18720 {
18721 struct InitDeclarator * initDecl = (*symbol->__anon2.__anon1.pointerExternal->__anon1.declaration->__anon1.__anon1.declarators).first;
18722
18723 id = GetDeclId(initDecl->declarator);
18724 FreeSpecifier(id->_class);
18725 id->_class = (((void *)0));
18726 }
18727 }
18728 if(function->body)
18729 topContext = function->body->__anon1.compound.context;
18730 {
18731 struct FunctionDefinition * oldFunction = curFunction;
18732
18733 curFunction = function;
18734 if(function->body)
18735 ProcessStatement(function->body);
18736 if(inCompiler && function->propSet && !function->propSet->fireWatchersDone)
18737 {
18738 struct Statement * prevCompound = curCompound;
18739 struct Context * prevContext = curContext;
18740 struct Statement * fireWatchers = MkFireWatchersStmt((((void *)0)), (((void *)0)));
18741
18742 if(!function->body->__anon1.compound.statements)
18743 function->body->__anon1.compound.statements = MkList();
18744 ListAdd(function->body->__anon1.compound.statements, fireWatchers);
18745 curCompound = function->body;
18746 curContext = function->body->__anon1.compound.context;
18747 ProcessStatement(fireWatchers);
18748 curContext = prevContext;
18749 curCompound = prevCompound;
18750 }
18751 curFunction = oldFunction;
18752 }
18753 if(function->declarator)
18754 {
18755 ProcessDeclarator(function->declarator);
18756 }
18757 topContext = oldTopContext;
18758 thisClass = oldThisClass;
18759 }
18760
18761 extern void FreeSymbol(struct Symbol * symbol);
18762
18763 void __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Remove(struct __ecereNameSpace__ecere__sys__BinaryTree * this, struct __ecereNameSpace__ecere__sys__BTNode * node);
18764
18765 static void ProcessClass(struct __ecereNameSpace__ecere__sys__OldList * definitions, struct Symbol * symbol)
18766 {
18767 struct ClassDef * def;
18768 struct External * external = curExternal;
18769 struct __ecereNameSpace__ecere__com__Class * regClass = symbol ? symbol->__anon1.registered : (((void *)0));
18770
18771 for(def = definitions->first; def; def = def->next)
18772 {
18773 if(def->type == 0)
18774 {
18775 if(def->__anon1.function->declarator)
18776 curExternal = def->__anon1.function->declarator->symbol->__anon2.__anon1.pointerExternal;
18777 else
18778 curExternal = external;
18779 ProcessFunction((struct FunctionDefinition *)def->__anon1.function);
18780 }
18781 else if(def->type == 2)
18782 {
18783 if(def->__anon1.decl->type == 2)
18784 {
18785 thisClass = regClass;
18786 ProcessInstantiationType(def->__anon1.decl->__anon1.inst);
18787 thisClass = (((void *)0));
18788 }
18789 else
18790 {
18791 struct __ecereNameSpace__ecere__com__Class * backThisClass = thisClass;
18792
18793 if(regClass)
18794 thisClass = regClass;
18795 ProcessDeclaration(def->__anon1.decl);
18796 thisClass = backThisClass;
18797 }
18798 }
18799 else if(def->type == 1 && def->__anon1.defProperties)
18800 {
18801 struct MemberInit * defProperty;
18802 struct Symbol * thisSymbol = (thisSymbol = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol), thisSymbol->string = __ecereNameSpace__ecere__sys__CopyString("this"), thisSymbol->type = regClass ? MkClassType(regClass->fullName) : (((void *)0)), thisSymbol);
18803
18804 __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Add(&globalContext->symbols, (struct __ecereNameSpace__ecere__sys__BTNode *)thisSymbol);
18805 for(defProperty = (*def->__anon1.defProperties).first; defProperty; defProperty = defProperty->next)
18806 {
18807 thisClass = regClass;
18808 ProcessMemberInitData(defProperty, regClass, (((void *)0)), (((void *)0)), (((void *)0)), (((void *)0)));
18809 thisClass = (((void *)0));
18810 }
18811 __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Remove(&globalContext->symbols, (struct __ecereNameSpace__ecere__sys__BTNode *)thisSymbol);
18812 FreeSymbol(thisSymbol);
18813 }
18814 else if(def->type == 3 && def->__anon1.propertyDef)
18815 {
18816 struct PropertyDef * prop = def->__anon1.propertyDef;
18817
18818 thisClass = regClass;
18819 if(prop->setStmt)
18820 {
18821 if(regClass)
18822 {
18823 struct Symbol * thisSymbol = (thisSymbol = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol), thisSymbol->string = __ecereNameSpace__ecere__sys__CopyString("this"), thisSymbol->type = MkClassType(regClass->fullName), thisSymbol);
18824
18825 __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Add(&prop->setStmt->__anon1.compound.context->symbols, (struct __ecereNameSpace__ecere__sys__BTNode *)thisSymbol);
18826 }
18827 curExternal = prop->symbol ? prop->symbol->__anon2.__anon2.externalSet : (((void *)0));
18828 ProcessStatement(prop->setStmt);
18829 }
18830 if(prop->getStmt)
18831 {
18832 if(regClass)
18833 {
18834 struct Symbol * thisSymbol = (thisSymbol = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol), thisSymbol->string = __ecereNameSpace__ecere__sys__CopyString("this"), thisSymbol->type = MkClassType(regClass->fullName), thisSymbol);
18835
18836 __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Add(&prop->getStmt->__anon1.compound.context->symbols, (struct __ecereNameSpace__ecere__sys__BTNode *)thisSymbol);
18837 }
18838 curExternal = prop->symbol ? prop->symbol->__anon2.__anon2.externalGet : (((void *)0));
18839 ProcessStatement(prop->getStmt);
18840 }
18841 if(prop->issetStmt)
18842 {
18843 if(regClass)
18844 {
18845 struct Symbol * thisSymbol = (thisSymbol = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol), thisSymbol->string = __ecereNameSpace__ecere__sys__CopyString("this"), thisSymbol->type = MkClassType(regClass->fullName), thisSymbol);
18846
18847 __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Add(&prop->issetStmt->__anon1.compound.context->symbols, (struct __ecereNameSpace__ecere__sys__BTNode *)thisSymbol);
18848 }
18849 curExternal = prop->symbol ? prop->symbol->__anon2.__anon2.externalIsSet : (((void *)0));
18850 ProcessStatement(prop->issetStmt);
18851 }
18852 thisClass = (((void *)0));
18853 }
18854 else if(def->type == 4 && def->__anon1.propertyWatch)
18855 {
18856 struct PropertyWatch * propertyWatch = def->__anon1.propertyWatch;
18857
18858 thisClass = regClass;
18859 if(propertyWatch->compound)
18860 {
18861 struct Symbol * thisSymbol = (thisSymbol = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol), thisSymbol->string = __ecereNameSpace__ecere__sys__CopyString("this"), thisSymbol->type = regClass ? MkClassType(regClass->fullName) : (((void *)0)), thisSymbol);
18862
18863 __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Add(&propertyWatch->compound->__anon1.compound.context->symbols, (struct __ecereNameSpace__ecere__sys__BTNode *)thisSymbol);
18864 curExternal = (((void *)0));
18865 ProcessStatement(propertyWatch->compound);
18866 }
18867 thisClass = (((void *)0));
18868 }
18869 }
18870 }
18871
18872 void DeclareFunctionUtil(const char * s)
18873 {
18874 struct __ecereNameSpace__ecere__com__GlobalFunction * function = __ecereNameSpace__ecere__com__eSystem_FindFunction(privateModule, s);
18875
18876 if(function)
18877 {
18878 char name[1024];
18879
18880 name[0] = (char)0;
18881 if(((struct __ecereNameSpace__ecere__com__Module *)(((char *)function->module + structSize_Instance)))->importType != 1 && (!function->dataType || !function->dataType->dllExport))
18882 strcpy(name, "__ecereFunction_");
18883 FullClassNameCat(name, s, 0);
18884 DeclareFunction(function, name);
18885 }
18886 }
18887
18888 extern struct __ecereNameSpace__ecere__com__Instance * GetPrivateModule(void);
18889
18890 void ComputeDataTypes()
18891 {
18892 struct External * external;
18893 struct External * temp = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_External);
18894 struct External * after = (((void *)0));
18895
18896 currentClass = (((void *)0));
18897 containerClass = __ecereNameSpace__ecere__com__eSystem_FindClass(GetPrivateModule(), "Container");
18898 for(external = (*ast).first; external; external = external->next)
18899 {
18900 if(external->type == 1)
18901 {
18902 struct Declaration * decl = external->__anon1.declaration;
18903
18904 if(decl)
18905 {
18906 struct __ecereNameSpace__ecere__sys__OldList * decls = decl->__anon1.__anon1.declarators;
18907
18908 if(decls)
18909 {
18910 struct InitDeclarator * initDecl = (*decls).first;
18911
18912 if(initDecl)
18913 {
18914 struct Declarator * declarator = initDecl->declarator;
18915
18916 if(declarator && declarator->type == 1)
18917 {
18918 struct Identifier * id = declarator->__anon1.identifier;
18919
18920 if(id && id->string)
18921 {
18922 if(!strcmp(id->string, "uintptr_t") || !strcmp(id->string, "intptr_t") || !strcmp(id->string, "size_t") || !strcmp(id->string, "ssize_t"))
18923 {
18924 external->symbol->id = -1001, external->symbol->idCode = -1001;
18925 after = external;
18926 }
18927 }
18928 }
18929 }
18930 }
18931 }
18932 }
18933 }
18934 {
18935 struct External * e = MkExternalDeclaration(MkDeclaration(MkListOne(MkStructOrUnion(3, MkIdentifier("__ecereNameSpace__ecere__com__Instance"), (((void *)0)))), (((void *)0))));
18936
18937 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*ast), after, e);
18938 after = e;
18939 }
18940 temp->symbol = __extension__ ({
18941 struct Symbol * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol);
18942
18943 __ecereInstance1->id = -1000, __ecereInstance1->idCode = -1000, __ecereInstance1;
18944 });
18945 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*ast), after, temp);
18946 curExternal = temp;
18947 DeclareFunctionUtil("eSystem_New");
18948 DeclareFunctionUtil("eSystem_New0");
18949 DeclareFunctionUtil("eSystem_Renew");
18950 DeclareFunctionUtil("eSystem_Renew0");
18951 DeclareFunctionUtil("eSystem_Delete");
18952 DeclareFunctionUtil("eClass_GetProperty");
18953 DeclareFunctionUtil("eClass_SetProperty");
18954 DeclareFunctionUtil("eInstance_FireSelfWatchers");
18955 DeclareFunctionUtil("eInstance_SetMethod");
18956 DeclareFunctionUtil("eInstance_IncRef");
18957 DeclareFunctionUtil("eInstance_StopWatching");
18958 DeclareFunctionUtil("eInstance_Watch");
18959 DeclareFunctionUtil("eInstance_FireWatchers");
18960 DeclareStruct("ecere::com::Class", 0);
18961 DeclareStruct("ecere::com::Instance", 0);
18962 DeclareStruct("ecere::com::Property", 0);
18963 DeclareStruct("ecere::com::DataMember", 0);
18964 DeclareStruct("ecere::com::Method", 0);
18965 DeclareStruct("ecere::com::SerialBuffer", 0);
18966 DeclareStruct("ecere::com::ClassTemplateArgument", 0);
18967 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Remove((&*ast), temp);
18968 for(external = (*ast).first; external; external = external->next)
18969 {
18970 afterExternal = curExternal = external;
18971 if(external->type == 0)
18972 {
18973 currentClass = external->__anon1.function->_class;
18974 ProcessFunction(external->__anon1.function);
18975 }
18976 else if(external->type == 1)
18977 {
18978 currentClass = (((void *)0));
18979 if(external->__anon1.declaration)
18980 ProcessDeclaration(external->__anon1.declaration);
18981 }
18982 else if(external->type == 2)
18983 {
18984 struct ClassDefinition * _class = external->__anon1._class;
18985
18986 currentClass = external->symbol->__anon1.registered;
18987 if(_class->definitions)
18988 {
18989 ProcessClass(_class->definitions, _class->symbol);
18990 }
18991 if(inCompiler)
18992 {
18993 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Remove((&*ast), external);
18994 ((external ? (__ecereClass_External->Destructor ? __ecereClass_External->Destructor((void *)external) : 0, __ecereNameSpace__ecere__com__eSystem_Delete(external)) : 0), external = 0);
18995 }
18996 }
18997 else if(external->type == 4)
18998 {
18999 thisNameSpace = external->__anon1.id->string;
19000 }
19001 }
19002 currentClass = (((void *)0));
19003 thisNameSpace = (((void *)0));
19004 curExternal = (((void *)0));
19005 ((temp->symbol ? (__ecereClass_Symbol->Destructor ? __ecereClass_Symbol->Destructor((void *)temp->symbol) : 0, __ecereNameSpace__ecere__com__eSystem_Delete(temp->symbol)) : 0), temp->symbol = 0);
19006 ((temp ? (__ecereClass_External->Destructor ? __ecereClass_External->Destructor((void *)temp) : 0, __ecereNameSpace__ecere__com__eSystem_Delete(temp)) : 0), temp = 0);
19007 }
19008
19009 extern struct __ecereNameSpace__ecere__com__GlobalFunction * __ecereNameSpace__ecere__com__eSystem_RegisterFunction(const char *  name, const char *  type, void *  func, struct __ecereNameSpace__ecere__com__Instance * module, int declMode);
19010
19011 extern struct __ecereNameSpace__ecere__com__Class * __ecereNameSpace__ecere__com__eSystem_RegisterClass(int type, const char *  name, const char *  baseName, int size, int sizeClass, unsigned int (*  Constructor)(void * ), void (*  Destructor)(void * ), struct __ecereNameSpace__ecere__com__Instance * module, int declMode, int inheritanceAccess);
19012
19013 extern struct __ecereNameSpace__ecere__com__Instance * __thisModule;
19014
19015 void __ecereRegisterModule_pass15(struct __ecereNameSpace__ecere__com__Instance * module)
19016 {
19017 struct __ecereNameSpace__ecere__com__Class __attribute__((unused)) * class;
19018
19019 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("SetYydebug", "void SetYydebug(bool b)", SetYydebug, module, 1);
19020 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("SetThisClass", "void SetThisClass(ecere::com::Class c)", SetThisClass, module, 1);
19021 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("GetThisClass", "ecere::com::Class GetThisClass(void)", GetThisClass, module, 1);
19022 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("PrintExpression", "void PrintExpression(Expression exp, char * string)", PrintExpression, module, 1);
19023 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("ProcessTemplateParameterType", "Type ProcessTemplateParameterType(TemplateParameter param)", ProcessTemplateParameterType, module, 2);
19024 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("NeedCast", "bool NeedCast(Type type1, Type type2)", NeedCast, module, 2);
19025 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("PrintInt", "char * PrintInt(int64 result)", PrintInt, module, 1);
19026 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("PrintUInt", "char * PrintUInt(uint64 result)", PrintUInt, module, 1);
19027 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("PrintInt64", "char * PrintInt64(int64 result)", PrintInt64, module, 1);
19028 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("PrintUInt64", "char * PrintUInt64(uint64 result)", PrintUInt64, module, 1);
19029 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("PrintHexUInt", "char * PrintHexUInt(uint64 result)", PrintHexUInt, module, 1);
19030 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("PrintHexUInt64", "char * PrintHexUInt64(uint64 result)", PrintHexUInt64, module, 1);
19031 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("PrintShort", "char * PrintShort(short result)", PrintShort, module, 1);
19032 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("PrintUShort", "char * PrintUShort(uint16 result)", PrintUShort, module, 1);
19033 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("PrintChar", "char * PrintChar(char result)", PrintChar, module, 1);
19034 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("PrintUChar", "char * PrintUChar(byte result)", PrintUChar, module, 1);
19035 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("PrintFloat", "char * PrintFloat(float result)", PrintFloat, module, 1);
19036 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("PrintDouble", "char * PrintDouble(double result)", PrintDouble, module, 1);
19037 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("GetOpInt", "bool GetOpInt(Operand op2, int * value2)", GetOpInt, module, 1);
19038 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("GetInt", "bool GetInt(Expression exp, int * value2)", GetInt, module, 1);
19039 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("GetOpUInt", "bool GetOpUInt(Operand op2, uint * value2)", GetOpUInt, module, 1);
19040 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("GetUInt", "bool GetUInt(Expression exp, uint * value2)", GetUInt, module, 1);
19041 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("GetOpInt64", "bool GetOpInt64(Operand op2, int64 * value2)", GetOpInt64, module, 1);
19042 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("GetInt64", "bool GetInt64(Expression exp, int64 * value2)", GetInt64, module, 1);
19043 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("GetOpUInt64", "bool GetOpUInt64(Operand op2, uint64 * value2)", GetOpUInt64, module, 1);
19044 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("GetUInt64", "bool GetUInt64(Expression exp, uint64 * value2)", GetUInt64, module, 1);
19045 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("GetOpIntPtr", "bool GetOpIntPtr(Operand op2, intptr * value2)", GetOpIntPtr, module, 1);
19046 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("GetIntPtr", "bool GetIntPtr(Expression exp, intptr * value2)", GetIntPtr, module, 1);
19047 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("GetOpUIntPtr", "bool GetOpUIntPtr(Operand op2, uintptr * value2)", GetOpUIntPtr, module, 1);
19048 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("GetUIntPtr", "bool GetUIntPtr(Expression exp, uintptr * value2)", GetUIntPtr, module, 1);
19049 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("GetOpIntSize", "bool GetOpIntSize(Operand op2, intsize * value2)", GetOpIntSize, module, 1);
19050 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("GetIntSize", "bool GetIntSize(Expression exp, intsize * value2)", GetIntSize, module, 1);
19051 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("GetOpUIntSize", "bool GetOpUIntSize(Operand op2, uintsize * value2)", GetOpUIntSize, module, 1);
19052 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("GetUIntSize", "bool GetUIntSize(Expression exp, uintsize * value2)", GetUIntSize, module, 1);
19053 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("GetOpShort", "bool GetOpShort(Operand op2, short * value2)", GetOpShort, module, 1);
19054 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("GetShort", "bool GetShort(Expression exp, short * value2)", GetShort, module, 1);
19055 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("GetOpUShort", "bool GetOpUShort(Operand op2, uint16 * value2)", GetOpUShort, module, 1);
19056 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("GetUShort", "bool GetUShort(Expression exp, uint16 * value2)", GetUShort, module, 1);
19057 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("GetOpChar", "bool GetOpChar(Operand op2, char * value2)", GetOpChar, module, 1);
19058 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("GetChar", "bool GetChar(Expression exp, char * value2)", GetChar, module, 1);
19059 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("GetOpUChar", "bool GetOpUChar(Operand op2, byte * value2)", GetOpUChar, module, 1);
19060 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("GetUChar", "bool GetUChar(Expression exp, byte * value2)", GetUChar, module, 1);
19061 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("GetOpFloat", "bool GetOpFloat(Operand op2, float * value2)", GetOpFloat, module, 1);
19062 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("GetFloat", "bool GetFloat(Expression exp, float * value2)", GetFloat, module, 1);
19063 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("GetOpDouble", "bool GetOpDouble(Operand op2, double * value2)", GetOpDouble, module, 1);
19064 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("GetDouble", "bool GetDouble(Expression exp, double * value2)", GetDouble, module, 1);
19065 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("ComputeClassMembers", "void ComputeClassMembers(ecere::com::Class _class, bool isMember)", ComputeClassMembers, module, 2);
19066 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("ComputeModuleClasses", "void ComputeModuleClasses(ecere::com::Module module)", ComputeModuleClasses, module, 1);
19067 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("ComputeTypeSize", "int ComputeTypeSize(Type type)", ComputeTypeSize, module, 1);
19068 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("AddMembers", "int AddMembers(ecere::sys::OldList * declarations, ecere::com::Class _class, bool isMember, uint * retSize, ecere::com::Class topClass, bool * addedPadding)", AddMembers, module, 2);
19069 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("DeclareStruct", "void DeclareStruct(const char * name, bool skipNoHead)", DeclareStruct, module, 2);
19070 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("DeclareProperty", "void DeclareProperty(ecere::com::Property prop, char * setName, char * getName)", DeclareProperty, module, 2);
19071 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("Dereference", "Type Dereference(Type source)", Dereference, module, 1);
19072 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("ProcessMemberInitData", "void ProcessMemberInitData(MemberInit member, ecere::com::Class _class, ecere::com::Class * curClass, ecere::com::DataMember * curMember, ecere::com::DataMember * subMemberStack, int * subMemberStackPos)", ProcessMemberInitData, module, 2);
19073 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("ProcessInstantiationType", "void ProcessInstantiationType(Instantiation inst)", ProcessInstantiationType, module, 2);
19074 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("FindTemplateArg", "ecere::com::ClassTemplateArgument * FindTemplateArg(ecere::com::Class _class, TemplateParameter param)", FindTemplateArg, module, 2);
19075 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("SetupTemplatesContext", "Context SetupTemplatesContext(ecere::com::Class _class)", SetupTemplatesContext, module, 1);
19076 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("FinishTemplatesContext", "void FinishTemplatesContext(Context context)", FinishTemplatesContext, module, 1);
19077 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("ProcessMethodType", "void ProcessMethodType(ecere::com::Method method)", ProcessMethodType, module, 1);
19078 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("ProcessPropertyType", "void ProcessPropertyType(ecere::com::Property prop)", ProcessPropertyType, module, 1);
19079 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("DeclareMethod", "void DeclareMethod(ecere::com::Method method, const char * name)", DeclareMethod, module, 1);
19080 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("ReplaceThisClass", "char * ReplaceThisClass(ecere::com::Class _class)", ReplaceThisClass, module, 2);
19081 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("ReplaceThisClassType", "Type ReplaceThisClassType(ecere::com::Class _class)", ReplaceThisClassType, module, 2);
19082 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("ReplaceThisClassSpecifiers", "void ReplaceThisClassSpecifiers(ecere::sys::OldList specs, ecere::com::Class _class)", ReplaceThisClassSpecifiers, module, 2);
19083 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("DeclareFunction", "bool DeclareFunction(ecere::com::GlobalFunction function, char * name)", DeclareFunction, module, 2);
19084 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("DeclareGlobalData", "void DeclareGlobalData(GlobalData data)", DeclareGlobalData, module, 2);
19085 class = __ecereNameSpace__ecere__com__eSystem_RegisterClass(5, "Conversion", 0, sizeof(struct Conversion), 0, (void *)0, (void *)0, module, 2, 1);
19086 if(((struct __ecereNameSpace__ecere__com__Module *)(((char *)module + structSize_Instance)))->application == ((struct __ecereNameSpace__ecere__com__Module *)(((char *)__thisModule + structSize_Instance)))->application && class)
19087 __ecereClass_Conversion = class;
19088 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("MatchTypes", "bool MatchTypes(Type source, Type dest, ecere::sys::OldList conversions, ecere::com::Class owningClassSource, ecere::com::Class owningClassDest, bool doConversion, bool enumBaseType, bool acceptReversedParams, bool isConversionExploration, bool warnConst)", MatchTypes, module, 1);
19089 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("MatchWithEnums_NameSpace", "bool MatchWithEnums_NameSpace(ecere::com::NameSpace nameSpace, Expression sourceExp, Type dest, char * string, ecere::sys::OldList conversions)", MatchWithEnums_NameSpace, module, 2);
19090 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("ModuleVisibility", "bool ModuleVisibility(ecere::com::Module searchIn, ecere::com::Module searchFor)", ModuleVisibility, module, 1);
19091 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("MatchWithEnums_Module", "bool MatchWithEnums_Module(ecere::com::Module mainModule, Expression sourceExp, Type dest, char * string, ecere::sys::OldList conversions)", MatchWithEnums_Module, module, 2);
19092 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("MatchTypeExpression", "bool MatchTypeExpression(Expression sourceExp, Type dest, ecere::sys::OldList conversions, bool skipUnitBla, bool warnConst)", MatchTypeExpression, module, 2);
19093 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("ReadString", "void ReadString(char * output, char * string)", ReadString, module, 1);
19094 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("UnescapeString", "int UnescapeString(char * d, char * s, int len)", UnescapeString, module, 1);
19095 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("OffsetEscapedString", "char * OffsetEscapedString(char * s, int len, int offset)", OffsetEscapedString, module, 1);
19096 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("GetOperand", "Operand GetOperand(Expression exp)", GetOperand, module, 1);
19097 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("PopulateInstance", "void PopulateInstance(Instantiation inst)", PopulateInstance, module, 1);
19098 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("ComputeInstantiation", "void ComputeInstantiation(Expression exp)", ComputeInstantiation, module, 1);
19099 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("CallOperator", "void CallOperator(Expression exp, Expression exp1, Expression exp2, Operand op1, Operand op2)", CallOperator, module, 1);
19100 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("ComputeExpression", "void ComputeExpression(Expression exp)", ComputeExpression, module, 1);
19101 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("CheckTemplateTypes", "void CheckTemplateTypes(Expression exp)", CheckTemplateTypes, module, 1);
19102 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("FindSymbol", "Symbol FindSymbol(const char * name, Context startContext, Context endContext, bool isStruct, bool globalNameSpace)", FindSymbol, module, 1);
19103 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("PrintType", "void PrintType(Type type, char * string, bool printName, bool fullName)", PrintType, module, 1);
19104 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("PrintTypeNoConst", "void PrintTypeNoConst(Type type, char * string, bool printName, bool fullName)", PrintTypeNoConst, module, 1);
19105 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("FindMemberAndOffset", "Type FindMemberAndOffset(Type type, char * string, uint * offset)", FindMemberAndOffset, module, 1);
19106 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("GetParseError", "bool GetParseError(void)", GetParseError, module, 1);
19107 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("ParseExpressionString", "Expression ParseExpressionString(char * expression)", ParseExpressionString, module, 1);
19108 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("ReplaceExpContents", "void ReplaceExpContents(Expression checkedExp, Expression newExp)", ReplaceExpContents, module, 1);
19109 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("ApplyAnyObjectLogic", "void ApplyAnyObjectLogic(Expression e)", ApplyAnyObjectLogic, module, 1);
19110 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("ApplyLocation", "void ApplyLocation(Expression exp, Location loc)", ApplyLocation, module, 1);
19111 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("ProcessExpressionType", "void ProcessExpressionType(Expression exp)", ProcessExpressionType, module, 1);
19112 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("DeclareFunctionUtil", "void DeclareFunctionUtil(const String s)", DeclareFunctionUtil, module, 1);
19113 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("ComputeDataTypes", "void ComputeDataTypes(void)", ComputeDataTypes, module, 1);
19114 }
19115
19116 void __ecereUnregisterModule_pass15(struct __ecereNameSpace__ecere__com__Instance * module)
19117 {
19118
19119 }
19120