compiler/pass15; ide/debugger: Fixed evaluation of class("abc" + 1) and indexing...
[sdk] / compiler / bootstrap / libec / bootstrap / pass15.c
1 /* Code generated from eC source file: pass15.ec */
2 #if defined(__GNUC__)
3 typedef long long int64;
4 typedef unsigned long long uint64;
5 #ifndef _WIN32
6 #define __declspec(x)
7 #endif
8 #elif defined(__TINYC__)
9 #include <stdarg.h>
10 #define __builtin_va_list va_list
11 #define __builtin_va_start va_start
12 #define __builtin_va_end va_end
13 #ifdef _WIN32
14 #define strcasecmp stricmp
15 #define strncasecmp strnicmp
16 #define __declspec(x) __attribute__((x))
17 #else
18 #define __declspec(x)
19 #endif
20 typedef long long int64;
21 typedef unsigned long long uint64;
22 #else
23 typedef __int64 int64;
24 typedef unsigned __int64 uint64;
25 #endif
26 #ifdef __BIG_ENDIAN__
27 #define __ENDIAN_PAD(x) (8 - (x))
28 #else
29 #define __ENDIAN_PAD(x) 0
30 #endif
31 #include <stdint.h>
32 #include <sys/types.h>
33
34 #if /*defined(_W64) || */(defined(__WORDSIZE) && __WORDSIZE == 8) || defined(__x86_64__)
35 #define _64BIT 1
36 #else
37 #define _64BIT 0
38 #endif
39
40 #define arch_PointerSize                  sizeof(void *)
41 #define structSize_Instance               (_64BIT ? 24 : 12)
42 #define structSize_Module                 (_64BIT ? 560 : 300)
43 #define structSize_NamedLink              (_64BIT ? 32 : 16)
44
45 extern void *  __ecereNameSpace__ecere__com__eSystem_New(unsigned int size);
46
47 extern void *  __ecereNameSpace__ecere__com__eSystem_New0(unsigned int size);
48
49 extern void *  __ecereNameSpace__ecere__com__eSystem_Renew(void *  memory, unsigned int size);
50
51 extern void *  __ecereNameSpace__ecere__com__eSystem_Renew0(void *  memory, unsigned int size);
52
53 extern void __ecereNameSpace__ecere__com__eSystem_Delete(void *  memory);
54
55 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__sys__BTNode;
56
57 struct __ecereNameSpace__ecere__sys__BTNode;
58
59 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__sys__BinaryTree;
60
61 struct __ecereNameSpace__ecere__sys__BinaryTree
62 {
63 struct __ecereNameSpace__ecere__sys__BTNode * root;
64 int count;
65 int (*  CompareKey)(struct __ecereNameSpace__ecere__sys__BinaryTree * tree, uintptr_t a, uintptr_t b);
66 void (*  FreeKey)(void *  key);
67 } __attribute__ ((gcc_struct));
68
69 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__sys__OldList;
70
71 struct __ecereNameSpace__ecere__sys__OldList
72 {
73 void *  first;
74 void *  last;
75 int count;
76 unsigned int offset;
77 unsigned int circ;
78 } __attribute__ ((gcc_struct));
79
80 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__Method;
81
82 struct __ecereNameSpace__ecere__com__Method
83 {
84 char *  name;
85 struct __ecereNameSpace__ecere__com__Method * parent;
86 struct __ecereNameSpace__ecere__com__Method * left;
87 struct __ecereNameSpace__ecere__com__Method * right;
88 int depth;
89 int (*  function)();
90 int vid;
91 int type;
92 struct __ecereNameSpace__ecere__com__Class * _class;
93 void *  symbol;
94 char *  dataTypeString;
95 struct Type * dataType;
96 int memberAccess;
97 } __attribute__ ((gcc_struct));
98
99 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__Property;
100
101 struct __ecereNameSpace__ecere__com__Property
102 {
103 struct __ecereNameSpace__ecere__com__Property * prev;
104 struct __ecereNameSpace__ecere__com__Property * next;
105 char *  name;
106 unsigned int isProperty;
107 int memberAccess;
108 int id;
109 struct __ecereNameSpace__ecere__com__Class * _class;
110 char *  dataTypeString;
111 struct __ecereNameSpace__ecere__com__Class * dataTypeClass;
112 struct Type * dataType;
113 void (*  Set)(void * , int);
114 int (*  Get)(void * );
115 unsigned int (*  IsSet)(void * );
116 void *  data;
117 void *  symbol;
118 int vid;
119 unsigned int conversion;
120 unsigned int watcherOffset;
121 char *  category;
122 unsigned int compiled;
123 unsigned int selfWatchable;
124 unsigned int isWatchable;
125 } __attribute__ ((gcc_struct));
126
127 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_CodePosition;
128
129 struct CodePosition
130 {
131 int line;
132 int charPos;
133 int pos;
134 int included;
135 } __attribute__ ((gcc_struct));
136
137 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Location;
138
139 struct Location
140 {
141 struct CodePosition start;
142 struct CodePosition end;
143 } __attribute__ ((gcc_struct));
144
145 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Attrib;
146
147 struct Attrib;
148
149 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_ExtDecl;
150
151 struct ExtDecl
152 {
153 struct Location loc;
154 int type;
155 union
156 {
157 char * s;
158 struct Attrib * attr;
159 } __attribute__ ((gcc_struct));
160 } __attribute__ ((gcc_struct));
161
162 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_ClassDefinition;
163
164 struct ClassDefinition
165 {
166 struct ClassDefinition * prev;
167 struct ClassDefinition * next;
168 struct Location loc;
169 struct Specifier * _class;
170 struct __ecereNameSpace__ecere__sys__OldList *  baseSpecs;
171 struct __ecereNameSpace__ecere__sys__OldList *  definitions;
172 struct Symbol * symbol;
173 struct Location blockStart;
174 struct Location nameLoc;
175 int endid;
176 int declMode;
177 unsigned int deleteWatchable;
178 } __attribute__ ((gcc_struct));
179
180 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Context;
181
182 struct Context
183 {
184 struct Context * parent;
185 struct __ecereNameSpace__ecere__sys__BinaryTree types;
186 struct __ecereNameSpace__ecere__sys__BinaryTree classes;
187 struct __ecereNameSpace__ecere__sys__BinaryTree symbols;
188 struct __ecereNameSpace__ecere__sys__BinaryTree structSymbols;
189 int nextID;
190 int simpleID;
191 struct __ecereNameSpace__ecere__sys__BinaryTree templateTypes;
192 struct ClassDefinition * classDef;
193 unsigned int templateTypesOnly;
194 unsigned int hasNameSpace;
195 } __attribute__ ((gcc_struct));
196
197 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Instantiation;
198
199 struct Instantiation
200 {
201 struct Instantiation * prev;
202 struct Instantiation * next;
203 struct Location loc;
204 struct Specifier * _class;
205 struct Expression * exp;
206 struct __ecereNameSpace__ecere__sys__OldList *  members;
207 struct Symbol * symbol;
208 unsigned int fullSet;
209 unsigned int isConstant;
210 unsigned char *  data;
211 struct Location nameLoc;
212 struct Location insideLoc;
213 unsigned int built;
214 } __attribute__ ((gcc_struct));
215
216 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Declaration;
217
218 struct Declaration
219 {
220 struct Declaration * prev;
221 struct Declaration * next;
222 struct Location loc;
223 int type;
224 union
225 {
226 struct
227 {
228 struct __ecereNameSpace__ecere__sys__OldList *  specifiers;
229 struct __ecereNameSpace__ecere__sys__OldList *  declarators;
230 } __attribute__ ((gcc_struct));
231 struct Instantiation * inst;
232 struct
233 {
234 struct Identifier * id;
235 struct Expression * exp;
236 } __attribute__ ((gcc_struct));
237 } __attribute__ ((gcc_struct));
238 struct Specifier * extStorage;
239 struct Symbol * symbol;
240 int declMode;
241 } __attribute__ ((gcc_struct));
242
243 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Statement;
244
245 struct Statement
246 {
247 struct Statement * prev;
248 struct Statement * next;
249 struct Location loc;
250 int type;
251 union
252 {
253 struct __ecereNameSpace__ecere__sys__OldList *  expressions;
254 struct
255 {
256 struct Identifier * id;
257 struct Statement * stmt;
258 } __attribute__ ((gcc_struct)) labeled;
259 struct
260 {
261 struct Expression * exp;
262 struct Statement * stmt;
263 } __attribute__ ((gcc_struct)) caseStmt;
264 struct
265 {
266 struct __ecereNameSpace__ecere__sys__OldList * declarations;
267 struct __ecereNameSpace__ecere__sys__OldList * statements;
268 struct Context * context;
269 unsigned int isSwitch;
270 } __attribute__ ((gcc_struct)) compound;
271 struct
272 {
273 struct __ecereNameSpace__ecere__sys__OldList * exp;
274 struct Statement * stmt;
275 struct Statement * elseStmt;
276 } __attribute__ ((gcc_struct)) ifStmt;
277 struct
278 {
279 struct __ecereNameSpace__ecere__sys__OldList * exp;
280 struct Statement * stmt;
281 } __attribute__ ((gcc_struct)) switchStmt;
282 struct
283 {
284 struct __ecereNameSpace__ecere__sys__OldList * exp;
285 struct Statement * stmt;
286 } __attribute__ ((gcc_struct)) whileStmt;
287 struct
288 {
289 struct __ecereNameSpace__ecere__sys__OldList * exp;
290 struct Statement * stmt;
291 } __attribute__ ((gcc_struct)) doWhile;
292 struct
293 {
294 struct Statement * init;
295 struct Statement * check;
296 struct __ecereNameSpace__ecere__sys__OldList * increment;
297 struct Statement * stmt;
298 } __attribute__ ((gcc_struct)) forStmt;
299 struct
300 {
301 struct Identifier * id;
302 } __attribute__ ((gcc_struct)) gotoStmt;
303 struct
304 {
305 struct Specifier * spec;
306 char * statements;
307 struct __ecereNameSpace__ecere__sys__OldList * inputFields;
308 struct __ecereNameSpace__ecere__sys__OldList * outputFields;
309 struct __ecereNameSpace__ecere__sys__OldList * clobberedFields;
310 } __attribute__ ((gcc_struct)) asmStmt;
311 struct
312 {
313 struct Expression * watcher;
314 struct Expression * object;
315 struct __ecereNameSpace__ecere__sys__OldList * watches;
316 } __attribute__ ((gcc_struct)) _watch;
317 struct
318 {
319 struct Identifier * id;
320 struct __ecereNameSpace__ecere__sys__OldList * exp;
321 struct __ecereNameSpace__ecere__sys__OldList * filter;
322 struct Statement * stmt;
323 } __attribute__ ((gcc_struct)) forEachStmt;
324 struct Declaration * decl;
325 } __attribute__ ((gcc_struct));
326 } __attribute__ ((gcc_struct));
327
328 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_TypeName;
329
330 struct TypeName
331 {
332 struct TypeName * prev;
333 struct TypeName * next;
334 struct Location loc;
335 struct __ecereNameSpace__ecere__sys__OldList *  qualifiers;
336 struct Declarator * declarator;
337 int classObjectType;
338 struct Expression * bitCount;
339 } __attribute__ ((gcc_struct));
340
341 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Initializer;
342
343 struct Initializer
344 {
345 struct Initializer * prev;
346 struct Initializer * next;
347 struct Location loc;
348 int type;
349 union
350 {
351 struct Expression * exp;
352 struct __ecereNameSpace__ecere__sys__OldList *  list;
353 } __attribute__ ((gcc_struct));
354 unsigned int isConstant;
355 } __attribute__ ((gcc_struct));
356
357 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__DataValue;
358
359 struct __ecereNameSpace__ecere__com__DataValue
360 {
361 union
362 {
363 char c;
364 unsigned char uc;
365 short s;
366 unsigned short us;
367 int i;
368 unsigned int ui;
369 void *  p;
370 float f;
371 double d;
372 long long i64;
373 uint64 ui64;
374 } __attribute__ ((gcc_struct));
375 } __attribute__ ((gcc_struct));
376
377 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Expression;
378
379 struct Expression
380 {
381 struct Expression * prev;
382 struct Expression * next;
383 struct Location loc;
384 int type;
385 union
386 {
387 struct
388 {
389 char *  constant;
390 struct Identifier * identifier;
391 } __attribute__ ((gcc_struct));
392 struct Statement * compound;
393 struct Instantiation * instance;
394 struct
395 {
396 char *  string;
397 unsigned int intlString;
398 } __attribute__ ((gcc_struct));
399 struct __ecereNameSpace__ecere__sys__OldList *  list;
400 struct
401 {
402 struct __ecereNameSpace__ecere__sys__OldList * specifiers;
403 struct Declarator * decl;
404 } __attribute__ ((gcc_struct)) _classExp;
405 struct
406 {
407 struct Identifier * id;
408 } __attribute__ ((gcc_struct)) classData;
409 struct
410 {
411 struct Expression * exp;
412 struct __ecereNameSpace__ecere__sys__OldList * arguments;
413 struct Location argLoc;
414 } __attribute__ ((gcc_struct)) call;
415 struct
416 {
417 struct Expression * exp;
418 struct __ecereNameSpace__ecere__sys__OldList * index;
419 } __attribute__ ((gcc_struct)) index;
420 struct
421 {
422 struct Expression * exp;
423 struct Identifier * member;
424 int memberType;
425 unsigned int thisPtr;
426 } __attribute__ ((gcc_struct)) member;
427 struct
428 {
429 int op;
430 struct Expression * exp1;
431 struct Expression * exp2;
432 } __attribute__ ((gcc_struct)) op;
433 struct TypeName * typeName;
434 struct Specifier * _class;
435 struct
436 {
437 struct TypeName * typeName;
438 struct Expression * exp;
439 } __attribute__ ((gcc_struct)) cast;
440 struct
441 {
442 struct Expression * cond;
443 struct __ecereNameSpace__ecere__sys__OldList * exp;
444 struct Expression * elseExp;
445 } __attribute__ ((gcc_struct)) cond;
446 struct
447 {
448 struct TypeName * typeName;
449 struct Expression * size;
450 } __attribute__ ((gcc_struct)) _new;
451 struct
452 {
453 struct TypeName * typeName;
454 struct Expression * size;
455 struct Expression * exp;
456 } __attribute__ ((gcc_struct)) _renew;
457 struct
458 {
459 char * table;
460 struct Identifier * id;
461 } __attribute__ ((gcc_struct)) db;
462 struct
463 {
464 struct Expression * ds;
465 struct Expression * name;
466 } __attribute__ ((gcc_struct)) dbopen;
467 struct
468 {
469 struct TypeName * typeName;
470 struct Initializer * initializer;
471 } __attribute__ ((gcc_struct)) initializer;
472 struct
473 {
474 struct Expression * exp;
475 struct TypeName * typeName;
476 } __attribute__ ((gcc_struct)) vaArg;
477 } __attribute__ ((gcc_struct));
478 unsigned int debugValue;
479 struct __ecereNameSpace__ecere__com__DataValue val;
480 uint64 address;
481 unsigned int hasAddress;
482 struct Type * expType;
483 struct Type * destType;
484 unsigned int usage;
485 int tempCount;
486 unsigned int byReference;
487 unsigned int isConstant;
488 unsigned int addedThis;
489 unsigned int needCast;
490 unsigned int thisPtr;
491 } __attribute__ ((gcc_struct));
492
493 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_TemplateDatatype;
494
495 struct TemplateDatatype
496 {
497 struct __ecereNameSpace__ecere__sys__OldList *  specifiers;
498 struct Declarator * decl;
499 } __attribute__ ((gcc_struct));
500
501 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_TemplateArgument;
502
503 struct TemplateArgument;
504
505 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_TemplateParameter;
506
507 struct TemplateParameter
508 {
509 struct TemplateParameter * prev;
510 struct TemplateParameter * next;
511 struct Location loc;
512 int type;
513 struct Identifier * identifier;
514 union
515 {
516 struct TemplateDatatype * dataType;
517 int memberType;
518 } __attribute__ ((gcc_struct));
519 struct TemplateArgument * defaultArgument;
520 char *  dataTypeString;
521 struct Type * baseType;
522 } __attribute__ ((gcc_struct));
523
524 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Specifier;
525
526 struct Specifier
527 {
528 struct Specifier * prev;
529 struct Specifier * next;
530 struct Location loc;
531 int type;
532 union
533 {
534 int specifier;
535 struct
536 {
537 struct ExtDecl * extDecl;
538 char *  name;
539 struct Symbol * symbol;
540 struct __ecereNameSpace__ecere__sys__OldList *  templateArgs;
541 } __attribute__ ((gcc_struct));
542 struct
543 {
544 struct Identifier * id;
545 struct __ecereNameSpace__ecere__sys__OldList *  list;
546 struct __ecereNameSpace__ecere__sys__OldList *  baseSpecs;
547 struct __ecereNameSpace__ecere__sys__OldList *  definitions;
548 unsigned int addNameSpace;
549 struct Context * ctx;
550 struct ExtDecl * extDeclStruct;
551 } __attribute__ ((gcc_struct));
552 struct Expression * expression;
553 struct Specifier * _class;
554 struct TemplateParameter * templateParameter;
555 } __attribute__ ((gcc_struct));
556 } __attribute__ ((gcc_struct));
557
558 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Identifier;
559
560 struct Identifier
561 {
562 struct Identifier * prev;
563 struct Identifier * next;
564 struct Location loc;
565 struct Symbol * classSym;
566 struct Specifier * _class;
567 char *  string;
568 struct Identifier * badID;
569 } __attribute__ ((gcc_struct));
570
571 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Pointer;
572
573 struct Pointer;
574
575 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Declarator;
576
577 struct Declarator
578 {
579 struct Declarator * prev;
580 struct Declarator * next;
581 struct Location loc;
582 int type;
583 struct Symbol * symbol;
584 struct Declarator * declarator;
585 union
586 {
587 struct Identifier * identifier;
588 struct
589 {
590 struct Expression * exp;
591 struct Expression * posExp;
592 struct Attrib * attrib;
593 } __attribute__ ((gcc_struct)) structDecl;
594 struct
595 {
596 struct Expression * exp;
597 struct Specifier * enumClass;
598 } __attribute__ ((gcc_struct)) array;
599 struct
600 {
601 struct __ecereNameSpace__ecere__sys__OldList * parameters;
602 } __attribute__ ((gcc_struct)) function;
603 struct
604 {
605 struct Pointer * pointer;
606 } __attribute__ ((gcc_struct)) pointer;
607 struct
608 {
609 struct ExtDecl * extended;
610 } __attribute__ ((gcc_struct)) extended;
611 } __attribute__ ((gcc_struct));
612 } __attribute__ ((gcc_struct));
613
614 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_FunctionDefinition;
615
616 struct FunctionDefinition
617 {
618 struct FunctionDefinition * prev;
619 struct FunctionDefinition * next;
620 struct Location loc;
621 struct __ecereNameSpace__ecere__sys__OldList *  specifiers;
622 struct Declarator * declarator;
623 struct __ecereNameSpace__ecere__sys__OldList *  declarations;
624 struct Statement * body;
625 struct __ecereNameSpace__ecere__com__Class * _class;
626 struct __ecereNameSpace__ecere__sys__OldList attached;
627 int declMode;
628 struct Type * type;
629 struct Symbol * propSet;
630 int tempCount;
631 unsigned int propertyNoThis;
632 } __attribute__ ((gcc_struct));
633
634 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_DBTableDef;
635
636 struct DBTableDef;
637
638 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_External;
639
640 struct External
641 {
642 struct External * prev;
643 struct External * next;
644 struct Location loc;
645 int type;
646 struct Symbol * symbol;
647 union
648 {
649 struct FunctionDefinition * function;
650 struct ClassDefinition * _class;
651 struct Declaration * declaration;
652 char *  importString;
653 struct Identifier * id;
654 struct DBTableDef * table;
655 } __attribute__ ((gcc_struct));
656 int importType;
657 } __attribute__ ((gcc_struct));
658
659 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_ModuleImport;
660
661 struct ModuleImport
662 {
663 struct ModuleImport * prev;
664 struct ModuleImport * next;
665 char *  name;
666 struct __ecereNameSpace__ecere__sys__OldList classes;
667 struct __ecereNameSpace__ecere__sys__OldList functions;
668 int importType;
669 int importAccess;
670 } __attribute__ ((gcc_struct));
671
672 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_ClassImport;
673
674 struct ClassImport
675 {
676 struct ClassImport * prev;
677 struct ClassImport * next;
678 char *  name;
679 struct __ecereNameSpace__ecere__sys__OldList methods;
680 struct __ecereNameSpace__ecere__sys__OldList properties;
681 unsigned int itself;
682 unsigned int isRemote;
683 } __attribute__ ((gcc_struct));
684
685 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Symbol;
686
687 struct Symbol
688 {
689 char *  string;
690 struct Symbol * parent;
691 struct Symbol * left;
692 struct Symbol * right;
693 int depth;
694 struct Type * type;
695 union
696 {
697 struct __ecereNameSpace__ecere__com__Method * method;
698 struct __ecereNameSpace__ecere__com__Property * _property;
699 struct __ecereNameSpace__ecere__com__Class * registered;
700 } __attribute__ ((gcc_struct));
701 int id;
702 int idCode;
703 union
704 {
705 struct
706 {
707 struct External * pointerExternal;
708 struct External * structExternal;
709 } __attribute__ ((gcc_struct));
710 struct
711 {
712 struct External * externalGet;
713 struct External * externalSet;
714 struct External * externalPtr;
715 struct External * externalIsSet;
716 } __attribute__ ((gcc_struct));
717 struct
718 {
719 struct External * methodExternal;
720 struct External * methodCodeExternal;
721 } __attribute__ ((gcc_struct));
722 } __attribute__ ((gcc_struct));
723 unsigned int imported;
724 unsigned int declaredStructSym;
725 struct __ecereNameSpace__ecere__com__Class * _class;
726 unsigned int declaredStruct;
727 unsigned int needConstructor;
728 unsigned int needDestructor;
729 char *  constructorName;
730 char *  structName;
731 char *  className;
732 char *  destructorName;
733 struct ModuleImport * module;
734 struct ClassImport * _import;
735 struct Location nameLoc;
736 unsigned int isParam;
737 unsigned int isRemote;
738 unsigned int isStruct;
739 unsigned int fireWatchersDone;
740 int declaring;
741 unsigned int classData;
742 unsigned int isStatic;
743 char *  shortName;
744 struct __ecereNameSpace__ecere__sys__OldList *  templateParams;
745 struct __ecereNameSpace__ecere__sys__OldList templatedClasses;
746 struct Context * ctx;
747 int isIterator;
748 struct Expression * propCategory;
749 } __attribute__ ((gcc_struct));
750
751 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Type;
752
753 struct Type
754 {
755 struct Type * prev;
756 struct Type * next;
757 int refCount;
758 union
759 {
760 struct Symbol * _class;
761 struct
762 {
763 struct __ecereNameSpace__ecere__sys__OldList members;
764 char *  enumName;
765 } __attribute__ ((gcc_struct));
766 struct
767 {
768 struct Type * returnType;
769 struct __ecereNameSpace__ecere__sys__OldList params;
770 struct Symbol * thisClass;
771 unsigned int staticMethod;
772 struct TemplateParameter * thisClassTemplate;
773 } __attribute__ ((gcc_struct));
774 struct
775 {
776 struct __ecereNameSpace__ecere__com__Method * method;
777 struct __ecereNameSpace__ecere__com__Class * methodClass;
778 struct __ecereNameSpace__ecere__com__Class * usedClass;
779 } __attribute__ ((gcc_struct));
780 struct
781 {
782 struct Type * arrayType;
783 int arraySize;
784 struct Expression * arraySizeExp;
785 unsigned int freeExp;
786 struct Symbol * enumClass;
787 } __attribute__ ((gcc_struct));
788 struct Type * type;
789 struct TemplateParameter * templateParameter;
790 } __attribute__ ((gcc_struct));
791 int kind;
792 unsigned int size;
793 char *  name;
794 char *  typeName;
795 int classObjectType;
796 int alignment;
797 unsigned int offset;
798 int bitFieldCount;
799 int count;
800 unsigned int isSigned : 1;
801 unsigned int constant : 1;
802 unsigned int truth : 1;
803 unsigned int byReference : 1;
804 unsigned int extraParam : 1;
805 unsigned int directClassAccess : 1;
806 unsigned int computing : 1;
807 unsigned int keepCast : 1;
808 unsigned int passAsTemplate : 1;
809 unsigned int dllExport : 1;
810 unsigned int attrStdcall : 1;
811 unsigned int declaredWithStruct : 1;
812 unsigned int typedByReference : 1;
813 } __attribute__ ((gcc_struct));
814
815 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__Class;
816
817 struct __ecereNameSpace__ecere__com__Class
818 {
819 struct __ecereNameSpace__ecere__com__Class * prev;
820 struct __ecereNameSpace__ecere__com__Class * next;
821 char *  name;
822 int offset;
823 int structSize;
824 int (* *  _vTbl)();
825 int vTblSize;
826 int (*  Constructor)(struct __ecereNameSpace__ecere__com__Instance *);
827 void (*  Destructor)(struct __ecereNameSpace__ecere__com__Instance *);
828 int offsetClass;
829 int sizeClass;
830 struct __ecereNameSpace__ecere__com__Class * base;
831 struct __ecereNameSpace__ecere__sys__BinaryTree methods;
832 struct __ecereNameSpace__ecere__sys__BinaryTree members;
833 struct __ecereNameSpace__ecere__sys__BinaryTree prop;
834 struct __ecereNameSpace__ecere__sys__OldList membersAndProperties;
835 struct __ecereNameSpace__ecere__sys__BinaryTree classProperties;
836 struct __ecereNameSpace__ecere__sys__OldList derivatives;
837 int memberID;
838 int startMemberID;
839 int type;
840 struct __ecereNameSpace__ecere__com__Instance * module;
841 struct __ecereNameSpace__ecere__com__NameSpace *  nameSpace;
842 char *  dataTypeString;
843 struct Type * dataType;
844 int typeSize;
845 int defaultAlignment;
846 void (*  Initialize)();
847 int memberOffset;
848 struct __ecereNameSpace__ecere__sys__OldList selfWatchers;
849 char *  designerClass;
850 unsigned int noExpansion;
851 char *  defaultProperty;
852 unsigned int comRedefinition;
853 int count;
854 unsigned int isRemote;
855 unsigned int internalDecl;
856 void *  data;
857 unsigned int computeSize;
858 int structAlignment;
859 int destructionWatchOffset;
860 unsigned int fixed;
861 struct __ecereNameSpace__ecere__sys__OldList delayedCPValues;
862 int inheritanceAccess;
863 char *  fullName;
864 void *  symbol;
865 struct __ecereNameSpace__ecere__sys__OldList conversions;
866 struct __ecereNameSpace__ecere__sys__OldList templateParams;
867 struct __ecereNameSpace__ecere__com__ClassTemplateArgument *  templateArgs;
868 struct __ecereNameSpace__ecere__com__Class * templateClass;
869 struct __ecereNameSpace__ecere__sys__OldList templatized;
870 int numParams;
871 unsigned int isInstanceClass;
872 unsigned int byValueSystemClass;
873 } __attribute__ ((gcc_struct));
874
875 extern long long __ecereNameSpace__ecere__com__eClass_GetProperty(struct __ecereNameSpace__ecere__com__Class * _class, char *  name);
876
877 extern void __ecereNameSpace__ecere__com__eInstance_FireSelfWatchers(struct __ecereNameSpace__ecere__com__Instance * instance, struct __ecereNameSpace__ecere__com__Property * _property);
878
879 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__Instance;
880
881 struct __ecereNameSpace__ecere__com__Instance
882 {
883 int (* *  _vTbl)();
884 struct __ecereNameSpace__ecere__com__Class * _class;
885 int _refCount;
886 } __attribute__ ((gcc_struct));
887
888 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__DataMember;
889
890 struct __ecereNameSpace__ecere__com__DataMember
891 {
892 struct __ecereNameSpace__ecere__com__DataMember * prev;
893 struct __ecereNameSpace__ecere__com__DataMember * next;
894 char *  name;
895 unsigned int isProperty;
896 int memberAccess;
897 int id;
898 struct __ecereNameSpace__ecere__com__Class * _class;
899 char *  dataTypeString;
900 struct __ecereNameSpace__ecere__com__Class * dataTypeClass;
901 struct Type * dataType;
902 int type;
903 int offset;
904 int memberID;
905 struct __ecereNameSpace__ecere__sys__OldList members;
906 struct __ecereNameSpace__ecere__sys__BinaryTree membersAlpha;
907 int memberOffset;
908 int structAlignment;
909 } __attribute__ ((gcc_struct));
910
911 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__SerialBuffer;
912
913 struct __ecereNameSpace__ecere__com__SerialBuffer
914 {
915 unsigned char *  _buffer;
916 unsigned int count;
917 unsigned int _size;
918 unsigned int pos;
919 } __attribute__ ((gcc_struct));
920
921 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__ClassTemplateArgument;
922
923 struct __ecereNameSpace__ecere__com__ClassTemplateArgument
924 {
925 union
926 {
927 struct
928 {
929 char *  dataTypeString;
930 struct __ecereNameSpace__ecere__com__Class * dataTypeClass;
931 } __attribute__ ((gcc_struct));
932 struct __ecereNameSpace__ecere__com__DataValue expression;
933 struct
934 {
935 char *  memberString;
936 union
937 {
938 struct __ecereNameSpace__ecere__com__DataMember * member;
939 struct __ecereNameSpace__ecere__com__Property * prop;
940 struct __ecereNameSpace__ecere__com__Method * method;
941 } __attribute__ ((gcc_struct));
942 } __attribute__ ((gcc_struct));
943 } __attribute__ ((gcc_struct));
944 } __attribute__ ((gcc_struct));
945
946 void exit(int status);
947
948 void * calloc(size_t nmemb, size_t size);
949
950 void free(void * ptr);
951
952 void * malloc(size_t size);
953
954 void * realloc(void * ptr, size_t size);
955
956 long int strtol(const char * nptr, char ** endptr, int base);
957
958 long long int strtoll(const char * nptr, char ** endptr, int base);
959
960 unsigned long long int strtoull(const char * nptr, char ** endptr, int base);
961
962 enum yytokentype
963 {
964 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
965 };
966
967 typedef union YYSTYPE
968 {
969 int specifierType;
970 int i;
971 int declMode;
972 struct Identifier * id;
973 struct Expression * exp;
974 struct Specifier * specifier;
975 struct __ecereNameSpace__ecere__sys__OldList * list;
976 struct Enumerator * enumerator;
977 struct Declarator * declarator;
978 struct Pointer * pointer;
979 struct Initializer * initializer;
980 struct InitDeclarator * initDeclarator;
981 struct TypeName * typeName;
982 struct Declaration * declaration;
983 struct Statement * stmt;
984 struct FunctionDefinition * function;
985 struct External * external;
986 struct Context * context;
987 struct AsmField * asmField;
988 struct Attrib * attrib;
989 struct ExtDecl * extDecl;
990 struct Attribute * attribute;
991 struct Instantiation * instance;
992 struct MembersInit * membersInit;
993 struct MemberInit * memberInit;
994 struct ClassFunction * classFunction;
995 struct ClassDefinition * _class;
996 struct ClassDef * classDef;
997 struct PropertyDef * prop;
998 char * string;
999 struct Symbol * symbol;
1000 struct PropertyWatch * propertyWatch;
1001 struct TemplateParameter * templateParameter;
1002 struct TemplateArgument * templateArgument;
1003 struct TemplateDatatype * templateDatatype;
1004 struct DBTableEntry * dbtableEntry;
1005 struct DBIndexItem * dbindexItem;
1006 struct DBTableDef * dbtableDef;
1007 } __attribute__ ((gcc_struct)) YYSTYPE;
1008
1009 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Enumerator;
1010
1011 struct Enumerator
1012 {
1013 struct Enumerator * prev;
1014 struct Enumerator * next;
1015 struct Location loc;
1016 struct Identifier * id;
1017 struct Expression * exp;
1018 } __attribute__ ((gcc_struct));
1019
1020 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_InitDeclarator;
1021
1022 struct InitDeclarator
1023 {
1024 struct InitDeclarator * prev;
1025 struct InitDeclarator * next;
1026 struct Location loc;
1027 struct Declarator * declarator;
1028 struct Initializer * initializer;
1029 } __attribute__ ((gcc_struct));
1030
1031 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_AsmField;
1032
1033 struct AsmField
1034 {
1035 struct AsmField * prev;
1036 struct AsmField * next;
1037 struct Location loc;
1038 char *  command;
1039 struct Expression * expression;
1040 struct Identifier * symbolic;
1041 } __attribute__ ((gcc_struct));
1042
1043 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Attribute;
1044
1045 struct Attribute;
1046
1047 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_ClassFunction;
1048
1049 struct ClassFunction
1050 {
1051 struct ClassFunction * prev;
1052 struct ClassFunction * next;
1053 struct Location loc;
1054 struct __ecereNameSpace__ecere__sys__OldList *  specifiers;
1055 struct Declarator * declarator;
1056 struct __ecereNameSpace__ecere__sys__OldList *  declarations;
1057 struct Statement * body;
1058 struct __ecereNameSpace__ecere__com__Class * _class;
1059 struct __ecereNameSpace__ecere__sys__OldList attached;
1060 int declMode;
1061 struct Type * type;
1062 struct Symbol * propSet;
1063 unsigned int isVirtual;
1064 unsigned int isConstructor;
1065 unsigned int isDestructor;
1066 unsigned int dontMangle;
1067 int id;
1068 int idCode;
1069 } __attribute__ ((gcc_struct));
1070
1071 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_MembersInit;
1072
1073 struct MembersInit
1074 {
1075 struct MembersInit * prev;
1076 struct MembersInit * next;
1077 struct Location loc;
1078 int type;
1079 union
1080 {
1081 struct __ecereNameSpace__ecere__sys__OldList *  dataMembers;
1082 struct ClassFunction * function;
1083 } __attribute__ ((gcc_struct));
1084 } __attribute__ ((gcc_struct));
1085
1086 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_MemberInit;
1087
1088 struct MemberInit
1089 {
1090 struct MemberInit * prev;
1091 struct MemberInit * next;
1092 struct Location loc;
1093 struct Location realLoc;
1094 struct __ecereNameSpace__ecere__sys__OldList *  identifiers;
1095 struct Initializer * initializer;
1096 unsigned int used;
1097 unsigned int variable;
1098 unsigned int takeOutExp;
1099 } __attribute__ ((gcc_struct));
1100
1101 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_PropertyDef;
1102
1103 struct PropertyDef
1104 {
1105 struct PropertyDef * prev;
1106 struct PropertyDef * next;
1107 struct Location loc;
1108 struct __ecereNameSpace__ecere__sys__OldList *  specifiers;
1109 struct Declarator * declarator;
1110 struct Identifier * id;
1111 struct Statement * getStmt;
1112 struct Statement * setStmt;
1113 struct Statement * issetStmt;
1114 struct Symbol * symbol;
1115 struct Expression * category;
1116 struct
1117 {
1118 unsigned int conversion : 1;
1119 unsigned int isWatchable : 1;
1120 unsigned int isDBProp : 1;
1121 } __attribute__ ((gcc_struct));
1122 } __attribute__ ((gcc_struct));
1123
1124 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_PropertyWatch;
1125
1126 struct PropertyWatch
1127 {
1128 struct PropertyWatch * prev;
1129 struct PropertyWatch * next;
1130 struct Location loc;
1131 struct Statement * compound;
1132 struct __ecereNameSpace__ecere__sys__OldList *  properties;
1133 unsigned int deleteWatch;
1134 } __attribute__ ((gcc_struct));
1135
1136 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_ClassDef;
1137
1138 struct ClassDef
1139 {
1140 struct ClassDef * prev;
1141 struct ClassDef * next;
1142 struct Location loc;
1143 int type;
1144 union
1145 {
1146 struct Declaration * decl;
1147 struct ClassFunction * function;
1148 struct __ecereNameSpace__ecere__sys__OldList *  defProperties;
1149 struct PropertyDef * propertyDef;
1150 struct PropertyWatch * propertyWatch;
1151 char *  designer;
1152 struct Identifier * defaultProperty;
1153 struct
1154 {
1155 struct Identifier * id;
1156 struct Initializer * initializer;
1157 } __attribute__ ((gcc_struct));
1158 } __attribute__ ((gcc_struct));
1159 int memberAccess;
1160 void *  object;
1161 } __attribute__ ((gcc_struct));
1162
1163 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_DBTableEntry;
1164
1165 struct DBTableEntry;
1166
1167 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_DBIndexItem;
1168
1169 struct DBIndexItem;
1170
1171 extern YYSTYPE yylval;
1172
1173 extern struct Location yylloc;
1174
1175 extern struct __ecereNameSpace__ecere__sys__OldList * ast;
1176
1177 extern int returnCode;
1178
1179 extern struct Expression * parsedExpression;
1180
1181 extern unsigned int yydebug;
1182
1183 void SetYydebug(unsigned int b)
1184 {
1185 yydebug = b;
1186 }
1187
1188 extern unsigned int echoOn;
1189
1190 void resetScanner();
1191
1192 int propWatcherID;
1193
1194 int expression_yyparse();
1195
1196 static struct Statement * curCompound;
1197
1198 struct External * curExternal, * afterExternal;
1199
1200 static struct Type * curSwitchType;
1201
1202 static struct __ecereNameSpace__ecere__com__Class * currentClass;
1203
1204 struct __ecereNameSpace__ecere__com__Class * thisClass;
1205
1206 void SetThisClass(struct __ecereNameSpace__ecere__com__Class * c)
1207 {
1208 thisClass = c;
1209 }
1210
1211 struct __ecereNameSpace__ecere__com__Class * GetThisClass()
1212 {
1213 return thisClass;
1214 }
1215
1216 static char * thisNameSpace;
1217
1218 struct __ecereNameSpace__ecere__com__Class * containerClass;
1219
1220 unsigned int thisClassParams = 0x1;
1221
1222 unsigned int internalValueCounter;
1223
1224 extern void OutputExpression(struct Expression * exp, struct __ecereNameSpace__ecere__com__Instance * f);
1225
1226 extern size_t strlen(const char * );
1227
1228 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__sys__TempFile;
1229
1230 extern void *  __ecereNameSpace__ecere__com__eInstance_New(struct __ecereNameSpace__ecere__com__Class * _class);
1231
1232 int __ecereVMethodID___ecereNameSpace__ecere__sys__File_Seek;
1233
1234 int __ecereVMethodID___ecereNameSpace__ecere__sys__File_Read;
1235
1236 extern void __ecereNameSpace__ecere__com__eInstance_DecRef(struct __ecereNameSpace__ecere__com__Instance * instance);
1237
1238 void PrintExpression(struct Expression * exp, char * string)
1239 {
1240 {
1241 struct __ecereNameSpace__ecere__com__Instance * f = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass___ecereNameSpace__ecere__sys__TempFile);
1242 int count;
1243
1244 if(exp)
1245 OutputExpression(exp, f);
1246 ((unsigned int (*)(struct __ecereNameSpace__ecere__com__Instance *, int pos, int mode))__extension__ ({
1247 struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = f;
1248
1249 __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__sys__TempFile->_vTbl;
1250 })[__ecereVMethodID___ecereNameSpace__ecere__sys__File_Seek])(f, 0, 0);
1251 count = strlen(string);
1252 count += ((int (*)(struct __ecereNameSpace__ecere__com__Instance *, void *  buffer, unsigned int size, unsigned int count))__extension__ ({
1253 struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = f;
1254
1255 __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__sys__TempFile->_vTbl;
1256 })[__ecereVMethodID___ecereNameSpace__ecere__sys__File_Read])(f, string + count, 1, 1023);
1257 string[count] = '\0';
1258 (__ecereNameSpace__ecere__com__eInstance_DecRef(f), f = 0);
1259 }
1260 }
1261
1262 extern struct Type * ProcessTypeString(char *  string, unsigned int staticMethod);
1263
1264 extern struct Type * ProcessType(struct __ecereNameSpace__ecere__sys__OldList * specs, struct Declarator * decl);
1265
1266 struct Type * ProcessTemplateParameterType(struct TemplateParameter * param)
1267 {
1268 if(param && param->type == 0 && (param->dataType || param->dataTypeString))
1269 {
1270 if(!param->baseType)
1271 {
1272 if(param->dataTypeString)
1273 param->baseType = ProcessTypeString(param->dataTypeString, 0x0);
1274 else
1275 param->baseType = ProcessType(param->dataType->specifiers, param->dataType->decl);
1276 }
1277 return param->baseType;
1278 }
1279 return (((void *)0));
1280 }
1281
1282 unsigned int NeedCast(struct Type * type1, struct Type * type2)
1283 {
1284 if(!type1 || !type2 || type1->keepCast || type2->keepCast)
1285 return 0x1;
1286 if(type1->kind == 20 && type2->kind == 4 && type2->passAsTemplate == 0x0)
1287 {
1288 return 0x0;
1289 }
1290 if(type1->kind == type2->kind)
1291 {
1292 switch(type1->kind)
1293 {
1294 case 24:
1295 case 1:
1296 case 2:
1297 case 3:
1298 case 4:
1299 case 22:
1300 case 23:
1301 if(type1->passAsTemplate && !type2->passAsTemplate)
1302 return 0x1;
1303 return type1->isSigned != type2->isSigned;
1304 case 8:
1305 return type1->_class != type2->_class;
1306 case 13:
1307 return NeedCast(type1->type, type2->type);
1308 default:
1309 return 0x1;
1310 }
1311 }
1312 return 0x1;
1313 }
1314
1315 extern int strcmp(const char * , const char * );
1316
1317 extern struct Context * curContext;
1318
1319 extern struct Context * topContext;
1320
1321 extern unsigned int __ecereNameSpace__ecere__com__eClass_IsDerived(struct __ecereNameSpace__ecere__com__Class * _class, struct __ecereNameSpace__ecere__com__Class * from);
1322
1323 extern struct __ecereNameSpace__ecere__com__Property * __ecereNameSpace__ecere__com__eClass_FindProperty(struct __ecereNameSpace__ecere__com__Class * _class, char *  name, struct __ecereNameSpace__ecere__com__Instance * module);
1324
1325 extern struct __ecereNameSpace__ecere__com__Instance * privateModule;
1326
1327 extern struct __ecereNameSpace__ecere__com__Method * __ecereNameSpace__ecere__com__eClass_FindMethod(struct __ecereNameSpace__ecere__com__Class * _class, char *  name, struct __ecereNameSpace__ecere__com__Instance * module);
1328
1329 extern struct __ecereNameSpace__ecere__com__DataMember * __ecereNameSpace__ecere__com__eClass_FindDataMember(struct __ecereNameSpace__ecere__com__Class * _class, char *  name, struct __ecereNameSpace__ecere__com__Instance * module, struct __ecereNameSpace__ecere__com__DataMember **  subMemberStack, int *  subMemberStackPos);
1330
1331 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__ClassProperty;
1332
1333 struct __ecereNameSpace__ecere__com__ClassProperty
1334 {
1335 char *  name;
1336 struct __ecereNameSpace__ecere__com__ClassProperty * parent;
1337 struct __ecereNameSpace__ecere__com__ClassProperty * left;
1338 struct __ecereNameSpace__ecere__com__ClassProperty * right;
1339 int depth;
1340 void (*  Set)(struct __ecereNameSpace__ecere__com__Class *, long long);
1341 long long (*  Get)(struct __ecereNameSpace__ecere__com__Class *);
1342 char *  dataTypeString;
1343 struct Type * dataType;
1344 unsigned int constant;
1345 } __attribute__ ((gcc_struct));
1346
1347 extern struct __ecereNameSpace__ecere__com__ClassProperty * __ecereNameSpace__ecere__com__eClass_FindClassProperty(struct __ecereNameSpace__ecere__com__Class * _class, char *  name);
1348
1349 extern struct Expression * QMkExpId(char *  id);
1350
1351 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__ClassTemplateParameter;
1352
1353 struct __ecereNameSpace__ecere__com__ClassTemplateParameter
1354 {
1355 struct __ecereNameSpace__ecere__com__ClassTemplateParameter * prev;
1356 struct __ecereNameSpace__ecere__com__ClassTemplateParameter * next;
1357 char *  name;
1358 int type;
1359 union
1360 {
1361 char *  dataTypeString;
1362 int memberType;
1363 } __attribute__ ((gcc_struct));
1364 struct __ecereNameSpace__ecere__com__ClassTemplateArgument defaultArg;
1365 void *  param;
1366 } __attribute__ ((gcc_struct));
1367
1368 extern struct Expression * GetTemplateArgExpByName(char *  paramName, struct __ecereNameSpace__ecere__com__Class * curClass, int tplType);
1369
1370 extern struct __ecereNameSpace__ecere__sys__OldList *  MkList(void);
1371
1372 extern void FreeIdentifier(struct Identifier * id);
1373
1374 void ProcessExpressionType(struct Expression * exp);
1375
1376 extern struct Declarator * SpecDeclFromString(char *  string, struct __ecereNameSpace__ecere__sys__OldList *  specs, struct Declarator * baseDecl);
1377
1378 extern struct __ecereNameSpace__ecere__sys__OldList *  MkListOne(void *  item);
1379
1380 extern struct Expression * MkExpOp(struct Expression * exp1, int op, struct Expression * exp2);
1381
1382 extern struct Expression * MkExpCast(struct TypeName * typeName, struct Expression * expression);
1383
1384 extern struct TypeName * MkTypeName(struct __ecereNameSpace__ecere__sys__OldList * qualifiers, struct Declarator * declarator);
1385
1386 extern struct Declarator * MkDeclaratorPointer(struct Pointer * pointer, struct Declarator * declarator);
1387
1388 extern struct Pointer * MkPointer(struct __ecereNameSpace__ecere__sys__OldList * qualifiers, struct Pointer * pointer);
1389
1390 struct __ecereNameSpace__ecere__sys__BTNode * __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_FindString(struct __ecereNameSpace__ecere__sys__BinaryTree * this, char *  key);
1391
1392 static void ReplaceClassMembers(struct Expression * exp, struct __ecereNameSpace__ecere__com__Class * _class)
1393 {
1394 if(exp->type == 0 && exp->identifier)
1395 {
1396 struct Identifier * id = exp->identifier;
1397 struct Context * ctx;
1398 struct Symbol * symbol = (((void *)0));
1399
1400 if(!id->_class || !id->_class->name || strcmp(id->_class->name, "property"))
1401 {
1402 for(ctx = curContext; ctx != topContext->parent && !symbol; ctx = ctx->parent)
1403 {
1404 symbol = (struct Symbol *)__ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_FindString(&ctx->symbols, id->string);
1405 if(symbol)
1406 break;
1407 }
1408 }
1409 if(!symbol && ((!id->_class || (id->_class->name && !strcmp(id->_class->name, "property"))) || (id->classSym && __ecereNameSpace__ecere__com__eClass_IsDerived(_class, id->classSym->registered))))
1410 {
1411 struct __ecereNameSpace__ecere__com__Property * prop = __ecereNameSpace__ecere__com__eClass_FindProperty(_class, id->string, privateModule);
1412 struct __ecereNameSpace__ecere__com__Method * method = (((void *)0));
1413 struct __ecereNameSpace__ecere__com__DataMember * member = (((void *)0));
1414 struct __ecereNameSpace__ecere__com__ClassProperty * classProp = (((void *)0));
1415
1416 if(!prop)
1417 {
1418 method = __ecereNameSpace__ecere__com__eClass_FindMethod(_class, id->string, privateModule);
1419 }
1420 if(!prop && !method)
1421 member = __ecereNameSpace__ecere__com__eClass_FindDataMember(_class, id->string, privateModule, (((void *)0)), (((void *)0)));
1422 if(!prop && !method && !member)
1423 {
1424 classProp = __ecereNameSpace__ecere__com__eClass_FindClassProperty(_class, id->string);
1425 }
1426 if(prop || method || member || classProp)
1427 {
1428 exp->type = 8;
1429 exp->member.member = id;
1430 exp->member.memberType = 0;
1431 exp->member.exp = QMkExpId("this");
1432 exp->addedThis = 0x1;
1433 }
1434 else if(_class && _class->templateParams.first)
1435 {
1436 struct __ecereNameSpace__ecere__com__Class * sClass;
1437
1438 for(sClass = _class; sClass; sClass = sClass->base)
1439 {
1440 if(sClass->templateParams.first)
1441 {
1442 struct __ecereNameSpace__ecere__com__ClassTemplateParameter * param;
1443
1444 for(param = sClass->templateParams.first; param; param = param->next)
1445 {
1446 if(param->type == 2 && !strcmp(param->name, id->string))
1447 {
1448 struct Expression * argExp = GetTemplateArgExpByName(param->name, _class, 2);
1449
1450 if(argExp)
1451 {
1452 struct Declarator * decl;
1453 struct __ecereNameSpace__ecere__sys__OldList * specs = MkList();
1454
1455 FreeIdentifier(exp->member.member);
1456 ProcessExpressionType(argExp);
1457 decl = SpecDeclFromString(param->dataTypeString, specs, (((void *)0)));
1458 exp->expType = ProcessType(specs, decl);
1459 exp->type = 5;
1460 exp->list = MkListOne(MkExpOp((((void *)0)), '*', MkExpCast(MkTypeName(specs, MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), decl)), MkExpOp((((void *)0)), '&', argExp))));
1461 }
1462 }
1463 }
1464 }
1465 }
1466 }
1467 }
1468 }
1469 }
1470
1471 extern int sprintf(char * , char * , ...);
1472
1473 extern int __ecereNameSpace__ecere__com__GetRuntimePlatform(void);
1474
1475 extern char *  __ecereNameSpace__ecere__sys__CopyString(char *  string);
1476
1477 char * PrintInt(long long result)
1478 {
1479 char temp[100];
1480
1481 if(result > (((long long)0x7fffffffffffffffLL)))
1482 sprintf(temp, ((__ecereNameSpace__ecere__com__GetRuntimePlatform() == 1) ? "0x%I64XLL" : "0x%llXLL"), result);
1483 else
1484 sprintf(temp, ((__ecereNameSpace__ecere__com__GetRuntimePlatform() == 1) ? "%I64dLL" : "%lldLL"), result);
1485 return __ecereNameSpace__ecere__sys__CopyString(temp);
1486 }
1487
1488 char * PrintUInt(uint64 result)
1489 {
1490 char temp[100];
1491
1492 if(result > (0xffffffff))
1493 sprintf(temp, ((__ecereNameSpace__ecere__com__GetRuntimePlatform() == 1) ? "0x%I64XLL" : "0x%llXLL"), result);
1494 else if(result > (((int)0x7fffffff)))
1495 sprintf(temp, ((__ecereNameSpace__ecere__com__GetRuntimePlatform() == 1) ? "0x%I64X" : "0x%llX"), result);
1496 else
1497 sprintf(temp, ((__ecereNameSpace__ecere__com__GetRuntimePlatform() == 1) ? "%I64d" : "%lld"), result);
1498 return __ecereNameSpace__ecere__sys__CopyString(temp);
1499 }
1500
1501 char * PrintInt64(long long result)
1502 {
1503 char temp[100];
1504
1505 sprintf(temp, ((__ecereNameSpace__ecere__com__GetRuntimePlatform() == 1) ? "%I64dLL" : "%lldLL"), result);
1506 return __ecereNameSpace__ecere__sys__CopyString(temp);
1507 }
1508
1509 char * PrintUInt64(uint64 result)
1510 {
1511 char temp[100];
1512
1513 if(result > (((long long)0x7fffffffffffffffLL)))
1514 sprintf(temp, ((__ecereNameSpace__ecere__com__GetRuntimePlatform() == 1) ? "0x%I64XLL" : "0x%llXLL"), result);
1515 else
1516 sprintf(temp, ((__ecereNameSpace__ecere__com__GetRuntimePlatform() == 1) ? "%I64dLL" : "%lldLL"), result);
1517 return __ecereNameSpace__ecere__sys__CopyString(temp);
1518 }
1519
1520 char * PrintHexUInt(uint64 result)
1521 {
1522 char temp[100];
1523
1524 if(result > (0xffffffff))
1525 sprintf(temp, ((__ecereNameSpace__ecere__com__GetRuntimePlatform() == 1) ? "0x%I64XLL" : "0x%llXLL"), result);
1526 else
1527 sprintf(temp, ((__ecereNameSpace__ecere__com__GetRuntimePlatform() == 1) ? "0x%I64X" : "0x%llX"), result);
1528 return __ecereNameSpace__ecere__sys__CopyString(temp);
1529 }
1530
1531 char * PrintHexUInt64(uint64 result)
1532 {
1533 char temp[100];
1534
1535 if(result > (0xffffffff))
1536 sprintf(temp, ((__ecereNameSpace__ecere__com__GetRuntimePlatform() == 1) ? "0x%I64XLL" : "0x%llXLL"), result);
1537 else
1538 sprintf(temp, ((__ecereNameSpace__ecere__com__GetRuntimePlatform() == 1) ? "0x%I64X" : "0x%llX"), result);
1539 return __ecereNameSpace__ecere__sys__CopyString(temp);
1540 }
1541
1542 char * PrintShort(short result)
1543 {
1544 char temp[100];
1545
1546 sprintf(temp, "%d", (unsigned short)result);
1547 return __ecereNameSpace__ecere__sys__CopyString(temp);
1548 }
1549
1550 char * PrintUShort(unsigned short result)
1551 {
1552 char temp[100];
1553
1554 if(result > (unsigned short)32767)
1555 sprintf(temp, "0x%X", (int)result);
1556 else
1557 sprintf(temp, "%d", (int)result);
1558 return __ecereNameSpace__ecere__sys__CopyString(temp);
1559 }
1560
1561 extern int isprint(int c);
1562
1563 char * PrintChar(char result)
1564 {
1565 char temp[100];
1566
1567 if(result > (char)0 && isprint(result))
1568 sprintf(temp, "'%c'", result);
1569 else if(result < (char)0)
1570 sprintf(temp, "%d", (int)result);
1571 else
1572 sprintf(temp, "0x%X", (unsigned char)result);
1573 return __ecereNameSpace__ecere__sys__CopyString(temp);
1574 }
1575
1576 char * PrintUChar(unsigned char result)
1577 {
1578 char temp[100];
1579
1580 sprintf(temp, "0x%X", result);
1581 return __ecereNameSpace__ecere__sys__CopyString(temp);
1582 }
1583
1584 char * PrintFloat(float result)
1585 {
1586 char temp[350];
1587
1588 sprintf(temp, "%.16ff", result);
1589 return __ecereNameSpace__ecere__sys__CopyString(temp);
1590 }
1591
1592 char * PrintDouble(double result)
1593 {
1594 char temp[350];
1595
1596 sprintf(temp, "%.16f", result);
1597 return __ecereNameSpace__ecere__sys__CopyString(temp);
1598 }
1599
1600 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_OpTable;
1601
1602 struct OpTable
1603 {
1604 unsigned int (*  Add)(struct Expression *, struct Operand *, struct Operand *);
1605 unsigned int (*  Sub)(struct Expression *, struct Operand *, struct Operand *);
1606 unsigned int (*  Mul)(struct Expression *, struct Operand *, struct Operand *);
1607 unsigned int (*  Div)(struct Expression *, struct Operand *, struct Operand *);
1608 unsigned int (*  Mod)(struct Expression *, struct Operand *, struct Operand *);
1609 unsigned int (*  Neg)(struct Expression *, struct Operand *);
1610 unsigned int (*  Inc)(struct Expression *, struct Operand *);
1611 unsigned int (*  Dec)(struct Expression *, struct Operand *);
1612 unsigned int (*  Asign)(struct Expression *, struct Operand *, struct Operand *);
1613 unsigned int (*  AddAsign)(struct Expression *, struct Operand *, struct Operand *);
1614 unsigned int (*  SubAsign)(struct Expression *, struct Operand *, struct Operand *);
1615 unsigned int (*  MulAsign)(struct Expression *, struct Operand *, struct Operand *);
1616 unsigned int (*  DivAsign)(struct Expression *, struct Operand *, struct Operand *);
1617 unsigned int (*  ModAsign)(struct Expression *, struct Operand *, struct Operand *);
1618 unsigned int (*  BitAnd)(struct Expression *, struct Operand *, struct Operand *);
1619 unsigned int (*  BitOr)(struct Expression *, struct Operand *, struct Operand *);
1620 unsigned int (*  BitXor)(struct Expression *, struct Operand *, struct Operand *);
1621 unsigned int (*  LShift)(struct Expression *, struct Operand *, struct Operand *);
1622 unsigned int (*  RShift)(struct Expression *, struct Operand *, struct Operand *);
1623 unsigned int (*  BitNot)(struct Expression *, struct Operand *);
1624 unsigned int (*  AndAsign)(struct Expression *, struct Operand *, struct Operand *);
1625 unsigned int (*  OrAsign)(struct Expression *, struct Operand *, struct Operand *);
1626 unsigned int (*  XorAsign)(struct Expression *, struct Operand *, struct Operand *);
1627 unsigned int (*  LShiftAsign)(struct Expression *, struct Operand *, struct Operand *);
1628 unsigned int (*  RShiftAsign)(struct Expression *, struct Operand *, struct Operand *);
1629 unsigned int (*  Not)(struct Expression *, struct Operand *);
1630 unsigned int (*  Equ)(struct Expression *, struct Operand *, struct Operand *);
1631 unsigned int (*  Nqu)(struct Expression *, struct Operand *, struct Operand *);
1632 unsigned int (*  And)(struct Expression *, struct Operand *, struct Operand *);
1633 unsigned int (*  Or)(struct Expression *, struct Operand *, struct Operand *);
1634 unsigned int (*  Grt)(struct Expression *, struct Operand *, struct Operand *);
1635 unsigned int (*  Sma)(struct Expression *, struct Operand *, struct Operand *);
1636 unsigned int (*  GrtEqu)(struct Expression *, struct Operand *, struct Operand *);
1637 unsigned int (*  SmaEqu)(struct Expression *, struct Operand *, struct Operand *);
1638 unsigned int (*  Cond)(struct Expression *, struct Operand *, struct Operand *, struct Operand *);
1639 } __attribute__ ((gcc_struct));
1640
1641 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Operand;
1642
1643 struct Operand
1644 {
1645 int kind;
1646 struct Type * type;
1647 unsigned int ptrSize;
1648 union
1649 {
1650 char c;
1651 unsigned char uc;
1652 short s;
1653 unsigned short us;
1654 int i;
1655 unsigned int ui;
1656 float f;
1657 double d;
1658 long long i64;
1659 uint64 ui64;
1660 } __attribute__ ((gcc_struct));
1661 struct OpTable ops;
1662 } __attribute__ ((gcc_struct));
1663
1664 struct Operand GetOperand(struct Expression * exp);
1665
1666 unsigned int GetInt(struct Expression * exp, int * value2)
1667 {
1668 struct Operand op2 = GetOperand(exp);
1669
1670 if(op2.kind == 3 && op2.type->isSigned)
1671 *value2 = op2.i;
1672 else if(op2.kind == 3)
1673 *value2 = (int)op2.ui;
1674 else if(op2.kind == 4 && op2.type->isSigned)
1675 *value2 = (int)op2.i64;
1676 else if(op2.kind == 4)
1677 *value2 = (int)op2.ui64;
1678 else if(op2.kind == 23 && op2.type->isSigned)
1679 *value2 = (int)op2.i64;
1680 else if(op2.kind == 23)
1681 *value2 = (int)op2.ui64;
1682 else if(op2.kind == 22 && op2.type->isSigned)
1683 *value2 = (int)op2.i64;
1684 else if(op2.kind == 22)
1685 *value2 = (int)op2.ui64;
1686 else if(op2.kind == 2 && op2.type->isSigned)
1687 *value2 = (int)op2.s;
1688 else if(op2.kind == 2)
1689 *value2 = (int)op2.us;
1690 else if(op2.kind == 1 && op2.type->isSigned)
1691 *value2 = (int)op2.c;
1692 else if(op2.kind == 24 || op2.kind == 1)
1693 *value2 = (int)op2.uc;
1694 else if(op2.kind == 6)
1695 *value2 = (int)op2.f;
1696 else if(op2.kind == 7)
1697 *value2 = (int)op2.d;
1698 else if(op2.kind == 13)
1699 *value2 = (int)op2.ui64;
1700 else
1701 return 0x0;
1702 return 0x1;
1703 }
1704
1705 unsigned int GetUInt(struct Expression * exp, unsigned int * value2)
1706 {
1707 struct Operand op2 = GetOperand(exp);
1708
1709 if(op2.kind == 3 && op2.type->isSigned)
1710 *value2 = (unsigned int)op2.i;
1711 else if(op2.kind == 3)
1712 *value2 = op2.ui;
1713 else if(op2.kind == 4 && op2.type->isSigned)
1714 *value2 = (unsigned int)op2.i64;
1715 else if(op2.kind == 4)
1716 *value2 = (unsigned int)op2.ui64;
1717 else if(op2.kind == 23 && op2.type->isSigned)
1718 *value2 = (unsigned int)op2.i64;
1719 else if(op2.kind == 23)
1720 *value2 = (unsigned int)op2.ui64;
1721 else if(op2.kind == 22 && op2.type->isSigned)
1722 *value2 = (unsigned int)op2.i64;
1723 else if(op2.kind == 22)
1724 *value2 = (unsigned int)op2.ui64;
1725 else if(op2.kind == 2 && op2.type->isSigned)
1726 *value2 = (unsigned int)op2.s;
1727 else if(op2.kind == 2)
1728 *value2 = (unsigned int)op2.us;
1729 else if(op2.kind == 1 && op2.type->isSigned)
1730 *value2 = (unsigned int)op2.c;
1731 else if(op2.kind == 24 || op2.kind == 1)
1732 *value2 = (unsigned int)op2.uc;
1733 else if(op2.kind == 6)
1734 *value2 = (unsigned int)op2.f;
1735 else if(op2.kind == 7)
1736 *value2 = (unsigned int)op2.d;
1737 else if(op2.kind == 13)
1738 *value2 = (unsigned int)op2.ui64;
1739 else
1740 return 0x0;
1741 return 0x1;
1742 }
1743
1744 unsigned int GetInt64(struct Expression * exp, long long * value2)
1745 {
1746 struct Operand op2 = GetOperand(exp);
1747
1748 if(op2.kind == 3 && op2.type->isSigned)
1749 *value2 = (long long)op2.i;
1750 else if(op2.kind == 3)
1751 *value2 = (long long)op2.ui;
1752 else if(op2.kind == 4 && op2.type->isSigned)
1753 *value2 = op2.i64;
1754 else if(op2.kind == 4)
1755 *value2 = (long long)op2.ui64;
1756 else if(op2.kind == 23 && op2.type->isSigned)
1757 *value2 = op2.i64;
1758 else if(op2.kind == 23)
1759 *value2 = (long long)op2.ui64;
1760 else if(op2.kind == 22 && op2.type->isSigned)
1761 *value2 = op2.i64;
1762 else if(op2.kind == 22)
1763 *value2 = (long long)op2.ui64;
1764 else if(op2.kind == 2 && op2.type->isSigned)
1765 *value2 = (long long)op2.s;
1766 else if(op2.kind == 2)
1767 *value2 = (long long)op2.us;
1768 else if(op2.kind == 1 && op2.type->isSigned)
1769 *value2 = (long long)op2.c;
1770 else if(op2.kind == 24 || op2.kind == 1)
1771 *value2 = (long long)op2.uc;
1772 else if(op2.kind == 6)
1773 *value2 = (long long)op2.f;
1774 else if(op2.kind == 7)
1775 *value2 = (long long)op2.d;
1776 else if(op2.kind == 13)
1777 *value2 = (long long)op2.ui64;
1778 else
1779 return 0x0;
1780 return 0x1;
1781 }
1782
1783 unsigned int GetUInt64(struct Expression * exp, uint64 * value2)
1784 {
1785 struct Operand op2 = GetOperand(exp);
1786
1787 if(op2.kind == 3 && op2.type->isSigned)
1788 *value2 = (uint64)op2.i;
1789 else if(op2.kind == 3)
1790 *value2 = (uint64)op2.ui;
1791 else if(op2.kind == 4 && op2.type->isSigned)
1792 *value2 = (uint64)op2.i64;
1793 else if(op2.kind == 4)
1794 *value2 = op2.ui64;
1795 else if(op2.kind == 23 && op2.type->isSigned)
1796 *value2 = (uint64)op2.i64;
1797 else if(op2.kind == 23)
1798 *value2 = op2.ui64;
1799 else if(op2.kind == 22 && op2.type->isSigned)
1800 *value2 = (uint64)op2.i64;
1801 else if(op2.kind == 22)
1802 *value2 = op2.ui64;
1803 else if(op2.kind == 2 && op2.type->isSigned)
1804 *value2 = (uint64)op2.s;
1805 else if(op2.kind == 2)
1806 *value2 = (uint64)op2.us;
1807 else if(op2.kind == 1 && op2.type->isSigned)
1808 *value2 = (uint64)op2.c;
1809 else if(op2.kind == 24 || op2.kind == 1)
1810 *value2 = (uint64)op2.uc;
1811 else if(op2.kind == 6)
1812 *value2 = (uint64)op2.f;
1813 else if(op2.kind == 7)
1814 *value2 = (uint64)op2.d;
1815 else if(op2.kind == 13)
1816 *value2 = op2.ui64;
1817 else
1818 return 0x0;
1819 return 0x1;
1820 }
1821
1822 unsigned int GetIntPtr(struct Expression * exp, intptr_t * value2)
1823 {
1824 struct Operand op2 = GetOperand(exp);
1825
1826 if(op2.kind == 3 && op2.type->isSigned)
1827 *value2 = (intptr_t)op2.i;
1828 else if(op2.kind == 3)
1829 *value2 = (intptr_t)op2.ui;
1830 else if(op2.kind == 4 && op2.type->isSigned)
1831 *value2 = (intptr_t)op2.i64;
1832 else if(op2.kind == 4)
1833 *value2 = (intptr_t)op2.ui64;
1834 else if(op2.kind == 23 && op2.type->isSigned)
1835 *value2 = (intptr_t)op2.i64;
1836 else if(op2.kind == 23)
1837 *value2 = (intptr_t)op2.ui64;
1838 else if(op2.kind == 22 && op2.type->isSigned)
1839 *value2 = (intptr_t)op2.i64;
1840 else if(op2.kind == 22)
1841 *value2 = (intptr_t)op2.ui64;
1842 else if(op2.kind == 2 && op2.type->isSigned)
1843 *value2 = (intptr_t)op2.s;
1844 else if(op2.kind == 2)
1845 *value2 = (intptr_t)op2.us;
1846 else if(op2.kind == 1 && op2.type->isSigned)
1847 *value2 = (intptr_t)op2.c;
1848 else if(op2.kind == 24 || op2.kind == 1)
1849 *value2 = (intptr_t)op2.uc;
1850 else if(op2.kind == 6)
1851 *value2 = (intptr_t)op2.f;
1852 else if(op2.kind == 7)
1853 *value2 = (intptr_t)op2.d;
1854 else if(op2.kind == 13)
1855 *value2 = (intptr_t)op2.ui64;
1856 else
1857 return 0x0;
1858 return 0x1;
1859 }
1860
1861 unsigned int GetUIntPtr(struct Expression * exp, uintptr_t * value2)
1862 {
1863 struct Operand op2 = GetOperand(exp);
1864
1865 if(op2.kind == 3 && op2.type->isSigned)
1866 *value2 = (uintptr_t)op2.i;
1867 else if(op2.kind == 3)
1868 *value2 = (uintptr_t)op2.ui;
1869 else if(op2.kind == 4 && op2.type->isSigned)
1870 *value2 = (uintptr_t)op2.i64;
1871 else if(op2.kind == 4)
1872 *value2 = (uintptr_t)op2.ui64;
1873 else if(op2.kind == 23 && op2.type->isSigned)
1874 *value2 = (uintptr_t)op2.i64;
1875 else if(op2.kind == 23)
1876 *value2 = (uintptr_t)op2.ui64;
1877 else if(op2.kind == 22 && op2.type->isSigned)
1878 *value2 = (uintptr_t)op2.i64;
1879 else if(op2.kind == 22)
1880 *value2 = (uintptr_t)op2.ui64;
1881 else if(op2.kind == 2 && op2.type->isSigned)
1882 *value2 = (uintptr_t)op2.s;
1883 else if(op2.kind == 2)
1884 *value2 = (uintptr_t)op2.us;
1885 else if(op2.kind == 1 && op2.type->isSigned)
1886 *value2 = (uintptr_t)op2.c;
1887 else if(op2.kind == 24 || op2.kind == 1)
1888 *value2 = (uintptr_t)op2.uc;
1889 else if(op2.kind == 6)
1890 *value2 = (uintptr_t)op2.f;
1891 else if(op2.kind == 7)
1892 *value2 = (uintptr_t)op2.d;
1893 else if(op2.kind == 13)
1894 *value2 = (uintptr_t)op2.ui64;
1895 else
1896 return 0x0;
1897 return 0x1;
1898 }
1899
1900 unsigned int GetIntSize(struct Expression * exp, ssize_t * value2)
1901 {
1902 struct Operand op2 = GetOperand(exp);
1903
1904 if(op2.kind == 3 && op2.type->isSigned)
1905 *value2 = (ssize_t)op2.i;
1906 else if(op2.kind == 3)
1907 *value2 = (ssize_t)op2.ui;
1908 else if(op2.kind == 4 && op2.type->isSigned)
1909 *value2 = (ssize_t)op2.i64;
1910 else if(op2.kind == 4)
1911 *value2 = (ssize_t)op2.ui64;
1912 else if(op2.kind == 23 && op2.type->isSigned)
1913 *value2 = (ssize_t)op2.i64;
1914 else if(op2.kind == 23)
1915 *value2 = (ssize_t)op2.ui64;
1916 else if(op2.kind == 22 && op2.type->isSigned)
1917 *value2 = (ssize_t)op2.i64;
1918 else if(op2.kind == 22)
1919 *value2 = (ssize_t)op2.ui64;
1920 else if(op2.kind == 2 && op2.type->isSigned)
1921 *value2 = (ssize_t)op2.s;
1922 else if(op2.kind == 2)
1923 *value2 = (ssize_t)op2.us;
1924 else if(op2.kind == 1 && op2.type->isSigned)
1925 *value2 = (ssize_t)op2.c;
1926 else if(op2.kind == 24 || op2.kind == 1)
1927 *value2 = (ssize_t)op2.uc;
1928 else if(op2.kind == 6)
1929 *value2 = (ssize_t)op2.f;
1930 else if(op2.kind == 7)
1931 *value2 = (ssize_t)op2.d;
1932 else if(op2.kind == 13)
1933 *value2 = (ssize_t)op2.ui64;
1934 else
1935 return 0x0;
1936 return 0x1;
1937 }
1938
1939 unsigned int GetUIntSize(struct Expression * exp, size_t * value2)
1940 {
1941 struct Operand op2 = GetOperand(exp);
1942
1943 if(op2.kind == 3 && op2.type->isSigned)
1944 *value2 = (size_t)op2.i;
1945 else if(op2.kind == 3)
1946 *value2 = (size_t)op2.ui;
1947 else if(op2.kind == 4 && op2.type->isSigned)
1948 *value2 = (size_t)op2.i64;
1949 else if(op2.kind == 4)
1950 *value2 = (size_t)op2.ui64;
1951 else if(op2.kind == 23 && op2.type->isSigned)
1952 *value2 = (size_t)op2.i64;
1953 else if(op2.kind == 23)
1954 *value2 = (size_t)op2.ui64;
1955 else if(op2.kind == 22 && op2.type->isSigned)
1956 *value2 = (size_t)op2.i64;
1957 else if(op2.kind == 22)
1958 *value2 = (size_t)op2.ui64;
1959 else if(op2.kind == 2 && op2.type->isSigned)
1960 *value2 = (size_t)op2.s;
1961 else if(op2.kind == 2)
1962 *value2 = (size_t)op2.us;
1963 else if(op2.kind == 1 && op2.type->isSigned)
1964 *value2 = (size_t)op2.c;
1965 else if(op2.kind == 24 || op2.kind == 1)
1966 *value2 = (size_t)op2.uc;
1967 else if(op2.kind == 6)
1968 *value2 = (size_t)op2.f;
1969 else if(op2.kind == 7)
1970 *value2 = (size_t)op2.d;
1971 else if(op2.kind == 13)
1972 *value2 = (size_t)op2.ui64;
1973 else
1974 return 0x0;
1975 return 0x1;
1976 }
1977
1978 unsigned int GetShort(struct Expression * exp, short * value2)
1979 {
1980 struct Operand op2 = GetOperand(exp);
1981
1982 if(op2.kind == 3 && op2.type->isSigned)
1983 *value2 = (short)op2.i;
1984 else if(op2.kind == 3)
1985 *value2 = (short)op2.ui;
1986 else if(op2.kind == 4 && op2.type->isSigned)
1987 *value2 = (short)op2.i64;
1988 else if(op2.kind == 4)
1989 *value2 = (short)op2.ui64;
1990 else if(op2.kind == 23 && op2.type->isSigned)
1991 *value2 = (short)op2.i64;
1992 else if(op2.kind == 23)
1993 *value2 = (short)op2.ui64;
1994 else if(op2.kind == 22 && op2.type->isSigned)
1995 *value2 = (short)op2.i64;
1996 else if(op2.kind == 22)
1997 *value2 = (short)op2.ui64;
1998 else if(op2.kind == 2 && op2.type->isSigned)
1999 *value2 = op2.s;
2000 else if(op2.kind == 2)
2001 *value2 = (short)op2.us;
2002 else if(op2.kind == 1 && op2.type->isSigned)
2003 *value2 = (short)op2.c;
2004 else if(op2.kind == 24 || op2.kind == 1)
2005 *value2 = (short)op2.uc;
2006 else if(op2.kind == 6)
2007 *value2 = (short)op2.f;
2008 else if(op2.kind == 7)
2009 *value2 = (short)op2.d;
2010 else if(op2.kind == 13)
2011 *value2 = (short)op2.ui64;
2012 else
2013 return 0x0;
2014 return 0x1;
2015 }
2016
2017 unsigned int GetUShort(struct Expression * exp, unsigned short * value2)
2018 {
2019 struct Operand op2 = GetOperand(exp);
2020
2021 if(op2.kind == 3 && op2.type->isSigned)
2022 *value2 = (unsigned short)op2.i;
2023 else if(op2.kind == 3)
2024 *value2 = (unsigned short)op2.ui;
2025 else if(op2.kind == 4 && op2.type->isSigned)
2026 *value2 = (unsigned short)op2.i64;
2027 else if(op2.kind == 4)
2028 *value2 = (unsigned short)op2.ui64;
2029 else if(op2.kind == 23 && op2.type->isSigned)
2030 *value2 = (unsigned short)op2.i64;
2031 else if(op2.kind == 23)
2032 *value2 = (unsigned short)op2.ui64;
2033 else if(op2.kind == 22 && op2.type->isSigned)
2034 *value2 = (unsigned short)op2.i64;
2035 else if(op2.kind == 22)
2036 *value2 = (unsigned short)op2.ui64;
2037 else if(op2.kind == 2 && op2.type->isSigned)
2038 *value2 = (unsigned short)op2.s;
2039 else if(op2.kind == 2)
2040 *value2 = op2.us;
2041 else if(op2.kind == 1 && op2.type->isSigned)
2042 *value2 = (unsigned short)op2.c;
2043 else if(op2.kind == 24 || op2.kind == 1)
2044 *value2 = (unsigned short)op2.uc;
2045 else if(op2.kind == 6)
2046 *value2 = (unsigned short)op2.f;
2047 else if(op2.kind == 7)
2048 *value2 = (unsigned short)op2.d;
2049 else if(op2.kind == 13)
2050 *value2 = (unsigned short)op2.ui64;
2051 else
2052 return 0x0;
2053 return 0x1;
2054 }
2055
2056 unsigned int GetChar(struct Expression * exp, char * value2)
2057 {
2058 struct Operand op2 = GetOperand(exp);
2059
2060 if(op2.kind == 3 && op2.type->isSigned)
2061 *value2 = (char)op2.i;
2062 else if(op2.kind == 3)
2063 *value2 = (char)op2.ui;
2064 else if(op2.kind == 4 && op2.type->isSigned)
2065 *value2 = (char)op2.i64;
2066 else if(op2.kind == 4)
2067 *value2 = (char)op2.ui64;
2068 else if(op2.kind == 23 && op2.type->isSigned)
2069 *value2 = (char)op2.i64;
2070 else if(op2.kind == 23)
2071 *value2 = (char)op2.ui64;
2072 else if(op2.kind == 22 && op2.type->isSigned)
2073 *value2 = (char)op2.i64;
2074 else if(op2.kind == 22)
2075 *value2 = (char)op2.ui64;
2076 else if(op2.kind == 2 && op2.type->isSigned)
2077 *value2 = (char)op2.s;
2078 else if(op2.kind == 2)
2079 *value2 = (char)op2.us;
2080 else if(op2.kind == 1 && op2.type->isSigned)
2081 *value2 = op2.c;
2082 else if(op2.kind == 24 || op2.kind == 1)
2083 *value2 = (char)op2.uc;
2084 else if(op2.kind == 6)
2085 *value2 = (char)op2.f;
2086 else if(op2.kind == 7)
2087 *value2 = (char)op2.d;
2088 else if(op2.kind == 13)
2089 *value2 = (char)op2.ui64;
2090 else
2091 return 0x0;
2092 return 0x1;
2093 }
2094
2095 unsigned int GetUChar(struct Expression * exp, unsigned char * value2)
2096 {
2097 struct Operand op2 = GetOperand(exp);
2098
2099 if(op2.kind == 3 && op2.type->isSigned)
2100 *value2 = (unsigned char)op2.i;
2101 else if(op2.kind == 3)
2102 *value2 = (unsigned char)op2.ui;
2103 else if(op2.kind == 4 && op2.type->isSigned)
2104 *value2 = (unsigned char)op2.i64;
2105 else if(op2.kind == 4)
2106 *value2 = (unsigned char)op2.ui64;
2107 else if(op2.kind == 23 && op2.type->isSigned)
2108 *value2 = (unsigned char)op2.i64;
2109 else if(op2.kind == 23)
2110 *value2 = (unsigned char)op2.ui64;
2111 else if(op2.kind == 22 && op2.type->isSigned)
2112 *value2 = (unsigned char)op2.i64;
2113 else if(op2.kind == 22)
2114 *value2 = (unsigned char)op2.ui64;
2115 else if(op2.kind == 2 && op2.type->isSigned)
2116 *value2 = (unsigned char)op2.s;
2117 else if(op2.kind == 2)
2118 *value2 = (unsigned char)op2.us;
2119 else if(op2.kind == 1 && op2.type->isSigned)
2120 *value2 = (unsigned char)op2.c;
2121 else if(op2.kind == 24 || op2.kind == 1)
2122 *value2 = op2.uc;
2123 else if(op2.kind == 6)
2124 *value2 = (unsigned char)op2.f;
2125 else if(op2.kind == 7)
2126 *value2 = (unsigned char)op2.d;
2127 else if(op2.kind == 13)
2128 *value2 = (unsigned char)op2.ui64;
2129 else
2130 return 0x0;
2131 return 0x1;
2132 }
2133
2134 unsigned int GetFloat(struct Expression * exp, float * value2)
2135 {
2136 struct Operand op2 = GetOperand(exp);
2137
2138 if(op2.kind == 3 && op2.type->isSigned)
2139 *value2 = (float)(float)op2.i;
2140 else if(op2.kind == 3)
2141 *value2 = (float)(float)op2.ui;
2142 else if(op2.kind == 4 && op2.type->isSigned)
2143 *value2 = (float)(float)op2.i64;
2144 else if(op2.kind == 4)
2145 *value2 = (float)(float)op2.ui64;
2146 else if(op2.kind == 23 && op2.type->isSigned)
2147 *value2 = (float)(float)op2.i64;
2148 else if(op2.kind == 23)
2149 *value2 = (float)(float)op2.ui64;
2150 else if(op2.kind == 22 && op2.type->isSigned)
2151 *value2 = (float)(float)op2.i64;
2152 else if(op2.kind == 22)
2153 *value2 = (float)(float)op2.ui64;
2154 else if(op2.kind == 2 && op2.type->isSigned)
2155 *value2 = (float)(float)op2.s;
2156 else if(op2.kind == 2)
2157 *value2 = (float)(float)op2.us;
2158 else if(op2.kind == 1 && op2.type->isSigned)
2159 *value2 = (float)(float)op2.c;
2160 else if(op2.kind == 24 || op2.kind == 1)
2161 *value2 = (float)(float)op2.uc;
2162 else if(op2.kind == 6)
2163 *value2 = (float)op2.f;
2164 else if(op2.kind == 7)
2165 *value2 = (float)op2.d;
2166 else if(op2.kind == 13)
2167 *value2 = (float)(float)op2.ui64;
2168 else
2169 return 0x0;
2170 return 0x1;
2171 }
2172
2173 unsigned int GetDouble(struct Expression * exp, double * value2)
2174 {
2175 struct Operand op2 = GetOperand(exp);
2176
2177 if(op2.kind == 3 && op2.type->isSigned)
2178 *value2 = (double)(double)op2.i;
2179 else if(op2.kind == 3)
2180 *value2 = (double)(double)op2.ui;
2181 else if(op2.kind == 4 && op2.type->isSigned)
2182 *value2 = (double)(double)op2.i64;
2183 else if(op2.kind == 4)
2184 *value2 = (double)(double)op2.ui64;
2185 else if(op2.kind == 23 && op2.type->isSigned)
2186 *value2 = (double)(double)op2.i64;
2187 else if(op2.kind == 23)
2188 *value2 = (double)(double)op2.ui64;
2189 else if(op2.kind == 22 && op2.type->isSigned)
2190 *value2 = (double)(double)op2.i64;
2191 else if(op2.kind == 22)
2192 *value2 = (double)(double)op2.ui64;
2193 else if(op2.kind == 2 && op2.type->isSigned)
2194 *value2 = (double)(double)op2.s;
2195 else if(op2.kind == 2)
2196 *value2 = (double)(double)op2.us;
2197 else if(op2.kind == 1 && op2.type->isSigned)
2198 *value2 = (double)(double)op2.c;
2199 else if(op2.kind == 24 || op2.kind == 1)
2200 *value2 = (double)(double)op2.uc;
2201 else if(op2.kind == 6)
2202 *value2 = (double)op2.f;
2203 else if(op2.kind == 7)
2204 *value2 = (double)op2.d;
2205 else if(op2.kind == 13)
2206 *value2 = (double)(double)op2.ui64;
2207 else
2208 return 0x0;
2209 return 0x1;
2210 }
2211
2212 void ComputeExpression(struct Expression * exp);
2213
2214 struct Context * SetupTemplatesContext(struct __ecereNameSpace__ecere__com__Class * _class);
2215
2216 extern int targetBits;
2217
2218 int ComputeTypeSize(struct Type * type);
2219
2220 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__BitMember;
2221
2222 struct __ecereNameSpace__ecere__com__BitMember
2223 {
2224 struct __ecereNameSpace__ecere__com__BitMember * prev;
2225 struct __ecereNameSpace__ecere__com__BitMember * next;
2226 char *  name;
2227 unsigned int isProperty;
2228 int memberAccess;
2229 int id;
2230 struct __ecereNameSpace__ecere__com__Class * _class;
2231 char *  dataTypeString;
2232 struct __ecereNameSpace__ecere__com__Class * dataTypeClass;
2233 struct Type * dataType;
2234 int type;
2235 int size;
2236 int pos;
2237 uint64 mask;
2238 } __attribute__ ((gcc_struct));
2239
2240 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__sys__OldLink;
2241
2242 struct __ecereNameSpace__ecere__sys__OldLink
2243 {
2244 struct __ecereNameSpace__ecere__sys__OldLink * prev;
2245 struct __ecereNameSpace__ecere__sys__OldLink * next;
2246 void *  data;
2247 } __attribute__ ((gcc_struct));
2248
2249 void FinishTemplatesContext(struct Context * context);
2250
2251 void ComputeClassMembers(struct __ecereNameSpace__ecere__com__Class * _class, unsigned int isMember)
2252 {
2253 struct __ecereNameSpace__ecere__com__DataMember * member = isMember ? (struct __ecereNameSpace__ecere__com__DataMember *)_class : (((void *)0));
2254 struct Context * context = isMember ? (((void *)0)) : SetupTemplatesContext(_class);
2255
2256 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))
2257 {
2258 int c;
2259 int unionMemberOffset = 0;
2260 int bitFields = 0;
2261
2262 if(member)
2263 {
2264 member->memberOffset = 0;
2265 if(targetBits < sizeof(void *) * 8)
2266 member->structAlignment = 0;
2267 }
2268 else if(targetBits < sizeof(void *) * 8)
2269 _class->structAlignment = 0;
2270 if(!member && ((_class->type == 0 || _class->type == 5) || (_class->type == 1 && _class->memberOffset && _class->memberOffset > _class->base->structSize)))
2271 _class->memberOffset = (_class->base && _class->type == 1) ? _class->base->structSize : 0;
2272 if(!member && _class->destructionWatchOffset)
2273 _class->memberOffset += sizeof(struct __ecereNameSpace__ecere__sys__OldList);
2274 {
2275 struct __ecereNameSpace__ecere__com__DataMember * dataMember;
2276
2277 for(dataMember = member ? member->members.first : _class->membersAndProperties.first; dataMember; dataMember = dataMember->next)
2278 {
2279 if(!dataMember->isProperty)
2280 {
2281 if(dataMember->type == 0 && dataMember->dataTypeString && !dataMember->dataType)
2282 {
2283 dataMember->dataType = ProcessTypeString(dataMember->dataTypeString, 0x0);
2284 }
2285 }
2286 }
2287 }
2288 {
2289 struct __ecereNameSpace__ecere__com__DataMember * dataMember;
2290
2291 for(dataMember = member ? member->members.first : _class->membersAndProperties.first; dataMember; dataMember = dataMember->next)
2292 {
2293 if(!dataMember->isProperty && (dataMember->type != 0 || dataMember->dataTypeString))
2294 {
2295 if(!isMember && _class->type == 2 && dataMember->dataType)
2296 {
2297 struct __ecereNameSpace__ecere__com__BitMember * bitMember = (struct __ecereNameSpace__ecere__com__BitMember *)dataMember;
2298 uint64 mask = 0;
2299 int d;
2300
2301 ComputeTypeSize(dataMember->dataType);
2302 if(bitMember->pos == -1)
2303 bitMember->pos = _class->memberOffset;
2304 if(!bitMember->size)
2305 bitMember->size = dataMember->dataType->size * 8;
2306 _class->memberOffset = bitMember->pos + bitMember->size;
2307 for(d = 0; d < bitMember->size; d++)
2308 {
2309 if(d)
2310 mask <<= 1;
2311 mask |= 1;
2312 }
2313 bitMember->mask = mask << bitMember->pos;
2314 }
2315 else if(dataMember->type == 0 && dataMember->dataType)
2316 {
2317 int size;
2318 int alignment = 0;
2319
2320 if(dataMember->dataType->kind != 8 || ((!dataMember->dataType->_class || !dataMember->dataType->_class->registered || dataMember->dataType->_class->registered != _class || _class->type != 1)))
2321 ComputeTypeSize(dataMember->dataType);
2322 if(dataMember->dataType->bitFieldCount)
2323 {
2324 bitFields += dataMember->dataType->bitFieldCount;
2325 size = 0;
2326 }
2327 else
2328 {
2329 if(bitFields)
2330 {
2331 int size = (bitFields + 7) / 8;
2332
2333 if(isMember)
2334 {
2335 int __simpleStruct0;
2336
2337 if(alignment)
2338 {
2339 int __simpleStruct0;
2340
2341 member->structAlignment = (__simpleStruct0 = member->structAlignment, (__simpleStruct0 > alignment) ? __simpleStruct0 : alignment);
2342 if(member->memberOffset % alignment)
2343 member->memberOffset += alignment - (member->memberOffset % alignment);
2344 }
2345 dataMember->offset = member->memberOffset;
2346 if(member->type == 1)
2347 unionMemberOffset = (__simpleStruct0 = dataMember->dataType->size, (unionMemberOffset > __simpleStruct0) ? unionMemberOffset : __simpleStruct0);
2348 else
2349 {
2350 member->memberOffset += size;
2351 }
2352 }
2353 else
2354 {
2355 if(alignment)
2356 {
2357 int __simpleStruct0;
2358
2359 _class->structAlignment = (__simpleStruct0 = _class->structAlignment, (__simpleStruct0 > alignment) ? __simpleStruct0 : alignment);
2360 if(_class->memberOffset % alignment)
2361 _class->memberOffset += alignment - (_class->memberOffset % alignment);
2362 }
2363 dataMember->offset = _class->memberOffset;
2364 _class->memberOffset += size;
2365 }
2366 bitFields = 0;
2367 }
2368 size = dataMember->dataType->size;
2369 alignment = dataMember->dataType->alignment;
2370 }
2371 if(isMember)
2372 {
2373 int __simpleStruct0;
2374
2375 if(alignment)
2376 {
2377 int __simpleStruct0;
2378
2379 member->structAlignment = (__simpleStruct0 = member->structAlignment, (__simpleStruct0 > alignment) ? __simpleStruct0 : alignment);
2380 if(member->memberOffset % alignment)
2381 member->memberOffset += alignment - (member->memberOffset % alignment);
2382 }
2383 dataMember->offset = member->memberOffset;
2384 if(member->type == 1)
2385 unionMemberOffset = (__simpleStruct0 = dataMember->dataType->size, (unionMemberOffset > __simpleStruct0) ? unionMemberOffset : __simpleStruct0);
2386 else
2387 {
2388 member->memberOffset += size;
2389 }
2390 }
2391 else
2392 {
2393 if(alignment)
2394 {
2395 int __simpleStruct0;
2396
2397 _class->structAlignment = (__simpleStruct0 = _class->structAlignment, (__simpleStruct0 > alignment) ? __simpleStruct0 : alignment);
2398 if(_class->memberOffset % alignment)
2399 _class->memberOffset += alignment - (_class->memberOffset % alignment);
2400 }
2401 dataMember->offset = _class->memberOffset;
2402 _class->memberOffset += size;
2403 }
2404 }
2405 else
2406 {
2407 int alignment;
2408
2409 ComputeClassMembers((struct __ecereNameSpace__ecere__com__Class *)dataMember, 0x1);
2410 alignment = dataMember->structAlignment;
2411 if(isMember)
2412 {
2413 int __simpleStruct0;
2414
2415 if(alignment)
2416 {
2417 int __simpleStruct0;
2418
2419 if(member->memberOffset % alignment)
2420 member->memberOffset += alignment - (member->memberOffset % alignment);
2421 member->structAlignment = (__simpleStruct0 = member->structAlignment, (__simpleStruct0 > alignment) ? __simpleStruct0 : alignment);
2422 }
2423 dataMember->offset = member->memberOffset;
2424 if(member->type == 1)
2425 unionMemberOffset = (__simpleStruct0 = dataMember->memberOffset, (unionMemberOffset > __simpleStruct0) ? unionMemberOffset : __simpleStruct0);
2426 else
2427 member->memberOffset += dataMember->memberOffset;
2428 }
2429 else
2430 {
2431 if(alignment)
2432 {
2433 int __simpleStruct0;
2434
2435 if(_class->memberOffset % alignment)
2436 _class->memberOffset += alignment - (_class->memberOffset % alignment);
2437 _class->structAlignment = (__simpleStruct0 = _class->structAlignment, (__simpleStruct0 > alignment) ? __simpleStruct0 : alignment);
2438 }
2439 dataMember->offset = _class->memberOffset;
2440 _class->memberOffset += dataMember->memberOffset;
2441 }
2442 }
2443 }
2444 }
2445 if(bitFields)
2446 {
2447 int alignment = 0;
2448 int size = (bitFields + 7) / 8;
2449
2450 if(isMember)
2451 {
2452 int __simpleStruct0;
2453
2454 if(alignment)
2455 {
2456 int __simpleStruct0;
2457
2458 member->structAlignment = (__simpleStruct0 = member->structAlignment, (__simpleStruct0 > alignment) ? __simpleStruct0 : alignment);
2459 if(member->memberOffset % alignment)
2460 member->memberOffset += alignment - (member->memberOffset % alignment);
2461 }
2462 if(member->type == 1)
2463 unionMemberOffset = (__simpleStruct0 = dataMember->dataType->size, (unionMemberOffset > __simpleStruct0) ? unionMemberOffset : __simpleStruct0);
2464 else
2465 {
2466 member->memberOffset += size;
2467 }
2468 }
2469 else
2470 {
2471 if(alignment)
2472 {
2473 int __simpleStruct0;
2474
2475 _class->structAlignment = (__simpleStruct0 = _class->structAlignment, (__simpleStruct0 > alignment) ? __simpleStruct0 : alignment);
2476 if(_class->memberOffset % alignment)
2477 _class->memberOffset += alignment - (_class->memberOffset % alignment);
2478 }
2479 _class->memberOffset += size;
2480 }
2481 bitFields = 0;
2482 }
2483 }
2484 if(member && member->type == 1)
2485 {
2486 member->memberOffset = unionMemberOffset;
2487 }
2488 if(!isMember)
2489 {
2490 if(_class->type != 2)
2491 {
2492 int extra = 0;
2493
2494 if(_class->structAlignment)
2495 {
2496 if(_class->memberOffset % _class->structAlignment)
2497 extra += _class->structAlignment - (_class->memberOffset % _class->structAlignment);
2498 }
2499 _class->structSize = (_class->base ? (_class->base->templateClass ? _class->base->templateClass->structSize : _class->base->structSize) : 0) + _class->memberOffset + extra;
2500 if(!member)
2501 {
2502 struct __ecereNameSpace__ecere__com__Property * prop;
2503
2504 for(prop = _class->membersAndProperties.first; prop; prop = prop->next)
2505 {
2506 if(prop->isProperty && prop->isWatchable)
2507 {
2508 prop->watcherOffset = _class->structSize;
2509 _class->structSize += sizeof(struct __ecereNameSpace__ecere__sys__OldList);
2510 }
2511 }
2512 }
2513 {
2514 struct __ecereNameSpace__ecere__sys__OldLink * derivative;
2515
2516 for(derivative = _class->derivatives.first; derivative; derivative = derivative->next)
2517 {
2518 struct __ecereNameSpace__ecere__com__Class * deriv = derivative->data;
2519
2520 if(deriv->computeSize)
2521 {
2522 deriv->offset = _class->structSize;
2523 deriv->memberOffset = 0;
2524 deriv->structSize = deriv->offset;
2525 ComputeClassMembers(deriv, 0x0);
2526 }
2527 }
2528 }
2529 }
2530 }
2531 }
2532 if(context)
2533 FinishTemplatesContext(context);
2534 }
2535
2536 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__NameSpace;
2537
2538 struct __ecereNameSpace__ecere__com__NameSpace
2539 {
2540 char *  name;
2541 struct __ecereNameSpace__ecere__com__NameSpace *  btParent;
2542 struct __ecereNameSpace__ecere__com__NameSpace *  left;
2543 struct __ecereNameSpace__ecere__com__NameSpace *  right;
2544 int depth;
2545 struct __ecereNameSpace__ecere__com__NameSpace *  parent;
2546 struct __ecereNameSpace__ecere__sys__BinaryTree nameSpaces;
2547 struct __ecereNameSpace__ecere__sys__BinaryTree classes;
2548 struct __ecereNameSpace__ecere__sys__BinaryTree defines;
2549 struct __ecereNameSpace__ecere__sys__BinaryTree functions;
2550 } __attribute__ ((gcc_struct));
2551
2552 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__Module;
2553
2554 struct __ecereNameSpace__ecere__com__Module
2555 {
2556 struct __ecereNameSpace__ecere__com__Instance * application;
2557 struct __ecereNameSpace__ecere__sys__OldList classes;
2558 struct __ecereNameSpace__ecere__sys__OldList defines;
2559 struct __ecereNameSpace__ecere__sys__OldList functions;
2560 struct __ecereNameSpace__ecere__sys__OldList modules;
2561 struct __ecereNameSpace__ecere__com__Instance * prev;
2562 struct __ecereNameSpace__ecere__com__Instance * next;
2563 char *  name;
2564 void *  library;
2565 void *  Unload;
2566 int importType;
2567 int origImportType;
2568 struct __ecereNameSpace__ecere__com__NameSpace privateNameSpace;
2569 struct __ecereNameSpace__ecere__com__NameSpace publicNameSpace;
2570 } __attribute__ ((gcc_struct));
2571
2572 void ComputeModuleClasses(struct __ecereNameSpace__ecere__com__Instance * module)
2573 {
2574 struct __ecereNameSpace__ecere__com__Class * _class;
2575 struct __ecereNameSpace__ecere__sys__OldLink * subModule;
2576
2577 for(subModule = ((struct __ecereNameSpace__ecere__com__Module *)(((char *)module + structSize_Instance)))->modules.first; subModule; subModule = subModule->next)
2578 ComputeModuleClasses(subModule->data);
2579 for(_class = ((struct __ecereNameSpace__ecere__com__Module *)(((char *)module + structSize_Instance)))->classes.first; _class; _class = _class->next)
2580 ComputeClassMembers(_class, 0x0);
2581 }
2582
2583 extern unsigned int inCompiler;
2584
2585 extern void Compiler_Error(char *  format, ...);
2586
2587 extern char *  __ecereNameSpace__ecere__GetTranslatedString(char * name, char *  string, char *  stringAndContext);
2588
2589 int ComputeTypeSize(struct Type * type)
2590 {
2591 unsigned int size = type ? type->size : 0;
2592
2593 if(!size && type && !type->computing)
2594 {
2595 type->computing = 0x1;
2596 switch(type->kind)
2597 {
2598 case 24:
2599 type->alignment = size = sizeof(char);
2600 break;
2601 case 1:
2602 type->alignment = size = sizeof(char);
2603 break;
2604 case 3:
2605 type->alignment = size = sizeof(int);
2606 break;
2607 case 4:
2608 type->alignment = size = sizeof(long long);
2609 break;
2610 case 22:
2611 type->alignment = size = targetBits / 8;
2612 break;
2613 case 23:
2614 type->alignment = size = targetBits / 8;
2615 break;
2616 case 5:
2617 type->alignment = size = sizeof(long);
2618 break;
2619 case 2:
2620 type->alignment = size = sizeof(short);
2621 break;
2622 case 6:
2623 type->alignment = size = sizeof(float);
2624 break;
2625 case 7:
2626 type->alignment = size = sizeof(double);
2627 break;
2628 case 8:
2629 {
2630 struct __ecereNameSpace__ecere__com__Class * _class = type->_class ? type->_class->registered : (((void *)0));
2631
2632 if(_class && _class->type == 1)
2633 {
2634 ComputeClassMembers(_class, 0x0);
2635 type->alignment = _class->structAlignment;
2636 size = _class->structSize;
2637 if(type->alignment && size % type->alignment)
2638 size += type->alignment - (size % type->alignment);
2639 }
2640 else if(_class && (_class->type == 3 || _class->type == 4 || _class->type == 2))
2641 {
2642 if(!_class->dataType)
2643 _class->dataType = ProcessTypeString(_class->dataTypeString, 0x0);
2644 size = type->alignment = ComputeTypeSize(_class->dataType);
2645 }
2646 else
2647 size = type->alignment = targetBits / 8;
2648 break;
2649 }
2650 case 13:
2651 case 19:
2652 size = type->alignment = targetBits / 8;
2653 break;
2654 case 12:
2655 if(type->arraySizeExp)
2656 {
2657 ProcessExpressionType(type->arraySizeExp);
2658 ComputeExpression(type->arraySizeExp);
2659 if(!type->arraySizeExp->isConstant || (type->arraySizeExp->expType->kind != 3 && type->arraySizeExp->expType->kind != 15 && (type->arraySizeExp->expType->kind != 8 || !type->arraySizeExp->expType->_class->registered || type->arraySizeExp->expType->_class->registered->type != 4)))
2660 {
2661 struct Location oldLoc = yylloc;
2662 char expression[10240];
2663
2664 expression[0] = '\0';
2665 type->arraySizeExp->expType = (((void *)0));
2666 yylloc = type->arraySizeExp->loc;
2667 if(inCompiler)
2668 PrintExpression(type->arraySizeExp, expression);
2669 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "Array size not constant int (%s)\n", (((void *)0))), expression);
2670 yylloc = oldLoc;
2671 }
2672 GetInt(type->arraySizeExp, &type->arraySize);
2673 }
2674 else if(type->enumClass)
2675 {
2676 if(type->enumClass && type->enumClass->registered && type->enumClass->registered->type == 4)
2677 {
2678 type->arraySize = (int)__ecereNameSpace__ecere__com__eClass_GetProperty(type->enumClass->registered, "enumSize");
2679 }
2680 else
2681 type->arraySize = 0;
2682 }
2683 else
2684 {
2685 type->arraySize = 0;
2686 }
2687 size = ComputeTypeSize(type->type) * type->arraySize;
2688 if(type->type)
2689 type->alignment = type->type->alignment;
2690 break;
2691 case 9:
2692 {
2693 struct Type * member;
2694
2695 for(member = type->members.first; member; member = member->next)
2696 {
2697 int __simpleStruct0, __simpleStruct1;
2698 unsigned int addSize = ComputeTypeSize(member);
2699
2700 member->offset = size;
2701 if(member->alignment && size % member->alignment)
2702 member->offset += member->alignment - (size % member->alignment);
2703 size = member->offset;
2704 type->alignment = (__simpleStruct0 = type->alignment, __simpleStruct1 = member->alignment, (__simpleStruct0 > __simpleStruct1) ? __simpleStruct0 : __simpleStruct1);
2705 size += addSize;
2706 }
2707 if(type->alignment && size % type->alignment)
2708 size += type->alignment - (size % type->alignment);
2709 break;
2710 }
2711 case 10:
2712 {
2713 struct Type * member;
2714
2715 for(member = type->members.first; member; member = member->next)
2716 {
2717 int __simpleStruct0, __simpleStruct1;
2718 unsigned int addSize = ComputeTypeSize(member);
2719
2720 member->offset = size;
2721 if(member->alignment && size % member->alignment)
2722 member->offset += member->alignment - (size % member->alignment);
2723 size = member->offset;
2724 type->alignment = (__simpleStruct0 = type->alignment, __simpleStruct1 = member->alignment, (__simpleStruct0 > __simpleStruct1) ? __simpleStruct0 : __simpleStruct1);
2725 size = ((size > addSize) ? size : addSize);
2726 }
2727 if(type->alignment && size % type->alignment)
2728 size += type->alignment - (size % type->alignment);
2729 break;
2730 }
2731 case 20:
2732 {
2733 struct TemplateParameter * param = type->templateParameter;
2734 struct Type * baseType = ProcessTemplateParameterType(param);
2735
2736 if(baseType)
2737 {
2738 size = ComputeTypeSize(baseType);
2739 type->alignment = baseType->alignment;
2740 }
2741 else
2742 type->alignment = size = sizeof(uint64);
2743 break;
2744 }
2745 case 15:
2746 {
2747 type->alignment = size = sizeof(enum
2748 {
2749 test
2750 });
2751 break;
2752 }
2753 case 21:
2754 {
2755 type->alignment = size = targetBits / 8;
2756 break;
2757 }
2758 }
2759 type->size = size;
2760 type->computing = 0x0;
2761 }
2762 return size;
2763 }
2764
2765 extern struct Declarator * MkDeclaratorIdentifier(struct Identifier * id);
2766
2767 extern struct Identifier * MkIdentifier(char *  string);
2768
2769 extern void ListAdd(struct __ecereNameSpace__ecere__sys__OldList * list, void *  item);
2770
2771 extern struct Declarator * MkStructDeclarator(struct Declarator * declarator, struct Expression * exp);
2772
2773 extern struct ClassDef * MkClassDefDeclaration(struct Declaration * decl);
2774
2775 extern struct Declaration * MkStructDeclaration(struct __ecereNameSpace__ecere__sys__OldList * specifiers, struct __ecereNameSpace__ecere__sys__OldList * declarators, struct Specifier * extStorage);
2776
2777 void ReplaceThisClassSpecifiers(struct __ecereNameSpace__ecere__sys__OldList * specs, struct __ecereNameSpace__ecere__com__Class * _class);
2778
2779 static void DeclareType(struct Type * type, unsigned int declarePointers, unsigned int declareParams);
2780
2781 extern void FreeType(struct Type * type);
2782
2783 extern struct Specifier * MkStructOrUnion(int type, struct Identifier * id, struct __ecereNameSpace__ecere__sys__OldList * definitions);
2784
2785 extern struct Specifier * MkSpecifier(int specifier);
2786
2787 extern struct Declarator * MkDeclaratorArray(struct Declarator * declarator, struct Expression * exp);
2788
2789 extern struct Expression * MkExpConstant(char *  string);
2790
2791 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)
2792 {
2793 struct __ecereNameSpace__ecere__com__DataMember * topMember = isMember ? (struct __ecereNameSpace__ecere__com__DataMember *)_class : (((void *)0));
2794 unsigned int totalSize = 0;
2795 unsigned int maxSize = 0;
2796 int alignment, size;
2797 struct __ecereNameSpace__ecere__com__DataMember * member;
2798 struct Context * context = isMember ? (((void *)0)) : SetupTemplatesContext(_class);
2799
2800 if(addedPadding)
2801 *addedPadding = 0x0;
2802 if(!isMember && _class->base)
2803 {
2804 maxSize = _class->structSize;
2805 {
2806 if(_class->type == 1 || _class->type == 5)
2807 AddMembers(declarations, _class->base, 0x0, &totalSize, topClass, (((void *)0)));
2808 else
2809 {
2810 unsigned int baseSize = _class->base->templateClass ? _class->base->templateClass->structSize : _class->base->structSize;
2811
2812 if(maxSize > baseSize)
2813 maxSize -= baseSize;
2814 else
2815 maxSize = 0;
2816 }
2817 }
2818 }
2819 for(member = isMember ? topMember->members.first : _class->membersAndProperties.first; member; member = member->next)
2820 {
2821 if(!member->isProperty)
2822 {
2823 switch(member->type)
2824 {
2825 case 0:
2826 {
2827 if(member->dataTypeString)
2828 {
2829 struct __ecereNameSpace__ecere__sys__OldList * specs = MkList(), * decls = MkList();
2830 struct Declarator * decl;
2831
2832 decl = SpecDeclFromString(member->dataTypeString, specs, MkDeclaratorIdentifier(MkIdentifier(member->name)));
2833 ListAdd(decls, MkStructDeclarator(decl, (((void *)0))));
2834 ListAdd(declarations, MkClassDefDeclaration(MkStructDeclaration(specs, decls, (((void *)0)))));
2835 if(!member->dataType)
2836 member->dataType = ProcessType(specs, decl);
2837 ReplaceThisClassSpecifiers(specs, topClass);
2838 {
2839 struct Type * type = ProcessType(specs, decl);
2840
2841 DeclareType(member->dataType, 0x0, 0x0);
2842 FreeType(type);
2843 }
2844 ComputeTypeSize(member->dataType);
2845 size = member->dataType->size;
2846 alignment = member->dataType->alignment;
2847 if(alignment)
2848 {
2849 if(totalSize % alignment)
2850 totalSize += alignment - (totalSize % alignment);
2851 }
2852 totalSize += size;
2853 }
2854 break;
2855 }
2856 case 1:
2857 case 2:
2858 {
2859 struct __ecereNameSpace__ecere__sys__OldList * specs = MkList(), * list = MkList();
2860
2861 size = 0;
2862 AddMembers(list, (struct __ecereNameSpace__ecere__com__Class *)member, 0x1, &size, topClass, (((void *)0)));
2863 ListAdd(specs, MkStructOrUnion((member->type == 1) ? 4 : 3, (((void *)0)), list));
2864 ListAdd(declarations, MkClassDefDeclaration(MkStructDeclaration(specs, (((void *)0)), (((void *)0)))));
2865 alignment = member->structAlignment;
2866 if(alignment)
2867 {
2868 if(totalSize % alignment)
2869 totalSize += alignment - (totalSize % alignment);
2870 }
2871 totalSize += size;
2872 break;
2873 }
2874 }
2875 }
2876 }
2877 if(retSize)
2878 {
2879 unsigned int __simpleStruct0;
2880
2881 if(topMember && topMember->type == 1)
2882 *retSize = (__simpleStruct0 = *retSize, (__simpleStruct0 > totalSize) ? __simpleStruct0 : totalSize);
2883 else
2884 *retSize += totalSize;
2885 }
2886 else if(totalSize < maxSize && _class->type != 1000)
2887 {
2888 int autoPadding = 0;
2889
2890 if(!isMember && _class->structAlignment && totalSize % _class->structAlignment)
2891 autoPadding = _class->structAlignment - (totalSize % _class->structAlignment);
2892 if(totalSize + autoPadding < maxSize)
2893 {
2894 char sizeString[50];
2895
2896 sprintf(sizeString, "%d", maxSize - totalSize);
2897 ListAdd(declarations, MkClassDefDeclaration(MkStructDeclaration(MkListOne(MkSpecifier(CHAR)), MkListOne(MkDeclaratorArray(MkDeclaratorIdentifier(MkIdentifier("__ecere_padding")), MkExpConstant(sizeString))), (((void *)0)))));
2898 if(addedPadding)
2899 *addedPadding = 0x1;
2900 }
2901 }
2902 if(context)
2903 FinishTemplatesContext(context);
2904 return topMember ? topMember->memberID : _class->memberID;
2905 }
2906
2907 static int DeclareMembers(struct __ecereNameSpace__ecere__com__Class * _class, unsigned int isMember)
2908 {
2909 struct __ecereNameSpace__ecere__com__DataMember * topMember = isMember ? (struct __ecereNameSpace__ecere__com__DataMember *)_class : (((void *)0));
2910 unsigned int totalSize = 0;
2911 struct __ecereNameSpace__ecere__com__DataMember * member;
2912 struct Context * context = isMember ? (((void *)0)) : SetupTemplatesContext(_class);
2913
2914 if(!isMember && (_class->type == 1 || _class->type == 5) && _class->base->type != 1000)
2915 DeclareMembers(_class->base, 0x0);
2916 for(member = isMember ? topMember->members.first : _class->membersAndProperties.first; member; member = member->next)
2917 {
2918 if(!member->isProperty)
2919 {
2920 switch(member->type)
2921 {
2922 case 0:
2923 {
2924 if(!member->dataType && member->dataTypeString)
2925 member->dataType = ProcessTypeString(member->dataTypeString, 0x0);
2926 if(member->dataType)
2927 DeclareType(member->dataType, 0x0, 0x0);
2928 break;
2929 }
2930 case 1:
2931 case 2:
2932 {
2933 DeclareMembers((struct __ecereNameSpace__ecere__com__Class *)member, 0x1);
2934 break;
2935 }
2936 }
2937 }
2938 }
2939 if(context)
2940 FinishTemplatesContext(context);
2941 return topMember ? topMember->memberID : _class->memberID;
2942 }
2943
2944 extern struct Symbol * FindClass(char *  name);
2945
2946 extern char *  strchr(const char * , int);
2947
2948 extern void FullClassNameCat(char *  output, char *  className, unsigned int includeTemplateParams);
2949
2950 extern void FreeList(struct __ecereNameSpace__ecere__sys__OldList * list, void (*  FreeFunction)(void * ));
2951
2952 extern void FreeClassDef(struct ClassDef * def);
2953
2954 extern struct External * MkExternalDeclaration(struct Declaration * declaration);
2955
2956 extern struct Declaration * MkDeclaration(struct __ecereNameSpace__ecere__sys__OldList * specifiers, struct __ecereNameSpace__ecere__sys__OldList * initDeclarators);
2957
2958 extern char *  strcpy(char * , const char * );
2959
2960 extern void MangleClassName(char *  className);
2961
2962 extern void DeclareClass(struct Symbol * classSym, char *  className);
2963
2964 void __ecereMethod___ecereNameSpace__ecere__sys__OldList_Move(struct __ecereNameSpace__ecere__sys__OldList * this, void *  item, void *  prevItem);
2965
2966 unsigned int __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert(struct __ecereNameSpace__ecere__sys__OldList * this, void *  prevItem, void *  item);
2967
2968 void DeclareStruct(char * name, unsigned int skipNoHead)
2969 {
2970 struct External * external = (((void *)0));
2971 struct Symbol * classSym = FindClass(name);
2972
2973 if(!inCompiler || !classSym)
2974 return ;
2975 if(classSym->registered && (classSym->registered->type == 2 || classSym->registered->type == 3 || classSym->registered->type == 4))
2976 return ;
2977 if(classSym->registered && classSym->imported && !classSym->declaredStructSym)
2978 {
2979 struct Declaration * decl;
2980 struct __ecereNameSpace__ecere__sys__OldList * specifiers, * declarators;
2981 struct __ecereNameSpace__ecere__sys__OldList * declarations = (((void *)0));
2982 char structName[1024];
2983
2984 external = (classSym->registered && classSym->registered->type == 1) ? classSym->pointerExternal : classSym->structExternal;
2985 classSym->declaring++;
2986 if(strchr(classSym->string, '<'))
2987 {
2988 if(classSym->registered->templateClass)
2989 {
2990 DeclareStruct(classSym->registered->templateClass->fullName, skipNoHead);
2991 classSym->declaring--;
2992 }
2993 return ;
2994 }
2995 DeclareMembers(classSym->registered, 0x0);
2996 structName[0] = (char)0;
2997 FullClassNameCat(structName, name, 0x0);
2998 if(!skipNoHead)
2999 {
3000 unsigned int addedPadding = 0x0;
3001
3002 classSym->declaredStructSym = 0x1;
3003 declarations = MkList();
3004 AddMembers(declarations, classSym->registered, 0x0, (((void *)0)), classSym->registered, &addedPadding);
3005 if(!(*declarations).count || ((*declarations).count == 1 && addedPadding))
3006 {
3007 FreeList(declarations, FreeClassDef);
3008 declarations = (((void *)0));
3009 }
3010 }
3011 if(skipNoHead || declarations)
3012 {
3013 if(external && external->declaration)
3014 {
3015 ((struct Specifier *)(*external->declaration->specifiers).first)->definitions = declarations;
3016 if(curExternal && curExternal->symbol && curExternal->symbol->idCode < classSym->id)
3017 {
3018 if(classSym->structExternal)
3019 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Move((&*ast), classSym->structExternal, curExternal->prev);
3020 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Move((&*ast), classSym->pointerExternal, curExternal->prev);
3021 classSym->id = curExternal->symbol->idCode;
3022 classSym->idCode = curExternal->symbol->idCode;
3023 }
3024 }
3025 else
3026 {
3027 if(!external)
3028 external = MkExternalDeclaration((((void *)0)));
3029 specifiers = MkList();
3030 declarators = MkList();
3031 ListAdd(specifiers, MkStructOrUnion(3, MkIdentifier(structName), declarations));
3032 external->declaration = decl = MkDeclaration(specifiers, declarators);
3033 if(decl->symbol && !decl->symbol->pointerExternal)
3034 decl->symbol->pointerExternal = external;
3035 if(classSym->registered && classSym->registered->type == 1)
3036 {
3037 char className[1024];
3038
3039 strcpy(className, "__ecereClass_");
3040 FullClassNameCat(className, classSym->string, 0x1);
3041 MangleClassName(className);
3042 DeclareClass(classSym, className);
3043 external->symbol = classSym;
3044 classSym->pointerExternal = external;
3045 classSym->id = (curExternal && curExternal->symbol) ? curExternal->symbol->idCode : 0;
3046 classSym->idCode = (curExternal && curExternal->symbol) ? curExternal->symbol->idCode : 0;
3047 }
3048 else
3049 {
3050 char className[1024];
3051
3052 strcpy(className, "__ecereClass_");
3053 FullClassNameCat(className, classSym->string, 0x1);
3054 MangleClassName(className);
3055 classSym->structExternal = external;
3056 DeclareClass(classSym, className);
3057 external->symbol = classSym;
3058 }
3059 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*ast), curExternal ? curExternal->prev : (((void *)0)), external);
3060 }
3061 }
3062 classSym->declaring--;
3063 }
3064 else if(curExternal && curExternal->symbol && curExternal->symbol->idCode < classSym->id)
3065 {
3066 classSym->declaring++;
3067 {
3068 if(classSym->registered)
3069 DeclareMembers(classSym->registered, 0x0);
3070 }
3071 if(classSym->registered && (classSym->registered->type == 1 || classSym->registered->type == 5))
3072 {
3073 if(classSym->structExternal)
3074 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Move((&*ast), classSym->structExternal, curExternal->prev);
3075 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Move((&*ast), classSym->pointerExternal, curExternal->prev);
3076 classSym->id = curExternal->symbol->idCode;
3077 classSym->idCode = curExternal->symbol->idCode;
3078 }
3079 classSym->declaring--;
3080 }
3081 }
3082
3083 extern char *  strcat(char * , const char * );
3084
3085 extern struct ModuleImport * FindModule(struct __ecereNameSpace__ecere__com__Instance * moduleToFind);
3086
3087 extern struct ModuleImport * mainModule;
3088
3089 extern struct Specifier * MkSpecifierName(char *  name);
3090
3091 extern struct Declarator * MkDeclaratorBrackets(struct Declarator * declarator);
3092
3093 extern struct Declarator * PlugDeclarator(struct Declarator * decl, struct Declarator * baseDecl);
3094
3095 extern struct Declarator * MkDeclaratorFunction(struct Declarator * declarator, struct __ecereNameSpace__ecere__sys__OldList * parameters);
3096
3097 extern struct InitDeclarator * MkInitDeclarator(struct Declarator * declarator, struct Initializer * initializer);
3098
3099 extern void FreeDeclarator(struct Declarator * decl);
3100
3101 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_PropertyImport;
3102
3103 struct PropertyImport
3104 {
3105 struct PropertyImport * prev;
3106 struct PropertyImport * next;
3107 char *  name;
3108 unsigned int isVirtual;
3109 unsigned int hasSet;
3110 unsigned int hasGet;
3111 } __attribute__ ((gcc_struct));
3112
3113 void __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(struct __ecereNameSpace__ecere__sys__OldList * this, void *  item);
3114
3115 void DeclareProperty(struct __ecereNameSpace__ecere__com__Property * prop, char * setName, char * getName)
3116 {
3117 struct Symbol * symbol = prop->symbol;
3118 char propName[1024];
3119
3120 strcpy(setName, "__ecereProp_");
3121 FullClassNameCat(setName, prop->_class->fullName, 0x0);
3122 strcat(setName, "_Set_");
3123 FullClassNameCat(setName, prop->name, 0x1);
3124 strcpy(getName, "__ecereProp_");
3125 FullClassNameCat(getName, prop->_class->fullName, 0x0);
3126 strcat(getName, "_Get_");
3127 FullClassNameCat(getName, prop->name, 0x1);
3128 strcpy(propName, "__ecereProp_");
3129 FullClassNameCat(propName, prop->_class->fullName, 0x0);
3130 strcat(propName, "_");
3131 FullClassNameCat(propName, prop->name, 0x1);
3132 MangleClassName(getName);
3133 MangleClassName(setName);
3134 MangleClassName(propName);
3135 if(prop->_class->type == 1)
3136 DeclareStruct(prop->_class->fullName, 0x0);
3137 if(!symbol || curExternal->symbol->idCode < symbol->id)
3138 {
3139 unsigned int imported = 0x0;
3140 unsigned int dllImport = 0x0;
3141
3142 if(!symbol || symbol->_import)
3143 {
3144 if(!symbol)
3145 {
3146 struct Symbol * classSym;
3147
3148 if(!prop->_class->symbol)
3149 prop->_class->symbol = FindClass(prop->_class->fullName);
3150 classSym = prop->_class->symbol;
3151 if(classSym && !classSym->_import)
3152 {
3153 struct ModuleImport * module;
3154
3155 if(prop->_class->module)
3156 module = FindModule(prop->_class->module);
3157 else
3158 module = mainModule;
3159 classSym->_import = __extension__ ({
3160 struct ClassImport * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_ClassImport);
3161
3162 __ecereInstance1->name = __ecereNameSpace__ecere__sys__CopyString(prop->_class->fullName), __ecereInstance1->isRemote = prop->_class->isRemote, __ecereInstance1;
3163 });
3164 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(&module->classes, classSym->_import);
3165 }
3166 symbol = prop->symbol = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol);
3167 symbol->_import = (struct ClassImport *)__extension__ ({
3168 struct PropertyImport * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_PropertyImport);
3169
3170 __ecereInstance1->name = __ecereNameSpace__ecere__sys__CopyString(prop->name), __ecereInstance1->isVirtual = 0x0, __ecereInstance1->hasSet = prop->Set ? 0x1 : 0x0, __ecereInstance1->hasGet = prop->Get ? 0x1 : 0x0, __ecereInstance1;
3171 });
3172 if(classSym)
3173 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(&classSym->_import->properties, symbol->_import);
3174 }
3175 imported = 0x1;
3176 if(prop->_class->module != privateModule && ((struct __ecereNameSpace__ecere__com__Module *)(((char *)prop->_class->module + structSize_Instance)))->importType != 1)
3177 dllImport = 0x1;
3178 }
3179 if(!symbol->type)
3180 {
3181 struct Context * context = SetupTemplatesContext(prop->_class);
3182
3183 symbol->type = ProcessTypeString(prop->dataTypeString, 0x0);
3184 FinishTemplatesContext(context);
3185 }
3186 if(prop->Get)
3187 {
3188 if(!symbol->externalGet || symbol->externalGet->type == 0)
3189 {
3190 struct Declaration * decl;
3191 struct __ecereNameSpace__ecere__sys__OldList * specifiers, * declarators;
3192 struct Declarator * d;
3193 struct __ecereNameSpace__ecere__sys__OldList * params;
3194 struct Specifier * spec;
3195 struct External * external;
3196 struct Declarator * typeDecl;
3197 unsigned int simple = 0x0;
3198
3199 specifiers = MkList();
3200 declarators = MkList();
3201 params = MkList();
3202 ListAdd(params, MkTypeName(MkListOne(MkSpecifierName(prop->_class->fullName)), MkDeclaratorIdentifier(MkIdentifier("this"))));
3203 d = MkDeclaratorIdentifier(MkIdentifier(getName));
3204 if(dllImport)
3205 d = MkDeclaratorBrackets(MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), d));
3206 {
3207 struct Context * context = SetupTemplatesContext(prop->_class);
3208
3209 typeDecl = SpecDeclFromString(prop->dataTypeString, specifiers, (((void *)0)));
3210 FinishTemplatesContext(context);
3211 }
3212 for(spec = (*specifiers).first; spec; spec = spec->next)
3213 {
3214 if(spec->type == 1)
3215 {
3216 if((!typeDecl || typeDecl->type == 1))
3217 {
3218 struct Symbol * classSym = spec->symbol;
3219
3220 symbol->_class = classSym->registered;
3221 if(classSym->registered && classSym->registered->type == 1)
3222 {
3223 DeclareStruct(spec->name, 0x0);
3224 simple = 0x1;
3225 }
3226 }
3227 }
3228 }
3229 if(!simple)
3230 d = PlugDeclarator(typeDecl, d);
3231 else
3232 {
3233 ListAdd(params, MkTypeName(specifiers, PlugDeclarator(typeDecl, MkDeclaratorIdentifier(MkIdentifier("value")))));
3234 specifiers = MkList();
3235 }
3236 d = MkDeclaratorFunction(d, params);
3237 if(dllImport)
3238 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*specifiers), (((void *)0)), MkSpecifier(EXTERN));
3239 else if(prop->_class->symbol && ((struct Symbol *)prop->_class->symbol)->isStatic)
3240 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*specifiers), (((void *)0)), MkSpecifier(STATIC));
3241 if(simple)
3242 ListAdd(specifiers, MkSpecifier(VOID));
3243 ListAdd(declarators, MkInitDeclarator(d, (((void *)0))));
3244 decl = MkDeclaration(specifiers, declarators);
3245 external = MkExternalDeclaration(decl);
3246 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*ast), curExternal->prev, external);
3247 external->symbol = symbol;
3248 symbol->externalGet = external;
3249 ReplaceThisClassSpecifiers(specifiers, prop->_class);
3250 if(typeDecl)
3251 FreeDeclarator(typeDecl);
3252 }
3253 else
3254 {
3255 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Move((&*ast), symbol->externalGet, curExternal->prev);
3256 }
3257 }
3258 if(prop->Set)
3259 {
3260 if(!symbol->externalSet || symbol->externalSet->type == 0)
3261 {
3262 struct Declaration * decl;
3263 struct __ecereNameSpace__ecere__sys__OldList * specifiers, * declarators;
3264 struct Declarator * d;
3265 struct __ecereNameSpace__ecere__sys__OldList * params;
3266 struct Specifier * spec;
3267 struct External * external;
3268 struct Declarator * typeDecl;
3269
3270 declarators = MkList();
3271 params = MkList();
3272 if(!prop->conversion || prop->_class->type == 1)
3273 {
3274 ListAdd(params, MkTypeName(MkListOne(MkSpecifierName(prop->_class->fullName)), MkDeclaratorIdentifier(MkIdentifier("this"))));
3275 }
3276 specifiers = MkList();
3277 {
3278 struct Context * context = SetupTemplatesContext(prop->_class);
3279
3280 typeDecl = d = SpecDeclFromString(prop->dataTypeString, specifiers, MkDeclaratorIdentifier(MkIdentifier("value")));
3281 FinishTemplatesContext(context);
3282 }
3283 ListAdd(params, MkTypeName(specifiers, d));
3284 d = MkDeclaratorIdentifier(MkIdentifier(setName));
3285 if(dllImport)
3286 d = MkDeclaratorBrackets(MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), d));
3287 d = MkDeclaratorFunction(d, params);
3288 for(spec = (*specifiers).first; spec; spec = spec->next)
3289 {
3290 if(spec->type == 1)
3291 {
3292 if((!typeDecl || typeDecl->type == 1))
3293 {
3294 struct Symbol * classSym = spec->symbol;
3295
3296 symbol->_class = classSym->registered;
3297 if(classSym->registered && classSym->registered->type == 1)
3298 DeclareStruct(spec->name, 0x0);
3299 }
3300 }
3301 }
3302 ListAdd(declarators, MkInitDeclarator(d, (((void *)0))));
3303 specifiers = MkList();
3304 if(dllImport)
3305 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*specifiers), (((void *)0)), MkSpecifier(EXTERN));
3306 else if(prop->_class->symbol && ((struct Symbol *)prop->_class->symbol)->isStatic)
3307 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*specifiers), (((void *)0)), MkSpecifier(STATIC));
3308 if(!prop->conversion || prop->_class->type == 1)
3309 ListAdd(specifiers, MkSpecifier(VOID));
3310 else
3311 ListAdd(specifiers, MkSpecifierName(prop->_class->fullName));
3312 decl = MkDeclaration(specifiers, declarators);
3313 external = MkExternalDeclaration(decl);
3314 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*ast), curExternal->prev, external);
3315 external->symbol = symbol;
3316 symbol->externalSet = external;
3317 ReplaceThisClassSpecifiers(specifiers, prop->_class);
3318 }
3319 else
3320 {
3321 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Move((&*ast), symbol->externalSet, curExternal->prev);
3322 }
3323 }
3324 if(!symbol->externalPtr)
3325 {
3326 struct Declaration * decl;
3327 struct External * external;
3328 struct __ecereNameSpace__ecere__sys__OldList * specifiers = MkList();
3329
3330 if(imported)
3331 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*specifiers), (((void *)0)), MkSpecifier(EXTERN));
3332 else
3333 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*specifiers), (((void *)0)), MkSpecifier(STATIC));
3334 ListAdd(specifiers, MkSpecifierName("Property"));
3335 {
3336 struct __ecereNameSpace__ecere__sys__OldList * list = MkList();
3337
3338 ListAdd(list, MkInitDeclarator(MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), MkDeclaratorIdentifier(MkIdentifier(propName))), (((void *)0))));
3339 if(!imported)
3340 {
3341 strcpy(propName, "__ecerePropM_");
3342 FullClassNameCat(propName, prop->_class->fullName, 0x0);
3343 strcat(propName, "_");
3344 FullClassNameCat(propName, prop->name, 0x1);
3345 MangleClassName(propName);
3346 ListAdd(list, MkInitDeclarator(MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), MkDeclaratorIdentifier(MkIdentifier(propName))), (((void *)0))));
3347 }
3348 decl = MkDeclaration(specifiers, list);
3349 }
3350 external = MkExternalDeclaration(decl);
3351 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*ast), curExternal->prev, external);
3352 external->symbol = symbol;
3353 symbol->externalPtr = external;
3354 }
3355 else
3356 {
3357 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Move((&*ast), symbol->externalPtr, curExternal->prev);
3358 }
3359 symbol->id = curExternal->symbol->idCode;
3360 }
3361 }
3362
3363 struct Type * Dereference(struct Type * source)
3364 {
3365 struct Type * type = (((void *)0));
3366
3367 if(source)
3368 {
3369 if(source->kind == 13 || source->kind == 12)
3370 {
3371 type = source->type;
3372 source->type->refCount++;
3373 }
3374 else if(source->kind == 8 && !strcmp(source->_class->string, "String"))
3375 {
3376 type = __extension__ ({
3377 struct Type * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
3378
3379 __ecereInstance1->kind = 1, __ecereInstance1->refCount = 1, __ecereInstance1;
3380 });
3381 }
3382 else if(source->kind == 8 && source->_class && source->_class->registered && source->_class->registered->type == 5)
3383 {
3384 type = source;
3385 source->refCount++;
3386 }
3387 else
3388 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "cannot dereference type\n", (((void *)0))));
3389 }
3390 return type;
3391 }
3392
3393 static struct Type * Reference(struct Type * source)
3394 {
3395 struct Type * type = (((void *)0));
3396
3397 if(source)
3398 {
3399 type = __extension__ ({
3400 struct Type * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
3401
3402 __ecereInstance1->kind = 13, __ecereInstance1->type = source, __ecereInstance1->refCount = 1, __ecereInstance1;
3403 });
3404 source->refCount++;
3405 }
3406 return type;
3407 }
3408
3409 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);
3410
3411 extern void *  memcpy(void * , const void * , size_t size);
3412
3413 void ProcessMethodType(struct __ecereNameSpace__ecere__com__Method * method);
3414
3415 extern void FreeExpression(struct Expression * exp);
3416
3417 extern void __ecereNameSpace__ecere__sys__ChangeCh(char *  string, char ch1, char ch2);
3418
3419 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);
3420
3421 static void ProcessInitializer(struct Initializer * init, struct Type * type);
3422
3423 extern struct Type * MkClassType(char *  name);
3424
3425 extern struct __ecereNameSpace__ecere__com__DataMember * __ecereNameSpace__ecere__com__eClass_AddDataMember(struct __ecereNameSpace__ecere__com__Class * _class, char *  name, char *  type, unsigned int size, unsigned int alignment, int declMode);
3426
3427 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)
3428 {
3429 struct Identifier * ident = member->identifiers ? (*member->identifiers).first : (((void *)0));
3430 unsigned int found = 0x0;
3431 struct __ecereNameSpace__ecere__com__DataMember * dataMember = (((void *)0));
3432 struct __ecereNameSpace__ecere__com__Method * method = (((void *)0));
3433 unsigned int freeType = 0x0;
3434
3435 yylloc = member->loc;
3436 if(!ident)
3437 {
3438 if(curMember)
3439 {
3440 __ecereNameSpace__ecere__com__eClass_FindNextMember(_class, curClass, curMember, subMemberStack, subMemberStackPos);
3441 if(*curMember)
3442 {
3443 found = 0x1;
3444 dataMember = *curMember;
3445 }
3446 }
3447 }
3448 else
3449 {
3450 struct __ecereNameSpace__ecere__com__DataMember * thisMember = (struct __ecereNameSpace__ecere__com__DataMember *)__ecereNameSpace__ecere__com__eClass_FindProperty(_class, ident->string, privateModule);
3451 struct __ecereNameSpace__ecere__com__DataMember * _subMemberStack[256];
3452 int _subMemberStackPos = 0;
3453
3454 if(!thisMember)
3455 thisMember = __ecereNameSpace__ecere__com__eClass_FindDataMember(_class, ident->string, privateModule, _subMemberStack, &_subMemberStackPos);
3456 if(thisMember)
3457 {
3458 dataMember = thisMember;
3459 if(curMember && thisMember->memberAccess == 1)
3460 {
3461 *curMember = thisMember;
3462 *curClass = thisMember->_class;
3463 memcpy(subMemberStack, _subMemberStack, sizeof(struct __ecereNameSpace__ecere__com__DataMember *) * _subMemberStackPos);
3464 *subMemberStackPos = _subMemberStackPos;
3465 }
3466 found = 0x1;
3467 }
3468 else
3469 {
3470 method = __ecereNameSpace__ecere__com__eClass_FindMethod(_class, ident->string, privateModule);
3471 if(method && method->type == 1)
3472 found = 0x1;
3473 else
3474 method = (((void *)0));
3475 }
3476 }
3477 if(found)
3478 {
3479 struct Type * type = (((void *)0));
3480
3481 if(dataMember)
3482 {
3483 if(!dataMember->dataType && dataMember->dataTypeString)
3484 {
3485 struct Context * context = SetupTemplatesContext(_class);
3486
3487 dataMember->dataType = ProcessTypeString(dataMember->dataTypeString, 0x0);
3488 FinishTemplatesContext(context);
3489 }
3490 type = dataMember->dataType;
3491 }
3492 else if(method)
3493 {
3494 if(!method->dataType)
3495 ProcessMethodType(method);
3496 type = method->dataType;
3497 }
3498 if(ident && ident->next)
3499 {
3500 for(ident = ident->next; ident && type; ident = ident->next)
3501 {
3502 if(type->kind == 8)
3503 {
3504 dataMember = (struct __ecereNameSpace__ecere__com__DataMember *)__ecereNameSpace__ecere__com__eClass_FindProperty(type->_class->registered, ident->string, privateModule);
3505 if(!dataMember)
3506 dataMember = __ecereNameSpace__ecere__com__eClass_FindDataMember(type->_class->registered, ident->string, privateModule, (((void *)0)), (((void *)0)));
3507 if(dataMember)
3508 type = dataMember->dataType;
3509 }
3510 else if(type->kind == 9 || type->kind == 10)
3511 {
3512 struct Type * memberType;
3513
3514 for(memberType = type->members.first; memberType; memberType = memberType->next)
3515 {
3516 if(!strcmp(memberType->name, ident->string))
3517 {
3518 type = memberType;
3519 break;
3520 }
3521 }
3522 }
3523 }
3524 }
3525 if(type && type->kind == 20 && type->templateParameter->type == 0 && _class->templateArgs)
3526 {
3527 int id = 0;
3528 struct __ecereNameSpace__ecere__com__ClassTemplateParameter * curParam = (((void *)0));
3529 struct __ecereNameSpace__ecere__com__Class * sClass;
3530
3531 for(sClass = _class; sClass; sClass = sClass->base)
3532 {
3533 id = 0;
3534 if(sClass->templateClass)
3535 sClass = sClass->templateClass;
3536 for(curParam = sClass->templateParams.first; curParam; curParam = curParam->next)
3537 {
3538 if(curParam->type == 0 && !strcmp(type->templateParameter->identifier->string, curParam->name))
3539 {
3540 for(sClass = sClass->base; sClass; sClass = sClass->base)
3541 {
3542 if(sClass->templateClass)
3543 sClass = sClass->templateClass;
3544 id += sClass->templateParams.count;
3545 }
3546 break;
3547 }
3548 id++;
3549 }
3550 if(curParam)
3551 break;
3552 }
3553 if(curParam)
3554 {
3555 struct __ecereNameSpace__ecere__com__ClassTemplateArgument arg = _class->templateArgs[id];
3556
3557 if(arg.dataTypeString)
3558 {
3559 type = ProcessTypeString(arg.dataTypeString, 0x0);
3560 freeType = 0x1;
3561 if(type && _class->templateClass)
3562 type->passAsTemplate = 0x1;
3563 if(type)
3564 {
3565 }
3566 }
3567 }
3568 }
3569 if(type && type->kind == 8 && type->_class && type->_class->registered && strchr(type->_class->registered->fullName, '<'))
3570 {
3571 struct __ecereNameSpace__ecere__com__Class * expClass = type->_class->registered;
3572 struct __ecereNameSpace__ecere__com__Class * cClass = (((void *)0));
3573 int c;
3574 int paramCount = 0;
3575 int lastParam = -1;
3576 char templateString[1024];
3577 struct __ecereNameSpace__ecere__com__ClassTemplateParameter * param;
3578
3579 sprintf(templateString, "%s<", expClass->templateClass->fullName);
3580 for(cClass = expClass; cClass; cClass = cClass->base)
3581 {
3582 int p = 0;
3583
3584 if(cClass->templateClass)
3585 cClass = cClass->templateClass;
3586 for(param = cClass->templateParams.first; param; param = param->next)
3587 {
3588 int id = p;
3589 struct __ecereNameSpace__ecere__com__Class * sClass;
3590 struct __ecereNameSpace__ecere__com__ClassTemplateArgument arg;
3591
3592 for(sClass = cClass->base; sClass; sClass = sClass->base)
3593 {
3594 if(sClass->templateClass)
3595 sClass = sClass->templateClass;
3596 id += sClass->templateParams.count;
3597 }
3598 arg = expClass->templateArgs[id];
3599 for(sClass = _class; sClass; sClass = sClass->base)
3600 {
3601 struct __ecereNameSpace__ecere__com__ClassTemplateParameter * cParam;
3602 int p = 0;
3603 struct __ecereNameSpace__ecere__com__Class * nextClass;
3604
3605 if(sClass->templateClass)
3606 sClass = sClass->templateClass;
3607 for(nextClass = sClass->base; nextClass; nextClass = nextClass->base)
3608 {
3609 if(nextClass->templateClass)
3610 nextClass = nextClass->templateClass;
3611 p += nextClass->templateParams.count;
3612 }
3613 for(cParam = sClass->templateParams.first; cParam; cParam = cParam->next, p++)
3614 {
3615 if(cParam->type == 0 && arg.dataTypeString && !strcmp(cParam->name, arg.dataTypeString))
3616 {
3617 if(_class->templateArgs && arg.dataTypeString && (!param->defaultArg.dataTypeString || strcmp(arg.dataTypeString, param->defaultArg.dataTypeString)))
3618 {
3619 arg.dataTypeString = _class->templateArgs[p].dataTypeString;
3620 arg.dataTypeClass = _class->templateArgs[p].dataTypeClass;
3621 break;
3622 }
3623 }
3624 }
3625 }
3626 {
3627 char argument[256];
3628
3629 argument[0] = '\0';
3630 switch(param->type)
3631 {
3632 case 2:
3633 {
3634 char expString[1024];
3635 struct __ecereNameSpace__ecere__sys__OldList * specs = MkList();
3636 struct Declarator * decl = SpecDeclFromString(param->dataTypeString, specs, (((void *)0)));
3637 struct Expression * exp;
3638 char * string = PrintHexUInt64(arg.expression.ui64);
3639
3640 exp = MkExpCast(MkTypeName(specs, decl), MkExpConstant(string));
3641 (__ecereNameSpace__ecere__com__eSystem_Delete(string), string = 0);
3642 ProcessExpressionType(exp);
3643 ComputeExpression(exp);
3644 expString[0] = '\0';
3645 PrintExpression(exp, expString);
3646 strcat(argument, expString);
3647 FreeExpression(exp);
3648 break;
3649 }
3650 case 1:
3651 {
3652 strcat(argument, arg.member->name);
3653 break;
3654 }
3655 case 0:
3656 {
3657 if(arg.dataTypeString && (!param->defaultArg.dataTypeString || strcmp(arg.dataTypeString, param->defaultArg.dataTypeString)))
3658 strcat(argument, arg.dataTypeString);
3659 break;
3660 }
3661 }
3662 if(argument[0])
3663 {
3664 if(paramCount)
3665 strcat(templateString, ", ");
3666 if(lastParam != p - 1)
3667 {
3668 strcat(templateString, param->name);
3669 strcat(templateString, " = ");
3670 }
3671 strcat(templateString, argument);
3672 paramCount++;
3673 lastParam = p;
3674 }
3675 p++;
3676 }
3677 }
3678 }
3679 {
3680 int len = strlen(templateString);
3681
3682 if(templateString[len - 1] == '<')
3683 len--;
3684 else
3685 {
3686 if(templateString[len - 1] == '>')
3687 templateString[len++] = ' ';
3688 templateString[len++] = '>';
3689 }
3690 templateString[len++] = '\0';
3691 }
3692 {
3693 struct Context * context = SetupTemplatesContext(_class);
3694
3695 if(freeType)
3696 FreeType(type);
3697 type = ProcessTypeString(templateString, 0x0);
3698 freeType = 0x1;
3699 FinishTemplatesContext(context);
3700 }
3701 }
3702 if(method && member->initializer && member->initializer->type == 0 && member->initializer->exp)
3703 {
3704 ProcessExpressionType(member->initializer->exp);
3705 if(!member->initializer->exp->expType)
3706 {
3707 if(inCompiler)
3708 {
3709 char expString[10240];
3710
3711 expString[0] = '\0';
3712 PrintExpression(member->initializer->exp, expString);
3713 __ecereNameSpace__ecere__sys__ChangeCh(expString, '\n', ' ');
3714 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "unresolved symbol used as an instance method %s\n", (((void *)0))), expString);
3715 }
3716 }
3717 else if(!MatchTypes(member->initializer->exp->expType, type, (((void *)0)), (((void *)0)), _class, 0x1, 0x1, 0x0, 0x0))
3718 {
3719 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "incompatible instance method %s\n", (((void *)0))), ident->string);
3720 }
3721 }
3722 else if(member->initializer)
3723 {
3724 ProcessInitializer(member->initializer, type);
3725 }
3726 if(freeType)
3727 FreeType(type);
3728 }
3729 else
3730 {
3731 if(_class && _class->type == 3)
3732 {
3733 if(member->initializer)
3734 {
3735 struct Type * type = MkClassType(_class->fullName);
3736
3737 ProcessInitializer(member->initializer, type);
3738 FreeType(type);
3739 }
3740 }
3741 else
3742 {
3743 if(member->initializer)
3744 {
3745 ProcessInitializer(member->initializer, (((void *)0)));
3746 }
3747 if(ident)
3748 {
3749 if(method)
3750 {
3751 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "couldn't find virtual method %s in class %s\n", (((void *)0))), ident->string, _class->fullName);
3752 }
3753 else if(_class)
3754 {
3755 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "couldn't find member %s in class %s\n", (((void *)0))), ident->string, _class->fullName);
3756 if(inCompiler)
3757 __ecereNameSpace__ecere__com__eClass_AddDataMember(_class, ident->string, "int", 0, 0, 1);
3758 }
3759 }
3760 else if(_class)
3761 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "too many initializers for instantiation of class %s\n", (((void *)0))), _class->fullName);
3762 }
3763 }
3764 }
3765
3766 extern struct Identifier * GetDeclId(struct Declarator * decl);
3767
3768 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);
3769
3770 extern void FreeSpecifier(struct Specifier * spec);
3771
3772 static void ProcessFunction(struct FunctionDefinition * function);
3773
3774 extern struct __ecereNameSpace__ecere__sys__OldList *  CopyList(struct __ecereNameSpace__ecere__sys__OldList *  source, void *  (*  CopyFunction)(void * ));
3775
3776 extern struct Specifier * CopySpecifier(struct Specifier * spec);
3777
3778 extern struct Declarator * CopyDeclarator(struct Declarator * declarator);
3779
3780 extern void FreeClassFunction(struct ClassFunction * func);
3781
3782 extern struct MemberInit * MkMemberInit(struct __ecereNameSpace__ecere__sys__OldList * ids, struct Initializer * initializer);
3783
3784 extern struct Initializer * MkInitializerAssignment(struct Expression * exp);
3785
3786 void ProcessInstantiationType(struct Instantiation * inst)
3787 {
3788 yylloc = inst->loc;
3789 if(inst->_class)
3790 {
3791 struct MembersInit * members;
3792 struct Symbol * classSym;
3793 struct __ecereNameSpace__ecere__com__Class * _class;
3794
3795 classSym = inst->_class->symbol;
3796 _class = classSym ? classSym->registered : (((void *)0));
3797 if(!_class || _class->type != 5)
3798 DeclareStruct(inst->_class->name, 0x0);
3799 afterExternal = afterExternal ? afterExternal : curExternal;
3800 if(inst->exp)
3801 ProcessExpressionType(inst->exp);
3802 inst->isConstant = 0x1;
3803 if(inst->members)
3804 {
3805 struct __ecereNameSpace__ecere__com__DataMember * curMember = (((void *)0));
3806 struct __ecereNameSpace__ecere__com__Class * curClass = (((void *)0));
3807 struct __ecereNameSpace__ecere__com__DataMember * subMemberStack[256];
3808 int subMemberStackPos = 0;
3809
3810 for(members = (*inst->members).first; members; members = members->next)
3811 {
3812 switch(members->type)
3813 {
3814 case 1:
3815 {
3816 char name[1024];
3817 static unsigned int instMethodID = 0;
3818 struct External * external = curExternal;
3819 struct Context * context = curContext;
3820 struct Declarator * declarator = members->function->declarator;
3821 struct Identifier * nameID = GetDeclId(declarator);
3822 char * unmangled = nameID ? nameID->string : (((void *)0));
3823 struct Expression * exp;
3824 struct External * createdExternal = (((void *)0));
3825
3826 if(inCompiler)
3827 {
3828 char number[16];
3829
3830 strcpy(name, "__ecereInstMeth_");
3831 FullClassNameCat(name, _class ? _class->fullName : "_UNKNOWNCLASS", 0x0);
3832 strcat(name, "_");
3833 strcat(name, nameID->string);
3834 strcat(name, "_");
3835 sprintf(number, "_%08d", instMethodID++);
3836 strcat(name, number);
3837 nameID->string = __ecereNameSpace__ecere__sys__CopyString(name);
3838 }
3839 if(declarator)
3840 {
3841 struct Symbol * symbol = declarator->symbol;
3842 struct __ecereNameSpace__ecere__com__Method * method = __ecereNameSpace__ecere__com__eClass_FindMethod(_class, unmangled, privateModule);
3843
3844 if(method && method->type == 1)
3845 {
3846 symbol->method = method;
3847 ProcessMethodType(method);
3848 if(!symbol->type->thisClass)
3849 {
3850 if(method->dataType->thisClass && currentClass && __ecereNameSpace__ecere__com__eClass_IsDerived(currentClass, method->dataType->thisClass->registered))
3851 {
3852 if(!currentClass->symbol)
3853 currentClass->symbol = FindClass(currentClass->fullName);
3854 symbol->type->thisClass = currentClass->symbol;
3855 }
3856 else
3857 {
3858 if(!_class->symbol)
3859 _class->symbol = FindClass(_class->fullName);
3860 symbol->type->thisClass = _class->symbol;
3861 }
3862 }
3863 DeclareType(symbol->type, 0x1, 0x1);
3864 }
3865 else if(classSym)
3866 {
3867 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "couldn't find virtual method %s in class %s\n", (((void *)0))), unmangled, classSym->string);
3868 }
3869 }
3870 createdExternal = ProcessClassFunction(classSym ? classSym->registered : (((void *)0)), members->function, ast, afterExternal, 0x1);
3871 if(nameID)
3872 {
3873 FreeSpecifier(nameID->_class);
3874 nameID->_class = (((void *)0));
3875 }
3876 if(inCompiler)
3877 {
3878 struct Type * type = declarator->symbol->type;
3879 struct External * oldExternal = curExternal;
3880
3881 declarator->symbol->id = declarator->symbol->idCode = curExternal->symbol->idCode;
3882 {
3883 struct External * externalDecl;
3884
3885 externalDecl = MkExternalDeclaration((((void *)0)));
3886 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*ast), oldExternal->prev, externalDecl);
3887 if(createdExternal->function)
3888 {
3889 ProcessFunction(createdExternal->function);
3890 {
3891 struct Declaration * decl = MkDeclaration(CopyList(createdExternal->function->specifiers, CopySpecifier), MkListOne(MkInitDeclarator(CopyDeclarator(declarator), (((void *)0)))));
3892
3893 externalDecl->declaration = decl;
3894 if(decl->symbol && !decl->symbol->pointerExternal)
3895 decl->symbol->pointerExternal = externalDecl;
3896 declarator->symbol->pointerExternal = externalDecl;
3897 }
3898 }
3899 }
3900 }
3901 else if(declarator)
3902 {
3903 curExternal = declarator->symbol->pointerExternal;
3904 ProcessFunction((struct FunctionDefinition *)members->function);
3905 }
3906 curExternal = external;
3907 curContext = context;
3908 if(inCompiler)
3909 {
3910 FreeClassFunction(members->function);
3911 exp = QMkExpId(name);
3912 members->type = 0;
3913 members->dataMembers = MkListOne(MkMemberInit(MkListOne(MkIdentifier(unmangled)), MkInitializerAssignment(exp)));
3914 (__ecereNameSpace__ecere__com__eSystem_Delete(unmangled), unmangled = 0);
3915 }
3916 break;
3917 }
3918 case 0:
3919 {
3920 if(members->dataMembers && classSym)
3921 {
3922 struct MemberInit * member;
3923 struct Location oldyyloc = yylloc;
3924
3925 for(member = (*members->dataMembers).first; member; member = member->next)
3926 {
3927 ProcessMemberInitData(member, classSym->registered, &curClass, &curMember, subMemberStack, &subMemberStackPos);
3928 if(member->initializer && !member->initializer->isConstant)
3929 inst->isConstant = 0x0;
3930 }
3931 yylloc = oldyyloc;
3932 }
3933 break;
3934 }
3935 }
3936 }
3937 }
3938 }
3939 }
3940
3941 static void DeclareType(struct Type * type, unsigned int declarePointers, unsigned int declareParams)
3942 {
3943 if(inCompiler)
3944 {
3945 if(type->kind == 11)
3946 {
3947 struct Type * param;
3948
3949 if(declareParams)
3950 {
3951 for(param = type->params.first; param; param = param->next)
3952 DeclareType(param, declarePointers, 0x1);
3953 }
3954 DeclareType(type->returnType, declarePointers, 0x1);
3955 }
3956 else if(type->kind == 13 && declarePointers)
3957 DeclareType(type->type, declarePointers, 0x0);
3958 else if(type->kind == 8)
3959 {
3960 if(type->_class->registered && (type->_class->registered->type == 1 || type->_class->registered->type == 5) && !type->_class->declaring)
3961 DeclareStruct(type->_class->registered->fullName, type->_class->registered->type == 5);
3962 }
3963 else if(type->kind == 9 || type->kind == 10)
3964 {
3965 struct Type * member;
3966
3967 for(member = type->members.first; member; member = member->next)
3968 DeclareType(member, 0x0, 0x0);
3969 }
3970 else if(type->kind == 12)
3971 DeclareType(type->arrayType, declarePointers, 0x0);
3972 }
3973 }
3974
3975 extern struct __ecereNameSpace__ecere__com__Class * __ecereNameSpace__ecere__com__eSystem_FindClass(struct __ecereNameSpace__ecere__com__Instance * module, char *  name);
3976
3977 struct __ecereNameSpace__ecere__com__ClassTemplateArgument * FindTemplateArg(struct __ecereNameSpace__ecere__com__Class * _class, struct TemplateParameter * param)
3978 {
3979 struct __ecereNameSpace__ecere__com__ClassTemplateArgument * arg = (((void *)0));
3980 int id = 0;
3981 struct __ecereNameSpace__ecere__com__ClassTemplateParameter * curParam = (((void *)0));
3982 struct __ecereNameSpace__ecere__com__Class * sClass;
3983
3984 for(sClass = _class; sClass; sClass = sClass->base)
3985 {
3986 id = 0;
3987 if(sClass->templateClass)
3988 sClass = sClass->templateClass;
3989 for(curParam = sClass->templateParams.first; curParam; curParam = curParam->next)
3990 {
3991 if(curParam->type == 0 && !strcmp(param->identifier->string, curParam->name))
3992 {
3993 for(sClass = sClass->base; sClass; sClass = sClass->base)
3994 {
3995 if(sClass->templateClass)
3996 sClass = sClass->templateClass;
3997 id += sClass->templateParams.count;
3998 }
3999 break;
4000 }
4001 id++;
4002 }
4003 if(curParam)
4004 break;
4005 }
4006 if(curParam)
4007 {
4008 arg = &_class->templateArgs[id];
4009 if(arg && param->type == 0)
4010 (*arg).dataTypeClass = __ecereNameSpace__ecere__com__eSystem_FindClass(_class->module, (*arg).dataTypeString);
4011 }
4012 return arg;
4013 }
4014
4015 extern struct Context * PushContext(void);
4016
4017 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_TemplatedType;
4018
4019 struct TemplatedType
4020 {
4021 uintptr_t key;
4022 struct __ecereNameSpace__ecere__sys__BTNode * parent;
4023 struct __ecereNameSpace__ecere__sys__BTNode * left;
4024 struct __ecereNameSpace__ecere__sys__BTNode * right;
4025 int depth;
4026 struct TemplateParameter * param;
4027 } __attribute__ ((gcc_struct));
4028
4029 unsigned int __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Add(struct __ecereNameSpace__ecere__sys__BinaryTree * this, struct __ecereNameSpace__ecere__sys__BTNode * node);
4030
4031 struct Context * SetupTemplatesContext(struct __ecereNameSpace__ecere__com__Class * _class)
4032 {
4033 struct Context * context = PushContext();
4034
4035 context->templateTypesOnly = 0x1;
4036 if(_class->symbol && ((struct Symbol *)_class->symbol)->templateParams)
4037 {
4038 struct TemplateParameter * param = (*((struct Symbol *)_class->symbol)->templateParams).first;
4039
4040 for(; param; param = param->next)
4041 {
4042 if(param->type == 0 && param->identifier)
4043 {
4044 struct TemplatedType * type = (type = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_TemplatedType), type->key = (uintptr_t)param->identifier->string, type->param = param, type);
4045
4046 __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Add(&curContext->templateTypes, (struct __ecereNameSpace__ecere__sys__BTNode *)type);
4047 }
4048 }
4049 }
4050 else if(_class)
4051 {
4052 struct __ecereNameSpace__ecere__com__Class * sClass;
4053
4054 for(sClass = _class; sClass; sClass = sClass->base)
4055 {
4056 struct __ecereNameSpace__ecere__com__ClassTemplateParameter * p;
4057
4058 for(p = sClass->templateParams.first; p; p = p->next)
4059 {
4060 if(p->type == 0)
4061 {
4062 struct TemplateParameter * param = p->param;
4063 struct TemplatedType * type;
4064
4065 if(!param)
4066 {
4067 p->param = param = __extension__ ({
4068 struct TemplateParameter * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_TemplateParameter);
4069
4070 __ecereInstance1->identifier = MkIdentifier(p->name), __ecereInstance1->type = p->type, __ecereInstance1->dataTypeString = p->dataTypeString, __ecereInstance1;
4071 });
4072 }
4073 type = __extension__ ({
4074 struct TemplatedType * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_TemplatedType);
4075
4076 __ecereInstance1->key = (uintptr_t)p->name, __ecereInstance1->param = param, __ecereInstance1;
4077 });
4078 __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Add(&curContext->templateTypes, (struct __ecereNameSpace__ecere__sys__BTNode *)type);
4079 }
4080 }
4081 }
4082 }
4083 return context;
4084 }
4085
4086 extern void PopContext(struct Context * ctx);
4087
4088 extern void FreeContext(struct Context * context);
4089
4090 void FinishTemplatesContext(struct Context * context)
4091 {
4092 PopContext(context);
4093 FreeContext(context);
4094 ((context ? (__ecereClass_Context->Destructor ? __ecereClass_Context->Destructor(context) : 0, __ecereNameSpace__ecere__com__eSystem_Delete(context)) : 0), context = 0);
4095 }
4096
4097 void ProcessMethodType(struct __ecereNameSpace__ecere__com__Method * method)
4098 {
4099 if(!method->dataType)
4100 {
4101 struct Context * context = SetupTemplatesContext(method->_class);
4102
4103 method->dataType = ProcessTypeString(method->dataTypeString, 0x0);
4104 FinishTemplatesContext(context);
4105 if(method->type != 1 && method->dataType)
4106 {
4107 if(!method->dataType->thisClass && !method->dataType->staticMethod)
4108 {
4109 if(!method->_class->symbol)
4110 method->_class->symbol = FindClass(method->_class->fullName);
4111 method->dataType->thisClass = method->_class->symbol;
4112 }
4113 }
4114 }
4115 }
4116
4117 void ProcessPropertyType(struct __ecereNameSpace__ecere__com__Property * prop)
4118 {
4119 if(!prop->dataType)
4120 {
4121 struct Context * context = SetupTemplatesContext(prop->_class);
4122
4123 prop->dataType = ProcessTypeString(prop->dataTypeString, 0x0);
4124 FinishTemplatesContext(context);
4125 }
4126 }
4127
4128 extern struct Declarator * GetFuncDecl(struct Declarator * decl);
4129
4130 extern void FreeTypeName(struct TypeName * typeName);
4131
4132 static void ProcessDeclarator(struct Declarator * decl);
4133
4134 extern struct __ecereNameSpace__ecere__sys__OldList *  excludedSymbols;
4135
4136 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_MethodImport;
4137
4138 struct MethodImport
4139 {
4140 struct MethodImport * prev;
4141 struct MethodImport * next;
4142 char *  name;
4143 unsigned int isVirtual;
4144 } __attribute__ ((gcc_struct));
4145
4146 void __ecereMethod___ecereNameSpace__ecere__sys__OldList_Remove(struct __ecereNameSpace__ecere__sys__OldList * this, void *  item);
4147
4148 void DeclareMethod(struct __ecereNameSpace__ecere__com__Method * method, char * name)
4149 {
4150 struct Symbol * symbol = method->symbol;
4151
4152 if(!symbol || (!symbol->pointerExternal && method->type == 1) || symbol->id > (curExternal ? curExternal->symbol->idCode : -1))
4153 {
4154 unsigned int imported = 0x0;
4155 unsigned int dllImport = 0x0;
4156
4157 if(!method->dataType)
4158 method->dataType = ProcessTypeString(method->dataTypeString, 0x0);
4159 if(!symbol || symbol->_import || method->type == 1)
4160 {
4161 if(!symbol || method->type == 1)
4162 {
4163 struct Symbol * classSym;
4164
4165 if(!method->_class->symbol)
4166 method->_class->symbol = FindClass(method->_class->fullName);
4167 classSym = method->_class->symbol;
4168 if(!classSym->_import)
4169 {
4170 struct ModuleImport * module;
4171
4172 if(method->_class->module && ((struct __ecereNameSpace__ecere__com__Module *)(((char *)method->_class->module + structSize_Instance)))->name)
4173 module = FindModule(method->_class->module);
4174 else
4175 module = mainModule;
4176 classSym->_import = __extension__ ({
4177 struct ClassImport * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_ClassImport);
4178
4179 __ecereInstance1->name = __ecereNameSpace__ecere__sys__CopyString(method->_class->fullName), __ecereInstance1->isRemote = method->_class->isRemote, __ecereInstance1;
4180 });
4181 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(&module->classes, classSym->_import);
4182 }
4183 if(!symbol)
4184 {
4185 symbol = method->symbol = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol);
4186 }
4187 if(!symbol->_import)
4188 {
4189 symbol->_import = (struct ClassImport *)__extension__ ({
4190 struct MethodImport * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_MethodImport);
4191
4192 __ecereInstance1->name = __ecereNameSpace__ecere__sys__CopyString(method->name), __ecereInstance1->isVirtual = method->type == 1, __ecereInstance1;
4193 });
4194 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(&classSym->_import->methods, symbol->_import);
4195 }
4196 if(!symbol)
4197 {
4198 symbol->type = method->dataType;
4199 if(symbol->type)
4200 symbol->type->refCount++;
4201 }
4202 }
4203 if(!method->dataType->dllExport)
4204 {
4205 imported = 0x1;
4206 if(method->_class->module != privateModule && ((struct __ecereNameSpace__ecere__com__Module *)(((char *)method->_class->module + structSize_Instance)))->importType != 1)
4207 dllImport = 0x1;
4208 }
4209 }
4210 if(method->type != 1 && method->dataType)
4211 DeclareType(method->dataType, 0x1, 0x1);
4212 if(!symbol->pointerExternal || symbol->pointerExternal->type == 0)
4213 {
4214 struct Declaration * decl;
4215 struct __ecereNameSpace__ecere__sys__OldList * specifiers, * declarators;
4216 struct Declarator * d;
4217 struct Declarator * funcDecl;
4218 struct External * external;
4219
4220 specifiers = MkList();
4221 declarators = MkList();
4222 if(dllImport)
4223 ListAdd(specifiers, MkSpecifier(EXTERN));
4224 else if(method->_class->symbol && ((struct Symbol *)method->_class->symbol)->isStatic)
4225 ListAdd(specifiers, MkSpecifier(STATIC));
4226 if(method->type == 1)
4227 {
4228 ListAdd(specifiers, MkSpecifier(INT));
4229 d = MkDeclaratorIdentifier(MkIdentifier(name));
4230 }
4231 else
4232 {
4233 d = MkDeclaratorIdentifier(MkIdentifier(name));
4234 if(dllImport)
4235 d = MkDeclaratorBrackets(MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), d));
4236 {
4237 struct Context * context = SetupTemplatesContext(method->_class);
4238
4239 d = SpecDeclFromString(method->dataTypeString, specifiers, d);
4240 FinishTemplatesContext(context);
4241 }
4242 funcDecl = GetFuncDecl(d);
4243 if(dllImport)
4244 {
4245 struct Specifier * spec, * next;
4246
4247 for(spec = (*specifiers).first; spec; spec = next)
4248 {
4249 next = spec->next;
4250 if(spec->type == 5)
4251 {
4252 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Remove((&*specifiers), spec);
4253 FreeSpecifier(spec);
4254 }
4255 }
4256 }
4257 if(method->dataType && !method->dataType->staticMethod)
4258 {
4259 if(funcDecl && funcDecl->function.parameters && (*funcDecl->function.parameters).count)
4260 {
4261 struct __ecereNameSpace__ecere__com__Class * _class = method->dataType->thisClass ? method->dataType->thisClass->registered : method->_class;
4262 struct TypeName * thisParam = MkTypeName(MkListOne(MkSpecifierName(method->dataType->thisClass ? method->dataType->thisClass->string : method->_class->fullName)), (_class && _class->type == 1000) ? MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), MkDeclaratorIdentifier(MkIdentifier("this"))) : MkDeclaratorIdentifier(MkIdentifier("this")));
4263 struct TypeName * firstParam = ((struct TypeName *)(*funcDecl->function.parameters).first);
4264 struct Specifier * firstSpec = firstParam->qualifiers ? (*firstParam->qualifiers).first : (((void *)0));
4265
4266 if(firstSpec && firstSpec->type == 0 && firstSpec->specifier == VOID && !firstParam->declarator)
4267 {
4268 struct TypeName * param = (*funcDecl->function.parameters).first;
4269
4270 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Remove((&*funcDecl->function.parameters), param);
4271 FreeTypeName(param);
4272 }
4273 if(!funcDecl->function.parameters)
4274 funcDecl->function.parameters = MkList();
4275 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*funcDecl->function.parameters), (((void *)0)), thisParam);
4276 }
4277 }
4278 }
4279 ProcessDeclarator(d);
4280 ListAdd(declarators, MkInitDeclarator(d, (((void *)0))));
4281 decl = MkDeclaration(specifiers, declarators);
4282 ReplaceThisClassSpecifiers(specifiers, method->_class);
4283 if(symbol->pointerExternal)
4284 {
4285 struct Symbol * functionSymbol = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol);
4286
4287 {
4288 *functionSymbol = *symbol;
4289 functionSymbol->string = __ecereNameSpace__ecere__sys__CopyString(symbol->string);
4290 if(functionSymbol->type)
4291 functionSymbol->type->refCount++;
4292 }
4293 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add((&*excludedSymbols), functionSymbol);
4294 symbol->pointerExternal->symbol = functionSymbol;
4295 }
4296 external = MkExternalDeclaration(decl);
4297 if(curExternal)
4298 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*ast), curExternal ? curExternal->prev : (((void *)0)), external);
4299 external->symbol = symbol;
4300 symbol->pointerExternal = external;
4301 }
4302 else if(ast)
4303 {
4304 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Move((&*ast), symbol->pointerExternal, curExternal->prev);
4305 }
4306 symbol->id = curExternal ? curExternal->symbol->idCode : (((int)0x7fffffff));
4307 }
4308 }
4309
4310 char * ReplaceThisClass(struct __ecereNameSpace__ecere__com__Class * _class)
4311 {
4312 if(thisClassParams && _class->templateParams.count && !_class->templateClass)
4313 {
4314 unsigned int first = 0x1;
4315 int p = 0;
4316 struct __ecereNameSpace__ecere__com__ClassTemplateParameter * param;
4317 int lastParam = -1;
4318 char className[1024];
4319
4320 strcpy(className, _class->fullName);
4321 for(param = _class->templateParams.first; param; param = param->next)
4322 {
4323 {
4324 if(first)
4325 strcat(className, "<");
4326 if(!first)
4327 strcat(className, ", ");
4328 if(lastParam + 1 != p)
4329 {
4330 strcat(className, param->name);
4331 strcat(className, " = ");
4332 }
4333 strcat(className, param->name);
4334 first = 0x0;
4335 lastParam = p;
4336 }
4337 p++;
4338 }
4339 if(!first)
4340 {
4341 int len = strlen(className);
4342
4343 if(className[len - 1] == '>')
4344 className[len++] = ' ';
4345 className[len++] = '>';
4346 className[len++] = '\0';
4347 }
4348 return __ecereNameSpace__ecere__sys__CopyString(className);
4349 }
4350 else
4351 return __ecereNameSpace__ecere__sys__CopyString(_class->fullName);
4352 }
4353
4354 struct Type * ReplaceThisClassType(struct __ecereNameSpace__ecere__com__Class * _class)
4355 {
4356 if(thisClassParams && _class->templateParams.count && !_class->templateClass)
4357 {
4358 unsigned int first = 0x1;
4359 int p = 0;
4360 struct __ecereNameSpace__ecere__com__ClassTemplateParameter * param;
4361 int lastParam = -1;
4362 char className[1024];
4363
4364 strcpy(className, _class->fullName);
4365 for(param = _class->templateParams.first; param; param = param->next)
4366 {
4367 {
4368 if(first)
4369 strcat(className, "<");
4370 if(!first)
4371 strcat(className, ", ");
4372 if(lastParam + 1 != p)
4373 {
4374 strcat(className, param->name);
4375 strcat(className, " = ");
4376 }
4377 strcat(className, param->name);
4378 first = 0x0;
4379 lastParam = p;
4380 }
4381 p++;
4382 }
4383 if(!first)
4384 {
4385 int len = strlen(className);
4386
4387 if(className[len - 1] == '>')
4388 className[len++] = ' ';
4389 className[len++] = '>';
4390 className[len++] = '\0';
4391 }
4392 return MkClassType(className);
4393 }
4394 else
4395 {
4396 return MkClassType(_class->fullName);
4397 }
4398 }
4399
4400 void ReplaceThisClassSpecifiers(struct __ecereNameSpace__ecere__sys__OldList * specs, struct __ecereNameSpace__ecere__com__Class * _class)
4401 {
4402 if(specs != (((void *)0)) && _class)
4403 {
4404 struct Specifier * spec;
4405
4406 for(spec = specs->first; spec; spec = spec->next)
4407 {
4408 if(spec->type == 0 && spec->specifier == THISCLASS)
4409 {
4410 spec->type = 1;
4411 spec->name = ReplaceThisClass(_class);
4412 spec->symbol = FindClass(spec->name);
4413 }
4414 }
4415 }
4416 }
4417
4418 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__GlobalFunction;
4419
4420 struct __ecereNameSpace__ecere__com__GlobalFunction
4421 {
4422 struct __ecereNameSpace__ecere__com__GlobalFunction * prev;
4423 struct __ecereNameSpace__ecere__com__GlobalFunction * next;
4424 char *  name;
4425 int (*  function)();
4426 struct __ecereNameSpace__ecere__com__Instance * module;
4427 struct __ecereNameSpace__ecere__com__NameSpace *  nameSpace;
4428 char *  dataTypeString;
4429 struct Type * dataType;
4430 void *  symbol;
4431 } __attribute__ ((gcc_struct));
4432
4433 extern struct Context * globalContext;
4434
4435 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_FunctionImport;
4436
4437 struct FunctionImport
4438 {
4439 struct FunctionImport * prev;
4440 struct FunctionImport * next;
4441 char *  name;
4442 } __attribute__ ((gcc_struct));
4443
4444 unsigned int DeclareFunction(struct __ecereNameSpace__ecere__com__GlobalFunction * function, char * name)
4445 {
4446 struct Symbol * symbol = function->symbol;
4447
4448 if(curExternal && (!symbol || symbol->id > curExternal->symbol->idCode))
4449 {
4450 unsigned int imported = 0x0;
4451 unsigned int dllImport = 0x0;
4452
4453 if(!function->dataType)
4454 {
4455 function->dataType = ProcessTypeString(function->dataTypeString, 0x0);
4456 if(!function->dataType->thisClass)
4457 function->dataType->staticMethod = 0x1;
4458 }
4459 if(inCompiler)
4460 {
4461 if(!symbol)
4462 {
4463 struct ModuleImport * module = FindModule(function->module);
4464
4465 symbol = function->symbol = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol);
4466 if(module->name)
4467 {
4468 if(!function->dataType->dllExport)
4469 {
4470 symbol->_import = (struct ClassImport *)__extension__ ({
4471 struct FunctionImport * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_FunctionImport);
4472
4473 __ecereInstance1->name = __ecereNameSpace__ecere__sys__CopyString(function->name), __ecereInstance1;
4474 });
4475 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(&module->functions, symbol->_import);
4476 }
4477 }
4478 {
4479 symbol->type = ProcessTypeString(function->dataTypeString, 0x0);
4480 if(!symbol->type->thisClass)
4481 symbol->type->staticMethod = 0x1;
4482 }
4483 }
4484 imported = symbol->_import ? 0x1 : 0x0;
4485 if(imported && function->module != privateModule && ((struct __ecereNameSpace__ecere__com__Module *)(((char *)function->module + structSize_Instance)))->importType != 1)
4486 dllImport = 0x1;
4487 }
4488 DeclareType(function->dataType, 0x1, 0x1);
4489 if(inCompiler)
4490 {
4491 if(!symbol->pointerExternal || symbol->pointerExternal->type == 0)
4492 {
4493 struct Declaration * decl;
4494 struct __ecereNameSpace__ecere__sys__OldList * specifiers, * declarators;
4495 struct Declarator * d;
4496 struct Declarator * funcDecl;
4497 struct External * external;
4498
4499 specifiers = MkList();
4500 declarators = MkList();
4501 ListAdd(specifiers, MkSpecifier(EXTERN));
4502 d = MkDeclaratorIdentifier(MkIdentifier(imported ? name : function->name));
4503 if(dllImport)
4504 d = MkDeclaratorBrackets(MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), d));
4505 d = SpecDeclFromString(function->dataTypeString, specifiers, d);
4506 if(((struct __ecereNameSpace__ecere__com__Module *)(((char *)function->module + structSize_Instance)))->importType == 1)
4507 {
4508 struct Specifier * spec;
4509
4510 for(spec = (*specifiers).first; spec; spec = spec->next)
4511 if(spec->type == 5 && spec->extDecl && spec->extDecl->type == 0 && !strcmp(spec->extDecl->s, "dllexport"))
4512 {
4513 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Remove((&*specifiers), spec);
4514 FreeSpecifier(spec);
4515 break;
4516 }
4517 }
4518 funcDecl = GetFuncDecl(d);
4519 if(funcDecl && !funcDecl->function.parameters)
4520 {
4521 funcDecl->function.parameters = MkList();
4522 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*funcDecl->function.parameters), (((void *)0)), MkTypeName(MkListOne(MkSpecifier(VOID)), (((void *)0))));
4523 }
4524 ListAdd(declarators, MkInitDeclarator(d, (((void *)0))));
4525 {
4526 struct Context * oldCtx = curContext;
4527
4528 curContext = globalContext;
4529 decl = MkDeclaration(specifiers, declarators);
4530 curContext = oldCtx;
4531 }
4532 if(symbol->pointerExternal)
4533 {
4534 struct Symbol * functionSymbol = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol);
4535
4536 {
4537 *functionSymbol = *symbol;
4538 functionSymbol->string = __ecereNameSpace__ecere__sys__CopyString(symbol->string);
4539 if(functionSymbol->type)
4540 functionSymbol->type->refCount++;
4541 }
4542 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add((&*excludedSymbols), functionSymbol);
4543 symbol->pointerExternal->symbol = functionSymbol;
4544 }
4545 external = MkExternalDeclaration(decl);
4546 if(curExternal)
4547 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*ast), curExternal->prev, external);
4548 external->symbol = symbol;
4549 symbol->pointerExternal = external;
4550 }
4551 else
4552 {
4553 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Move((&*ast), symbol->pointerExternal, curExternal->prev);
4554 }
4555 if(curExternal)
4556 symbol->id = curExternal->symbol->idCode;
4557 }
4558 }
4559 return (symbol && symbol->_import && function->module != privateModule && ((struct __ecereNameSpace__ecere__com__Module *)(((char *)function->module + structSize_Instance)))->importType != 1) ? 0x1 : 0x0;
4560 }
4561
4562 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_GlobalData;
4563
4564 struct GlobalData
4565 {
4566 uintptr_t key;
4567 struct __ecereNameSpace__ecere__sys__BTNode * parent;
4568 struct __ecereNameSpace__ecere__sys__BTNode * left;
4569 struct __ecereNameSpace__ecere__sys__BTNode * right;
4570 int depth;
4571 struct __ecereNameSpace__ecere__com__Instance * module;
4572 char *  dataTypeString;
4573 struct Type * dataType;
4574 void *  symbol;
4575 char *  fullName;
4576 } __attribute__ ((gcc_struct));
4577
4578 void DeclareGlobalData(struct GlobalData * data)
4579 {
4580 struct Symbol * symbol = data->symbol;
4581
4582 if(curExternal && (!symbol || symbol->id > curExternal->symbol->idCode))
4583 {
4584 if(inCompiler)
4585 {
4586 if(!symbol)
4587 symbol = data->symbol = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol);
4588 }
4589 if(!data->dataType)
4590 data->dataType = ProcessTypeString(data->dataTypeString, 0x0);
4591 DeclareType(data->dataType, 0x1, 0x1);
4592 if(inCompiler)
4593 {
4594 if(!symbol->pointerExternal)
4595 {
4596 struct Declaration * decl;
4597 struct __ecereNameSpace__ecere__sys__OldList * specifiers, * declarators;
4598 struct Declarator * d;
4599 struct External * external;
4600
4601 specifiers = MkList();
4602 declarators = MkList();
4603 ListAdd(specifiers, MkSpecifier(EXTERN));
4604 d = MkDeclaratorIdentifier(MkIdentifier(data->fullName));
4605 d = SpecDeclFromString(data->dataTypeString, specifiers, d);
4606 ListAdd(declarators, MkInitDeclarator(d, (((void *)0))));
4607 decl = MkDeclaration(specifiers, declarators);
4608 external = MkExternalDeclaration(decl);
4609 if(curExternal)
4610 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*ast), curExternal->prev, external);
4611 external->symbol = symbol;
4612 symbol->pointerExternal = external;
4613 }
4614 else
4615 {
4616 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Move((&*ast), symbol->pointerExternal, curExternal->prev);
4617 }
4618 if(curExternal)
4619 symbol->id = curExternal->symbol->idCode;
4620 }
4621 }
4622 }
4623
4624 struct Conversion
4625 {
4626 struct Conversion * prev, * next;
4627 struct __ecereNameSpace__ecere__com__Property * convert;
4628 unsigned int isGet;
4629 struct Type * resultType;
4630 } __attribute__ ((gcc_struct));
4631
4632 static struct __ecereNameSpace__ecere__com__Class * __ecereClass_Conversion;
4633
4634 extern void Compiler_Warning(char *  format, ...);
4635
4636 void PrintType(struct Type * type, char *  string, unsigned int printName, unsigned int fullName);
4637
4638 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)
4639 {
4640 if(source && dest)
4641 {
4642 if(source->kind == 20 && dest->kind != 20)
4643 {
4644 struct Type * type = ProcessTemplateParameterType(source->templateParameter);
4645
4646 if(type)
4647 source = type;
4648 }
4649 if(dest->kind == 20 && source->kind != 20)
4650 {
4651 struct Type * type = ProcessTemplateParameterType(dest->templateParameter);
4652
4653 if(type)
4654 dest = type;
4655 }
4656 if(dest->classObjectType == 2)
4657 {
4658 if(source->classObjectType != 3)
4659 return 0x1;
4660 else
4661 {
4662 if((dest->_class && strcmp(dest->_class->string, "class")) || (source->_class && strcmp(source->_class->string, "class")))
4663 {
4664 return 0x1;
4665 }
4666 }
4667 }
4668 else
4669 {
4670 if(source->classObjectType == 3)
4671 return 0x1;
4672 if(dest->classObjectType == 3 && source->classObjectType != 2)
4673 return 0x1;
4674 }
4675 if((dest->kind == 9 && source->kind == 9) || (dest->kind == 10 && source->kind == 10))
4676 {
4677 if((dest->enumName && source->enumName && !strcmp(dest->enumName, source->enumName)) || (source->members.first && source->members.first == dest->members.first))
4678 return 0x1;
4679 }
4680 if(dest->kind == 14 && source->kind != 0)
4681 return 0x1;
4682 if(dest->kind == 13 && dest->type->kind == 0 && ((source->kind == 8 && (!source->_class || !source->_class->registered || source->_class->registered->type == 1 || source->_class->registered->type == 0 || source->_class->registered->type == 5 || source->_class->registered->type == 1000)) || source->kind == 19 || source->kind == 13 || source->kind == 12 || source->kind == 11 || source->kind == 21))
4683 return 0x1;
4684 if(!isConversionExploration && source->kind == 13 && source->type->kind == 0 && ((dest->kind == 8 && (!dest->_class || !dest->_class->registered || dest->_class->registered->type == 1 || dest->_class->registered->type == 0 || dest->_class->registered->type == 5 || dest->_class->registered->type == 1000)) || dest->kind == 19 || dest->kind == 13 || dest->kind == 12 || dest->kind == 11 || dest->kind == 21))
4685 return 0x1;
4686 if(((source->kind == 8 && dest->kind == 8) || (source->kind == 19 && dest->kind == 19)) && source->_class)
4687 {
4688 if(source->_class->registered && source->_class->registered->type == 3)
4689 {
4690 if(conversions != (((void *)0)))
4691 {
4692 if(source->_class->registered == dest->_class->registered)
4693 return 0x1;
4694 }
4695 else
4696 {
4697 struct __ecereNameSpace__ecere__com__Class * sourceBase, * destBase;
4698
4699 for(sourceBase = source->_class->registered; sourceBase && sourceBase->base->type != 1000; sourceBase = sourceBase->base)
4700 ;
4701 for(destBase = dest->_class->registered; destBase && destBase->base->type != 1000; destBase = destBase->base)
4702 ;
4703 if(sourceBase == destBase)
4704 return 0x1;
4705 }
4706 }
4707 else if(source->_class && dest->_class && (dest->classObjectType == source->classObjectType || !dest->classObjectType) && (enumBaseType || (!source->_class->registered || source->_class->registered->type != 4) || (!dest->_class->registered || dest->_class->registered->type != 4)) && __ecereNameSpace__ecere__com__eClass_IsDerived(source->_class->registered, dest->_class->registered))
4708 return 0x1;
4709 else
4710 {
4711 if(enumBaseType && dest->_class && dest->_class->registered && dest->_class->registered->type == 4 && ((source->_class && source->_class->registered && source->_class->registered->type != 4) || source->kind == 8))
4712 {
4713 if(__ecereNameSpace__ecere__com__eClass_IsDerived(dest->_class->registered, source->_class->registered))
4714 {
4715 return 0x1;
4716 }
4717 }
4718 }
4719 }
4720 if(source->kind == 19 && dest->kind == 8 && dest->_class && !strcmp(dest->_class->string, "ecere::com::Class"))
4721 return 0x1;
4722 if(doConversion)
4723 {
4724 if(source->kind == 8)
4725 {
4726 struct __ecereNameSpace__ecere__com__Class * _class;
4727
4728 for(_class = source->_class ? source->_class->registered : (((void *)0)); _class; _class = _class->base)
4729 {
4730 struct __ecereNameSpace__ecere__com__Property * convert;
4731
4732 for(convert = _class->conversions.first; convert; convert = convert->next)
4733 {
4734 if(convert->memberAccess == 1 || _class->module == privateModule)
4735 {
4736 struct Conversion * after = (conversions != (((void *)0))) ? conversions->last : (((void *)0));
4737
4738 if(!convert->dataType)
4739 convert->dataType = ProcessTypeString(convert->dataTypeString, 0x0);
4740 if(MatchTypes(convert->dataType, dest, conversions, (((void *)0)), (((void *)0)), 0x0, 0x1, 0x0, 0x1))
4741 {
4742 if(!conversions && !convert->Get)
4743 return 0x1;
4744 else if(conversions != (((void *)0)))
4745 {
4746 if(_class->type == 3 && convert->dataType->kind == 8 && convert->dataType->_class && convert->dataType->_class->registered && _class->base == convert->dataType->_class->registered->base && (dest->kind != 8 || dest->_class->registered != _class->base))
4747 return 0x1;
4748 else
4749 {
4750 struct Conversion * conv = (conv = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Conversion), conv->convert = convert, conv->isGet = 0x1, conv);
4751
4752 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert(conversions, after, conv);
4753 return 0x1;
4754 }
4755 }
4756 }
4757 }
4758 }
4759 }
4760 }
4761 if(dest->kind == 8)
4762 {
4763 struct __ecereNameSpace__ecere__com__Class * _class;
4764
4765 for(_class = dest->_class ? dest->_class->registered : (((void *)0)); _class; _class = _class->base)
4766 {
4767 struct __ecereNameSpace__ecere__com__Property * convert;
4768
4769 for(convert = _class->conversions.first; convert; convert = convert->next)
4770 {
4771 if(convert->memberAccess == 1 || _class->module == privateModule)
4772 {
4773 if(!convert->dataType)
4774 convert->dataType = ProcessTypeString(convert->dataTypeString, 0x0);
4775 if(convert->dataType != dest && MatchTypes(source, convert->dataType, conversions, (((void *)0)), (((void *)0)), 0x1, 0x0, 0x0, 0x1))
4776 {
4777 if(!conversions && !convert->Set)
4778 return 0x1;
4779 else if(conversions != (((void *)0)))
4780 {
4781 if(_class->type == 3 && convert->dataType->kind == 8 && convert->dataType->_class && convert->dataType->_class->registered && _class->base == convert->dataType->_class->registered->base && (source->kind != 8 || source->_class->registered != _class->base))
4782 return 0x1;
4783 else
4784 {
4785 struct Conversion * conv = (conv = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Conversion), conv->convert = convert, conv);
4786
4787 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(conversions, conv);
4788 return 0x1;
4789 }
4790 }
4791 }
4792 }
4793 }
4794 }
4795 if(enumBaseType && dest->_class && dest->_class->registered && dest->_class->registered->type == 4)
4796 {
4797 if(!dest->_class->registered->dataType)
4798 dest->_class->registered->dataType = ProcessTypeString(dest->_class->registered->dataTypeString, 0x0);
4799 if(dest->_class->registered->dataType->kind == 8 || source->truth || dest->truth)
4800 {
4801 if(MatchTypes(source, dest->_class->registered->dataType, conversions, (((void *)0)), (((void *)0)), 0x1, 0x1, 0x0, 0x0))
4802 {
4803 return 0x1;
4804 }
4805 }
4806 }
4807 }
4808 if(source->kind == 8)
4809 {
4810 struct __ecereNameSpace__ecere__com__Class * _class;
4811
4812 for(_class = source->_class ? source->_class->registered : (((void *)0)); _class; _class = _class->base)
4813 {
4814 struct __ecereNameSpace__ecere__com__Property * convert;
4815
4816 for(convert = _class->conversions.first; convert; convert = convert->next)
4817 {
4818 if(convert->memberAccess == 1 || _class->module == privateModule)
4819 {
4820 struct Conversion * after = (conversions != (((void *)0))) ? conversions->last : (((void *)0));
4821
4822 if(!convert->dataType)
4823 convert->dataType = ProcessTypeString(convert->dataTypeString, 0x0);
4824 if(convert->dataType != source && MatchTypes(convert->dataType, dest, conversions, (((void *)0)), (((void *)0)), 0x1, 0x1, 0x0, 0x1))
4825 {
4826 if(!conversions && !convert->Get)
4827 return 0x1;
4828 else if(conversions != (((void *)0)))
4829 {
4830 if(_class->type == 3 && convert->dataType->kind == 8 && convert->dataType->_class && convert->dataType->_class->registered && _class->base == convert->dataType->_class->registered->base && (dest->kind != 8 || dest->_class->registered != _class->base))
4831 return 0x1;
4832 else
4833 {
4834 struct Conversion * conv = (conv = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Conversion), conv->convert = convert, conv->isGet = 0x1, conv);
4835
4836 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert(conversions, after, conv);
4837 return 0x1;
4838 }
4839 }
4840 }
4841 }
4842 }
4843 }
4844 if(enumBaseType && source->_class && source->_class->registered && source->_class->registered->type == 4)
4845 {
4846 if(!source->_class->registered->dataType)
4847 source->_class->registered->dataType = ProcessTypeString(source->_class->registered->dataTypeString, 0x0);
4848 if(MatchTypes(source->_class->registered->dataType, dest, conversions, (((void *)0)), (((void *)0)), 0x1, 0x1, 0x0, 0x0))
4849 {
4850 return 0x1;
4851 }
4852 }
4853 }
4854 }
4855 if(source->kind == 8 || source->kind == 19)
4856 ;
4857 else if(dest->kind == source->kind && (dest->kind != 9 && dest->kind != 10 && dest->kind != 11 && dest->kind != 12 && dest->kind != 13 && dest->kind != 16))
4858 return 0x1;
4859 else if(dest->kind == 7 && source->kind == 6)
4860 return 0x1;
4861 else if(dest->kind == 2 && (source->kind == 1 || source->kind == 24))
4862 return 0x1;
4863 else if(dest->kind == 3 && (source->kind == 2 || source->kind == 1 || source->kind == 24 || source->kind == 23))
4864 return 0x1;
4865 else if(dest->kind == 4 && (source->kind == 2 || source->kind == 1 || source->kind == 24 || source->kind == 3 || source->kind == 22 || source->kind == 23))
4866 return 0x1;
4867 else if(dest->kind == 22 && (source->kind == 2 || source->kind == 1 || source->kind == 24 || source->kind == 3 || source->kind == 23 || source->kind == 4))
4868 return 0x1;
4869 else if(dest->kind == 23 && (source->kind == 2 || source->kind == 1 || source->kind == 24 || source->kind == 3 || source->kind == 4 || source->kind == 22))
4870 return 0x1;
4871 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))
4872 return 0x1;
4873 else if(dest->kind == 15 && (source->kind == 3 || source->kind == 2 || source->kind == 1 || source->kind == 24 || source->kind == 5 || source->kind == 4 || source->kind == 22 || source->kind == 23))
4874 return 0x1;
4875 else if((dest->kind == 11 || (dest->kind == 13 && dest->type->kind == 11) || dest->kind == 16) && ((source->kind == 11 || (source->kind == 13 && source->type->kind == 11) || source->kind == 16)))
4876 {
4877 struct Type * paramSource, * paramDest;
4878
4879 if(dest->kind == 16)
4880 owningClassDest = dest->methodClass ? dest->methodClass : dest->method->_class;
4881 if(source->kind == 16)
4882 owningClassSource = source->methodClass ? source->methodClass : source->method->_class;
4883 if(dest->kind == 13 && dest->type->kind == 11)
4884 dest = dest->type;
4885 if(source->kind == 13 && source->type->kind == 11)
4886 source = source->type;
4887 if(dest->kind == 16)
4888 dest = dest->method->dataType;
4889 if(source->kind == 16)
4890 source = source->method->dataType;
4891 paramSource = source->params.first;
4892 if(paramSource && paramSource->kind == 0)
4893 paramSource = (((void *)0));
4894 paramDest = dest->params.first;
4895 if(paramDest && paramDest->kind == 0)
4896 paramDest = (((void *)0));
4897 if((dest->staticMethod || (!dest->thisClass && !owningClassDest)) && !(source->staticMethod || (!source->thisClass && !owningClassSource)))
4898 {
4899 if(!paramDest || (!(paramDest->kind == 13 && paramDest->type && paramDest->type->kind == 0) && (paramDest->kind != 8 || !__ecereNameSpace__ecere__com__eClass_IsDerived(source->thisClass ? source->thisClass->registered : owningClassSource, paramDest->_class->registered))))
4900 {
4901 if(paramDest && paramDest->kind == 8)
4902 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "method class must be derived from %s\n", (((void *)0))), paramDest->_class->string);
4903 else
4904 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "method class should not take an object\n", (((void *)0))));
4905 return 0x0;
4906 }
4907 paramDest = paramDest->next;
4908 }
4909 else if(!dest->staticMethod && (dest->thisClass || owningClassDest))
4910 {
4911 if((source->staticMethod || (!source->thisClass && !owningClassSource)))
4912 {
4913 if(dest->thisClass)
4914 {
4915 if(!paramSource || paramSource->kind != 8 || !__ecereNameSpace__ecere__com__eClass_IsDerived(paramSource->_class->registered, dest->thisClass->registered))
4916 {
4917 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "method class must be derived from %s\n", (((void *)0))), dest->thisClass->string);
4918 return 0x0;
4919 }
4920 }
4921 else
4922 {
4923 if(!paramSource || paramSource->kind != 8 || (owningClassDest && !__ecereNameSpace__ecere__com__eClass_IsDerived(paramSource->_class->registered, owningClassDest)))
4924 {
4925 if(owningClassDest)
4926 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "%s expected to be derived from method class\n", (((void *)0))), owningClassDest->fullName);
4927 else
4928 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "overriding class expected to be derived from method class\n", (((void *)0))));
4929 return 0x0;
4930 }
4931 }
4932 paramSource = paramSource->next;
4933 }
4934 else
4935 {
4936 if(dest->thisClass)
4937 {
4938 if(!__ecereNameSpace__ecere__com__eClass_IsDerived(source->thisClass ? source->thisClass->registered : owningClassSource, dest->thisClass->registered))
4939 {
4940 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "method class must be derived from %s\n", (((void *)0))), dest->thisClass->string);
4941 return 0x0;
4942 }
4943 }
4944 else
4945 {
4946 if(source->thisClass && source->thisClass->registered && owningClassDest && !__ecereNameSpace__ecere__com__eClass_IsDerived(source->thisClass->registered, owningClassDest))
4947 {
4948 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "%s expected to be derived from method class\n", (((void *)0))), source->thisClass->registered->fullName);
4949 return 0x0;
4950 }
4951 }
4952 }
4953 }
4954 if(!MatchTypes(source->returnType, dest->returnType, (((void *)0)), (((void *)0)), (((void *)0)), 0x1, 0x1, 0x0, 0x0))
4955 {
4956 Compiler_Warning(__ecereNameSpace__ecere__GetTranslatedString("ec", "incompatible return type for function\n", (((void *)0))));
4957 return 0x0;
4958 }
4959 for(; paramDest; paramDest = paramDest->next)
4960 {
4961 if(!paramSource)
4962 {
4963 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "not enough parameters\n", (((void *)0))));
4964 return 0x0;
4965 }
4966 {
4967 struct Type * paramDestType = paramDest;
4968 struct Type * paramSourceType = paramSource;
4969 struct Type * type = paramDestType;
4970
4971 if(paramDest->kind == 20 && paramDest->templateParameter->type == 0 && owningClassSource && paramSource->kind != 20)
4972 {
4973 int id = 0;
4974 struct __ecereNameSpace__ecere__com__ClassTemplateParameter * curParam = (((void *)0));
4975 struct __ecereNameSpace__ecere__com__Class * sClass;
4976
4977 for(sClass = owningClassSource; sClass; sClass = sClass->base)
4978 {
4979 id = 0;
4980 if(sClass->templateClass)
4981 sClass = sClass->templateClass;
4982 for(curParam = sClass->templateParams.first; curParam; curParam = curParam->next)
4983 {
4984 if(curParam->type == 0 && !strcmp(type->templateParameter->identifier->string, curParam->name))
4985 {
4986 for(sClass = sClass->base; sClass; sClass = sClass->base)
4987 {
4988 if(sClass->templateClass)
4989 sClass = sClass->templateClass;
4990 id += sClass->templateParams.count;
4991 }
4992 break;
4993 }
4994 id++;
4995 }
4996 if(curParam)
4997 break;
4998 }
4999 if(curParam)
5000 {
5001 struct __ecereNameSpace__ecere__com__ClassTemplateArgument arg = owningClassSource->templateArgs[id];
5002
5003 paramDestType = type = ProcessTypeString(arg.dataTypeString, 0x0);
5004 }
5005 }
5006 if(!MatchTypes(paramDestType, paramSourceType, (((void *)0)), (((void *)0)), (((void *)0)), 0x1, 0x1, 0x0, 0x0) && (!acceptReversedParams || !MatchTypes(paramSourceType, paramDestType, (((void *)0)), (((void *)0)), (((void *)0)), 0x1, 0x1, 0x0, 0x0)))
5007 {
5008 char type[1024];
5009
5010 type[0] = (char)0;
5011 PrintType(paramDest, type, 0x0, 0x1);
5012 Compiler_Warning(__ecereNameSpace__ecere__GetTranslatedString("ec", "incompatible parameter %s (expected %s)\n", (((void *)0))), paramSource->name, type);
5013 if(paramDestType != paramDest)
5014 FreeType(paramDestType);
5015 return 0x0;
5016 }
5017 if(paramDestType != paramDest)
5018 FreeType(paramDestType);
5019 }
5020 paramSource = paramSource->next;
5021 }
5022 if(paramSource)
5023 {
5024 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "too many parameters\n", (((void *)0))));
5025 return 0x0;
5026 }
5027 return 0x1;
5028 }
5029 else if((dest->kind == 11 || (dest->kind == 13 && dest->type->kind == 11) || dest->kind == 16) && (source->kind == 13 && source->type->kind == 0))
5030 {
5031 return 0x1;
5032 }
5033 else if((dest->kind == 13 || dest->kind == 12) && (source->kind == 12 || source->kind == 13))
5034 {
5035 if(MatchTypes(source->type, dest->type, (((void *)0)), (((void *)0)), (((void *)0)), 0x1, 0x1, 0x0, 0x0))
5036 return 0x1;
5037 }
5038 }
5039 return 0x0;
5040 }
5041
5042 static void FreeConvert(struct Conversion * convert)
5043 {
5044 if(convert->resultType)
5045 FreeType(convert->resultType);
5046 }
5047
5048 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__BTNamedLink;
5049
5050 struct __ecereNameSpace__ecere__com__BTNamedLink
5051 {
5052 char *  name;
5053 struct __ecereNameSpace__ecere__com__BTNamedLink * parent;
5054 struct __ecereNameSpace__ecere__com__BTNamedLink * left;
5055 struct __ecereNameSpace__ecere__com__BTNamedLink * right;
5056 int depth;
5057 void *  data;
5058 } __attribute__ ((gcc_struct));
5059
5060 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__EnumClassData;
5061
5062 struct __ecereNameSpace__ecere__com__EnumClassData
5063 {
5064 struct __ecereNameSpace__ecere__sys__OldList values;
5065 int largest;
5066 } __attribute__ ((gcc_struct));
5067
5068 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__sys__NamedLink;
5069
5070 struct __ecereNameSpace__ecere__sys__NamedLink
5071 {
5072 struct __ecereNameSpace__ecere__sys__NamedLink * prev;
5073 struct __ecereNameSpace__ecere__sys__NamedLink * next;
5074 char *  name;
5075 void *  data;
5076 } __attribute__ ((gcc_struct));
5077
5078 extern void FreeExpContents(struct Expression * exp);
5079
5080 struct __ecereNameSpace__ecere__sys__BTNode * __ecereProp___ecereNameSpace__ecere__sys__BinaryTree_Get_first(struct __ecereNameSpace__ecere__sys__BinaryTree * this);
5081
5082 extern struct __ecereNameSpace__ecere__com__Property ** __ecereProp___ecereNameSpace__ecere__sys__BinaryTree_first;
5083
5084 struct __ecereNameSpace__ecere__sys__BTNode * __ecereProp___ecereNameSpace__ecere__sys__BTNode_Get_next(struct __ecereNameSpace__ecere__sys__BTNode * this);
5085
5086 extern struct __ecereNameSpace__ecere__com__Property ** __ecereProp___ecereNameSpace__ecere__sys__BTNode_next;
5087
5088 void __ecereMethod___ecereNameSpace__ecere__sys__OldList_Free(struct __ecereNameSpace__ecere__sys__OldList * this, void (*  freeFn)(void * ));
5089
5090 unsigned int MatchWithEnums_NameSpace(struct __ecereNameSpace__ecere__com__NameSpace * nameSpace, struct Expression * sourceExp, struct Type * dest, char * string, struct __ecereNameSpace__ecere__sys__OldList * conversions)
5091 {
5092 struct __ecereNameSpace__ecere__com__BTNamedLink * link;
5093
5094 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)))
5095 {
5096 struct __ecereNameSpace__ecere__com__Class * _class = link->data;
5097
5098 if(_class->type == 4)
5099 {
5100 struct __ecereNameSpace__ecere__sys__OldList converts = 
5101 {
5102 0, 0, 0, 0, 0
5103 };
5104 struct Type * type = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
5105
5106 type->kind = 8;
5107 if(!_class->symbol)
5108 _class->symbol = FindClass(_class->fullName);
5109 type->_class = _class->symbol;
5110 if(MatchTypes(type, dest, &converts, (((void *)0)), (((void *)0)), 0x1, 0x0, 0x0, 0x0))
5111 {
5112 struct __ecereNameSpace__ecere__sys__NamedLink * value;
5113 struct __ecereNameSpace__ecere__com__Class * enumClass = __ecereNameSpace__ecere__com__eSystem_FindClass(privateModule, "enum");
5114
5115 if(enumClass)
5116 {
5117 struct __ecereNameSpace__ecere__com__Class * baseClass;
5118
5119 for(baseClass = _class; baseClass && baseClass->type == 4; baseClass = baseClass->base)
5120 {
5121 struct __ecereNameSpace__ecere__com__EnumClassData * e = (baseClass ? ((void *)(((char *)baseClass->data) + enumClass->offsetClass)) : (((void *)0)));
5122
5123 for(value = e->values.first; value; value = value->next)
5124 {
5125 if(!strcmp(value->name, string))
5126 break;
5127 }
5128 if(value)
5129 {
5130 FreeExpContents(sourceExp);
5131 FreeType(sourceExp->expType);
5132 sourceExp->isConstant = 0x1;
5133 sourceExp->expType = MkClassType(baseClass->fullName);
5134 {
5135 char constant[256];
5136
5137 sourceExp->type = 2;
5138 if(!strcmp(baseClass->dataTypeString, "int"))
5139 sprintf(constant, "%d", (int)value->data);
5140 else
5141 sprintf(constant, "0x%X", (int)value->data);
5142 sourceExp->constant = __ecereNameSpace__ecere__sys__CopyString(constant);
5143 }
5144 while(converts.first)
5145 {
5146 struct Conversion * convert = converts.first;
5147
5148 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Remove(&converts, convert);
5149 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(conversions, convert);
5150 }
5151 ((type ? (__ecereClass_Type->Destructor ? __ecereClass_Type->Destructor(type) : 0, __ecereNameSpace__ecere__com__eSystem_Delete(type)) : 0), type = 0);
5152 return 0x1;
5153 }
5154 }
5155 }
5156 }
5157 if(converts.first)
5158 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Free(&converts, FreeConvert);
5159 ((type ? (__ecereClass_Type->Destructor ? __ecereClass_Type->Destructor(type) : 0, __ecereNameSpace__ecere__com__eSystem_Delete(type)) : 0), type = 0);
5160 }
5161 }
5162 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)))
5163 if(MatchWithEnums_NameSpace(nameSpace, sourceExp, dest, string, conversions))
5164 return 0x1;
5165 return 0x0;
5166 }
5167
5168 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__SubModule;
5169
5170 struct __ecereNameSpace__ecere__com__SubModule
5171 {
5172 struct __ecereNameSpace__ecere__com__SubModule * prev;
5173 struct __ecereNameSpace__ecere__com__SubModule * next;
5174 struct __ecereNameSpace__ecere__com__Instance * module;
5175 int importMode;
5176 } __attribute__ ((gcc_struct));
5177
5178 unsigned int ModuleVisibility(struct __ecereNameSpace__ecere__com__Instance * searchIn, struct __ecereNameSpace__ecere__com__Instance * searchFor)
5179 {
5180 struct __ecereNameSpace__ecere__com__SubModule * subModule;
5181
5182 if(searchFor == searchIn)
5183 return 0x1;
5184 for(subModule = ((struct __ecereNameSpace__ecere__com__Module *)(((char *)searchIn + structSize_Instance)))->modules.first; subModule; subModule = subModule->next)
5185 {
5186 if(subModule->importMode == 1 || searchIn == ((struct __ecereNameSpace__ecere__com__Module *)(((char *)searchIn + structSize_Instance)))->application)
5187 {
5188 if(ModuleVisibility(subModule->module, searchFor))
5189 return 0x1;
5190 }
5191 }
5192 return 0x0;
5193 }
5194
5195 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__Application;
5196
5197 struct __ecereNameSpace__ecere__com__Application
5198 {
5199 int argc;
5200 char * *  argv;
5201 int exitCode;
5202 unsigned int isGUIApp;
5203 struct __ecereNameSpace__ecere__sys__OldList allModules;
5204 char *  parsedCommand;
5205 struct __ecereNameSpace__ecere__com__NameSpace systemNameSpace;
5206 } __attribute__ ((gcc_struct));
5207
5208 unsigned int MatchWithEnums_Module(struct __ecereNameSpace__ecere__com__Instance * mainModule, struct Expression * sourceExp, struct Type * dest, char * string, struct __ecereNameSpace__ecere__sys__OldList * conversions)
5209 {
5210 struct __ecereNameSpace__ecere__com__Instance * module;
5211
5212 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))
5213 return 0x1;
5214 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))
5215 return 0x1;
5216 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))
5217 return 0x1;
5218 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)
5219 {
5220 if(ModuleVisibility(mainModule, module) && MatchWithEnums_NameSpace(&((struct __ecereNameSpace__ecere__com__Module *)(((char *)module + structSize_Instance)))->publicNameSpace, sourceExp, dest, string, conversions))
5221 return 0x1;
5222 }
5223 return 0x0;
5224 }
5225
5226 extern unsigned long strtoul(const char *  nptr, char * *  endptr, int base);
5227
5228 void ReadString(char *  output, char *  string);
5229
5230 extern struct Specifier * MkEnum(struct Identifier * id, struct __ecereNameSpace__ecere__sys__OldList * list);
5231
5232 extern struct TypeName * QMkClass(char *  spec, struct Declarator * decl);
5233
5234 extern struct Expression * MkExpBrackets(struct __ecereNameSpace__ecere__sys__OldList * expressions);
5235
5236 unsigned int MatchTypeExpression(struct Expression * sourceExp, struct Type * dest, struct __ecereNameSpace__ecere__sys__OldList * conversions, unsigned int skipUnitBla)
5237 {
5238 struct Type * source = sourceExp->expType;
5239 struct Type * realDest = dest;
5240 struct Type * backupSourceExpType = (((void *)0));
5241
5242 if(dest->kind == 13 && sourceExp->type == 2 && !strtoul(sourceExp->constant, (((void *)0)), 0))
5243 return 0x1;
5244 if(!skipUnitBla && source && dest && source->kind == 8 && dest->kind == 8)
5245 {
5246 if(source->_class && source->_class->registered && source->_class->registered->type == 3)
5247 {
5248 struct __ecereNameSpace__ecere__com__Class * sourceBase, * destBase;
5249
5250 for(sourceBase = source->_class->registered; sourceBase && sourceBase->base && sourceBase->base->type != 1000; sourceBase = sourceBase->base)
5251 ;
5252 for(destBase = dest->_class->registered; destBase && destBase->base && destBase->base->type != 1000; destBase = destBase->base)
5253 ;
5254 if(sourceBase == destBase)
5255 return 0x1;
5256 }
5257 }
5258 if(source)
5259 {
5260 struct __ecereNameSpace__ecere__sys__OldList * specs;
5261 unsigned int flag = 0x0;
5262 long long value = (((int)0x7fffffff));
5263
5264 source->refCount++;
5265 dest->refCount++;
5266 if(sourceExp->type == 2)
5267 {
5268 if(source->isSigned)
5269 value = strtoll(sourceExp->constant, (((void *)0)), 0);
5270 else
5271 value = strtoull(sourceExp->constant, (((void *)0)), 0);
5272 }
5273 else if(sourceExp->type == 4 && sourceExp->op.op == '-' && !sourceExp->op.exp1 && sourceExp->op.exp2 && sourceExp->op.exp2->type == 2)
5274 {
5275 if(source->isSigned)
5276 value = -strtoll(sourceExp->op.exp2->constant, (((void *)0)), 0);
5277 else
5278 value = -strtoull(sourceExp->op.exp2->constant, (((void *)0)), 0);
5279 }
5280 if(dest->kind != 8 && source->kind == 8 && source->_class && source->_class->registered && !strcmp(source->_class->registered->fullName, "ecere::com::unichar"))
5281 {
5282 FreeType(source);
5283 source = __extension__ ({
5284 struct Type * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
5285
5286 __ecereInstance1->kind = 3, __ecereInstance1->isSigned = 0x0, __ecereInstance1->refCount = 1, __ecereInstance1;
5287 });
5288 }
5289 if(dest->kind == 8)
5290 {
5291 struct __ecereNameSpace__ecere__com__Class * _class = dest->_class ? dest->_class->registered : (((void *)0));
5292
5293 if(_class && _class->type == 3)
5294 {
5295 if(source->kind != 8)
5296 {
5297 struct Type * tempType = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
5298 struct Type * tempDest, * tempSource;
5299
5300 for(; _class->base->type != 1000; _class = _class->base)
5301 ;
5302 tempSource = dest;
5303 tempDest = tempType;
5304 tempType->kind = 8;
5305 if(!_class->symbol)
5306 _class->symbol = FindClass(_class->fullName);
5307 tempType->_class = _class->symbol;
5308 tempType->truth = dest->truth;
5309 if(tempType->_class)
5310 MatchTypes(tempSource, tempDest, conversions, (((void *)0)), (((void *)0)), 0x1, 0x1, 0x0, 0x0);
5311 backupSourceExpType = sourceExp->expType;
5312 sourceExp->expType = dest;
5313 dest->refCount++;
5314 flag = 0x1;
5315 ((tempType ? (__ecereClass_Type->Destructor ? __ecereClass_Type->Destructor(tempType) : 0, __ecereNameSpace__ecere__com__eSystem_Delete(tempType)) : 0), tempType = 0);
5316 }
5317 }
5318 if(_class && _class->type == 2 && source->kind != 8)
5319 {
5320 if(!dest->_class->registered->dataType)
5321 dest->_class->registered->dataType = ProcessTypeString(dest->_class->registered->dataTypeString, 0x0);
5322 if(MatchTypes(source, dest->_class->registered->dataType, conversions, (((void *)0)), (((void *)0)), 0x1, 0x1, 0x0, 0x0))
5323 {
5324 FreeType(source);
5325 FreeType(sourceExp->expType);
5326 source = sourceExp->expType = MkClassType(dest->_class->string);
5327 source->refCount++;
5328 }
5329 }
5330 if(_class && !strcmp(_class->fullName, "ecere::com::Class") && source->kind == 13 && source->type && source->type->kind == 1 && sourceExp->type == 3)
5331 {
5332 struct __ecereNameSpace__ecere__sys__OldList * specs = MkList();
5333 struct Declarator * decl;
5334 char string[1024];
5335
5336 ReadString(string, sourceExp->string);
5337 decl = SpecDeclFromString(string, specs, (((void *)0)));
5338 FreeExpContents(sourceExp);
5339 FreeType(sourceExp->expType);
5340 sourceExp->type = 24;
5341 sourceExp->_classExp.specifiers = specs;
5342 sourceExp->_classExp.decl = decl;
5343 sourceExp->expType = dest;
5344 dest->refCount++;
5345 FreeType(source);
5346 FreeType(dest);
5347 if(backupSourceExpType)
5348 FreeType(backupSourceExpType);
5349 return 0x1;
5350 }
5351 }
5352 else if(source->kind == 8)
5353 {
5354 struct __ecereNameSpace__ecere__com__Class * _class = source->_class ? source->_class->registered : (((void *)0));
5355
5356 if(_class && (_class->type == 3 || !strcmp(_class->fullName, "bool") || _class->type == 2))
5357 {
5358 if(dest->kind != 8)
5359 {
5360 struct Type * tempType = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
5361 struct Type * tempDest, * tempSource;
5362
5363 if(!source->_class->registered->dataType)
5364 source->_class->registered->dataType = ProcessTypeString(source->_class->registered->dataTypeString, 0x0);
5365 for(; _class->base->type != 1000; _class = _class->base)
5366 ;
5367 tempDest = source;
5368 tempSource = tempType;
5369 tempType->kind = 8;
5370 tempType->_class = FindClass(_class->fullName);
5371 tempType->truth = source->truth;
5372 tempType->classObjectType = source->classObjectType;
5373 if(tempType->_class)
5374 MatchTypes(tempSource, tempDest, conversions, (((void *)0)), (((void *)0)), 0x1, 0x1, 0x0, 0x0);
5375 if(conversions->last)
5376 {
5377 ((struct Conversion *)conversions->last)->resultType = dest;
5378 dest->refCount++;
5379 }
5380 FreeType(sourceExp->expType);
5381 sourceExp->expType = MkClassType(_class->fullName);
5382 sourceExp->expType->truth = source->truth;
5383 sourceExp->expType->classObjectType = source->classObjectType;
5384 if(!sourceExp->destType)
5385 {
5386 FreeType(sourceExp->destType);
5387 sourceExp->destType = sourceExp->expType;
5388 if(sourceExp->expType)
5389 sourceExp->expType->refCount++;
5390 }
5391 if(!_class->dataType)
5392 _class->dataType = ProcessTypeString(_class->dataTypeString, 0x0);
5393 FreeType(dest);
5394 dest = MkClassType(source->_class->string);
5395 dest->truth = source->truth;
5396 dest->classObjectType = source->classObjectType;
5397 FreeType(source);
5398 source = _class->dataType;
5399 source->refCount++;
5400 ((tempType ? (__ecereClass_Type->Destructor ? __ecereClass_Type->Destructor(tempType) : 0, __ecereNameSpace__ecere__com__eSystem_Delete(tempType)) : 0), tempType = 0);
5401 }
5402 }
5403 }
5404 if(!flag)
5405 {
5406 if(MatchTypes(source, dest, conversions, (((void *)0)), (((void *)0)), 0x1, 0x1, 0x0, 0x0))
5407 {
5408 FreeType(source);
5409 FreeType(dest);
5410 return 0x1;
5411 }
5412 }
5413 if(dest->kind == 8)
5414 {
5415 struct __ecereNameSpace__ecere__com__Class * _class = dest->_class ? dest->_class->registered : (((void *)0));
5416
5417 if(_class && !dest->truth && (_class->type == 3 || !strcmp(_class->fullName, "bool") || (_class->type != 1 && !value && source->kind == 3) || _class->type == 2))
5418 {
5419 if(_class->type == 0 || _class->type == 5)
5420 {
5421 struct Expression * newExp = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Expression);
5422
5423 *newExp = *sourceExp;
5424 if(sourceExp->destType)
5425 sourceExp->destType->refCount++;
5426 if(sourceExp->expType)
5427 sourceExp->expType->refCount++;
5428 sourceExp->type = 11;
5429 sourceExp->cast.typeName = MkTypeName(MkListOne(MkSpecifier(VOID)), MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), (((void *)0))));
5430 sourceExp->cast.exp = newExp;
5431 FreeType(sourceExp->expType);
5432 sourceExp->expType = (((void *)0));
5433 ProcessExpressionType(sourceExp);
5434 if(!inCompiler)
5435 {
5436 FreeType(sourceExp->expType);
5437 sourceExp->expType = dest;
5438 }
5439 FreeType(source);
5440 if(inCompiler)
5441 FreeType(dest);
5442 if(backupSourceExpType)
5443 FreeType(backupSourceExpType);
5444 return 0x1;
5445 }
5446 if(!_class->dataType)
5447 _class->dataType = ProcessTypeString(_class->dataTypeString, 0x0);
5448 FreeType(dest);
5449 dest = _class->dataType;
5450 dest->refCount++;
5451 }
5452 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))
5453 {
5454 specs = MkListOne(MkSpecifier(DOUBLE));
5455 }
5456 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))
5457 {
5458 specs = MkListOne(MkSpecifier(FLOAT));
5459 }
5460 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))
5461 {
5462 specs = MkList();
5463 if(!dest->isSigned)
5464 ListAdd(specs, MkSpecifier(UNSIGNED));
5465 ListAdd(specs, MkSpecifier(INT64));
5466 }
5467 else if(dest->kind == 3 && (source->kind == 3 || source->kind == 2 || source->kind == 1 || source->kind == 24 || source->kind == 6 || source->kind == 7))
5468 {
5469 specs = MkList();
5470 if(!dest->isSigned)
5471 ListAdd(specs, MkSpecifier(UNSIGNED));
5472 ListAdd(specs, MkSpecifier(INT));
5473 }
5474 else if(dest->kind == 2 && (source->kind == 2 || source->kind == 1 || source->kind == 24 || source->kind == 3 || source->kind == 6 || source->kind == 7))
5475 {
5476 specs = MkList();
5477 if(!dest->isSigned)
5478 ListAdd(specs, MkSpecifier(UNSIGNED));
5479 ListAdd(specs, MkSpecifier(SHORT));
5480 }
5481 else if(dest->kind == 1 && (source->kind == 1 || source->kind == 24 || source->kind == 2 || source->kind == 3 || source->kind == 6 || source->kind == 7))
5482 {
5483 specs = MkList();
5484 if(!dest->isSigned)
5485 ListAdd(specs, MkSpecifier(UNSIGNED));
5486 ListAdd(specs, MkSpecifier(CHAR));
5487 }
5488 else
5489 {
5490 FreeType(source);
5491 FreeType(dest);
5492 if(backupSourceExpType)
5493 {
5494 if(sourceExp->expType)
5495 FreeType(sourceExp->expType);
5496 sourceExp->expType = backupSourceExpType;
5497 }
5498 return 0x0;
5499 }
5500 }
5501 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))
5502 {
5503 specs = MkListOne(MkSpecifier(DOUBLE));
5504 }
5505 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))
5506 {
5507 specs = MkListOne(MkSpecifier(FLOAT));
5508 }
5509 else if(dest->kind == 24 && (source->kind == 24 || source->kind == 1 || source->kind == 15 || source->kind == 2 || source->kind == 3) && (value == 1 || value == 0))
5510 {
5511 specs = MkList();
5512 ListAdd(specs, MkSpecifier(BOOL));
5513 }
5514 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)))
5515 {
5516 specs = MkList();
5517 if(!dest->isSigned)
5518 ListAdd(specs, MkSpecifier(UNSIGNED));
5519 ListAdd(specs, MkSpecifier(CHAR));
5520 }
5521 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)))))
5522 {
5523 specs = MkList();
5524 if(!dest->isSigned)
5525 ListAdd(specs, MkSpecifier(UNSIGNED));
5526 ListAdd(specs, MkSpecifier(SHORT));
5527 }
5528 else if(dest->kind == 3 && (source->kind == 15 || source->kind == 2 || source->kind == 24 || source->kind == 1 || source->kind == 3))
5529 {
5530 specs = MkList();
5531 if(!dest->isSigned)
5532 ListAdd(specs, MkSpecifier(UNSIGNED));
5533 ListAdd(specs, MkSpecifier(INT));
5534 }
5535 else if(dest->kind == 4 && (source->kind == 15 || source->kind == 2 || source->kind == 24 || source->kind == 1 || source->kind == 3 || source->kind == 4))
5536 {
5537 specs = MkList();
5538 if(!dest->isSigned)
5539 ListAdd(specs, MkSpecifier(UNSIGNED));
5540 ListAdd(specs, MkSpecifier(INT64));
5541 }
5542 else if(dest->kind == 15 && (source->kind == 4 || source->kind == 3 || source->kind == 2 || source->kind == 24 || source->kind == 1))
5543 {
5544 specs = MkListOne(MkEnum(MkIdentifier(dest->enumName), (((void *)0))));
5545 }
5546 else
5547 {
5548 FreeType(source);
5549 FreeType(dest);
5550 if(backupSourceExpType)
5551 {
5552 if(sourceExp->expType)
5553 FreeType(sourceExp->expType);
5554 sourceExp->expType = backupSourceExpType;
5555 }
5556 return 0x0;
5557 }
5558 if(!flag)
5559 {
5560 struct Expression * newExp = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Expression);
5561
5562 *newExp = *sourceExp;
5563 newExp->prev = (((void *)0));
5564 newExp->next = (((void *)0));
5565 if(sourceExp->destType)
5566 sourceExp->destType->refCount++;
5567 if(sourceExp->expType)
5568 sourceExp->expType->refCount++;
5569 sourceExp->type = 11;
5570 if(realDest->kind == 8)
5571 {
5572 sourceExp->cast.typeName = QMkClass(realDest->_class->string, (((void *)0)));
5573 FreeList(specs, FreeSpecifier);
5574 }
5575 else
5576 sourceExp->cast.typeName = MkTypeName(specs, (((void *)0)));
5577 if(newExp->type == 4)
5578 {
5579 sourceExp->cast.exp = MkExpBrackets(MkListOne(newExp));
5580 }
5581 else
5582 sourceExp->cast.exp = newExp;
5583 FreeType(sourceExp->expType);
5584 sourceExp->expType = (((void *)0));
5585 ProcessExpressionType(sourceExp);
5586 }
5587 else
5588 FreeList(specs, FreeSpecifier);
5589 FreeType(dest);
5590 FreeType(source);
5591 if(backupSourceExpType)
5592 FreeType(backupSourceExpType);
5593 return 0x1;
5594 }
5595 else
5596 {
5597 while((sourceExp->type == 5 || sourceExp->type == 32) && sourceExp->list)
5598 sourceExp = (*sourceExp->list).last;
5599 if(sourceExp->type == 0)
5600 {
5601 struct Identifier * id = sourceExp->identifier;
5602
5603 if(dest->kind == 8)
5604 {
5605 if(dest->_class && dest->_class->registered && dest->_class->registered->type == 4)
5606 {
5607 struct __ecereNameSpace__ecere__com__Class * _class = dest->_class->registered;
5608 struct __ecereNameSpace__ecere__com__Class * enumClass = __ecereNameSpace__ecere__com__eSystem_FindClass(privateModule, "enum");
5609
5610 if(enumClass)
5611 {
5612 for(; _class && _class->type == 4; _class = _class->base)
5613 {
5614 struct __ecereNameSpace__ecere__sys__NamedLink * value;
5615 struct __ecereNameSpace__ecere__com__EnumClassData * e = (_class ? ((void *)(((char *)_class->data) + enumClass->offsetClass)) : (((void *)0)));
5616
5617 for(value = e->values.first; value; value = value->next)
5618 {
5619 if(!strcmp(value->name, id->string))
5620 break;
5621 }
5622 if(value)
5623 {
5624 FreeExpContents(sourceExp);
5625 FreeType(sourceExp->expType);
5626 sourceExp->isConstant = 0x1;
5627 sourceExp->expType = MkClassType(_class->fullName);
5628 {
5629 char constant[256];
5630
5631 sourceExp->type = 2;
5632 if(_class->dataTypeString && !strcmp(_class->dataTypeString, "int"))
5633 sprintf(constant, "%d", (int)value->data);
5634 else
5635 sprintf(constant, "0x%X", (int)value->data);
5636 sourceExp->constant = __ecereNameSpace__ecere__sys__CopyString(constant);
5637 }
5638 return 0x1;
5639 }
5640 }
5641 }
5642 }
5643 }
5644 if(dest->classObjectType != 2 && dest->kind == 8 && MatchWithEnums_Module(privateModule, sourceExp, dest, id->string, conversions))
5645 return 0x1;
5646 }
5647 }
5648 return 0x0;
5649 }
5650
5651 static unsigned int IntAdd(struct Expression * exp, struct Operand * op1, struct Operand * op2)
5652 {
5653 int value2 = op2->i;
5654
5655 exp->type = 2;
5656 exp->string = PrintInt(op1->i + value2);
5657 if(!exp->expType)
5658 {
5659 exp->expType = op1->type;
5660 if(op1->type)
5661 op1->type->refCount++;
5662 }
5663 return 0x1;
5664 }
5665
5666 static unsigned int UIntAdd(struct Expression * exp, struct Operand * op1, struct Operand * op2)
5667 {
5668 unsigned int value2 = op2->ui;
5669
5670 exp->type = 2;
5671 exp->string = PrintUInt(op1->ui + value2);
5672 if(!exp->expType)
5673 {
5674 exp->expType = op1->type;
5675 if(op1->type)
5676 op1->type->refCount++;
5677 }
5678 return 0x1;
5679 }
5680
5681 static unsigned int Int64Add(struct Expression * exp, struct Operand * op1, struct Operand * op2)
5682 {
5683 long long value2 = op2->i64;
5684
5685 exp->type = 2;
5686 exp->string = PrintInt64(op1->i64 + value2);
5687 if(!exp->expType)
5688 {
5689 exp->expType = op1->type;
5690 if(op1->type)
5691 op1->type->refCount++;
5692 }
5693 return 0x1;
5694 }
5695
5696 static unsigned int UInt64Add(struct Expression * exp, struct Operand * op1, struct Operand * op2)
5697 {
5698 uint64 value2 = op2->ui64;
5699
5700 exp->type = 2;
5701 exp->string = PrintUInt64(op1->ui64 + value2);
5702 if(!exp->expType)
5703 {
5704 exp->expType = op1->type;
5705 if(op1->type)
5706 op1->type->refCount++;
5707 }
5708 return 0x1;
5709 }
5710
5711 static unsigned int ShortAdd(struct Expression * exp, struct Operand * op1, struct Operand * op2)
5712 {
5713 short value2 = op2->s;
5714
5715 exp->type = 2;
5716 exp->string = PrintShort(op1->s + value2);
5717 if(!exp->expType)
5718 {
5719 exp->expType = op1->type;
5720 if(op1->type)
5721 op1->type->refCount++;
5722 }
5723 return 0x1;
5724 }
5725
5726 static unsigned int UShortAdd(struct Expression * exp, struct Operand * op1, struct Operand * op2)
5727 {
5728 unsigned short value2 = op2->us;
5729
5730 exp->type = 2;
5731 exp->string = PrintUShort(op1->us + value2);
5732 if(!exp->expType)
5733 {
5734 exp->expType = op1->type;
5735 if(op1->type)
5736 op1->type->refCount++;
5737 }
5738 return 0x1;
5739 }
5740
5741 static unsigned int CharAdd(struct Expression * exp, struct Operand * op1, struct Operand * op2)
5742 {
5743 char value2 = op2->c;
5744
5745 exp->type = 2;
5746 exp->string = PrintChar(op1->c + value2);
5747 if(!exp->expType)
5748 {
5749 exp->expType = op1->type;
5750 if(op1->type)
5751 op1->type->refCount++;
5752 }
5753 return 0x1;
5754 }
5755
5756 static unsigned int UCharAdd(struct Expression * exp, struct Operand * op1, struct Operand * op2)
5757 {
5758 unsigned char value2 = op2->uc;
5759
5760 exp->type = 2;
5761 exp->string = PrintUChar(op1->uc + value2);
5762 if(!exp->expType)
5763 {
5764 exp->expType = op1->type;
5765 if(op1->type)
5766 op1->type->refCount++;
5767 }
5768 return 0x1;
5769 }
5770
5771 static unsigned int FloatAdd(struct Expression * exp, struct Operand * op1, struct Operand * op2)
5772 {
5773 float value2 = op2->f;
5774
5775 exp->type = 2;
5776 exp->string = PrintFloat(op1->f + value2);
5777 if(!exp->expType)
5778 {
5779 exp->expType = op1->type;
5780 if(op1->type)
5781 op1->type->refCount++;
5782 }
5783 return 0x1;
5784 }
5785
5786 static unsigned int DoubleAdd(struct Expression * exp, struct Operand * op1, struct Operand * op2)
5787 {
5788 double value2 = op2->d;
5789
5790 exp->type = 2;
5791 exp->string = PrintDouble(op1->d + value2);
5792 if(!exp->expType)
5793 {
5794 exp->expType = op1->type;
5795 if(op1->type)
5796 op1->type->refCount++;
5797 }
5798 return 0x1;
5799 }
5800
5801 static unsigned int IntSub(struct Expression * exp, struct Operand * op1, struct Operand * op2)
5802 {
5803 int value2 = op2->i;
5804
5805 exp->type = 2;
5806 exp->string = PrintInt(op1->i - value2);
5807 if(!exp->expType)
5808 {
5809 exp->expType = op1->type;
5810 if(op1->type)
5811 op1->type->refCount++;
5812 }
5813 return 0x1;
5814 }
5815
5816 static unsigned int UIntSub(struct Expression * exp, struct Operand * op1, struct Operand * op2)
5817 {
5818 unsigned int value2 = op2->ui;
5819
5820 exp->type = 2;
5821 exp->string = PrintUInt(op1->ui - value2);
5822 if(!exp->expType)
5823 {
5824 exp->expType = op1->type;
5825 if(op1->type)
5826 op1->type->refCount++;
5827 }
5828 return 0x1;
5829 }
5830
5831 static unsigned int Int64Sub(struct Expression * exp, struct Operand * op1, struct Operand * op2)
5832 {
5833 long long value2 = op2->i64;
5834
5835 exp->type = 2;
5836 exp->string = PrintInt64(op1->i64 - value2);
5837 if(!exp->expType)
5838 {
5839 exp->expType = op1->type;
5840 if(op1->type)
5841 op1->type->refCount++;
5842 }
5843 return 0x1;
5844 }
5845
5846 static unsigned int UInt64Sub(struct Expression * exp, struct Operand * op1, struct Operand * op2)
5847 {
5848 uint64 value2 = op2->ui64;
5849
5850 exp->type = 2;
5851 exp->string = PrintUInt64(op1->ui64 - value2);
5852 if(!exp->expType)
5853 {
5854 exp->expType = op1->type;
5855 if(op1->type)
5856 op1->type->refCount++;
5857 }
5858 return 0x1;
5859 }
5860
5861 static unsigned int ShortSub(struct Expression * exp, struct Operand * op1, struct Operand * op2)
5862 {
5863 short value2 = op2->s;
5864
5865 exp->type = 2;
5866 exp->string = PrintShort(op1->s - value2);
5867 if(!exp->expType)
5868 {
5869 exp->expType = op1->type;
5870 if(op1->type)
5871 op1->type->refCount++;
5872 }
5873 return 0x1;
5874 }
5875
5876 static unsigned int UShortSub(struct Expression * exp, struct Operand * op1, struct Operand * op2)
5877 {
5878 unsigned short value2 = op2->us;
5879
5880 exp->type = 2;
5881 exp->string = PrintUShort(op1->us - value2);
5882 if(!exp->expType)
5883 {
5884 exp->expType = op1->type;
5885 if(op1->type)
5886 op1->type->refCount++;
5887 }
5888 return 0x1;
5889 }
5890
5891 static unsigned int CharSub(struct Expression * exp, struct Operand * op1, struct Operand * op2)
5892 {
5893 char value2 = op2->c;
5894
5895 exp->type = 2;
5896 exp->string = PrintChar(op1->c - value2);
5897 if(!exp->expType)
5898 {
5899 exp->expType = op1->type;
5900 if(op1->type)
5901 op1->type->refCount++;
5902 }
5903 return 0x1;
5904 }
5905
5906 static unsigned int UCharSub(struct Expression * exp, struct Operand * op1, struct Operand * op2)
5907 {
5908 unsigned char value2 = op2->uc;
5909
5910 exp->type = 2;
5911 exp->string = PrintUChar(op1->uc - value2);
5912 if(!exp->expType)
5913 {
5914 exp->expType = op1->type;
5915 if(op1->type)
5916 op1->type->refCount++;
5917 }
5918 return 0x1;
5919 }
5920
5921 static unsigned int FloatSub(struct Expression * exp, struct Operand * op1, struct Operand * op2)
5922 {
5923 float value2 = op2->f;
5924
5925 exp->type = 2;
5926 exp->string = PrintFloat(op1->f - value2);
5927 if(!exp->expType)
5928 {
5929 exp->expType = op1->type;
5930 if(op1->type)
5931 op1->type->refCount++;
5932 }
5933 return 0x1;
5934 }
5935
5936 static unsigned int DoubleSub(struct Expression * exp, struct Operand * op1, struct Operand * op2)
5937 {
5938 double value2 = op2->d;
5939
5940 exp->type = 2;
5941 exp->string = PrintDouble(op1->d - value2);
5942 if(!exp->expType)
5943 {
5944 exp->expType = op1->type;
5945 if(op1->type)
5946 op1->type->refCount++;
5947 }
5948 return 0x1;
5949 }
5950
5951 static unsigned int IntMul(struct Expression * exp, struct Operand * op1, struct Operand * op2)
5952 {
5953 int value2 = op2->i;
5954
5955 exp->type = 2;
5956 exp->string = PrintInt(op1->i * value2);
5957 if(!exp->expType)
5958 {
5959 exp->expType = op1->type;
5960 if(op1->type)
5961 op1->type->refCount++;
5962 }
5963 return 0x1;
5964 }
5965
5966 static unsigned int UIntMul(struct Expression * exp, struct Operand * op1, struct Operand * op2)
5967 {
5968 unsigned int value2 = op2->ui;
5969
5970 exp->type = 2;
5971 exp->string = PrintUInt(op1->ui * value2);
5972 if(!exp->expType)
5973 {
5974 exp->expType = op1->type;
5975 if(op1->type)
5976 op1->type->refCount++;
5977 }
5978 return 0x1;
5979 }
5980
5981 static unsigned int Int64Mul(struct Expression * exp, struct Operand * op1, struct Operand * op2)
5982 {
5983 long long value2 = op2->i64;
5984
5985 exp->type = 2;
5986 exp->string = PrintInt64(op1->i64 * value2);
5987 if(!exp->expType)
5988 {
5989 exp->expType = op1->type;
5990 if(op1->type)
5991 op1->type->refCount++;
5992 }
5993 return 0x1;
5994 }
5995
5996 static unsigned int UInt64Mul(struct Expression * exp, struct Operand * op1, struct Operand * op2)
5997 {
5998 uint64 value2 = op2->ui64;
5999
6000 exp->type = 2;
6001 exp->string = PrintUInt64(op1->ui64 * value2);
6002 if(!exp->expType)
6003 {
6004 exp->expType = op1->type;
6005 if(op1->type)
6006 op1->type->refCount++;
6007 }
6008 return 0x1;
6009 }
6010
6011 static unsigned int ShortMul(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6012 {
6013 short value2 = op2->s;
6014
6015 exp->type = 2;
6016 exp->string = PrintShort(op1->s * value2);
6017 if(!exp->expType)
6018 {
6019 exp->expType = op1->type;
6020 if(op1->type)
6021 op1->type->refCount++;
6022 }
6023 return 0x1;
6024 }
6025
6026 static unsigned int UShortMul(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6027 {
6028 unsigned short value2 = op2->us;
6029
6030 exp->type = 2;
6031 exp->string = PrintUShort(op1->us * value2);
6032 if(!exp->expType)
6033 {
6034 exp->expType = op1->type;
6035 if(op1->type)
6036 op1->type->refCount++;
6037 }
6038 return 0x1;
6039 }
6040
6041 static unsigned int CharMul(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6042 {
6043 char value2 = op2->c;
6044
6045 exp->type = 2;
6046 exp->string = PrintChar(op1->c * value2);
6047 if(!exp->expType)
6048 {
6049 exp->expType = op1->type;
6050 if(op1->type)
6051 op1->type->refCount++;
6052 }
6053 return 0x1;
6054 }
6055
6056 static unsigned int UCharMul(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6057 {
6058 unsigned char value2 = op2->uc;
6059
6060 exp->type = 2;
6061 exp->string = PrintUChar(op1->uc * value2);
6062 if(!exp->expType)
6063 {
6064 exp->expType = op1->type;
6065 if(op1->type)
6066 op1->type->refCount++;
6067 }
6068 return 0x1;
6069 }
6070
6071 static unsigned int FloatMul(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6072 {
6073 float value2 = op2->f;
6074
6075 exp->type = 2;
6076 exp->string = PrintFloat(op1->f * value2);
6077 if(!exp->expType)
6078 {
6079 exp->expType = op1->type;
6080 if(op1->type)
6081 op1->type->refCount++;
6082 }
6083 return 0x1;
6084 }
6085
6086 static unsigned int DoubleMul(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6087 {
6088 double value2 = op2->d;
6089
6090 exp->type = 2;
6091 exp->string = PrintDouble(op1->d * value2);
6092 if(!exp->expType)
6093 {
6094 exp->expType = op1->type;
6095 if(op1->type)
6096 op1->type->refCount++;
6097 }
6098 return 0x1;
6099 }
6100
6101 static unsigned int IntDiv(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6102 {
6103 int value2 = op2->i;
6104
6105 exp->type = 2;
6106 exp->string = PrintInt(value2 ? (op1->i / value2) : 0);
6107 if(!exp->expType)
6108 {
6109 exp->expType = op1->type;
6110 if(op1->type)
6111 op1->type->refCount++;
6112 }
6113 return 0x1;
6114 }
6115
6116 static unsigned int UIntDiv(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6117 {
6118 unsigned int value2 = op2->ui;
6119
6120 exp->type = 2;
6121 exp->string = PrintUInt(value2 ? (op1->ui / value2) : 0);
6122 if(!exp->expType)
6123 {
6124 exp->expType = op1->type;
6125 if(op1->type)
6126 op1->type->refCount++;
6127 }
6128 return 0x1;
6129 }
6130
6131 static unsigned int Int64Div(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6132 {
6133 long long value2 = op2->i64;
6134
6135 exp->type = 2;
6136 exp->string = PrintInt64(value2 ? (op1->i64 / value2) : 0);
6137 if(!exp->expType)
6138 {
6139 exp->expType = op1->type;
6140 if(op1->type)
6141 op1->type->refCount++;
6142 }
6143 return 0x1;
6144 }
6145
6146 static unsigned int UInt64Div(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6147 {
6148 uint64 value2 = op2->ui64;
6149
6150 exp->type = 2;
6151 exp->string = PrintUInt64(value2 ? (op1->ui64 / value2) : 0);
6152 if(!exp->expType)
6153 {
6154 exp->expType = op1->type;
6155 if(op1->type)
6156 op1->type->refCount++;
6157 }
6158 return 0x1;
6159 }
6160
6161 static unsigned int ShortDiv(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6162 {
6163 short value2 = op2->s;
6164
6165 exp->type = 2;
6166 exp->string = PrintShort(value2 ? (op1->s / value2) : (short)0);
6167 if(!exp->expType)
6168 {
6169 exp->expType = op1->type;
6170 if(op1->type)
6171 op1->type->refCount++;
6172 }
6173 return 0x1;
6174 }
6175
6176 static unsigned int UShortDiv(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6177 {
6178 unsigned short value2 = op2->us;
6179
6180 exp->type = 2;
6181 exp->string = PrintUShort(value2 ? (op1->us / value2) : (unsigned short)0);
6182 if(!exp->expType)
6183 {
6184 exp->expType = op1->type;
6185 if(op1->type)
6186 op1->type->refCount++;
6187 }
6188 return 0x1;
6189 }
6190
6191 static unsigned int CharDiv(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6192 {
6193 char value2 = op2->c;
6194
6195 exp->type = 2;
6196 exp->string = PrintChar(value2 ? (op1->c / value2) : (char)0);
6197 if(!exp->expType)
6198 {
6199 exp->expType = op1->type;
6200 if(op1->type)
6201 op1->type->refCount++;
6202 }
6203 return 0x1;
6204 }
6205
6206 static unsigned int UCharDiv(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6207 {
6208 unsigned char value2 = op2->uc;
6209
6210 exp->type = 2;
6211 exp->string = PrintUChar(value2 ? (op1->uc / value2) : (unsigned char)0);
6212 if(!exp->expType)
6213 {
6214 exp->expType = op1->type;
6215 if(op1->type)
6216 op1->type->refCount++;
6217 }
6218 return 0x1;
6219 }
6220
6221 static unsigned int FloatDiv(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6222 {
6223 float value2 = op2->f;
6224
6225 exp->type = 2;
6226 exp->string = PrintFloat(value2 ? (op1->f / value2) : 0);
6227 if(!exp->expType)
6228 {
6229 exp->expType = op1->type;
6230 if(op1->type)
6231 op1->type->refCount++;
6232 }
6233 return 0x1;
6234 }
6235
6236 static unsigned int DoubleDiv(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6237 {
6238 double value2 = op2->d;
6239
6240 exp->type = 2;
6241 exp->string = PrintDouble(value2 ? (op1->d / value2) : 0);
6242 if(!exp->expType)
6243 {
6244 exp->expType = op1->type;
6245 if(op1->type)
6246 op1->type->refCount++;
6247 }
6248 return 0x1;
6249 }
6250
6251 static unsigned int IntMod(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6252 {
6253 int value2 = op2->i;
6254
6255 exp->type = 2;
6256 exp->string = PrintInt(value2 ? (op1->i % value2) : 0);
6257 if(!exp->expType)
6258 {
6259 exp->expType = op1->type;
6260 if(op1->type)
6261 op1->type->refCount++;
6262 }
6263 return 0x1;
6264 }
6265
6266 static unsigned int UIntMod(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6267 {
6268 unsigned int value2 = op2->ui;
6269
6270 exp->type = 2;
6271 exp->string = PrintUInt(value2 ? (op1->ui % value2) : 0);
6272 if(!exp->expType)
6273 {
6274 exp->expType = op1->type;
6275 if(op1->type)
6276 op1->type->refCount++;
6277 }
6278 return 0x1;
6279 }
6280
6281 static unsigned int Int64Mod(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6282 {
6283 long long value2 = op2->i64;
6284
6285 exp->type = 2;
6286 exp->string = PrintInt64(value2 ? (op1->i64 % value2) : 0);
6287 if(!exp->expType)
6288 {
6289 exp->expType = op1->type;
6290 if(op1->type)
6291 op1->type->refCount++;
6292 }
6293 return 0x1;
6294 }
6295
6296 static unsigned int UInt64Mod(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6297 {
6298 uint64 value2 = op2->ui64;
6299
6300 exp->type = 2;
6301 exp->string = PrintUInt64(value2 ? (op1->ui64 % value2) : 0);
6302 if(!exp->expType)
6303 {
6304 exp->expType = op1->type;
6305 if(op1->type)
6306 op1->type->refCount++;
6307 }
6308 return 0x1;
6309 }
6310
6311 static unsigned int ShortMod(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6312 {
6313 short value2 = op2->s;
6314
6315 exp->type = 2;
6316 exp->string = PrintShort(value2 ? (op1->s % value2) : (short)0);
6317 if(!exp->expType)
6318 {
6319 exp->expType = op1->type;
6320 if(op1->type)
6321 op1->type->refCount++;
6322 }
6323 return 0x1;
6324 }
6325
6326 static unsigned int UShortMod(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6327 {
6328 unsigned short value2 = op2->us;
6329
6330 exp->type = 2;
6331 exp->string = PrintUShort(value2 ? (op1->us % value2) : (unsigned short)0);
6332 if(!exp->expType)
6333 {
6334 exp->expType = op1->type;
6335 if(op1->type)
6336 op1->type->refCount++;
6337 }
6338 return 0x1;
6339 }
6340
6341 static unsigned int CharMod(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6342 {
6343 char value2 = op2->c;
6344
6345 exp->type = 2;
6346 exp->string = PrintChar(value2 ? (op1->c % value2) : (char)0);
6347 if(!exp->expType)
6348 {
6349 exp->expType = op1->type;
6350 if(op1->type)
6351 op1->type->refCount++;
6352 }
6353 return 0x1;
6354 }
6355
6356 static unsigned int UCharMod(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6357 {
6358 unsigned char value2 = op2->uc;
6359
6360 exp->type = 2;
6361 exp->string = PrintUChar(value2 ? (op1->uc % value2) : (unsigned char)0);
6362 if(!exp->expType)
6363 {
6364 exp->expType = op1->type;
6365 if(op1->type)
6366 op1->type->refCount++;
6367 }
6368 return 0x1;
6369 }
6370
6371 static unsigned int IntNeg(struct Expression * exp, struct Operand * op1)
6372 {
6373 exp->type = 2;
6374 exp->string = PrintInt((-op1->i));
6375 if(!exp->expType)
6376 {
6377 exp->expType = op1->type;
6378 if(op1->type)
6379 op1->type->refCount++;
6380 }
6381 return 0x1;
6382 }
6383
6384 static unsigned int UIntNeg(struct Expression * exp, struct Operand * op1)
6385 {
6386 exp->type = 2;
6387 exp->string = PrintUInt((unsigned int)(-op1->ui));
6388 if(!exp->expType)
6389 {
6390 exp->expType = op1->type;
6391 if(op1->type)
6392 op1->type->refCount++;
6393 }
6394 return 0x1;
6395 }
6396
6397 static unsigned int Int64Neg(struct Expression * exp, struct Operand * op1)
6398 {
6399 exp->type = 2;
6400 exp->string = PrintInt64((-op1->i64));
6401 if(!exp->expType)
6402 {
6403 exp->expType = op1->type;
6404 if(op1->type)
6405 op1->type->refCount++;
6406 }
6407 return 0x1;
6408 }
6409
6410 static unsigned int UInt64Neg(struct Expression * exp, struct Operand * op1)
6411 {
6412 exp->type = 2;
6413 exp->string = PrintUInt64((uint64)(-op1->ui64));
6414 if(!exp->expType)
6415 {
6416 exp->expType = op1->type;
6417 if(op1->type)
6418 op1->type->refCount++;
6419 }
6420 return 0x1;
6421 }
6422
6423 static unsigned int ShortNeg(struct Expression * exp, struct Operand * op1)
6424 {
6425 exp->type = 2;
6426 exp->string = PrintShort((-op1->s));
6427 if(!exp->expType)
6428 {
6429 exp->expType = op1->type;
6430 if(op1->type)
6431 op1->type->refCount++;
6432 }
6433 return 0x1;
6434 }
6435
6436 static unsigned int UShortNeg(struct Expression * exp, struct Operand * op1)
6437 {
6438 exp->type = 2;
6439 exp->string = PrintUShort((unsigned short)(-op1->us));
6440 if(!exp->expType)
6441 {
6442 exp->expType = op1->type;
6443 if(op1->type)
6444 op1->type->refCount++;
6445 }
6446 return 0x1;
6447 }
6448
6449 static unsigned int CharNeg(struct Expression * exp, struct Operand * op1)
6450 {
6451 exp->type = 2;
6452 exp->string = PrintChar((-op1->c));
6453 if(!exp->expType)
6454 {
6455 exp->expType = op1->type;
6456 if(op1->type)
6457 op1->type->refCount++;
6458 }
6459 return 0x1;
6460 }
6461
6462 static unsigned int UCharNeg(struct Expression * exp, struct Operand * op1)
6463 {
6464 exp->type = 2;
6465 exp->string = PrintUChar((unsigned char)(-op1->uc));
6466 if(!exp->expType)
6467 {
6468 exp->expType = op1->type;
6469 if(op1->type)
6470 op1->type->refCount++;
6471 }
6472 return 0x1;
6473 }
6474
6475 static unsigned int FloatNeg(struct Expression * exp, struct Operand * op1)
6476 {
6477 exp->type = 2;
6478 exp->string = PrintFloat((float)(-op1->f));
6479 if(!exp->expType)
6480 {
6481 exp->expType = op1->type;
6482 if(op1->type)
6483 op1->type->refCount++;
6484 }
6485 return 0x1;
6486 }
6487
6488 static unsigned int DoubleNeg(struct Expression * exp, struct Operand * op1)
6489 {
6490 exp->type = 2;
6491 exp->string = PrintDouble((double)(-op1->d));
6492 if(!exp->expType)
6493 {
6494 exp->expType = op1->type;
6495 if(op1->type)
6496 op1->type->refCount++;
6497 }
6498 return 0x1;
6499 }
6500
6501 static unsigned int IntInc(struct Expression * exp, struct Operand * op1)
6502 {
6503 exp->type = 2;
6504 exp->string = PrintInt((++op1->i));
6505 if(!exp->expType)
6506 {
6507 exp->expType = op1->type;
6508 if(op1->type)
6509 op1->type->refCount++;
6510 }
6511 return 0x1;
6512 }
6513
6514 static unsigned int UIntInc(struct Expression * exp, struct Operand * op1)
6515 {
6516 exp->type = 2;
6517 exp->string = PrintUInt((++op1->ui));
6518 if(!exp->expType)
6519 {
6520 exp->expType = op1->type;
6521 if(op1->type)
6522 op1->type->refCount++;
6523 }
6524 return 0x1;
6525 }
6526
6527 static unsigned int Int64Inc(struct Expression * exp, struct Operand * op1)
6528 {
6529 exp->type = 2;
6530 exp->string = PrintInt64((++op1->i64));
6531 if(!exp->expType)
6532 {
6533 exp->expType = op1->type;
6534 if(op1->type)
6535 op1->type->refCount++;
6536 }
6537 return 0x1;
6538 }
6539
6540 static unsigned int UInt64Inc(struct Expression * exp, struct Operand * op1)
6541 {
6542 exp->type = 2;
6543 exp->string = PrintUInt64((++op1->ui64));
6544 if(!exp->expType)
6545 {
6546 exp->expType = op1->type;
6547 if(op1->type)
6548 op1->type->refCount++;
6549 }
6550 return 0x1;
6551 }
6552
6553 static unsigned int ShortInc(struct Expression * exp, struct Operand * op1)
6554 {
6555 exp->type = 2;
6556 exp->string = PrintShort((++op1->s));
6557 if(!exp->expType)
6558 {
6559 exp->expType = op1->type;
6560 if(op1->type)
6561 op1->type->refCount++;
6562 }
6563 return 0x1;
6564 }
6565
6566 static unsigned int UShortInc(struct Expression * exp, struct Operand * op1)
6567 {
6568 exp->type = 2;
6569 exp->string = PrintUShort((++op1->us));
6570 if(!exp->expType)
6571 {
6572 exp->expType = op1->type;
6573 if(op1->type)
6574 op1->type->refCount++;
6575 }
6576 return 0x1;
6577 }
6578
6579 static unsigned int CharInc(struct Expression * exp, struct Operand * op1)
6580 {
6581 exp->type = 2;
6582 exp->string = PrintChar((++op1->c));
6583 if(!exp->expType)
6584 {
6585 exp->expType = op1->type;
6586 if(op1->type)
6587 op1->type->refCount++;
6588 }
6589 return 0x1;
6590 }
6591
6592 static unsigned int UCharInc(struct Expression * exp, struct Operand * op1)
6593 {
6594 exp->type = 2;
6595 exp->string = PrintUChar((++op1->uc));
6596 if(!exp->expType)
6597 {
6598 exp->expType = op1->type;
6599 if(op1->type)
6600 op1->type->refCount++;
6601 }
6602 return 0x1;
6603 }
6604
6605 static unsigned int FloatInc(struct Expression * exp, struct Operand * op1)
6606 {
6607 exp->type = 2;
6608 exp->string = PrintFloat((float)(++op1->f));
6609 if(!exp->expType)
6610 {
6611 exp->expType = op1->type;
6612 if(op1->type)
6613 op1->type->refCount++;
6614 }
6615 return 0x1;
6616 }
6617
6618 static unsigned int DoubleInc(struct Expression * exp, struct Operand * op1)
6619 {
6620 exp->type = 2;
6621 exp->string = PrintDouble((double)(++op1->d));
6622 if(!exp->expType)
6623 {
6624 exp->expType = op1->type;
6625 if(op1->type)
6626 op1->type->refCount++;
6627 }
6628 return 0x1;
6629 }
6630
6631 static unsigned int IntDec(struct Expression * exp, struct Operand * op1)
6632 {
6633 exp->type = 2;
6634 exp->string = PrintInt((--op1->i));
6635 if(!exp->expType)
6636 {
6637 exp->expType = op1->type;
6638 if(op1->type)
6639 op1->type->refCount++;
6640 }
6641 return 0x1;
6642 }
6643
6644 static unsigned int UIntDec(struct Expression * exp, struct Operand * op1)
6645 {
6646 exp->type = 2;
6647 exp->string = PrintUInt((--op1->ui));
6648 if(!exp->expType)
6649 {
6650 exp->expType = op1->type;
6651 if(op1->type)
6652 op1->type->refCount++;
6653 }
6654 return 0x1;
6655 }
6656
6657 static unsigned int Int64Dec(struct Expression * exp, struct Operand * op1)
6658 {
6659 exp->type = 2;
6660 exp->string = PrintInt64((--op1->i64));
6661 if(!exp->expType)
6662 {
6663 exp->expType = op1->type;
6664 if(op1->type)
6665 op1->type->refCount++;
6666 }
6667 return 0x1;
6668 }
6669
6670 static unsigned int UInt64Dec(struct Expression * exp, struct Operand * op1)
6671 {
6672 exp->type = 2;
6673 exp->string = PrintUInt64((--op1->ui64));
6674 if(!exp->expType)
6675 {
6676 exp->expType = op1->type;
6677 if(op1->type)
6678 op1->type->refCount++;
6679 }
6680 return 0x1;
6681 }
6682
6683 static unsigned int ShortDec(struct Expression * exp, struct Operand * op1)
6684 {
6685 exp->type = 2;
6686 exp->string = PrintShort((--op1->s));
6687 if(!exp->expType)
6688 {
6689 exp->expType = op1->type;
6690 if(op1->type)
6691 op1->type->refCount++;
6692 }
6693 return 0x1;
6694 }
6695
6696 static unsigned int UShortDec(struct Expression * exp, struct Operand * op1)
6697 {
6698 exp->type = 2;
6699 exp->string = PrintUShort((--op1->us));
6700 if(!exp->expType)
6701 {
6702 exp->expType = op1->type;
6703 if(op1->type)
6704 op1->type->refCount++;
6705 }
6706 return 0x1;
6707 }
6708
6709 static unsigned int CharDec(struct Expression * exp, struct Operand * op1)
6710 {
6711 exp->type = 2;
6712 exp->string = PrintChar((--op1->c));
6713 if(!exp->expType)
6714 {
6715 exp->expType = op1->type;
6716 if(op1->type)
6717 op1->type->refCount++;
6718 }
6719 return 0x1;
6720 }
6721
6722 static unsigned int UCharDec(struct Expression * exp, struct Operand * op1)
6723 {
6724 exp->type = 2;
6725 exp->string = PrintUChar((--op1->uc));
6726 if(!exp->expType)
6727 {
6728 exp->expType = op1->type;
6729 if(op1->type)
6730 op1->type->refCount++;
6731 }
6732 return 0x1;
6733 }
6734
6735 static unsigned int FloatDec(struct Expression * exp, struct Operand * op1)
6736 {
6737 exp->type = 2;
6738 exp->string = PrintFloat((float)(--op1->f));
6739 if(!exp->expType)
6740 {
6741 exp->expType = op1->type;
6742 if(op1->type)
6743 op1->type->refCount++;
6744 }
6745 return 0x1;
6746 }
6747
6748 static unsigned int DoubleDec(struct Expression * exp, struct Operand * op1)
6749 {
6750 exp->type = 2;
6751 exp->string = PrintDouble((double)(--op1->d));
6752 if(!exp->expType)
6753 {
6754 exp->expType = op1->type;
6755 if(op1->type)
6756 op1->type->refCount++;
6757 }
6758 return 0x1;
6759 }
6760
6761 static unsigned int IntAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6762 {
6763 int value2 = op2->i;
6764
6765 exp->type = 2;
6766 exp->string = PrintInt(op1->i = value2);
6767 if(!exp->expType)
6768 {
6769 exp->expType = op1->type;
6770 if(op1->type)
6771 op1->type->refCount++;
6772 }
6773 return 0x1;
6774 }
6775
6776 static unsigned int UIntAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6777 {
6778 unsigned int value2 = op2->ui;
6779
6780 exp->type = 2;
6781 exp->string = PrintUInt(op1->ui = value2);
6782 if(!exp->expType)
6783 {
6784 exp->expType = op1->type;
6785 if(op1->type)
6786 op1->type->refCount++;
6787 }
6788 return 0x1;
6789 }
6790
6791 static unsigned int Int64Asign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6792 {
6793 long long value2 = op2->i64;
6794
6795 exp->type = 2;
6796 exp->string = PrintInt64(op1->i64 = value2);
6797 if(!exp->expType)
6798 {
6799 exp->expType = op1->type;
6800 if(op1->type)
6801 op1->type->refCount++;
6802 }
6803 return 0x1;
6804 }
6805
6806 static unsigned int UInt64Asign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6807 {
6808 uint64 value2 = op2->ui64;
6809
6810 exp->type = 2;
6811 exp->string = PrintUInt64(op1->ui64 = value2);
6812 if(!exp->expType)
6813 {
6814 exp->expType = op1->type;
6815 if(op1->type)
6816 op1->type->refCount++;
6817 }
6818 return 0x1;
6819 }
6820
6821 static unsigned int ShortAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6822 {
6823 short value2 = op2->s;
6824
6825 exp->type = 2;
6826 exp->string = PrintShort(op1->s = value2);
6827 if(!exp->expType)
6828 {
6829 exp->expType = op1->type;
6830 if(op1->type)
6831 op1->type->refCount++;
6832 }
6833 return 0x1;
6834 }
6835
6836 static unsigned int UShortAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6837 {
6838 unsigned short value2 = op2->us;
6839
6840 exp->type = 2;
6841 exp->string = PrintUShort(op1->us = value2);
6842 if(!exp->expType)
6843 {
6844 exp->expType = op1->type;
6845 if(op1->type)
6846 op1->type->refCount++;
6847 }
6848 return 0x1;
6849 }
6850
6851 static unsigned int CharAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6852 {
6853 char value2 = op2->c;
6854
6855 exp->type = 2;
6856 exp->string = PrintChar(op1->c = value2);
6857 if(!exp->expType)
6858 {
6859 exp->expType = op1->type;
6860 if(op1->type)
6861 op1->type->refCount++;
6862 }
6863 return 0x1;
6864 }
6865
6866 static unsigned int UCharAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6867 {
6868 unsigned char value2 = op2->uc;
6869
6870 exp->type = 2;
6871 exp->string = PrintUChar(op1->uc = value2);
6872 if(!exp->expType)
6873 {
6874 exp->expType = op1->type;
6875 if(op1->type)
6876 op1->type->refCount++;
6877 }
6878 return 0x1;
6879 }
6880
6881 static unsigned int FloatAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6882 {
6883 float value2 = op2->f;
6884
6885 exp->type = 2;
6886 exp->string = PrintFloat(op1->f = value2);
6887 if(!exp->expType)
6888 {
6889 exp->expType = op1->type;
6890 if(op1->type)
6891 op1->type->refCount++;
6892 }
6893 return 0x1;
6894 }
6895
6896 static unsigned int DoubleAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6897 {
6898 double value2 = op2->d;
6899
6900 exp->type = 2;
6901 exp->string = PrintDouble(op1->d = value2);
6902 if(!exp->expType)
6903 {
6904 exp->expType = op1->type;
6905 if(op1->type)
6906 op1->type->refCount++;
6907 }
6908 return 0x1;
6909 }
6910
6911 static unsigned int IntAddAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6912 {
6913 int value2 = op2->i;
6914
6915 exp->type = 2;
6916 exp->string = PrintInt(op1->i += value2);
6917 if(!exp->expType)
6918 {
6919 exp->expType = op1->type;
6920 if(op1->type)
6921 op1->type->refCount++;
6922 }
6923 return 0x1;
6924 }
6925
6926 static unsigned int UIntAddAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6927 {
6928 unsigned int value2 = op2->ui;
6929
6930 exp->type = 2;
6931 exp->string = PrintUInt(op1->ui += value2);
6932 if(!exp->expType)
6933 {
6934 exp->expType = op1->type;
6935 if(op1->type)
6936 op1->type->refCount++;
6937 }
6938 return 0x1;
6939 }
6940
6941 static unsigned int Int64AddAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6942 {
6943 long long value2 = op2->i64;
6944
6945 exp->type = 2;
6946 exp->string = PrintInt64(op1->i64 += value2);
6947 if(!exp->expType)
6948 {
6949 exp->expType = op1->type;
6950 if(op1->type)
6951 op1->type->refCount++;
6952 }
6953 return 0x1;
6954 }
6955
6956 static unsigned int UInt64AddAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6957 {
6958 uint64 value2 = op2->ui64;
6959
6960 exp->type = 2;
6961 exp->string = PrintUInt64(op1->ui64 += value2);
6962 if(!exp->expType)
6963 {
6964 exp->expType = op1->type;
6965 if(op1->type)
6966 op1->type->refCount++;
6967 }
6968 return 0x1;
6969 }
6970
6971 static unsigned int ShortAddAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6972 {
6973 short value2 = op2->s;
6974
6975 exp->type = 2;
6976 exp->string = PrintShort(op1->s += value2);
6977 if(!exp->expType)
6978 {
6979 exp->expType = op1->type;
6980 if(op1->type)
6981 op1->type->refCount++;
6982 }
6983 return 0x1;
6984 }
6985
6986 static unsigned int UShortAddAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
6987 {
6988 unsigned short value2 = op2->us;
6989
6990 exp->type = 2;
6991 exp->string = PrintUShort(op1->us += value2);
6992 if(!exp->expType)
6993 {
6994 exp->expType = op1->type;
6995 if(op1->type)
6996 op1->type->refCount++;
6997 }
6998 return 0x1;
6999 }
7000
7001 static unsigned int CharAddAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7002 {
7003 char value2 = op2->c;
7004
7005 exp->type = 2;
7006 exp->string = PrintChar(op1->c += value2);
7007 if(!exp->expType)
7008 {
7009 exp->expType = op1->type;
7010 if(op1->type)
7011 op1->type->refCount++;
7012 }
7013 return 0x1;
7014 }
7015
7016 static unsigned int UCharAddAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7017 {
7018 unsigned char value2 = op2->uc;
7019
7020 exp->type = 2;
7021 exp->string = PrintUChar(op1->uc += value2);
7022 if(!exp->expType)
7023 {
7024 exp->expType = op1->type;
7025 if(op1->type)
7026 op1->type->refCount++;
7027 }
7028 return 0x1;
7029 }
7030
7031 static unsigned int FloatAddAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7032 {
7033 float value2 = op2->f;
7034
7035 exp->type = 2;
7036 exp->string = PrintFloat(op1->f += value2);
7037 if(!exp->expType)
7038 {
7039 exp->expType = op1->type;
7040 if(op1->type)
7041 op1->type->refCount++;
7042 }
7043 return 0x1;
7044 }
7045
7046 static unsigned int DoubleAddAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7047 {
7048 double value2 = op2->d;
7049
7050 exp->type = 2;
7051 exp->string = PrintDouble(op1->d += value2);
7052 if(!exp->expType)
7053 {
7054 exp->expType = op1->type;
7055 if(op1->type)
7056 op1->type->refCount++;
7057 }
7058 return 0x1;
7059 }
7060
7061 static unsigned int IntSubAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7062 {
7063 int value2 = op2->i;
7064
7065 exp->type = 2;
7066 exp->string = PrintInt(op1->i -= value2);
7067 if(!exp->expType)
7068 {
7069 exp->expType = op1->type;
7070 if(op1->type)
7071 op1->type->refCount++;
7072 }
7073 return 0x1;
7074 }
7075
7076 static unsigned int UIntSubAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7077 {
7078 unsigned int value2 = op2->ui;
7079
7080 exp->type = 2;
7081 exp->string = PrintUInt(op1->ui -= value2);
7082 if(!exp->expType)
7083 {
7084 exp->expType = op1->type;
7085 if(op1->type)
7086 op1->type->refCount++;
7087 }
7088 return 0x1;
7089 }
7090
7091 static unsigned int Int64SubAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7092 {
7093 long long value2 = op2->i64;
7094
7095 exp->type = 2;
7096 exp->string = PrintInt64(op1->i64 -= value2);
7097 if(!exp->expType)
7098 {
7099 exp->expType = op1->type;
7100 if(op1->type)
7101 op1->type->refCount++;
7102 }
7103 return 0x1;
7104 }
7105
7106 static unsigned int UInt64SubAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7107 {
7108 uint64 value2 = op2->ui64;
7109
7110 exp->type = 2;
7111 exp->string = PrintUInt64(op1->ui64 -= value2);
7112 if(!exp->expType)
7113 {
7114 exp->expType = op1->type;
7115 if(op1->type)
7116 op1->type->refCount++;
7117 }
7118 return 0x1;
7119 }
7120
7121 static unsigned int ShortSubAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7122 {
7123 short value2 = op2->s;
7124
7125 exp->type = 2;
7126 exp->string = PrintShort(op1->s -= value2);
7127 if(!exp->expType)
7128 {
7129 exp->expType = op1->type;
7130 if(op1->type)
7131 op1->type->refCount++;
7132 }
7133 return 0x1;
7134 }
7135
7136 static unsigned int UShortSubAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7137 {
7138 unsigned short value2 = op2->us;
7139
7140 exp->type = 2;
7141 exp->string = PrintUShort(op1->us -= value2);
7142 if(!exp->expType)
7143 {
7144 exp->expType = op1->type;
7145 if(op1->type)
7146 op1->type->refCount++;
7147 }
7148 return 0x1;
7149 }
7150
7151 static unsigned int CharSubAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7152 {
7153 char value2 = op2->c;
7154
7155 exp->type = 2;
7156 exp->string = PrintChar(op1->c -= value2);
7157 if(!exp->expType)
7158 {
7159 exp->expType = op1->type;
7160 if(op1->type)
7161 op1->type->refCount++;
7162 }
7163 return 0x1;
7164 }
7165
7166 static unsigned int UCharSubAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7167 {
7168 unsigned char value2 = op2->uc;
7169
7170 exp->type = 2;
7171 exp->string = PrintUChar(op1->uc -= value2);
7172 if(!exp->expType)
7173 {
7174 exp->expType = op1->type;
7175 if(op1->type)
7176 op1->type->refCount++;
7177 }
7178 return 0x1;
7179 }
7180
7181 static unsigned int FloatSubAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7182 {
7183 float value2 = op2->f;
7184
7185 exp->type = 2;
7186 exp->string = PrintFloat(op1->f -= value2);
7187 if(!exp->expType)
7188 {
7189 exp->expType = op1->type;
7190 if(op1->type)
7191 op1->type->refCount++;
7192 }
7193 return 0x1;
7194 }
7195
7196 static unsigned int DoubleSubAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7197 {
7198 double value2 = op2->d;
7199
7200 exp->type = 2;
7201 exp->string = PrintDouble(op1->d -= value2);
7202 if(!exp->expType)
7203 {
7204 exp->expType = op1->type;
7205 if(op1->type)
7206 op1->type->refCount++;
7207 }
7208 return 0x1;
7209 }
7210
7211 static unsigned int IntMulAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7212 {
7213 int value2 = op2->i;
7214
7215 exp->type = 2;
7216 exp->string = PrintInt(op1->i *= value2);
7217 if(!exp->expType)
7218 {
7219 exp->expType = op1->type;
7220 if(op1->type)
7221 op1->type->refCount++;
7222 }
7223 return 0x1;
7224 }
7225
7226 static unsigned int UIntMulAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7227 {
7228 unsigned int value2 = op2->ui;
7229
7230 exp->type = 2;
7231 exp->string = PrintUInt(op1->ui *= value2);
7232 if(!exp->expType)
7233 {
7234 exp->expType = op1->type;
7235 if(op1->type)
7236 op1->type->refCount++;
7237 }
7238 return 0x1;
7239 }
7240
7241 static unsigned int Int64MulAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7242 {
7243 long long value2 = op2->i64;
7244
7245 exp->type = 2;
7246 exp->string = PrintInt64(op1->i64 *= value2);
7247 if(!exp->expType)
7248 {
7249 exp->expType = op1->type;
7250 if(op1->type)
7251 op1->type->refCount++;
7252 }
7253 return 0x1;
7254 }
7255
7256 static unsigned int UInt64MulAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7257 {
7258 uint64 value2 = op2->ui64;
7259
7260 exp->type = 2;
7261 exp->string = PrintUInt64(op1->ui64 *= value2);
7262 if(!exp->expType)
7263 {
7264 exp->expType = op1->type;
7265 if(op1->type)
7266 op1->type->refCount++;
7267 }
7268 return 0x1;
7269 }
7270
7271 static unsigned int ShortMulAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7272 {
7273 short value2 = op2->s;
7274
7275 exp->type = 2;
7276 exp->string = PrintShort(op1->s *= value2);
7277 if(!exp->expType)
7278 {
7279 exp->expType = op1->type;
7280 if(op1->type)
7281 op1->type->refCount++;
7282 }
7283 return 0x1;
7284 }
7285
7286 static unsigned int UShortMulAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7287 {
7288 unsigned short value2 = op2->us;
7289
7290 exp->type = 2;
7291 exp->string = PrintUShort(op1->us *= value2);
7292 if(!exp->expType)
7293 {
7294 exp->expType = op1->type;
7295 if(op1->type)
7296 op1->type->refCount++;
7297 }
7298 return 0x1;
7299 }
7300
7301 static unsigned int CharMulAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7302 {
7303 char value2 = op2->c;
7304
7305 exp->type = 2;
7306 exp->string = PrintChar(op1->c *= value2);
7307 if(!exp->expType)
7308 {
7309 exp->expType = op1->type;
7310 if(op1->type)
7311 op1->type->refCount++;
7312 }
7313 return 0x1;
7314 }
7315
7316 static unsigned int UCharMulAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7317 {
7318 unsigned char value2 = op2->uc;
7319
7320 exp->type = 2;
7321 exp->string = PrintUChar(op1->uc *= value2);
7322 if(!exp->expType)
7323 {
7324 exp->expType = op1->type;
7325 if(op1->type)
7326 op1->type->refCount++;
7327 }
7328 return 0x1;
7329 }
7330
7331 static unsigned int FloatMulAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7332 {
7333 float value2 = op2->f;
7334
7335 exp->type = 2;
7336 exp->string = PrintFloat(op1->f *= value2);
7337 if(!exp->expType)
7338 {
7339 exp->expType = op1->type;
7340 if(op1->type)
7341 op1->type->refCount++;
7342 }
7343 return 0x1;
7344 }
7345
7346 static unsigned int DoubleMulAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7347 {
7348 double value2 = op2->d;
7349
7350 exp->type = 2;
7351 exp->string = PrintDouble(op1->d *= value2);
7352 if(!exp->expType)
7353 {
7354 exp->expType = op1->type;
7355 if(op1->type)
7356 op1->type->refCount++;
7357 }
7358 return 0x1;
7359 }
7360
7361 static unsigned int IntDivAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7362 {
7363 int value2 = op2->i;
7364
7365 exp->type = 2;
7366 exp->string = PrintInt(value2 ? (op1->i /= value2) : 0);
7367 if(!exp->expType)
7368 {
7369 exp->expType = op1->type;
7370 if(op1->type)
7371 op1->type->refCount++;
7372 }
7373 return 0x1;
7374 }
7375
7376 static unsigned int UIntDivAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7377 {
7378 unsigned int value2 = op2->ui;
7379
7380 exp->type = 2;
7381 exp->string = PrintUInt(value2 ? (op1->ui /= value2) : 0);
7382 if(!exp->expType)
7383 {
7384 exp->expType = op1->type;
7385 if(op1->type)
7386 op1->type->refCount++;
7387 }
7388 return 0x1;
7389 }
7390
7391 static unsigned int Int64DivAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7392 {
7393 long long value2 = op2->i64;
7394
7395 exp->type = 2;
7396 exp->string = PrintInt64(value2 ? (op1->i64 /= value2) : 0);
7397 if(!exp->expType)
7398 {
7399 exp->expType = op1->type;
7400 if(op1->type)
7401 op1->type->refCount++;
7402 }
7403 return 0x1;
7404 }
7405
7406 static unsigned int UInt64DivAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7407 {
7408 uint64 value2 = op2->ui64;
7409
7410 exp->type = 2;
7411 exp->string = PrintUInt64(value2 ? (op1->ui64 /= value2) : 0);
7412 if(!exp->expType)
7413 {
7414 exp->expType = op1->type;
7415 if(op1->type)
7416 op1->type->refCount++;
7417 }
7418 return 0x1;
7419 }
7420
7421 static unsigned int ShortDivAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7422 {
7423 short value2 = op2->s;
7424
7425 exp->type = 2;
7426 exp->string = PrintShort(value2 ? (op1->s /= value2) : (short)0);
7427 if(!exp->expType)
7428 {
7429 exp->expType = op1->type;
7430 if(op1->type)
7431 op1->type->refCount++;
7432 }
7433 return 0x1;
7434 }
7435
7436 static unsigned int UShortDivAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7437 {
7438 unsigned short value2 = op2->us;
7439
7440 exp->type = 2;
7441 exp->string = PrintUShort(value2 ? (op1->us /= value2) : (unsigned short)0);
7442 if(!exp->expType)
7443 {
7444 exp->expType = op1->type;
7445 if(op1->type)
7446 op1->type->refCount++;
7447 }
7448 return 0x1;
7449 }
7450
7451 static unsigned int CharDivAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7452 {
7453 char value2 = op2->c;
7454
7455 exp->type = 2;
7456 exp->string = PrintChar(value2 ? (op1->c /= value2) : (char)0);
7457 if(!exp->expType)
7458 {
7459 exp->expType = op1->type;
7460 if(op1->type)
7461 op1->type->refCount++;
7462 }
7463 return 0x1;
7464 }
7465
7466 static unsigned int UCharDivAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7467 {
7468 unsigned char value2 = op2->uc;
7469
7470 exp->type = 2;
7471 exp->string = PrintUChar(value2 ? (op1->uc /= value2) : (unsigned char)0);
7472 if(!exp->expType)
7473 {
7474 exp->expType = op1->type;
7475 if(op1->type)
7476 op1->type->refCount++;
7477 }
7478 return 0x1;
7479 }
7480
7481 static unsigned int FloatDivAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7482 {
7483 float value2 = op2->f;
7484
7485 exp->type = 2;
7486 exp->string = PrintFloat(value2 ? (op1->f /= value2) : 0);
7487 if(!exp->expType)
7488 {
7489 exp->expType = op1->type;
7490 if(op1->type)
7491 op1->type->refCount++;
7492 }
7493 return 0x1;
7494 }
7495
7496 static unsigned int DoubleDivAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7497 {
7498 double value2 = op2->d;
7499
7500 exp->type = 2;
7501 exp->string = PrintDouble(value2 ? (op1->d /= value2) : 0);
7502 if(!exp->expType)
7503 {
7504 exp->expType = op1->type;
7505 if(op1->type)
7506 op1->type->refCount++;
7507 }
7508 return 0x1;
7509 }
7510
7511 static unsigned int IntModAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7512 {
7513 int value2 = op2->i;
7514
7515 exp->type = 2;
7516 exp->string = PrintInt(value2 ? (op1->i %= value2) : 0);
7517 if(!exp->expType)
7518 {
7519 exp->expType = op1->type;
7520 if(op1->type)
7521 op1->type->refCount++;
7522 }
7523 return 0x1;
7524 }
7525
7526 static unsigned int UIntModAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7527 {
7528 unsigned int value2 = op2->ui;
7529
7530 exp->type = 2;
7531 exp->string = PrintUInt(value2 ? (op1->ui %= value2) : 0);
7532 if(!exp->expType)
7533 {
7534 exp->expType = op1->type;
7535 if(op1->type)
7536 op1->type->refCount++;
7537 }
7538 return 0x1;
7539 }
7540
7541 static unsigned int Int64ModAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7542 {
7543 long long value2 = op2->i64;
7544
7545 exp->type = 2;
7546 exp->string = PrintInt64(value2 ? (op1->i64 %= value2) : 0);
7547 if(!exp->expType)
7548 {
7549 exp->expType = op1->type;
7550 if(op1->type)
7551 op1->type->refCount++;
7552 }
7553 return 0x1;
7554 }
7555
7556 static unsigned int UInt64ModAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7557 {
7558 uint64 value2 = op2->ui64;
7559
7560 exp->type = 2;
7561 exp->string = PrintUInt64(value2 ? (op1->ui64 %= value2) : 0);
7562 if(!exp->expType)
7563 {
7564 exp->expType = op1->type;
7565 if(op1->type)
7566 op1->type->refCount++;
7567 }
7568 return 0x1;
7569 }
7570
7571 static unsigned int ShortModAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7572 {
7573 short value2 = op2->s;
7574
7575 exp->type = 2;
7576 exp->string = PrintShort(value2 ? (op1->s %= value2) : (short)0);
7577 if(!exp->expType)
7578 {
7579 exp->expType = op1->type;
7580 if(op1->type)
7581 op1->type->refCount++;
7582 }
7583 return 0x1;
7584 }
7585
7586 static unsigned int UShortModAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7587 {
7588 unsigned short value2 = op2->us;
7589
7590 exp->type = 2;
7591 exp->string = PrintUShort(value2 ? (op1->us %= value2) : (unsigned short)0);
7592 if(!exp->expType)
7593 {
7594 exp->expType = op1->type;
7595 if(op1->type)
7596 op1->type->refCount++;
7597 }
7598 return 0x1;
7599 }
7600
7601 static unsigned int CharModAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7602 {
7603 char value2 = op2->c;
7604
7605 exp->type = 2;
7606 exp->string = PrintChar(value2 ? (op1->c %= value2) : (char)0);
7607 if(!exp->expType)
7608 {
7609 exp->expType = op1->type;
7610 if(op1->type)
7611 op1->type->refCount++;
7612 }
7613 return 0x1;
7614 }
7615
7616 static unsigned int UCharModAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7617 {
7618 unsigned char value2 = op2->uc;
7619
7620 exp->type = 2;
7621 exp->string = PrintUChar(value2 ? (op1->uc %= value2) : (unsigned char)0);
7622 if(!exp->expType)
7623 {
7624 exp->expType = op1->type;
7625 if(op1->type)
7626 op1->type->refCount++;
7627 }
7628 return 0x1;
7629 }
7630
7631 static unsigned int IntBitAnd(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7632 {
7633 int value2 = op2->i;
7634
7635 exp->type = 2;
7636 exp->string = PrintInt(op1->i & value2);
7637 if(!exp->expType)
7638 {
7639 exp->expType = op1->type;
7640 if(op1->type)
7641 op1->type->refCount++;
7642 }
7643 return 0x1;
7644 }
7645
7646 static unsigned int UIntBitAnd(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7647 {
7648 unsigned int value2 = op2->ui;
7649
7650 exp->type = 2;
7651 exp->string = PrintUInt(op1->ui & value2);
7652 if(!exp->expType)
7653 {
7654 exp->expType = op1->type;
7655 if(op1->type)
7656 op1->type->refCount++;
7657 }
7658 return 0x1;
7659 }
7660
7661 static unsigned int Int64BitAnd(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7662 {
7663 long long value2 = op2->i64;
7664
7665 exp->type = 2;
7666 exp->string = PrintInt64(op1->i64 & value2);
7667 if(!exp->expType)
7668 {
7669 exp->expType = op1->type;
7670 if(op1->type)
7671 op1->type->refCount++;
7672 }
7673 return 0x1;
7674 }
7675
7676 static unsigned int UInt64BitAnd(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7677 {
7678 uint64 value2 = op2->ui64;
7679
7680 exp->type = 2;
7681 exp->string = PrintUInt64(op1->ui64 & value2);
7682 if(!exp->expType)
7683 {
7684 exp->expType = op1->type;
7685 if(op1->type)
7686 op1->type->refCount++;
7687 }
7688 return 0x1;
7689 }
7690
7691 static unsigned int ShortBitAnd(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7692 {
7693 short value2 = op2->s;
7694
7695 exp->type = 2;
7696 exp->string = PrintShort(op1->s & value2);
7697 if(!exp->expType)
7698 {
7699 exp->expType = op1->type;
7700 if(op1->type)
7701 op1->type->refCount++;
7702 }
7703 return 0x1;
7704 }
7705
7706 static unsigned int UShortBitAnd(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7707 {
7708 unsigned short value2 = op2->us;
7709
7710 exp->type = 2;
7711 exp->string = PrintUShort(op1->us & value2);
7712 if(!exp->expType)
7713 {
7714 exp->expType = op1->type;
7715 if(op1->type)
7716 op1->type->refCount++;
7717 }
7718 return 0x1;
7719 }
7720
7721 static unsigned int CharBitAnd(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7722 {
7723 char value2 = op2->c;
7724
7725 exp->type = 2;
7726 exp->string = PrintChar(op1->c & value2);
7727 if(!exp->expType)
7728 {
7729 exp->expType = op1->type;
7730 if(op1->type)
7731 op1->type->refCount++;
7732 }
7733 return 0x1;
7734 }
7735
7736 static unsigned int UCharBitAnd(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7737 {
7738 unsigned char value2 = op2->uc;
7739
7740 exp->type = 2;
7741 exp->string = PrintUChar(op1->uc & value2);
7742 if(!exp->expType)
7743 {
7744 exp->expType = op1->type;
7745 if(op1->type)
7746 op1->type->refCount++;
7747 }
7748 return 0x1;
7749 }
7750
7751 static unsigned int IntBitOr(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7752 {
7753 int value2 = op2->i;
7754
7755 exp->type = 2;
7756 exp->string = PrintInt(op1->i | value2);
7757 if(!exp->expType)
7758 {
7759 exp->expType = op1->type;
7760 if(op1->type)
7761 op1->type->refCount++;
7762 }
7763 return 0x1;
7764 }
7765
7766 static unsigned int UIntBitOr(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7767 {
7768 unsigned int value2 = op2->ui;
7769
7770 exp->type = 2;
7771 exp->string = PrintUInt(op1->ui | value2);
7772 if(!exp->expType)
7773 {
7774 exp->expType = op1->type;
7775 if(op1->type)
7776 op1->type->refCount++;
7777 }
7778 return 0x1;
7779 }
7780
7781 static unsigned int Int64BitOr(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7782 {
7783 long long value2 = op2->i64;
7784
7785 exp->type = 2;
7786 exp->string = PrintInt64(op1->i64 | value2);
7787 if(!exp->expType)
7788 {
7789 exp->expType = op1->type;
7790 if(op1->type)
7791 op1->type->refCount++;
7792 }
7793 return 0x1;
7794 }
7795
7796 static unsigned int UInt64BitOr(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7797 {
7798 uint64 value2 = op2->ui64;
7799
7800 exp->type = 2;
7801 exp->string = PrintUInt64(op1->ui64 | value2);
7802 if(!exp->expType)
7803 {
7804 exp->expType = op1->type;
7805 if(op1->type)
7806 op1->type->refCount++;
7807 }
7808 return 0x1;
7809 }
7810
7811 static unsigned int ShortBitOr(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7812 {
7813 short value2 = op2->s;
7814
7815 exp->type = 2;
7816 exp->string = PrintShort(op1->s | value2);
7817 if(!exp->expType)
7818 {
7819 exp->expType = op1->type;
7820 if(op1->type)
7821 op1->type->refCount++;
7822 }
7823 return 0x1;
7824 }
7825
7826 static unsigned int UShortBitOr(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7827 {
7828 unsigned short value2 = op2->us;
7829
7830 exp->type = 2;
7831 exp->string = PrintUShort(op1->us | value2);
7832 if(!exp->expType)
7833 {
7834 exp->expType = op1->type;
7835 if(op1->type)
7836 op1->type->refCount++;
7837 }
7838 return 0x1;
7839 }
7840
7841 static unsigned int CharBitOr(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7842 {
7843 char value2 = op2->c;
7844
7845 exp->type = 2;
7846 exp->string = PrintChar(op1->c | value2);
7847 if(!exp->expType)
7848 {
7849 exp->expType = op1->type;
7850 if(op1->type)
7851 op1->type->refCount++;
7852 }
7853 return 0x1;
7854 }
7855
7856 static unsigned int UCharBitOr(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7857 {
7858 unsigned char value2 = op2->uc;
7859
7860 exp->type = 2;
7861 exp->string = PrintUChar(op1->uc | value2);
7862 if(!exp->expType)
7863 {
7864 exp->expType = op1->type;
7865 if(op1->type)
7866 op1->type->refCount++;
7867 }
7868 return 0x1;
7869 }
7870
7871 static unsigned int IntBitXor(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7872 {
7873 int value2 = op2->i;
7874
7875 exp->type = 2;
7876 exp->string = PrintInt(op1->i ^ value2);
7877 if(!exp->expType)
7878 {
7879 exp->expType = op1->type;
7880 if(op1->type)
7881 op1->type->refCount++;
7882 }
7883 return 0x1;
7884 }
7885
7886 static unsigned int UIntBitXor(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7887 {
7888 unsigned int value2 = op2->ui;
7889
7890 exp->type = 2;
7891 exp->string = PrintUInt(op1->ui ^ value2);
7892 if(!exp->expType)
7893 {
7894 exp->expType = op1->type;
7895 if(op1->type)
7896 op1->type->refCount++;
7897 }
7898 return 0x1;
7899 }
7900
7901 static unsigned int Int64BitXor(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7902 {
7903 long long value2 = op2->i64;
7904
7905 exp->type = 2;
7906 exp->string = PrintInt64(op1->i64 ^ value2);
7907 if(!exp->expType)
7908 {
7909 exp->expType = op1->type;
7910 if(op1->type)
7911 op1->type->refCount++;
7912 }
7913 return 0x1;
7914 }
7915
7916 static unsigned int UInt64BitXor(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7917 {
7918 uint64 value2 = op2->ui64;
7919
7920 exp->type = 2;
7921 exp->string = PrintUInt64(op1->ui64 ^ value2);
7922 if(!exp->expType)
7923 {
7924 exp->expType = op1->type;
7925 if(op1->type)
7926 op1->type->refCount++;
7927 }
7928 return 0x1;
7929 }
7930
7931 static unsigned int ShortBitXor(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7932 {
7933 short value2 = op2->s;
7934
7935 exp->type = 2;
7936 exp->string = PrintShort(op1->s ^ value2);
7937 if(!exp->expType)
7938 {
7939 exp->expType = op1->type;
7940 if(op1->type)
7941 op1->type->refCount++;
7942 }
7943 return 0x1;
7944 }
7945
7946 static unsigned int UShortBitXor(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7947 {
7948 unsigned short value2 = op2->us;
7949
7950 exp->type = 2;
7951 exp->string = PrintUShort(op1->us ^ value2);
7952 if(!exp->expType)
7953 {
7954 exp->expType = op1->type;
7955 if(op1->type)
7956 op1->type->refCount++;
7957 }
7958 return 0x1;
7959 }
7960
7961 static unsigned int CharBitXor(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7962 {
7963 char value2 = op2->c;
7964
7965 exp->type = 2;
7966 exp->string = PrintChar(op1->c ^ value2);
7967 if(!exp->expType)
7968 {
7969 exp->expType = op1->type;
7970 if(op1->type)
7971 op1->type->refCount++;
7972 }
7973 return 0x1;
7974 }
7975
7976 static unsigned int UCharBitXor(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7977 {
7978 unsigned char value2 = op2->uc;
7979
7980 exp->type = 2;
7981 exp->string = PrintUChar(op1->uc ^ value2);
7982 if(!exp->expType)
7983 {
7984 exp->expType = op1->type;
7985 if(op1->type)
7986 op1->type->refCount++;
7987 }
7988 return 0x1;
7989 }
7990
7991 static unsigned int IntLShift(struct Expression * exp, struct Operand * op1, struct Operand * op2)
7992 {
7993 int value2 = op2->i;
7994
7995 exp->type = 2;
7996 exp->string = PrintInt(op1->i << value2);
7997 if(!exp->expType)
7998 {
7999 exp->expType = op1->type;
8000 if(op1->type)
8001 op1->type->refCount++;
8002 }
8003 return 0x1;
8004 }
8005
8006 static unsigned int UIntLShift(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8007 {
8008 unsigned int value2 = op2->ui;
8009
8010 exp->type = 2;
8011 exp->string = PrintUInt(op1->ui << value2);
8012 if(!exp->expType)
8013 {
8014 exp->expType = op1->type;
8015 if(op1->type)
8016 op1->type->refCount++;
8017 }
8018 return 0x1;
8019 }
8020
8021 static unsigned int Int64LShift(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8022 {
8023 long long value2 = op2->i64;
8024
8025 exp->type = 2;
8026 exp->string = PrintInt64(op1->i64 << value2);
8027 if(!exp->expType)
8028 {
8029 exp->expType = op1->type;
8030 if(op1->type)
8031 op1->type->refCount++;
8032 }
8033 return 0x1;
8034 }
8035
8036 static unsigned int UInt64LShift(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8037 {
8038 uint64 value2 = op2->ui64;
8039
8040 exp->type = 2;
8041 exp->string = PrintUInt64(op1->ui64 << value2);
8042 if(!exp->expType)
8043 {
8044 exp->expType = op1->type;
8045 if(op1->type)
8046 op1->type->refCount++;
8047 }
8048 return 0x1;
8049 }
8050
8051 static unsigned int ShortLShift(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8052 {
8053 short value2 = op2->s;
8054
8055 exp->type = 2;
8056 exp->string = PrintShort(op1->s << value2);
8057 if(!exp->expType)
8058 {
8059 exp->expType = op1->type;
8060 if(op1->type)
8061 op1->type->refCount++;
8062 }
8063 return 0x1;
8064 }
8065
8066 static unsigned int UShortLShift(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8067 {
8068 unsigned short value2 = op2->us;
8069
8070 exp->type = 2;
8071 exp->string = PrintUShort(op1->us << value2);
8072 if(!exp->expType)
8073 {
8074 exp->expType = op1->type;
8075 if(op1->type)
8076 op1->type->refCount++;
8077 }
8078 return 0x1;
8079 }
8080
8081 static unsigned int CharLShift(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8082 {
8083 char value2 = op2->c;
8084
8085 exp->type = 2;
8086 exp->string = PrintChar(op1->c << value2);
8087 if(!exp->expType)
8088 {
8089 exp->expType = op1->type;
8090 if(op1->type)
8091 op1->type->refCount++;
8092 }
8093 return 0x1;
8094 }
8095
8096 static unsigned int UCharLShift(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8097 {
8098 unsigned char value2 = op2->uc;
8099
8100 exp->type = 2;
8101 exp->string = PrintUChar(op1->uc << value2);
8102 if(!exp->expType)
8103 {
8104 exp->expType = op1->type;
8105 if(op1->type)
8106 op1->type->refCount++;
8107 }
8108 return 0x1;
8109 }
8110
8111 static unsigned int IntRShift(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8112 {
8113 int value2 = op2->i;
8114
8115 exp->type = 2;
8116 exp->string = PrintInt(op1->i >> value2);
8117 if(!exp->expType)
8118 {
8119 exp->expType = op1->type;
8120 if(op1->type)
8121 op1->type->refCount++;
8122 }
8123 return 0x1;
8124 }
8125
8126 static unsigned int UIntRShift(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8127 {
8128 unsigned int value2 = op2->ui;
8129
8130 exp->type = 2;
8131 exp->string = PrintUInt(op1->ui >> value2);
8132 if(!exp->expType)
8133 {
8134 exp->expType = op1->type;
8135 if(op1->type)
8136 op1->type->refCount++;
8137 }
8138 return 0x1;
8139 }
8140
8141 static unsigned int Int64RShift(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8142 {
8143 long long value2 = op2->i64;
8144
8145 exp->type = 2;
8146 exp->string = PrintInt64(op1->i64 >> value2);
8147 if(!exp->expType)
8148 {
8149 exp->expType = op1->type;
8150 if(op1->type)
8151 op1->type->refCount++;
8152 }
8153 return 0x1;
8154 }
8155
8156 static unsigned int UInt64RShift(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8157 {
8158 uint64 value2 = op2->ui64;
8159
8160 exp->type = 2;
8161 exp->string = PrintUInt64(op1->ui64 >> value2);
8162 if(!exp->expType)
8163 {
8164 exp->expType = op1->type;
8165 if(op1->type)
8166 op1->type->refCount++;
8167 }
8168 return 0x1;
8169 }
8170
8171 static unsigned int ShortRShift(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8172 {
8173 short value2 = op2->s;
8174
8175 exp->type = 2;
8176 exp->string = PrintShort(op1->s >> value2);
8177 if(!exp->expType)
8178 {
8179 exp->expType = op1->type;
8180 if(op1->type)
8181 op1->type->refCount++;
8182 }
8183 return 0x1;
8184 }
8185
8186 static unsigned int UShortRShift(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8187 {
8188 unsigned short value2 = op2->us;
8189
8190 exp->type = 2;
8191 exp->string = PrintUShort(op1->us >> value2);
8192 if(!exp->expType)
8193 {
8194 exp->expType = op1->type;
8195 if(op1->type)
8196 op1->type->refCount++;
8197 }
8198 return 0x1;
8199 }
8200
8201 static unsigned int CharRShift(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8202 {
8203 char value2 = op2->c;
8204
8205 exp->type = 2;
8206 exp->string = PrintChar(op1->c >> value2);
8207 if(!exp->expType)
8208 {
8209 exp->expType = op1->type;
8210 if(op1->type)
8211 op1->type->refCount++;
8212 }
8213 return 0x1;
8214 }
8215
8216 static unsigned int UCharRShift(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8217 {
8218 unsigned char value2 = op2->uc;
8219
8220 exp->type = 2;
8221 exp->string = PrintUChar(op1->uc >> value2);
8222 if(!exp->expType)
8223 {
8224 exp->expType = op1->type;
8225 if(op1->type)
8226 op1->type->refCount++;
8227 }
8228 return 0x1;
8229 }
8230
8231 static unsigned int IntBitNot(struct Expression * exp, struct Operand * op1)
8232 {
8233 exp->type = 2;
8234 exp->string = PrintInt((~op1->i));
8235 if(!exp->expType)
8236 {
8237 exp->expType = op1->type;
8238 if(op1->type)
8239 op1->type->refCount++;
8240 }
8241 return 0x1;
8242 }
8243
8244 static unsigned int UIntBitNot(struct Expression * exp, struct Operand * op1)
8245 {
8246 exp->type = 2;
8247 exp->string = PrintUInt((unsigned int)(~op1->ui));
8248 if(!exp->expType)
8249 {
8250 exp->expType = op1->type;
8251 if(op1->type)
8252 op1->type->refCount++;
8253 }
8254 return 0x1;
8255 }
8256
8257 static unsigned int Int64BitNot(struct Expression * exp, struct Operand * op1)
8258 {
8259 exp->type = 2;
8260 exp->string = PrintInt64((long long)(~op1->i64));
8261 if(!exp->expType)
8262 {
8263 exp->expType = op1->type;
8264 if(op1->type)
8265 op1->type->refCount++;
8266 }
8267 return 0x1;
8268 }
8269
8270 static unsigned int UInt64BitNot(struct Expression * exp, struct Operand * op1)
8271 {
8272 exp->type = 2;
8273 exp->string = PrintUInt64((uint64)(~op1->ui64));
8274 if(!exp->expType)
8275 {
8276 exp->expType = op1->type;
8277 if(op1->type)
8278 op1->type->refCount++;
8279 }
8280 return 0x1;
8281 }
8282
8283 static unsigned int ShortBitNot(struct Expression * exp, struct Operand * op1)
8284 {
8285 exp->type = 2;
8286 exp->string = PrintShort((short)(~op1->s));
8287 if(!exp->expType)
8288 {
8289 exp->expType = op1->type;
8290 if(op1->type)
8291 op1->type->refCount++;
8292 }
8293 return 0x1;
8294 }
8295
8296 static unsigned int UShortBitNot(struct Expression * exp, struct Operand * op1)
8297 {
8298 exp->type = 2;
8299 exp->string = PrintUShort((unsigned short)(~op1->us));
8300 if(!exp->expType)
8301 {
8302 exp->expType = op1->type;
8303 if(op1->type)
8304 op1->type->refCount++;
8305 }
8306 return 0x1;
8307 }
8308
8309 static unsigned int CharBitNot(struct Expression * exp, struct Operand * op1)
8310 {
8311 exp->type = 2;
8312 exp->string = PrintChar((char)(~op1->c));
8313 if(!exp->expType)
8314 {
8315 exp->expType = op1->type;
8316 if(op1->type)
8317 op1->type->refCount++;
8318 }
8319 return 0x1;
8320 }
8321
8322 static unsigned int UCharBitNot(struct Expression * exp, struct Operand * op1)
8323 {
8324 exp->type = 2;
8325 exp->string = PrintUChar((unsigned char)(~op1->uc));
8326 if(!exp->expType)
8327 {
8328 exp->expType = op1->type;
8329 if(op1->type)
8330 op1->type->refCount++;
8331 }
8332 return 0x1;
8333 }
8334
8335 static unsigned int IntAndAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8336 {
8337 int value2 = op2->i;
8338
8339 exp->type = 2;
8340 exp->string = PrintInt(op1->i &= value2);
8341 if(!exp->expType)
8342 {
8343 exp->expType = op1->type;
8344 if(op1->type)
8345 op1->type->refCount++;
8346 }
8347 return 0x1;
8348 }
8349
8350 static unsigned int UIntAndAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8351 {
8352 unsigned int value2 = op2->ui;
8353
8354 exp->type = 2;
8355 exp->string = PrintUInt(op1->ui &= value2);
8356 if(!exp->expType)
8357 {
8358 exp->expType = op1->type;
8359 if(op1->type)
8360 op1->type->refCount++;
8361 }
8362 return 0x1;
8363 }
8364
8365 static unsigned int Int64AndAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8366 {
8367 long long value2 = op2->i64;
8368
8369 exp->type = 2;
8370 exp->string = PrintInt64(op1->i64 &= value2);
8371 if(!exp->expType)
8372 {
8373 exp->expType = op1->type;
8374 if(op1->type)
8375 op1->type->refCount++;
8376 }
8377 return 0x1;
8378 }
8379
8380 static unsigned int UInt64AndAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8381 {
8382 uint64 value2 = op2->ui64;
8383
8384 exp->type = 2;
8385 exp->string = PrintUInt64(op1->ui64 &= value2);
8386 if(!exp->expType)
8387 {
8388 exp->expType = op1->type;
8389 if(op1->type)
8390 op1->type->refCount++;
8391 }
8392 return 0x1;
8393 }
8394
8395 static unsigned int ShortAndAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8396 {
8397 short value2 = op2->s;
8398
8399 exp->type = 2;
8400 exp->string = PrintShort(op1->s &= value2);
8401 if(!exp->expType)
8402 {
8403 exp->expType = op1->type;
8404 if(op1->type)
8405 op1->type->refCount++;
8406 }
8407 return 0x1;
8408 }
8409
8410 static unsigned int UShortAndAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8411 {
8412 unsigned short value2 = op2->us;
8413
8414 exp->type = 2;
8415 exp->string = PrintUShort(op1->us &= value2);
8416 if(!exp->expType)
8417 {
8418 exp->expType = op1->type;
8419 if(op1->type)
8420 op1->type->refCount++;
8421 }
8422 return 0x1;
8423 }
8424
8425 static unsigned int CharAndAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8426 {
8427 char value2 = op2->c;
8428
8429 exp->type = 2;
8430 exp->string = PrintChar(op1->c &= value2);
8431 if(!exp->expType)
8432 {
8433 exp->expType = op1->type;
8434 if(op1->type)
8435 op1->type->refCount++;
8436 }
8437 return 0x1;
8438 }
8439
8440 static unsigned int UCharAndAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8441 {
8442 unsigned char value2 = op2->uc;
8443
8444 exp->type = 2;
8445 exp->string = PrintUChar(op1->uc &= value2);
8446 if(!exp->expType)
8447 {
8448 exp->expType = op1->type;
8449 if(op1->type)
8450 op1->type->refCount++;
8451 }
8452 return 0x1;
8453 }
8454
8455 static unsigned int IntOrAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8456 {
8457 int value2 = op2->i;
8458
8459 exp->type = 2;
8460 exp->string = PrintInt(op1->i |= value2);
8461 if(!exp->expType)
8462 {
8463 exp->expType = op1->type;
8464 if(op1->type)
8465 op1->type->refCount++;
8466 }
8467 return 0x1;
8468 }
8469
8470 static unsigned int UIntOrAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8471 {
8472 unsigned int value2 = op2->ui;
8473
8474 exp->type = 2;
8475 exp->string = PrintUInt(op1->ui |= value2);
8476 if(!exp->expType)
8477 {
8478 exp->expType = op1->type;
8479 if(op1->type)
8480 op1->type->refCount++;
8481 }
8482 return 0x1;
8483 }
8484
8485 static unsigned int Int64OrAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8486 {
8487 long long value2 = op2->i64;
8488
8489 exp->type = 2;
8490 exp->string = PrintInt64(op1->i64 |= value2);
8491 if(!exp->expType)
8492 {
8493 exp->expType = op1->type;
8494 if(op1->type)
8495 op1->type->refCount++;
8496 }
8497 return 0x1;
8498 }
8499
8500 static unsigned int UInt64OrAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8501 {
8502 uint64 value2 = op2->ui64;
8503
8504 exp->type = 2;
8505 exp->string = PrintUInt64(op1->ui64 |= value2);
8506 if(!exp->expType)
8507 {
8508 exp->expType = op1->type;
8509 if(op1->type)
8510 op1->type->refCount++;
8511 }
8512 return 0x1;
8513 }
8514
8515 static unsigned int ShortOrAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8516 {
8517 short value2 = op2->s;
8518
8519 exp->type = 2;
8520 exp->string = PrintShort(op1->s |= value2);
8521 if(!exp->expType)
8522 {
8523 exp->expType = op1->type;
8524 if(op1->type)
8525 op1->type->refCount++;
8526 }
8527 return 0x1;
8528 }
8529
8530 static unsigned int UShortOrAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8531 {
8532 unsigned short value2 = op2->us;
8533
8534 exp->type = 2;
8535 exp->string = PrintUShort(op1->us |= value2);
8536 if(!exp->expType)
8537 {
8538 exp->expType = op1->type;
8539 if(op1->type)
8540 op1->type->refCount++;
8541 }
8542 return 0x1;
8543 }
8544
8545 static unsigned int CharOrAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8546 {
8547 char value2 = op2->c;
8548
8549 exp->type = 2;
8550 exp->string = PrintChar(op1->c |= value2);
8551 if(!exp->expType)
8552 {
8553 exp->expType = op1->type;
8554 if(op1->type)
8555 op1->type->refCount++;
8556 }
8557 return 0x1;
8558 }
8559
8560 static unsigned int UCharOrAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8561 {
8562 unsigned char value2 = op2->uc;
8563
8564 exp->type = 2;
8565 exp->string = PrintUChar(op1->uc |= value2);
8566 if(!exp->expType)
8567 {
8568 exp->expType = op1->type;
8569 if(op1->type)
8570 op1->type->refCount++;
8571 }
8572 return 0x1;
8573 }
8574
8575 static unsigned int IntXorAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8576 {
8577 int value2 = op2->i;
8578
8579 exp->type = 2;
8580 exp->string = PrintInt(op1->i ^= value2);
8581 if(!exp->expType)
8582 {
8583 exp->expType = op1->type;
8584 if(op1->type)
8585 op1->type->refCount++;
8586 }
8587 return 0x1;
8588 }
8589
8590 static unsigned int UIntXorAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8591 {
8592 unsigned int value2 = op2->ui;
8593
8594 exp->type = 2;
8595 exp->string = PrintUInt(op1->ui ^= value2);
8596 if(!exp->expType)
8597 {
8598 exp->expType = op1->type;
8599 if(op1->type)
8600 op1->type->refCount++;
8601 }
8602 return 0x1;
8603 }
8604
8605 static unsigned int Int64XorAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8606 {
8607 long long value2 = op2->i64;
8608
8609 exp->type = 2;
8610 exp->string = PrintInt64(op1->i64 ^= value2);
8611 if(!exp->expType)
8612 {
8613 exp->expType = op1->type;
8614 if(op1->type)
8615 op1->type->refCount++;
8616 }
8617 return 0x1;
8618 }
8619
8620 static unsigned int UInt64XorAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8621 {
8622 uint64 value2 = op2->ui64;
8623
8624 exp->type = 2;
8625 exp->string = PrintUInt64(op1->ui64 ^= value2);
8626 if(!exp->expType)
8627 {
8628 exp->expType = op1->type;
8629 if(op1->type)
8630 op1->type->refCount++;
8631 }
8632 return 0x1;
8633 }
8634
8635 static unsigned int ShortXorAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8636 {
8637 short value2 = op2->s;
8638
8639 exp->type = 2;
8640 exp->string = PrintShort(op1->s ^= value2);
8641 if(!exp->expType)
8642 {
8643 exp->expType = op1->type;
8644 if(op1->type)
8645 op1->type->refCount++;
8646 }
8647 return 0x1;
8648 }
8649
8650 static unsigned int UShortXorAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8651 {
8652 unsigned short value2 = op2->us;
8653
8654 exp->type = 2;
8655 exp->string = PrintUShort(op1->us ^= value2);
8656 if(!exp->expType)
8657 {
8658 exp->expType = op1->type;
8659 if(op1->type)
8660 op1->type->refCount++;
8661 }
8662 return 0x1;
8663 }
8664
8665 static unsigned int CharXorAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8666 {
8667 char value2 = op2->c;
8668
8669 exp->type = 2;
8670 exp->string = PrintChar(op1->c ^= value2);
8671 if(!exp->expType)
8672 {
8673 exp->expType = op1->type;
8674 if(op1->type)
8675 op1->type->refCount++;
8676 }
8677 return 0x1;
8678 }
8679
8680 static unsigned int UCharXorAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8681 {
8682 unsigned char value2 = op2->uc;
8683
8684 exp->type = 2;
8685 exp->string = PrintUChar(op1->uc ^= value2);
8686 if(!exp->expType)
8687 {
8688 exp->expType = op1->type;
8689 if(op1->type)
8690 op1->type->refCount++;
8691 }
8692 return 0x1;
8693 }
8694
8695 static unsigned int IntLShiftAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8696 {
8697 int value2 = op2->i;
8698
8699 exp->type = 2;
8700 exp->string = PrintInt(op1->i <<= value2);
8701 if(!exp->expType)
8702 {
8703 exp->expType = op1->type;
8704 if(op1->type)
8705 op1->type->refCount++;
8706 }
8707 return 0x1;
8708 }
8709
8710 static unsigned int UIntLShiftAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8711 {
8712 unsigned int value2 = op2->ui;
8713
8714 exp->type = 2;
8715 exp->string = PrintUInt(op1->ui <<= value2);
8716 if(!exp->expType)
8717 {
8718 exp->expType = op1->type;
8719 if(op1->type)
8720 op1->type->refCount++;
8721 }
8722 return 0x1;
8723 }
8724
8725 static unsigned int Int64LShiftAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8726 {
8727 long long value2 = op2->i64;
8728
8729 exp->type = 2;
8730 exp->string = PrintInt64(op1->i64 <<= value2);
8731 if(!exp->expType)
8732 {
8733 exp->expType = op1->type;
8734 if(op1->type)
8735 op1->type->refCount++;
8736 }
8737 return 0x1;
8738 }
8739
8740 static unsigned int UInt64LShiftAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8741 {
8742 uint64 value2 = op2->ui64;
8743
8744 exp->type = 2;
8745 exp->string = PrintUInt64(op1->ui64 <<= value2);
8746 if(!exp->expType)
8747 {
8748 exp->expType = op1->type;
8749 if(op1->type)
8750 op1->type->refCount++;
8751 }
8752 return 0x1;
8753 }
8754
8755 static unsigned int ShortLShiftAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8756 {
8757 short value2 = op2->s;
8758
8759 exp->type = 2;
8760 exp->string = PrintShort(op1->s <<= value2);
8761 if(!exp->expType)
8762 {
8763 exp->expType = op1->type;
8764 if(op1->type)
8765 op1->type->refCount++;
8766 }
8767 return 0x1;
8768 }
8769
8770 static unsigned int UShortLShiftAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8771 {
8772 unsigned short value2 = op2->us;
8773
8774 exp->type = 2;
8775 exp->string = PrintUShort(op1->us <<= value2);
8776 if(!exp->expType)
8777 {
8778 exp->expType = op1->type;
8779 if(op1->type)
8780 op1->type->refCount++;
8781 }
8782 return 0x1;
8783 }
8784
8785 static unsigned int CharLShiftAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8786 {
8787 char value2 = op2->c;
8788
8789 exp->type = 2;
8790 exp->string = PrintChar(op1->c <<= value2);
8791 if(!exp->expType)
8792 {
8793 exp->expType = op1->type;
8794 if(op1->type)
8795 op1->type->refCount++;
8796 }
8797 return 0x1;
8798 }
8799
8800 static unsigned int UCharLShiftAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8801 {
8802 unsigned char value2 = op2->uc;
8803
8804 exp->type = 2;
8805 exp->string = PrintUChar(op1->uc <<= value2);
8806 if(!exp->expType)
8807 {
8808 exp->expType = op1->type;
8809 if(op1->type)
8810 op1->type->refCount++;
8811 }
8812 return 0x1;
8813 }
8814
8815 static unsigned int IntRShiftAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8816 {
8817 int value2 = op2->i;
8818
8819 exp->type = 2;
8820 exp->string = PrintInt(op1->i >>= value2);
8821 if(!exp->expType)
8822 {
8823 exp->expType = op1->type;
8824 if(op1->type)
8825 op1->type->refCount++;
8826 }
8827 return 0x1;
8828 }
8829
8830 static unsigned int UIntRShiftAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8831 {
8832 unsigned int value2 = op2->ui;
8833
8834 exp->type = 2;
8835 exp->string = PrintUInt(op1->ui >>= value2);
8836 if(!exp->expType)
8837 {
8838 exp->expType = op1->type;
8839 if(op1->type)
8840 op1->type->refCount++;
8841 }
8842 return 0x1;
8843 }
8844
8845 static unsigned int Int64RShiftAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8846 {
8847 long long value2 = op2->i64;
8848
8849 exp->type = 2;
8850 exp->string = PrintInt64(op1->i64 >>= value2);
8851 if(!exp->expType)
8852 {
8853 exp->expType = op1->type;
8854 if(op1->type)
8855 op1->type->refCount++;
8856 }
8857 return 0x1;
8858 }
8859
8860 static unsigned int UInt64RShiftAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8861 {
8862 uint64 value2 = op2->ui64;
8863
8864 exp->type = 2;
8865 exp->string = PrintUInt64(op1->ui64 >>= value2);
8866 if(!exp->expType)
8867 {
8868 exp->expType = op1->type;
8869 if(op1->type)
8870 op1->type->refCount++;
8871 }
8872 return 0x1;
8873 }
8874
8875 static unsigned int ShortRShiftAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8876 {
8877 short value2 = op2->s;
8878
8879 exp->type = 2;
8880 exp->string = PrintShort(op1->s >>= value2);
8881 if(!exp->expType)
8882 {
8883 exp->expType = op1->type;
8884 if(op1->type)
8885 op1->type->refCount++;
8886 }
8887 return 0x1;
8888 }
8889
8890 static unsigned int UShortRShiftAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8891 {
8892 unsigned short value2 = op2->us;
8893
8894 exp->type = 2;
8895 exp->string = PrintUShort(op1->us >>= value2);
8896 if(!exp->expType)
8897 {
8898 exp->expType = op1->type;
8899 if(op1->type)
8900 op1->type->refCount++;
8901 }
8902 return 0x1;
8903 }
8904
8905 static unsigned int CharRShiftAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8906 {
8907 char value2 = op2->c;
8908
8909 exp->type = 2;
8910 exp->string = PrintChar(op1->c >>= value2);
8911 if(!exp->expType)
8912 {
8913 exp->expType = op1->type;
8914 if(op1->type)
8915 op1->type->refCount++;
8916 }
8917 return 0x1;
8918 }
8919
8920 static unsigned int UCharRShiftAsign(struct Expression * exp, struct Operand * op1, struct Operand * op2)
8921 {
8922 unsigned char value2 = op2->uc;
8923
8924 exp->type = 2;
8925 exp->string = PrintUChar(op1->uc >>= value2);
8926 if(!exp->expType)
8927 {
8928 exp->expType = op1->type;
8929 if(op1->type)
8930 op1->type->refCount++;
8931 }
8932 return 0x1;
8933 }
8934
8935 static unsigned int IntNot(struct Expression * exp, struct Operand * op1)
8936 {
8937 exp->type = 2;
8938 exp->string = PrintInt((int)(!op1->i));
8939 if(!exp->expType)
8940 {
8941 exp->expType = op1->type;
8942 if(op1->type)
8943 op1->type->refCount++;
8944 }
8945 return 0x1;
8946 }
8947
8948 static unsigned int UIntNot(struct Expression * exp, struct Operand * op1)
8949 {
8950 exp->type = 2;
8951 exp->string = PrintUInt((unsigned int)(!op1->ui));
8952 if(!exp->expType)
8953 {
8954 exp->expType = op1->type;
8955 if(op1->type)
8956 op1->type->refCount++;
8957 }
8958 return 0x1;
8959 }
8960
8961 static unsigned int Int64Not(struct Expression * exp, struct Operand * op1)
8962 {
8963 exp->type = 2;
8964 exp->string = PrintInt64((long long)(!op1->i64));
8965 if(!exp->expType)
8966 {
8967 exp->expType = op1->type;
8968 if(op1->type)
8969 op1->type->refCount++;
8970 }
8971 return 0x1;
8972 }
8973
8974 static unsigned int UInt64Not(struct Expression * exp, struct Operand * op1)
8975 {
8976 exp->type = 2;
8977 exp->string = PrintUInt64((uint64)(!op1->ui64));
8978 if(!exp->expType)
8979 {
8980 exp->expType = op1->type;
8981 if(op1->type)
8982 op1->type->refCount++;
8983 }
8984 return 0x1;
8985 }
8986
8987 static unsigned int ShortNot(struct Expression * exp, struct Operand * op1)
8988 {
8989 exp->type = 2;
8990 exp->string = PrintShort((short)(!op1->s));
8991 if(!exp->expType)
8992 {
8993 exp->expType = op1->type;
8994 if(op1->type)
8995 op1->type->refCount++;
8996 }
8997 return 0x1;
8998 }
8999
9000 static unsigned int UShortNot(struct Expression * exp, struct Operand * op1)
9001 {
9002 exp->type = 2;
9003 exp->string = PrintUShort((unsigned short)(!op1->us));
9004 if(!exp->expType)
9005 {
9006 exp->expType = op1->type;
9007 if(op1->type)
9008 op1->type->refCount++;
9009 }
9010 return 0x1;
9011 }
9012
9013 static unsigned int CharNot(struct Expression * exp, struct Operand * op1)
9014 {
9015 exp->type = 2;
9016 exp->string = PrintChar((char)(!op1->c));
9017 if(!exp->expType)
9018 {
9019 exp->expType = op1->type;
9020 if(op1->type)
9021 op1->type->refCount++;
9022 }
9023 return 0x1;
9024 }
9025
9026 static unsigned int UCharNot(struct Expression * exp, struct Operand * op1)
9027 {
9028 exp->type = 2;
9029 exp->string = PrintUChar((unsigned char)(!op1->uc));
9030 if(!exp->expType)
9031 {
9032 exp->expType = op1->type;
9033 if(op1->type)
9034 op1->type->refCount++;
9035 }
9036 return 0x1;
9037 }
9038
9039 static unsigned int IntEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9040 {
9041 int value2 = op2->i;
9042
9043 exp->type = 2;
9044 exp->string = PrintInt(op1->i == value2);
9045 if(!exp->expType)
9046 {
9047 exp->expType = op1->type;
9048 if(op1->type)
9049 op1->type->refCount++;
9050 }
9051 return 0x1;
9052 }
9053
9054 static unsigned int UIntEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9055 {
9056 unsigned int value2 = op2->ui;
9057
9058 exp->type = 2;
9059 exp->string = PrintUInt(op1->ui == value2);
9060 if(!exp->expType)
9061 {
9062 exp->expType = op1->type;
9063 if(op1->type)
9064 op1->type->refCount++;
9065 }
9066 return 0x1;
9067 }
9068
9069 static unsigned int Int64Equ(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9070 {
9071 long long value2 = op2->i64;
9072
9073 exp->type = 2;
9074 exp->string = PrintInt64(op1->i64 == value2);
9075 if(!exp->expType)
9076 {
9077 exp->expType = op1->type;
9078 if(op1->type)
9079 op1->type->refCount++;
9080 }
9081 return 0x1;
9082 }
9083
9084 static unsigned int UInt64Equ(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9085 {
9086 uint64 value2 = op2->ui64;
9087
9088 exp->type = 2;
9089 exp->string = PrintUInt64(op1->ui64 == value2);
9090 if(!exp->expType)
9091 {
9092 exp->expType = op1->type;
9093 if(op1->type)
9094 op1->type->refCount++;
9095 }
9096 return 0x1;
9097 }
9098
9099 static unsigned int ShortEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9100 {
9101 short value2 = op2->s;
9102
9103 exp->type = 2;
9104 exp->string = PrintShort(op1->s == value2);
9105 if(!exp->expType)
9106 {
9107 exp->expType = op1->type;
9108 if(op1->type)
9109 op1->type->refCount++;
9110 }
9111 return 0x1;
9112 }
9113
9114 static unsigned int UShortEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9115 {
9116 unsigned short value2 = op2->us;
9117
9118 exp->type = 2;
9119 exp->string = PrintUShort(op1->us == value2);
9120 if(!exp->expType)
9121 {
9122 exp->expType = op1->type;
9123 if(op1->type)
9124 op1->type->refCount++;
9125 }
9126 return 0x1;
9127 }
9128
9129 static unsigned int CharEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9130 {
9131 char value2 = op2->c;
9132
9133 exp->type = 2;
9134 exp->string = PrintChar(op1->c == value2);
9135 if(!exp->expType)
9136 {
9137 exp->expType = op1->type;
9138 if(op1->type)
9139 op1->type->refCount++;
9140 }
9141 return 0x1;
9142 }
9143
9144 static unsigned int UCharEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9145 {
9146 unsigned char value2 = op2->uc;
9147
9148 exp->type = 2;
9149 exp->string = PrintUChar(op1->uc == value2);
9150 if(!exp->expType)
9151 {
9152 exp->expType = op1->type;
9153 if(op1->type)
9154 op1->type->refCount++;
9155 }
9156 return 0x1;
9157 }
9158
9159 static unsigned int FloatEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9160 {
9161 float value2 = op2->f;
9162
9163 exp->type = 2;
9164 exp->string = PrintFloat(op1->f == value2);
9165 if(!exp->expType)
9166 {
9167 exp->expType = op1->type;
9168 if(op1->type)
9169 op1->type->refCount++;
9170 }
9171 return 0x1;
9172 }
9173
9174 static unsigned int DoubleEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9175 {
9176 double value2 = op2->d;
9177
9178 exp->type = 2;
9179 exp->string = PrintDouble(op1->d == value2);
9180 if(!exp->expType)
9181 {
9182 exp->expType = op1->type;
9183 if(op1->type)
9184 op1->type->refCount++;
9185 }
9186 return 0x1;
9187 }
9188
9189 static unsigned int IntNqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9190 {
9191 int value2 = op2->i;
9192
9193 exp->type = 2;
9194 exp->string = PrintInt(op1->i != value2);
9195 if(!exp->expType)
9196 {
9197 exp->expType = op1->type;
9198 if(op1->type)
9199 op1->type->refCount++;
9200 }
9201 return 0x1;
9202 }
9203
9204 static unsigned int UIntNqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9205 {
9206 unsigned int value2 = op2->ui;
9207
9208 exp->type = 2;
9209 exp->string = PrintUInt(op1->ui != value2);
9210 if(!exp->expType)
9211 {
9212 exp->expType = op1->type;
9213 if(op1->type)
9214 op1->type->refCount++;
9215 }
9216 return 0x1;
9217 }
9218
9219 static unsigned int Int64Nqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9220 {
9221 long long value2 = op2->i64;
9222
9223 exp->type = 2;
9224 exp->string = PrintInt64(op1->i64 != value2);
9225 if(!exp->expType)
9226 {
9227 exp->expType = op1->type;
9228 if(op1->type)
9229 op1->type->refCount++;
9230 }
9231 return 0x1;
9232 }
9233
9234 static unsigned int UInt64Nqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9235 {
9236 uint64 value2 = op2->ui64;
9237
9238 exp->type = 2;
9239 exp->string = PrintUInt64(op1->ui64 != value2);
9240 if(!exp->expType)
9241 {
9242 exp->expType = op1->type;
9243 if(op1->type)
9244 op1->type->refCount++;
9245 }
9246 return 0x1;
9247 }
9248
9249 static unsigned int ShortNqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9250 {
9251 short value2 = op2->s;
9252
9253 exp->type = 2;
9254 exp->string = PrintShort(op1->s != value2);
9255 if(!exp->expType)
9256 {
9257 exp->expType = op1->type;
9258 if(op1->type)
9259 op1->type->refCount++;
9260 }
9261 return 0x1;
9262 }
9263
9264 static unsigned int UShortNqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9265 {
9266 unsigned short value2 = op2->us;
9267
9268 exp->type = 2;
9269 exp->string = PrintUShort(op1->us != value2);
9270 if(!exp->expType)
9271 {
9272 exp->expType = op1->type;
9273 if(op1->type)
9274 op1->type->refCount++;
9275 }
9276 return 0x1;
9277 }
9278
9279 static unsigned int CharNqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9280 {
9281 char value2 = op2->c;
9282
9283 exp->type = 2;
9284 exp->string = PrintChar(op1->c != value2);
9285 if(!exp->expType)
9286 {
9287 exp->expType = op1->type;
9288 if(op1->type)
9289 op1->type->refCount++;
9290 }
9291 return 0x1;
9292 }
9293
9294 static unsigned int UCharNqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9295 {
9296 unsigned char value2 = op2->uc;
9297
9298 exp->type = 2;
9299 exp->string = PrintUChar(op1->uc != value2);
9300 if(!exp->expType)
9301 {
9302 exp->expType = op1->type;
9303 if(op1->type)
9304 op1->type->refCount++;
9305 }
9306 return 0x1;
9307 }
9308
9309 static unsigned int FloatNqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9310 {
9311 float value2 = op2->f;
9312
9313 exp->type = 2;
9314 exp->string = PrintFloat(op1->f != value2);
9315 if(!exp->expType)
9316 {
9317 exp->expType = op1->type;
9318 if(op1->type)
9319 op1->type->refCount++;
9320 }
9321 return 0x1;
9322 }
9323
9324 static unsigned int DoubleNqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9325 {
9326 double value2 = op2->d;
9327
9328 exp->type = 2;
9329 exp->string = PrintDouble(op1->d != value2);
9330 if(!exp->expType)
9331 {
9332 exp->expType = op1->type;
9333 if(op1->type)
9334 op1->type->refCount++;
9335 }
9336 return 0x1;
9337 }
9338
9339 static unsigned int IntAnd(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9340 {
9341 int value2 = op2->i;
9342
9343 exp->type = 2;
9344 exp->string = PrintInt(op1->i && value2);
9345 if(!exp->expType)
9346 {
9347 exp->expType = op1->type;
9348 if(op1->type)
9349 op1->type->refCount++;
9350 }
9351 return 0x1;
9352 }
9353
9354 static unsigned int UIntAnd(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9355 {
9356 unsigned int value2 = op2->ui;
9357
9358 exp->type = 2;
9359 exp->string = PrintUInt(op1->ui && value2);
9360 if(!exp->expType)
9361 {
9362 exp->expType = op1->type;
9363 if(op1->type)
9364 op1->type->refCount++;
9365 }
9366 return 0x1;
9367 }
9368
9369 static unsigned int Int64And(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9370 {
9371 long long value2 = op2->i64;
9372
9373 exp->type = 2;
9374 exp->string = PrintInt64(op1->i64 && value2);
9375 if(!exp->expType)
9376 {
9377 exp->expType = op1->type;
9378 if(op1->type)
9379 op1->type->refCount++;
9380 }
9381 return 0x1;
9382 }
9383
9384 static unsigned int UInt64And(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9385 {
9386 uint64 value2 = op2->ui64;
9387
9388 exp->type = 2;
9389 exp->string = PrintUInt64(op1->ui64 && value2);
9390 if(!exp->expType)
9391 {
9392 exp->expType = op1->type;
9393 if(op1->type)
9394 op1->type->refCount++;
9395 }
9396 return 0x1;
9397 }
9398
9399 static unsigned int ShortAnd(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9400 {
9401 short value2 = op2->s;
9402
9403 exp->type = 2;
9404 exp->string = PrintShort(op1->s && value2);
9405 if(!exp->expType)
9406 {
9407 exp->expType = op1->type;
9408 if(op1->type)
9409 op1->type->refCount++;
9410 }
9411 return 0x1;
9412 }
9413
9414 static unsigned int UShortAnd(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9415 {
9416 unsigned short value2 = op2->us;
9417
9418 exp->type = 2;
9419 exp->string = PrintUShort(op1->us && value2);
9420 if(!exp->expType)
9421 {
9422 exp->expType = op1->type;
9423 if(op1->type)
9424 op1->type->refCount++;
9425 }
9426 return 0x1;
9427 }
9428
9429 static unsigned int CharAnd(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9430 {
9431 char value2 = op2->c;
9432
9433 exp->type = 2;
9434 exp->string = PrintChar(op1->c && value2);
9435 if(!exp->expType)
9436 {
9437 exp->expType = op1->type;
9438 if(op1->type)
9439 op1->type->refCount++;
9440 }
9441 return 0x1;
9442 }
9443
9444 static unsigned int UCharAnd(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9445 {
9446 unsigned char value2 = op2->uc;
9447
9448 exp->type = 2;
9449 exp->string = PrintUChar(op1->uc && value2);
9450 if(!exp->expType)
9451 {
9452 exp->expType = op1->type;
9453 if(op1->type)
9454 op1->type->refCount++;
9455 }
9456 return 0x1;
9457 }
9458
9459 static unsigned int FloatAnd(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9460 {
9461 float value2 = op2->f;
9462
9463 exp->type = 2;
9464 exp->string = PrintFloat(op1->f && value2);
9465 if(!exp->expType)
9466 {
9467 exp->expType = op1->type;
9468 if(op1->type)
9469 op1->type->refCount++;
9470 }
9471 return 0x1;
9472 }
9473
9474 static unsigned int DoubleAnd(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9475 {
9476 double value2 = op2->d;
9477
9478 exp->type = 2;
9479 exp->string = PrintDouble(op1->d && value2);
9480 if(!exp->expType)
9481 {
9482 exp->expType = op1->type;
9483 if(op1->type)
9484 op1->type->refCount++;
9485 }
9486 return 0x1;
9487 }
9488
9489 static unsigned int IntOr(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9490 {
9491 int value2 = op2->i;
9492
9493 exp->type = 2;
9494 exp->string = PrintInt(op1->i || value2);
9495 if(!exp->expType)
9496 {
9497 exp->expType = op1->type;
9498 if(op1->type)
9499 op1->type->refCount++;
9500 }
9501 return 0x1;
9502 }
9503
9504 static unsigned int UIntOr(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9505 {
9506 unsigned int value2 = op2->ui;
9507
9508 exp->type = 2;
9509 exp->string = PrintUInt(op1->ui || value2);
9510 if(!exp->expType)
9511 {
9512 exp->expType = op1->type;
9513 if(op1->type)
9514 op1->type->refCount++;
9515 }
9516 return 0x1;
9517 }
9518
9519 static unsigned int Int64Or(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9520 {
9521 long long value2 = op2->i64;
9522
9523 exp->type = 2;
9524 exp->string = PrintInt64(op1->i64 || value2);
9525 if(!exp->expType)
9526 {
9527 exp->expType = op1->type;
9528 if(op1->type)
9529 op1->type->refCount++;
9530 }
9531 return 0x1;
9532 }
9533
9534 static unsigned int UInt64Or(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9535 {
9536 uint64 value2 = op2->ui64;
9537
9538 exp->type = 2;
9539 exp->string = PrintUInt64(op1->ui64 || value2);
9540 if(!exp->expType)
9541 {
9542 exp->expType = op1->type;
9543 if(op1->type)
9544 op1->type->refCount++;
9545 }
9546 return 0x1;
9547 }
9548
9549 static unsigned int ShortOr(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9550 {
9551 short value2 = op2->s;
9552
9553 exp->type = 2;
9554 exp->string = PrintShort(op1->s || value2);
9555 if(!exp->expType)
9556 {
9557 exp->expType = op1->type;
9558 if(op1->type)
9559 op1->type->refCount++;
9560 }
9561 return 0x1;
9562 }
9563
9564 static unsigned int UShortOr(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9565 {
9566 unsigned short value2 = op2->us;
9567
9568 exp->type = 2;
9569 exp->string = PrintUShort(op1->us || value2);
9570 if(!exp->expType)
9571 {
9572 exp->expType = op1->type;
9573 if(op1->type)
9574 op1->type->refCount++;
9575 }
9576 return 0x1;
9577 }
9578
9579 static unsigned int CharOr(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9580 {
9581 char value2 = op2->c;
9582
9583 exp->type = 2;
9584 exp->string = PrintChar(op1->c || value2);
9585 if(!exp->expType)
9586 {
9587 exp->expType = op1->type;
9588 if(op1->type)
9589 op1->type->refCount++;
9590 }
9591 return 0x1;
9592 }
9593
9594 static unsigned int UCharOr(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9595 {
9596 unsigned char value2 = op2->uc;
9597
9598 exp->type = 2;
9599 exp->string = PrintUChar(op1->uc || value2);
9600 if(!exp->expType)
9601 {
9602 exp->expType = op1->type;
9603 if(op1->type)
9604 op1->type->refCount++;
9605 }
9606 return 0x1;
9607 }
9608
9609 static unsigned int FloatOr(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9610 {
9611 float value2 = op2->f;
9612
9613 exp->type = 2;
9614 exp->string = PrintFloat(op1->f || value2);
9615 if(!exp->expType)
9616 {
9617 exp->expType = op1->type;
9618 if(op1->type)
9619 op1->type->refCount++;
9620 }
9621 return 0x1;
9622 }
9623
9624 static unsigned int DoubleOr(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9625 {
9626 double value2 = op2->d;
9627
9628 exp->type = 2;
9629 exp->string = PrintDouble(op1->d || value2);
9630 if(!exp->expType)
9631 {
9632 exp->expType = op1->type;
9633 if(op1->type)
9634 op1->type->refCount++;
9635 }
9636 return 0x1;
9637 }
9638
9639 static unsigned int IntGrt(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9640 {
9641 int value2 = op2->i;
9642
9643 exp->type = 2;
9644 exp->string = PrintInt(op1->i > value2);
9645 if(!exp->expType)
9646 {
9647 exp->expType = op1->type;
9648 if(op1->type)
9649 op1->type->refCount++;
9650 }
9651 return 0x1;
9652 }
9653
9654 static unsigned int UIntGrt(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9655 {
9656 unsigned int value2 = op2->ui;
9657
9658 exp->type = 2;
9659 exp->string = PrintUInt(op1->ui > value2);
9660 if(!exp->expType)
9661 {
9662 exp->expType = op1->type;
9663 if(op1->type)
9664 op1->type->refCount++;
9665 }
9666 return 0x1;
9667 }
9668
9669 static unsigned int Int64Grt(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9670 {
9671 long long value2 = op2->i64;
9672
9673 exp->type = 2;
9674 exp->string = PrintInt64(op1->i64 > value2);
9675 if(!exp->expType)
9676 {
9677 exp->expType = op1->type;
9678 if(op1->type)
9679 op1->type->refCount++;
9680 }
9681 return 0x1;
9682 }
9683
9684 static unsigned int UInt64Grt(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9685 {
9686 uint64 value2 = op2->ui64;
9687
9688 exp->type = 2;
9689 exp->string = PrintUInt64(op1->ui64 > value2);
9690 if(!exp->expType)
9691 {
9692 exp->expType = op1->type;
9693 if(op1->type)
9694 op1->type->refCount++;
9695 }
9696 return 0x1;
9697 }
9698
9699 static unsigned int ShortGrt(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9700 {
9701 short value2 = op2->s;
9702
9703 exp->type = 2;
9704 exp->string = PrintShort(op1->s > value2);
9705 if(!exp->expType)
9706 {
9707 exp->expType = op1->type;
9708 if(op1->type)
9709 op1->type->refCount++;
9710 }
9711 return 0x1;
9712 }
9713
9714 static unsigned int UShortGrt(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9715 {
9716 unsigned short value2 = op2->us;
9717
9718 exp->type = 2;
9719 exp->string = PrintUShort(op1->us > value2);
9720 if(!exp->expType)
9721 {
9722 exp->expType = op1->type;
9723 if(op1->type)
9724 op1->type->refCount++;
9725 }
9726 return 0x1;
9727 }
9728
9729 static unsigned int CharGrt(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9730 {
9731 char value2 = op2->c;
9732
9733 exp->type = 2;
9734 exp->string = PrintChar(op1->c > value2);
9735 if(!exp->expType)
9736 {
9737 exp->expType = op1->type;
9738 if(op1->type)
9739 op1->type->refCount++;
9740 }
9741 return 0x1;
9742 }
9743
9744 static unsigned int UCharGrt(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9745 {
9746 unsigned char value2 = op2->uc;
9747
9748 exp->type = 2;
9749 exp->string = PrintUChar(op1->uc > value2);
9750 if(!exp->expType)
9751 {
9752 exp->expType = op1->type;
9753 if(op1->type)
9754 op1->type->refCount++;
9755 }
9756 return 0x1;
9757 }
9758
9759 static unsigned int FloatGrt(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9760 {
9761 float value2 = op2->f;
9762
9763 exp->type = 2;
9764 exp->string = PrintFloat(op1->f > value2);
9765 if(!exp->expType)
9766 {
9767 exp->expType = op1->type;
9768 if(op1->type)
9769 op1->type->refCount++;
9770 }
9771 return 0x1;
9772 }
9773
9774 static unsigned int DoubleGrt(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9775 {
9776 double value2 = op2->d;
9777
9778 exp->type = 2;
9779 exp->string = PrintDouble(op1->d > value2);
9780 if(!exp->expType)
9781 {
9782 exp->expType = op1->type;
9783 if(op1->type)
9784 op1->type->refCount++;
9785 }
9786 return 0x1;
9787 }
9788
9789 static unsigned int IntSma(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9790 {
9791 int value2 = op2->i;
9792
9793 exp->type = 2;
9794 exp->string = PrintInt(op1->i < value2);
9795 if(!exp->expType)
9796 {
9797 exp->expType = op1->type;
9798 if(op1->type)
9799 op1->type->refCount++;
9800 }
9801 return 0x1;
9802 }
9803
9804 static unsigned int UIntSma(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9805 {
9806 unsigned int value2 = op2->ui;
9807
9808 exp->type = 2;
9809 exp->string = PrintUInt(op1->ui < value2);
9810 if(!exp->expType)
9811 {
9812 exp->expType = op1->type;
9813 if(op1->type)
9814 op1->type->refCount++;
9815 }
9816 return 0x1;
9817 }
9818
9819 static unsigned int Int64Sma(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9820 {
9821 long long value2 = op2->i64;
9822
9823 exp->type = 2;
9824 exp->string = PrintInt64(op1->i64 < value2);
9825 if(!exp->expType)
9826 {
9827 exp->expType = op1->type;
9828 if(op1->type)
9829 op1->type->refCount++;
9830 }
9831 return 0x1;
9832 }
9833
9834 static unsigned int UInt64Sma(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9835 {
9836 uint64 value2 = op2->ui64;
9837
9838 exp->type = 2;
9839 exp->string = PrintUInt64(op1->ui64 < value2);
9840 if(!exp->expType)
9841 {
9842 exp->expType = op1->type;
9843 if(op1->type)
9844 op1->type->refCount++;
9845 }
9846 return 0x1;
9847 }
9848
9849 static unsigned int ShortSma(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9850 {
9851 short value2 = op2->s;
9852
9853 exp->type = 2;
9854 exp->string = PrintShort(op1->s < value2);
9855 if(!exp->expType)
9856 {
9857 exp->expType = op1->type;
9858 if(op1->type)
9859 op1->type->refCount++;
9860 }
9861 return 0x1;
9862 }
9863
9864 static unsigned int UShortSma(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9865 {
9866 unsigned short value2 = op2->us;
9867
9868 exp->type = 2;
9869 exp->string = PrintUShort(op1->us < value2);
9870 if(!exp->expType)
9871 {
9872 exp->expType = op1->type;
9873 if(op1->type)
9874 op1->type->refCount++;
9875 }
9876 return 0x1;
9877 }
9878
9879 static unsigned int CharSma(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9880 {
9881 char value2 = op2->c;
9882
9883 exp->type = 2;
9884 exp->string = PrintChar(op1->c < value2);
9885 if(!exp->expType)
9886 {
9887 exp->expType = op1->type;
9888 if(op1->type)
9889 op1->type->refCount++;
9890 }
9891 return 0x1;
9892 }
9893
9894 static unsigned int UCharSma(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9895 {
9896 unsigned char value2 = op2->uc;
9897
9898 exp->type = 2;
9899 exp->string = PrintUChar(op1->uc < value2);
9900 if(!exp->expType)
9901 {
9902 exp->expType = op1->type;
9903 if(op1->type)
9904 op1->type->refCount++;
9905 }
9906 return 0x1;
9907 }
9908
9909 static unsigned int FloatSma(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9910 {
9911 float value2 = op2->f;
9912
9913 exp->type = 2;
9914 exp->string = PrintFloat(op1->f < value2);
9915 if(!exp->expType)
9916 {
9917 exp->expType = op1->type;
9918 if(op1->type)
9919 op1->type->refCount++;
9920 }
9921 return 0x1;
9922 }
9923
9924 static unsigned int DoubleSma(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9925 {
9926 double value2 = op2->d;
9927
9928 exp->type = 2;
9929 exp->string = PrintDouble(op1->d < value2);
9930 if(!exp->expType)
9931 {
9932 exp->expType = op1->type;
9933 if(op1->type)
9934 op1->type->refCount++;
9935 }
9936 return 0x1;
9937 }
9938
9939 static unsigned int IntGrtEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9940 {
9941 int value2 = op2->i;
9942
9943 exp->type = 2;
9944 exp->string = PrintInt(op1->i >= value2);
9945 if(!exp->expType)
9946 {
9947 exp->expType = op1->type;
9948 if(op1->type)
9949 op1->type->refCount++;
9950 }
9951 return 0x1;
9952 }
9953
9954 static unsigned int UIntGrtEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9955 {
9956 unsigned int value2 = op2->ui;
9957
9958 exp->type = 2;
9959 exp->string = PrintUInt(op1->ui >= value2);
9960 if(!exp->expType)
9961 {
9962 exp->expType = op1->type;
9963 if(op1->type)
9964 op1->type->refCount++;
9965 }
9966 return 0x1;
9967 }
9968
9969 static unsigned int Int64GrtEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9970 {
9971 long long value2 = op2->i64;
9972
9973 exp->type = 2;
9974 exp->string = PrintInt64(op1->i64 >= value2);
9975 if(!exp->expType)
9976 {
9977 exp->expType = op1->type;
9978 if(op1->type)
9979 op1->type->refCount++;
9980 }
9981 return 0x1;
9982 }
9983
9984 static unsigned int UInt64GrtEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
9985 {
9986 uint64 value2 = op2->ui64;
9987
9988 exp->type = 2;
9989 exp->string = PrintUInt64(op1->ui64 >= value2);
9990 if(!exp->expType)
9991 {
9992 exp->expType = op1->type;
9993 if(op1->type)
9994 op1->type->refCount++;
9995 }
9996 return 0x1;
9997 }
9998
9999 static unsigned int ShortGrtEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10000 {
10001 short value2 = op2->s;
10002
10003 exp->type = 2;
10004 exp->string = PrintShort(op1->s >= value2);
10005 if(!exp->expType)
10006 {
10007 exp->expType = op1->type;
10008 if(op1->type)
10009 op1->type->refCount++;
10010 }
10011 return 0x1;
10012 }
10013
10014 static unsigned int UShortGrtEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10015 {
10016 unsigned short value2 = op2->us;
10017
10018 exp->type = 2;
10019 exp->string = PrintUShort(op1->us >= value2);
10020 if(!exp->expType)
10021 {
10022 exp->expType = op1->type;
10023 if(op1->type)
10024 op1->type->refCount++;
10025 }
10026 return 0x1;
10027 }
10028
10029 static unsigned int CharGrtEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10030 {
10031 char value2 = op2->c;
10032
10033 exp->type = 2;
10034 exp->string = PrintChar(op1->c >= value2);
10035 if(!exp->expType)
10036 {
10037 exp->expType = op1->type;
10038 if(op1->type)
10039 op1->type->refCount++;
10040 }
10041 return 0x1;
10042 }
10043
10044 static unsigned int UCharGrtEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10045 {
10046 unsigned char value2 = op2->uc;
10047
10048 exp->type = 2;
10049 exp->string = PrintUChar(op1->uc >= value2);
10050 if(!exp->expType)
10051 {
10052 exp->expType = op1->type;
10053 if(op1->type)
10054 op1->type->refCount++;
10055 }
10056 return 0x1;
10057 }
10058
10059 static unsigned int FloatGrtEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10060 {
10061 float value2 = op2->f;
10062
10063 exp->type = 2;
10064 exp->string = PrintFloat(op1->f >= value2);
10065 if(!exp->expType)
10066 {
10067 exp->expType = op1->type;
10068 if(op1->type)
10069 op1->type->refCount++;
10070 }
10071 return 0x1;
10072 }
10073
10074 static unsigned int DoubleGrtEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10075 {
10076 double value2 = op2->d;
10077
10078 exp->type = 2;
10079 exp->string = PrintDouble(op1->d >= value2);
10080 if(!exp->expType)
10081 {
10082 exp->expType = op1->type;
10083 if(op1->type)
10084 op1->type->refCount++;
10085 }
10086 return 0x1;
10087 }
10088
10089 static unsigned int IntSmaEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10090 {
10091 int value2 = op2->i;
10092
10093 exp->type = 2;
10094 exp->string = PrintInt(op1->i <= value2);
10095 if(!exp->expType)
10096 {
10097 exp->expType = op1->type;
10098 if(op1->type)
10099 op1->type->refCount++;
10100 }
10101 return 0x1;
10102 }
10103
10104 static unsigned int UIntSmaEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10105 {
10106 unsigned int value2 = op2->ui;
10107
10108 exp->type = 2;
10109 exp->string = PrintUInt(op1->ui <= value2);
10110 if(!exp->expType)
10111 {
10112 exp->expType = op1->type;
10113 if(op1->type)
10114 op1->type->refCount++;
10115 }
10116 return 0x1;
10117 }
10118
10119 static unsigned int Int64SmaEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10120 {
10121 long long value2 = op2->i64;
10122
10123 exp->type = 2;
10124 exp->string = PrintInt64(op1->i64 <= value2);
10125 if(!exp->expType)
10126 {
10127 exp->expType = op1->type;
10128 if(op1->type)
10129 op1->type->refCount++;
10130 }
10131 return 0x1;
10132 }
10133
10134 static unsigned int UInt64SmaEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10135 {
10136 uint64 value2 = op2->ui64;
10137
10138 exp->type = 2;
10139 exp->string = PrintUInt64(op1->ui64 <= value2);
10140 if(!exp->expType)
10141 {
10142 exp->expType = op1->type;
10143 if(op1->type)
10144 op1->type->refCount++;
10145 }
10146 return 0x1;
10147 }
10148
10149 static unsigned int ShortSmaEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10150 {
10151 short value2 = op2->s;
10152
10153 exp->type = 2;
10154 exp->string = PrintShort(op1->s <= value2);
10155 if(!exp->expType)
10156 {
10157 exp->expType = op1->type;
10158 if(op1->type)
10159 op1->type->refCount++;
10160 }
10161 return 0x1;
10162 }
10163
10164 static unsigned int UShortSmaEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10165 {
10166 unsigned short value2 = op2->us;
10167
10168 exp->type = 2;
10169 exp->string = PrintUShort(op1->us <= value2);
10170 if(!exp->expType)
10171 {
10172 exp->expType = op1->type;
10173 if(op1->type)
10174 op1->type->refCount++;
10175 }
10176 return 0x1;
10177 }
10178
10179 static unsigned int CharSmaEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10180 {
10181 char value2 = op2->c;
10182
10183 exp->type = 2;
10184 exp->string = PrintChar(op1->c <= value2);
10185 if(!exp->expType)
10186 {
10187 exp->expType = op1->type;
10188 if(op1->type)
10189 op1->type->refCount++;
10190 }
10191 return 0x1;
10192 }
10193
10194 static unsigned int UCharSmaEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10195 {
10196 unsigned char value2 = op2->uc;
10197
10198 exp->type = 2;
10199 exp->string = PrintUChar(op1->uc <= value2);
10200 if(!exp->expType)
10201 {
10202 exp->expType = op1->type;
10203 if(op1->type)
10204 op1->type->refCount++;
10205 }
10206 return 0x1;
10207 }
10208
10209 static unsigned int FloatSmaEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10210 {
10211 float value2 = op2->f;
10212
10213 exp->type = 2;
10214 exp->string = PrintFloat(op1->f <= value2);
10215 if(!exp->expType)
10216 {
10217 exp->expType = op1->type;
10218 if(op1->type)
10219 op1->type->refCount++;
10220 }
10221 return 0x1;
10222 }
10223
10224 static unsigned int DoubleSmaEqu(struct Expression * exp, struct Operand * op1, struct Operand * op2)
10225 {
10226 double value2 = op2->d;
10227
10228 exp->type = 2;
10229 exp->string = PrintDouble(op1->d <= value2);
10230 if(!exp->expType)
10231 {
10232 exp->expType = op1->type;
10233 if(op1->type)
10234 op1->type->refCount++;
10235 }
10236 return 0x1;
10237 }
10238
10239 static unsigned int IntCond(struct Expression * exp, struct Operand * op1, struct Operand * op2, struct Operand * op3)
10240 {
10241 exp->type = 2;
10242 exp->string = PrintInt(op1->i ? op2->i : op3->i);
10243 if(!exp->expType)
10244 {
10245 exp->expType = op1->type;
10246 if(op1->type)
10247 op1->type->refCount++;
10248 }
10249 return 0x1;
10250 }
10251
10252 static unsigned int UIntCond(struct Expression * exp, struct Operand * op1, struct Operand * op2, struct Operand * op3)
10253 {
10254 exp->type = 2;
10255 exp->string = PrintUInt(op1->ui ? op2->ui : op3->ui);
10256 if(!exp->expType)
10257 {
10258 exp->expType = op1->type;
10259 if(op1->type)
10260 op1->type->refCount++;
10261 }
10262 return 0x1;
10263 }
10264
10265 static unsigned int Int64Cond(struct Expression * exp, struct Operand * op1, struct Operand * op2, struct Operand * op3)
10266 {
10267 exp->type = 2;
10268 exp->string = PrintInt64(op1->i64 ? op2->i64 : op3->i64);
10269 if(!exp->expType)
10270 {
10271 exp->expType = op1->type;
10272 if(op1->type)
10273 op1->type->refCount++;
10274 }
10275 return 0x1;
10276 }
10277
10278 static unsigned int UInt64Cond(struct Expression * exp, struct Operand * op1, struct Operand * op2, struct Operand * op3)
10279 {
10280 exp->type = 2;
10281 exp->string = PrintUInt64(op1->ui64 ? op2->ui64 : op3->ui64);
10282 if(!exp->expType)
10283 {
10284 exp->expType = op1->type;
10285 if(op1->type)
10286 op1->type->refCount++;
10287 }
10288 return 0x1;
10289 }
10290
10291 static unsigned int ShortCond(struct Expression * exp, struct Operand * op1, struct Operand * op2, struct Operand * op3)
10292 {
10293 exp->type = 2;
10294 exp->string = PrintShort(op1->s ? op2->s : op3->s);
10295 if(!exp->expType)
10296 {
10297 exp->expType = op1->type;
10298 if(op1->type)
10299 op1->type->refCount++;
10300 }
10301 return 0x1;
10302 }
10303
10304 static unsigned int UShortCond(struct Expression * exp, struct Operand * op1, struct Operand * op2, struct Operand * op3)
10305 {
10306 exp->type = 2;
10307 exp->string = PrintUShort(op1->us ? op2->us : op3->us);
10308 if(!exp->expType)
10309 {
10310 exp->expType = op1->type;
10311 if(op1->type)
10312 op1->type->refCount++;
10313 }
10314 return 0x1;
10315 }
10316
10317 static unsigned int CharCond(struct Expression * exp, struct Operand * op1, struct Operand * op2, struct Operand * op3)
10318 {
10319 exp->type = 2;
10320 exp->string = PrintChar(op1->c ? op2->c : op3->c);
10321 if(!exp->expType)
10322 {
10323 exp->expType = op1->type;
10324 if(op1->type)
10325 op1->type->refCount++;
10326 }
10327 return 0x1;
10328 }
10329
10330 static unsigned int UCharCond(struct Expression * exp, struct Operand * op1, struct Operand * op2, struct Operand * op3)
10331 {
10332 exp->type = 2;
10333 exp->string = PrintUChar(op1->uc ? op2->uc : op3->uc);
10334 if(!exp->expType)
10335 {
10336 exp->expType = op1->type;
10337 if(op1->type)
10338 op1->type->refCount++;
10339 }
10340 return 0x1;
10341 }
10342
10343 static unsigned int FloatCond(struct Expression * exp, struct Operand * op1, struct Operand * op2, struct Operand * op3)
10344 {
10345 exp->type = 2;
10346 exp->string = PrintFloat(op1->f ? op2->f : op3->f);
10347 if(!exp->expType)
10348 {
10349 exp->expType = op1->type;
10350 if(op1->type)
10351 op1->type->refCount++;
10352 }
10353 return 0x1;
10354 }
10355
10356 static unsigned int DoubleCond(struct Expression * exp, struct Operand * op1, struct Operand * op2, struct Operand * op3)
10357 {
10358 exp->type = 2;
10359 exp->string = PrintDouble(op1->d ? op2->d : op3->d);
10360 if(!exp->expType)
10361 {
10362 exp->expType = op1->type;
10363 if(op1->type)
10364 op1->type->refCount++;
10365 }
10366 return 0x1;
10367 }
10368
10369 struct OpTable intOps = 
10370 {
10371 IntAdd, IntSub, IntMul, IntDiv, IntMod, IntNeg, IntInc, IntDec, IntAsign, IntAddAsign, IntSubAsign, IntMulAsign, IntDivAsign, IntModAsign, IntBitAnd, IntBitOr, IntBitXor, IntLShift, IntRShift, IntBitNot, IntAndAsign, IntOrAsign, IntXorAsign, IntLShiftAsign, IntRShiftAsign, IntNot, IntEqu, IntNqu, IntAnd, IntOr, IntGrt, IntSma, IntGrtEqu, IntSmaEqu, IntCond
10372 };
10373
10374 struct OpTable uintOps = 
10375 {
10376 UIntAdd, UIntSub, UIntMul, UIntDiv, UIntMod, UIntNeg, UIntInc, UIntDec, UIntAsign, UIntAddAsign, UIntSubAsign, UIntMulAsign, UIntDivAsign, UIntModAsign, UIntBitAnd, UIntBitOr, UIntBitXor, UIntLShift, UIntRShift, UIntBitNot, UIntAndAsign, UIntOrAsign, UIntXorAsign, UIntLShiftAsign, UIntRShiftAsign, UIntNot, UIntEqu, UIntNqu, UIntAnd, UIntOr, UIntGrt, UIntSma, UIntGrtEqu, UIntSmaEqu, UIntCond
10377 };
10378
10379 struct OpTable int64Ops = 
10380 {
10381 Int64Add, Int64Sub, Int64Mul, Int64Div, Int64Mod, Int64Neg, Int64Inc, Int64Dec, Int64Asign, Int64AddAsign, Int64SubAsign, Int64MulAsign, Int64DivAsign, Int64ModAsign, Int64BitAnd, Int64BitOr, Int64BitXor, Int64LShift, Int64RShift, Int64BitNot, Int64AndAsign, Int64OrAsign, Int64XorAsign, Int64LShiftAsign, Int64RShiftAsign, Int64Not, Int64Equ, Int64Nqu, Int64And, Int64Or, Int64Grt, Int64Sma, Int64GrtEqu, Int64SmaEqu, Int64Cond
10382 };
10383
10384 struct OpTable uint64Ops = 
10385 {
10386 UInt64Add, UInt64Sub, UInt64Mul, UInt64Div, UInt64Mod, UInt64Neg, UInt64Inc, UInt64Dec, UInt64Asign, UInt64AddAsign, UInt64SubAsign, UInt64MulAsign, UInt64DivAsign, UInt64ModAsign, UInt64BitAnd, UInt64BitOr, UInt64BitXor, UInt64LShift, UInt64RShift, UInt64BitNot, UInt64AndAsign, UInt64OrAsign, UInt64XorAsign, UInt64LShiftAsign, UInt64RShiftAsign, UInt64Not, UInt64Equ, UInt64Nqu, UInt64And, UInt64Or, UInt64Grt, UInt64Sma, UInt64GrtEqu, UInt64SmaEqu, UInt64Cond
10387 };
10388
10389 struct OpTable shortOps = 
10390 {
10391 ShortAdd, ShortSub, ShortMul, ShortDiv, ShortMod, ShortNeg, ShortInc, ShortDec, ShortAsign, ShortAddAsign, ShortSubAsign, ShortMulAsign, ShortDivAsign, ShortModAsign, ShortBitAnd, ShortBitOr, ShortBitXor, ShortLShift, ShortRShift, ShortBitNot, ShortAndAsign, ShortOrAsign, ShortXorAsign, ShortLShiftAsign, ShortRShiftAsign, ShortNot, ShortEqu, ShortNqu, ShortAnd, ShortOr, ShortGrt, ShortSma, ShortGrtEqu, ShortSmaEqu, ShortCond
10392 };
10393
10394 struct OpTable ushortOps = 
10395 {
10396 UShortAdd, UShortSub, UShortMul, UShortDiv, UShortMod, UShortNeg, UShortInc, UShortDec, UShortAsign, UShortAddAsign, UShortSubAsign, UShortMulAsign, UShortDivAsign, UShortModAsign, UShortBitAnd, UShortBitOr, UShortBitXor, UShortLShift, UShortRShift, UShortBitNot, UShortAndAsign, UShortOrAsign, UShortXorAsign, UShortLShiftAsign, UShortRShiftAsign, UShortNot, UShortEqu, UShortNqu, UShortAnd, UShortOr, UShortGrt, UShortSma, UShortGrtEqu, UShortSmaEqu, UShortCond
10397 };
10398
10399 struct OpTable floatOps = 
10400 {
10401 FloatAdd, FloatSub, FloatMul, FloatDiv, (((void *)0)), FloatNeg, FloatInc, FloatDec, FloatAsign, FloatAddAsign, FloatSubAsign, FloatMulAsign, 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)), FloatEqu, FloatNqu, FloatAnd, FloatOr, FloatGrt, FloatSma, FloatGrtEqu, FloatSmaEqu
10402 };
10403
10404 struct OpTable doubleOps = 
10405 {
10406 DoubleAdd, DoubleSub, DoubleMul, DoubleDiv, (((void *)0)), DoubleNeg, DoubleInc, DoubleDec, DoubleAsign, DoubleAddAsign, DoubleSubAsign, DoubleMulAsign, 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)), DoubleEqu, DoubleNqu, DoubleAnd, DoubleOr, DoubleGrt, DoubleSma, DoubleGrtEqu, DoubleSmaEqu
10407 };
10408
10409 struct OpTable charOps = 
10410 {
10411 CharAdd, CharSub, CharMul, CharDiv, CharMod, CharNeg, CharInc, CharDec, CharAsign, CharAddAsign, CharSubAsign, CharMulAsign, CharDivAsign, CharModAsign, CharBitAnd, CharBitOr, CharBitXor, CharLShift, CharRShift, CharBitNot, CharAndAsign, CharOrAsign, CharXorAsign, CharLShiftAsign, CharRShiftAsign, CharNot, CharEqu, CharNqu, CharAnd, CharOr, CharGrt, CharSma, CharGrtEqu, CharSmaEqu, CharCond
10412 };
10413
10414 struct OpTable ucharOps = 
10415 {
10416 UCharAdd, UCharSub, UCharMul, UCharDiv, UCharMod, UCharNeg, UCharInc, UCharDec, UCharAsign, UCharAddAsign, UCharSubAsign, UCharMulAsign, UCharDivAsign, UCharModAsign, UCharBitAnd, UCharBitOr, UCharBitXor, UCharLShift, UCharRShift, UCharBitNot, UCharAndAsign, UCharOrAsign, UCharXorAsign, UCharLShiftAsign, UCharRShiftAsign, UCharNot, UCharEqu, UCharNqu, UCharAnd, UCharOr, UCharGrt, UCharSma, UCharGrtEqu, UCharSmaEqu, UCharCond
10417 };
10418
10419 void ReadString(char * output, char * string)
10420 {
10421 int len = strlen(string);
10422 int c, d = 0;
10423 unsigned int quoted = 0x0, escaped = 0x0;
10424
10425 for(c = 0; c < len; c++)
10426 {
10427 char ch = string[c];
10428
10429 if(escaped)
10430 {
10431 switch(ch)
10432 {
10433 case 'n':
10434 output[d] = '\n';
10435 break;
10436 case 't':
10437 output[d] = '\t';
10438 break;
10439 case 'a':
10440 output[d] = '\a';
10441 break;
10442 case 'b':
10443 output[d] = '\b';
10444 break;
10445 case 'f':
10446 output[d] = '\f';
10447 break;
10448 case 'r':
10449 output[d] = '\r';
10450 break;
10451 case 'v':
10452 output[d] = '\v';
10453 break;
10454 case '\\':
10455 output[d] = '\\';
10456 break;
10457 case '\"':
10458 output[d] = '\"';
10459 break;
10460 case '\'':
10461 output[d] = '\'';
10462 break;
10463 default:
10464 output[d] = ch;
10465 }
10466 d++;
10467 escaped = 0x0;
10468 }
10469 else
10470 {
10471 if(ch == '\"')
10472 quoted ^= 0x1;
10473 else if(quoted)
10474 {
10475 if(ch == '\\')
10476 escaped = 0x1;
10477 else
10478 output[d++] = ch;
10479 }
10480 }
10481 }
10482 output[d] = '\0';
10483 }
10484
10485 int UnescapeString(char * d, char * s, int len)
10486 {
10487 int j = 0, k = 0;
10488 char ch;
10489
10490 while(j < len && (ch = s[j]))
10491 {
10492 switch(ch)
10493 {
10494 case '\\':
10495 switch((ch = s[++j]))
10496 {
10497 case 'n':
10498 d[k] = '\n';
10499 break;
10500 case 't':
10501 d[k] = '\t';
10502 break;
10503 case 'a':
10504 d[k] = '\a';
10505 break;
10506 case 'b':
10507 d[k] = '\b';
10508 break;
10509 case 'f':
10510 d[k] = '\f';
10511 break;
10512 case 'r':
10513 d[k] = '\r';
10514 break;
10515 case 'v':
10516 d[k] = '\v';
10517 break;
10518 case '\\':
10519 d[k] = '\\';
10520 break;
10521 case '\"':
10522 d[k] = '\"';
10523 break;
10524 case '\'':
10525 d[k] = '\'';
10526 break;
10527 default:
10528 d[k] = '\\';
10529 d[k] = ch;
10530 }
10531 break;
10532 default:
10533 d[k] = ch;
10534 }
10535 j++, k++;
10536 }
10537 d[k] = '\0';
10538 return k;
10539 }
10540
10541 char * OffsetEscapedString(char * s, int len, int offset)
10542 {
10543 char ch;
10544 int j = 0, k = 0;
10545
10546 while(j < len && k < offset && (ch = s[j]))
10547 {
10548 if(ch == '\\')
10549 ++j;
10550 j++, k++;
10551 }
10552 return (k == offset) ? s + j : (((void *)0));
10553 }
10554
10555 extern long long __ecereNameSpace__ecere__com___strtoi64(char *  string, char * *  endString, int base);
10556
10557 extern uint64 __ecereNameSpace__ecere__com___strtoui64(char *  string, char * *  endString, int base);
10558
10559 extern double strtod(char * , char * * );
10560
10561 struct Operand GetOperand(struct Expression * exp)
10562 {
10563 struct Operand op = 
10564 {
10565 0, 0, 0, 0, 
10566 {
10567 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
10568 }
10569 };
10570 struct Type * type = exp->expType;
10571
10572 if(type)
10573 {
10574 while(type->kind == 8 && type->_class->registered && (type->_class->registered->type == 2 || type->_class->registered->type == 3 || type->_class->registered->type == 4))
10575 {
10576 if(!type->_class->registered->dataType)
10577 type->_class->registered->dataType = ProcessTypeString(type->_class->registered->dataTypeString, 0x0);
10578 type = type->_class->registered->dataType;
10579 }
10580 op.kind = type->kind;
10581 op.type = exp->expType;
10582 if(exp->type == 3 && op.kind == 13)
10583 {
10584 op.ui64 = (uint64)exp->string;
10585 op.kind = 13;
10586 op.ops = uint64Ops;
10587 }
10588 else if(exp->isConstant && exp->type == 2)
10589 {
10590 switch(op.kind)
10591 {
10592 case 24:
10593 case 1:
10594 {
10595 if(exp->constant[0] == '\'')
10596 op.c = exp->constant[1];
10597 else if(type->isSigned)
10598 {
10599 op.c = (char)strtol(exp->constant, (((void *)0)), 0);
10600 op.ops = charOps;
10601 }
10602 else
10603 {
10604 op.uc = (unsigned char)strtoul(exp->constant, (((void *)0)), 0);
10605 op.ops = ucharOps;
10606 }
10607 break;
10608 }
10609 case 2:
10610 if(type->isSigned)
10611 {
10612 op.s = (short)strtol(exp->constant, (((void *)0)), 0);
10613 op.ops = shortOps;
10614 }
10615 else
10616 {
10617 op.us = (unsigned short)strtoul(exp->constant, (((void *)0)), 0);
10618 op.ops = ushortOps;
10619 }
10620 break;
10621 case 3:
10622 case 5:
10623 if(type->isSigned)
10624 {
10625 op.i = strtol(exp->constant, (((void *)0)), 0);
10626 op.ops = intOps;
10627 }
10628 else
10629 {
10630 op.ui = strtoul(exp->constant, (((void *)0)), 0);
10631 op.ops = uintOps;
10632 }
10633 op.kind = 3;
10634 break;
10635 case 4:
10636 if(type->isSigned)
10637 {
10638 op.i64 = __ecereNameSpace__ecere__com___strtoi64(exp->constant, (((void *)0)), 0);
10639 op.ops = intOps;
10640 }
10641 else
10642 {
10643 op.ui64 = __ecereNameSpace__ecere__com___strtoui64(exp->constant, (((void *)0)), 0);
10644 op.ops = uintOps;
10645 }
10646 op.kind = 4;
10647 break;
10648 case 22:
10649 if(type->isSigned)
10650 {
10651 op.i64 = __ecereNameSpace__ecere__com___strtoi64(exp->constant, (((void *)0)), 0);
10652 op.ops = int64Ops;
10653 }
10654 else
10655 {
10656 op.ui64 = __ecereNameSpace__ecere__com___strtoui64(exp->constant, (((void *)0)), 0);
10657 op.ops = uint64Ops;
10658 }
10659 op.kind = 4;
10660 break;
10661 case 23:
10662 if(type->isSigned)
10663 {
10664 op.i64 = __ecereNameSpace__ecere__com___strtoi64(exp->constant, (((void *)0)), 0);
10665 op.ops = int64Ops;
10666 }
10667 else
10668 {
10669 op.ui64 = __ecereNameSpace__ecere__com___strtoui64(exp->constant, (((void *)0)), 0);
10670 op.ops = uint64Ops;
10671 }
10672 op.kind = 4;
10673 break;
10674 case 6:
10675 op.f = (float)strtod(exp->constant, (((void *)0)));
10676 op.ops = floatOps;
10677 break;
10678 case 7:
10679 op.d = (double)strtod(exp->constant, (((void *)0)));
10680 op.ops = doubleOps;
10681 break;
10682 case 12:
10683 case 13:
10684 case 8:
10685 op.ui64 = __ecereNameSpace__ecere__com___strtoui64(exp->constant, (((void *)0)), 0);
10686 op.kind = 13;
10687 op.ops = uint64Ops;
10688 break;
10689 }
10690 }
10691 }
10692 return op;
10693 }
10694
10695 int __ecereVMethodID_class_OnGetString;
10696
10697 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_int;
10698
10699 static void UnusedFunction()
10700 {
10701 int a;
10702
10703 ((char *  (*)(struct __ecereNameSpace__ecere__com__Class *, void *, char *  tempString, void *  fieldData, unsigned int *  needClass))__ecereClass_int->_vTbl[__ecereVMethodID_class_OnGetString])(__ecereClass_int, &a, 0, 0, 0);
10704 }
10705
10706 extern int __ecereVMethodID_class_OnGetString;
10707
10708 static void PopulateInstanceProcessMember(struct Instantiation * inst, struct __ecereNameSpace__ecere__sys__OldList * memberList, struct __ecereNameSpace__ecere__com__DataMember * parentDataMember, unsigned int offset)
10709 {
10710 struct __ecereNameSpace__ecere__com__DataMember * dataMember;
10711
10712 for(dataMember = parentDataMember->members.first; dataMember; dataMember = dataMember->next)
10713 {
10714 if(!dataMember->name && (dataMember->type == 2 || dataMember->type == 1))
10715 PopulateInstanceProcessMember(inst, memberList, dataMember, offset + dataMember->offset);
10716 else
10717 {
10718 struct Expression * exp = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Expression);
10719 struct MemberInit * member = MkMemberInit(MkListOne(MkIdentifier(dataMember->name)), MkInitializerAssignment(exp));
10720 struct Type * type;
10721 void * ptr = inst->data + dataMember->offset + offset;
10722 char * result = (((void *)0));
10723
10724 exp->loc = member->loc = inst->loc;
10725 ((struct Identifier *)(*member->identifiers).first)->loc = inst->loc;
10726 if(!dataMember->dataType)
10727 dataMember->dataType = ProcessTypeString(dataMember->dataTypeString, 0x0);
10728 type = dataMember->dataType;
10729 if(type->kind == 8)
10730 {
10731 struct __ecereNameSpace__ecere__com__Class * _class = type->_class->registered;
10732
10733 if(_class->type == 4)
10734 {
10735 struct __ecereNameSpace__ecere__com__Class * enumClass = __ecereNameSpace__ecere__com__eSystem_FindClass(privateModule, "enum");
10736
10737 if(enumClass)
10738 {
10739 struct __ecereNameSpace__ecere__com__EnumClassData * e = (_class ? ((void *)(((char *)_class->data) + enumClass->offsetClass)) : (((void *)0)));
10740 struct __ecereNameSpace__ecere__sys__NamedLink * item;
10741
10742 for(item = e->values.first; item; item = item->next)
10743 {
10744 if((int)item->data == *(int *)ptr)
10745 {
10746 result = item->name;
10747 break;
10748 }
10749 }
10750 if(result)
10751 {
10752 exp->identifier = MkIdentifier(result);
10753 exp->type = 0;
10754 exp->destType = MkClassType(_class->fullName);
10755 ProcessExpressionType(exp);
10756 }
10757 }
10758 }
10759 if(_class->type == 4 || _class->type == 3 || _class->type == 2)
10760 {
10761 if(!_class->dataType)
10762 _class->dataType = ProcessTypeString(_class->dataTypeString, 0x0);
10763 type = _class->dataType;
10764 }
10765 }
10766 if(!result)
10767 {
10768 switch(type->kind)
10769 {
10770 case 6:
10771 {
10772 FreeExpContents(exp);
10773 exp->constant = PrintFloat(*(float *)ptr);
10774 exp->type = 2;
10775 break;
10776 }
10777 case 7:
10778 {
10779 FreeExpContents(exp);
10780 exp->constant = PrintDouble(*(double *)ptr);
10781 exp->type = 2;
10782 break;
10783 }
10784 case 3:
10785 {
10786 FreeExpContents(exp);
10787 exp->constant = PrintInt(*(int *)ptr);
10788 exp->type = 2;
10789 break;
10790 }
10791 case 4:
10792 {
10793 FreeExpContents(exp);
10794 exp->constant = PrintInt64(*(long long *)ptr);
10795 exp->type = 2;
10796 break;
10797 }
10798 case 22:
10799 {
10800 FreeExpContents(exp);
10801 exp->constant = PrintInt64((long long)*(intptr_t *)ptr);
10802 exp->type = 2;
10803 break;
10804 }
10805 case 23:
10806 {
10807 FreeExpContents(exp);
10808 exp->constant = PrintInt64((long long)*(intptr_t *)ptr);
10809 exp->type = 2;
10810 break;
10811 }
10812 default:
10813 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "Unhandled type populating instance\n", (((void *)0))));
10814 }
10815 }
10816 ListAdd(memberList, member);
10817 }
10818 if(parentDataMember->type == 1)
10819 break;
10820 }
10821 }
10822
10823 extern struct MembersInit * MkMembersInitList(struct __ecereNameSpace__ecere__sys__OldList * dataMembers);
10824
10825 void PopulateInstance(struct Instantiation * inst)
10826 {
10827 struct Symbol * classSym = inst->_class->symbol;
10828 struct __ecereNameSpace__ecere__com__Class * _class = classSym->registered;
10829 struct __ecereNameSpace__ecere__com__DataMember * dataMember;
10830 struct __ecereNameSpace__ecere__sys__OldList * memberList = MkList();
10831
10832 if(!inst->members)
10833 inst->members = MkListOne(MkMembersInitList(memberList));
10834 else
10835 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add((&*inst->members), MkMembersInitList(memberList));
10836 for(dataMember = _class->membersAndProperties.first; dataMember; dataMember = dataMember->next)
10837 {
10838 if(!dataMember->isProperty)
10839 {
10840 if(!dataMember->name && (dataMember->type == 2 || dataMember->type == 1))
10841 PopulateInstanceProcessMember(inst, memberList, dataMember, dataMember->offset);
10842 else
10843 {
10844 struct Expression * exp = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Expression);
10845 struct MemberInit * member = MkMemberInit(MkListOne(MkIdentifier(dataMember->name)), MkInitializerAssignment(exp));
10846 struct Type * type;
10847 void * ptr = inst->data + dataMember->offset;
10848 char * result = (((void *)0));
10849
10850 exp->loc = member->loc = inst->loc;
10851 ((struct Identifier *)(*member->identifiers).first)->loc = inst->loc;
10852 if(!dataMember->dataType)
10853 dataMember->dataType = ProcessTypeString(dataMember->dataTypeString, 0x0);
10854 type = dataMember->dataType;
10855 if(type->kind == 8)
10856 {
10857 struct __ecereNameSpace__ecere__com__Class * _class = type->_class->registered;
10858
10859 if(_class->type == 4)
10860 {
10861 struct __ecereNameSpace__ecere__com__Class * enumClass = __ecereNameSpace__ecere__com__eSystem_FindClass(privateModule, "enum");
10862
10863 if(enumClass)
10864 {
10865 struct __ecereNameSpace__ecere__com__EnumClassData * e = (_class ? ((void *)(((char *)_class->data) + enumClass->offsetClass)) : (((void *)0)));
10866 struct __ecereNameSpace__ecere__sys__NamedLink * item;
10867
10868 for(item = e->values.first; item; item = item->next)
10869 {
10870 if((int)item->data == *(int *)ptr)
10871 {
10872 result = item->name;
10873 break;
10874 }
10875 }
10876 }
10877 if(result)
10878 {
10879 exp->identifier = MkIdentifier(result);
10880 exp->type = 0;
10881 exp->destType = MkClassType(_class->fullName);
10882 ProcessExpressionType(exp);
10883 }
10884 }
10885 if(_class->type == 4 || _class->type == 3 || _class->type == 2)
10886 {
10887 if(!_class->dataType)
10888 _class->dataType = ProcessTypeString(_class->dataTypeString, 0x0);
10889 type = _class->dataType;
10890 }
10891 }
10892 if(!result)
10893 {
10894 switch(type->kind)
10895 {
10896 case 6:
10897 {
10898 exp->constant = PrintFloat(*(float *)ptr);
10899 exp->type = 2;
10900 break;
10901 }
10902 case 7:
10903 {
10904 exp->constant = PrintDouble(*(double *)ptr);
10905 exp->type = 2;
10906 break;
10907 }
10908 case 3:
10909 {
10910 exp->constant = PrintInt(*(int *)ptr);
10911 exp->type = 2;
10912 break;
10913 }
10914 case 4:
10915 {
10916 exp->constant = PrintInt64(*(long long *)ptr);
10917 exp->type = 2;
10918 break;
10919 }
10920 case 22:
10921 {
10922 exp->constant = PrintInt64((long long)*(intptr_t *)ptr);
10923 exp->type = 2;
10924 break;
10925 }
10926 default:
10927 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "Unhandled type populating instance\n", (((void *)0))));
10928 }
10929 }
10930 ListAdd(memberList, member);
10931 }
10932 }
10933 }
10934 }
10935
10936 extern struct __ecereNameSpace__ecere__com__DataMember * __ecereNameSpace__ecere__com__eClass_FindDataMemberAndOffset(struct __ecereNameSpace__ecere__com__Class * _class, char *  name, unsigned int *  offset, struct __ecereNameSpace__ecere__com__Instance * module, struct __ecereNameSpace__ecere__com__DataMember **  subMemberStack, int *  subMemberStackPos);
10937
10938 extern void FreeInstance(struct Instantiation * inst);
10939
10940 void ComputeInstantiation(struct Expression * exp)
10941 {
10942 struct Instantiation * inst = exp->instance;
10943 struct MembersInit * members;
10944 struct Symbol * classSym = inst->_class ? inst->_class->symbol : (((void *)0));
10945 struct __ecereNameSpace__ecere__com__Class * _class = classSym ? classSym->registered : (((void *)0));
10946 struct __ecereNameSpace__ecere__com__DataMember * curMember = (((void *)0));
10947 struct __ecereNameSpace__ecere__com__Class * curClass = (((void *)0));
10948 struct __ecereNameSpace__ecere__com__DataMember * subMemberStack[256];
10949 int subMemberStackPos = 0;
10950 uint64 bits = 0;
10951
10952 if(_class && (_class->type == 1 || _class->type == 0 || _class->type == 5))
10953 {
10954 if(inst->data)
10955 return ;
10956 if(_class->type == 0 || _class->type == 5)
10957 {
10958 inst->data = (unsigned char *)__ecereNameSpace__ecere__com__eInstance_New(_class);
10959 if(_class->type == 0)
10960 ((struct __ecereNameSpace__ecere__com__Instance *)(char *)((struct __ecereNameSpace__ecere__com__Instance *)inst->data))->_refCount++;
10961 }
10962 else
10963 inst->data = __ecereNameSpace__ecere__com__eSystem_New0(sizeof(unsigned char) * (_class->structSize));
10964 }
10965 if(inst->members)
10966 {
10967 for(members = (*inst->members).first; members; members = members->next)
10968 {
10969 switch(members->type)
10970 {
10971 case 0:
10972 {
10973 if(members->dataMembers)
10974 {
10975 struct MemberInit * member;
10976
10977 for(member = (*members->dataMembers).first; member; member = member->next)
10978 {
10979 struct Identifier * ident = member->identifiers ? (*member->identifiers).first : (((void *)0));
10980 unsigned int found = 0x0;
10981 struct __ecereNameSpace__ecere__com__Property * prop = (((void *)0));
10982 struct __ecereNameSpace__ecere__com__DataMember * dataMember = (((void *)0));
10983 struct __ecereNameSpace__ecere__com__Method * method = (((void *)0));
10984 unsigned int dataMemberOffset;
10985
10986 if(!ident)
10987 {
10988 __ecereNameSpace__ecere__com__eClass_FindNextMember(_class, &curClass, &curMember, subMemberStack, &subMemberStackPos);
10989 if(curMember)
10990 {
10991 if(curMember->isProperty)
10992 prop = (struct __ecereNameSpace__ecere__com__Property *)curMember;
10993 else
10994 {
10995 dataMember = curMember;
10996 __ecereNameSpace__ecere__com__eClass_FindDataMemberAndOffset(_class, dataMember->name, &dataMemberOffset, privateModule, (((void *)0)), (((void *)0)));
10997 if(_class->type == 0)
10998 dataMemberOffset += _class->base->structSize;
10999 }
11000 found = 0x1;
11001 }
11002 }
11003 else
11004 {
11005 prop = __ecereNameSpace__ecere__com__eClass_FindProperty(_class, ident->string, privateModule);
11006 if(prop)
11007 {
11008 found = 0x1;
11009 if(prop->memberAccess == 1)
11010 {
11011 curMember = (struct __ecereNameSpace__ecere__com__DataMember *)prop;
11012 curClass = prop->_class;
11013 }
11014 }
11015 else
11016 {
11017 struct __ecereNameSpace__ecere__com__DataMember * _subMemberStack[256];
11018 int _subMemberStackPos = 0;
11019
11020 dataMember = __ecereNameSpace__ecere__com__eClass_FindDataMemberAndOffset(_class, ident->string, &dataMemberOffset, privateModule, _subMemberStack, &_subMemberStackPos);
11021 if(dataMember)
11022 {
11023 found = 0x1;
11024 if(dataMember->memberAccess == 1)
11025 {
11026 curMember = dataMember;
11027 curClass = dataMember->_class;
11028 memcpy(subMemberStack, _subMemberStack, sizeof(struct __ecereNameSpace__ecere__com__DataMember *) * _subMemberStackPos);
11029 subMemberStackPos = _subMemberStackPos;
11030 }
11031 }
11032 }
11033 }
11034 if(found && member->initializer && member->initializer->type == 0)
11035 {
11036 struct Expression * value = member->initializer->exp;
11037 struct Type * type = (((void *)0));
11038 unsigned int deepMember = 0x0;
11039
11040 if(prop)
11041 {
11042 type = prop->dataType;
11043 }
11044 else if(dataMember)
11045 {
11046 if(!dataMember->dataType)
11047 dataMember->dataType = ProcessTypeString(dataMember->dataTypeString, 0x0);
11048 type = dataMember->dataType;
11049 }
11050 if(ident && ident->next)
11051 {
11052 deepMember = 0x1;
11053 for(ident = ident->next; ident && type; ident = ident->next)
11054 {
11055 if(type->kind == 8)
11056 {
11057 prop = __ecereNameSpace__ecere__com__eClass_FindProperty(type->_class->registered, ident->string, privateModule);
11058 if(prop)
11059 type = prop->dataType;
11060 else
11061 {
11062 dataMember = __ecereNameSpace__ecere__com__eClass_FindDataMemberAndOffset(type->_class->registered, ident->string, &dataMemberOffset, privateModule, (((void *)0)), (((void *)0)));
11063 if(dataMember)
11064 type = dataMember->dataType;
11065 }
11066 }
11067 else if(type->kind == 9 || type->kind == 10)
11068 {
11069 struct Type * memberType;
11070
11071 for(memberType = type->members.first; memberType; memberType = memberType->next)
11072 {
11073 if(!strcmp(memberType->name, ident->string))
11074 {
11075 type = memberType;
11076 break;
11077 }
11078 }
11079 }
11080 }
11081 }
11082 if(value)
11083 {
11084 FreeType(value->destType);
11085 value->destType = type;
11086 if(type)
11087 type->refCount++;
11088 ComputeExpression(value);
11089 }
11090 if(!deepMember && type && value && (_class->type == 1 || _class->type == 0 || _class->type == 5))
11091 {
11092 if(type->kind == 8)
11093 {
11094 struct __ecereNameSpace__ecere__com__Class * _class = type->_class->registered;
11095
11096 if(_class->type == 2 || _class->type == 3 || _class->type == 4)
11097 {
11098 if(!_class->dataType)
11099 _class->dataType = ProcessTypeString(_class->dataTypeString, 0x0);
11100 type = _class->dataType;
11101 }
11102 }
11103 if(dataMember)
11104 {
11105 void * ptr = inst->data + dataMemberOffset;
11106
11107 if(value->type == 2)
11108 {
11109 switch(type->kind)
11110 {
11111 case 3:
11112 {
11113 GetInt(value, (int *)ptr);
11114 break;
11115 }
11116 case 4:
11117 {
11118 GetInt64(value, (long long *)ptr);
11119 break;
11120 }
11121 case 22:
11122 {
11123 GetIntPtr(value, (intptr_t *)ptr);
11124 break;
11125 }
11126 case 23:
11127 {
11128 GetIntSize(value, (ssize_t *)ptr);
11129 break;
11130 }
11131 case 6:
11132 {
11133 GetFloat(value, (float *)ptr);
11134 break;
11135 }
11136 case 7:
11137 {
11138 GetDouble(value, (double *)ptr);
11139 break;
11140 }
11141 }
11142 }
11143 else if(value->type == 1)
11144 {
11145 if(type->kind == 8)
11146 {
11147 struct __ecereNameSpace__ecere__com__Class * _class = type->_class->registered;
11148
11149 if(_class->type == 1)
11150 {
11151 ComputeTypeSize(type);
11152 if(value->instance->data)
11153 memcpy(ptr, value->instance->data, type->size);
11154 }
11155 }
11156 }
11157 }
11158 else if(prop)
11159 {
11160 if(value->type == 1 && value->instance->data)
11161 {
11162 if(type->kind == 8)
11163 {
11164 struct __ecereNameSpace__ecere__com__Class * _class = type->_class->registered;
11165
11166 if(_class && (_class->type != 0 || __ecereNameSpace__ecere__com__eClass_IsDerived(((struct __ecereNameSpace__ecere__com__Instance *)(char *)((struct __ecereNameSpace__ecere__com__Instance *)value->instance->data))->_class, _class)))
11167 {
11168 void (* Set)(void *, void *) = (void *)prop->Set;
11169
11170 Set(inst->data, value->instance->data);
11171 PopulateInstance(inst);
11172 }
11173 }
11174 }
11175 else if(value->type == 2)
11176 {
11177 switch(type->kind)
11178 {
11179 case 7:
11180 {
11181 void (* Set)(void *, double) = (void *)prop->Set;
11182
11183 Set(inst->data, strtod(value->constant, (((void *)0))));
11184 break;
11185 }
11186 case 6:
11187 {
11188 void (* Set)(void *, float) = (void *)prop->Set;
11189
11190 Set(inst->data, (float)(strtod(value->constant, (((void *)0)))));
11191 break;
11192 }
11193 case 3:
11194 {
11195 void (* Set)(void *, int) = (void *)prop->Set;
11196
11197 Set(inst->data, strtol(value->constant, (((void *)0)), 0));
11198 break;
11199 }
11200 case 4:
11201 {
11202 void (* Set)(void *, long long) = (void *)prop->Set;
11203
11204 Set(inst->data, __ecereNameSpace__ecere__com___strtoi64(value->constant, (((void *)0)), 0));
11205 break;
11206 }
11207 case 22:
11208 {
11209 void (* Set)(void *, intptr_t) = (void *)prop->Set;
11210
11211 Set(inst->data, (intptr_t)__ecereNameSpace__ecere__com___strtoi64(value->constant, (((void *)0)), 0));
11212 break;
11213 }
11214 case 23:
11215 {
11216 void (* Set)(void *, ssize_t) = (void *)prop->Set;
11217
11218 Set(inst->data, (ssize_t)__ecereNameSpace__ecere__com___strtoi64(value->constant, (((void *)0)), 0));
11219 break;
11220 }
11221 }
11222 }
11223 else if(value->type == 3)
11224 {
11225 char temp[1024];
11226
11227 ReadString(temp, value->string);
11228 ((void (*)(void *, void *))(void *)prop->Set)(inst->data, temp);
11229 }
11230 }
11231 }
11232 else if(!deepMember && type && _class->type == 3)
11233 {
11234 if(prop)
11235 {
11236 if(value->type == 2)
11237 {
11238 if(type->kind == 8)
11239 {
11240 struct __ecereNameSpace__ecere__com__Class * _class = type->_class->registered;
11241
11242 if(_class->type == 3)
11243 {
11244 if(!_class->dataType)
11245 _class->dataType = ProcessTypeString(_class->dataTypeString, 0x0);
11246 type = _class->dataType;
11247 }
11248 }
11249 switch(type->kind)
11250 {
11251 case 6:
11252 {
11253 float fValue;
11254 float (* Set)(float) = (void *)prop->Set;
11255
11256 GetFloat(member->initializer->exp, &fValue);
11257 exp->constant = PrintFloat(Set(fValue));
11258 exp->type = 2;
11259 break;
11260 }
11261 case 7:
11262 {
11263 double dValue;
11264 double (* Set)(double) = (void *)prop->Set;
11265
11266 GetDouble(member->initializer->exp, &dValue);
11267 exp->constant = PrintDouble(Set(dValue));
11268 exp->type = 2;
11269 break;
11270 }
11271 }
11272 }
11273 }
11274 }
11275 else if(!deepMember && type && _class->type == 2)
11276 {
11277 if(prop)
11278 {
11279 if(value->type == 1 && value->instance->data)
11280 {
11281 unsigned int (* Set)(void *) = (void *)prop->Set;
11282
11283 bits = Set(value->instance->data);
11284 }
11285 else if(value->type == 2)
11286 {
11287 }
11288 }
11289 else if(dataMember)
11290 {
11291 struct __ecereNameSpace__ecere__com__BitMember * bitMember = (struct __ecereNameSpace__ecere__com__BitMember *)dataMember;
11292 struct Type * type;
11293 int part = 0;
11294
11295 GetInt(value, &part);
11296 bits = (bits & ~bitMember->mask);
11297 if(!bitMember->dataType)
11298 bitMember->dataType = ProcessTypeString(bitMember->dataTypeString, 0x0);
11299 type = bitMember->dataType;
11300 if(type->kind == 8 && type->_class && type->_class->registered)
11301 {
11302 if(!type->_class->registered->dataType)
11303 type->_class->registered->dataType = ProcessTypeString(type->_class->registered->dataTypeString, 0x0);
11304 type = type->_class->registered->dataType;
11305 }
11306 switch(type->kind)
11307 {
11308 case 24:
11309 case 1:
11310 if(type->isSigned)
11311 bits |= ((char)part << bitMember->pos);
11312 else
11313 bits |= ((unsigned char)part << bitMember->pos);
11314 break;
11315 case 2:
11316 if(type->isSigned)
11317 bits |= ((short)part << bitMember->pos);
11318 else
11319 bits |= ((unsigned short)part << bitMember->pos);
11320 break;
11321 case 3:
11322 case 5:
11323 if(type->isSigned)
11324 bits |= (part << bitMember->pos);
11325 else
11326 bits |= ((unsigned int)part << bitMember->pos);
11327 break;
11328 case 4:
11329 if(type->isSigned)
11330 bits |= ((long long)part << bitMember->pos);
11331 else
11332 bits |= ((uint64)part << bitMember->pos);
11333 break;
11334 case 22:
11335 if(type->isSigned)
11336 {
11337 bits |= ((intptr_t)part << bitMember->pos);
11338 }
11339 else
11340 {
11341 bits |= ((uintptr_t)part << bitMember->pos);
11342 }
11343 break;
11344 case 23:
11345 if(type->isSigned)
11346 {
11347 bits |= ((ssize_t)part << bitMember->pos);
11348 }
11349 else
11350 {
11351 bits |= ((size_t)part << bitMember->pos);
11352 }
11353 break;
11354 }
11355 }
11356 }
11357 }
11358 else
11359 {
11360 if(_class && _class->type == 3)
11361 {
11362 ComputeExpression(member->initializer->exp);
11363 exp->constant = member->initializer->exp->constant;
11364 exp->type = 2;
11365 member->initializer->exp->constant = (((void *)0));
11366 }
11367 }
11368 }
11369 }
11370 break;
11371 }
11372 }
11373 }
11374 }
11375 if(_class && _class->type == 2)
11376 {
11377 exp->constant = PrintHexUInt(bits);
11378 exp->type = 2;
11379 }
11380 if(exp->type != 1)
11381 {
11382 FreeInstance(inst);
11383 }
11384 }
11385
11386 void CallOperator(struct Expression * exp, struct Expression * exp1, struct Expression * exp2, struct Operand * op1, struct Operand * op2)
11387 {
11388 if(exp->op.op == SIZEOF)
11389 {
11390 FreeExpContents(exp);
11391 exp->type = 2;
11392 exp->constant = PrintUInt(ComputeTypeSize(op1->type));
11393 }
11394 else
11395 {
11396 if(!exp->op.exp1)
11397 {
11398 switch(exp->op.op)
11399 {
11400 case '+':
11401 {
11402 struct Expression * exp2 = exp->op.exp2;
11403
11404 exp->op.exp2 = (((void *)0));
11405 FreeExpContents(exp);
11406 FreeType(exp->expType);
11407 FreeType(exp->destType);
11408 *exp = *exp2;
11409 ((exp2 ? (__ecereClass_Expression->Destructor ? __ecereClass_Expression->Destructor(exp2) : 0, __ecereNameSpace__ecere__com__eSystem_Delete(exp2)) : 0), exp2 = 0);
11410 break;
11411 }
11412 case '-':
11413 if(op1->ops.Neg)
11414 {
11415 FreeExpContents(exp);
11416 op1->ops.Neg(exp, op1);
11417 }
11418 break;
11419 case '~':
11420 if(op1->ops.BitNot)
11421 {
11422 FreeExpContents(exp);
11423 op1->ops.BitNot(exp, op1);
11424 }
11425 break;
11426 case '!':
11427 if(op1->ops.Not)
11428 {
11429 FreeExpContents(exp);
11430 op1->ops.Not(exp, op1);
11431 }
11432 break;
11433 }
11434 }
11435 else
11436 {
11437 switch(exp->op.op)
11438 {
11439 case '+':
11440 if(op1->ops.Add)
11441 {
11442 FreeExpContents(exp);
11443 op1->ops.Add(exp, op1, op2);
11444 }
11445 break;
11446 case '-':
11447 if(op1->ops.Sub)
11448 {
11449 FreeExpContents(exp);
11450 op1->ops.Sub(exp, op1, op2);
11451 }
11452 break;
11453 case '*':
11454 if(op1->ops.Mul)
11455 {
11456 FreeExpContents(exp);
11457 op1->ops.Mul(exp, op1, op2);
11458 }
11459 break;
11460 case '/':
11461 if(op1->ops.Div)
11462 {
11463 FreeExpContents(exp);
11464 op1->ops.Div(exp, op1, op2);
11465 }
11466 break;
11467 case '%':
11468 if(op1->ops.Mod)
11469 {
11470 FreeExpContents(exp);
11471 op1->ops.Mod(exp, op1, op2);
11472 }
11473 break;
11474 case '&':
11475 if(exp->op.exp2)
11476 {
11477 if(op1->ops.BitAnd)
11478 {
11479 FreeExpContents(exp);
11480 op1->ops.BitAnd(exp, op1, op2);
11481 }
11482 }
11483 break;
11484 case '|':
11485 if(op1->ops.BitOr)
11486 {
11487 FreeExpContents(exp);
11488 op1->ops.BitOr(exp, op1, op2);
11489 }
11490 break;
11491 case '^':
11492 if(op1->ops.BitXor)
11493 {
11494 FreeExpContents(exp);
11495 op1->ops.BitXor(exp, op1, op2);
11496 }
11497 break;
11498 case LEFT_OP:
11499 if(op1->ops.LShift)
11500 {
11501 FreeExpContents(exp);
11502 op1->ops.LShift(exp, op1, op2);
11503 }
11504 break;
11505 case RIGHT_OP:
11506 if(op1->ops.RShift)
11507 {
11508 FreeExpContents(exp);
11509 op1->ops.RShift(exp, op1, op2);
11510 }
11511 break;
11512 case EQ_OP:
11513 if(op1->ops.Equ)
11514 {
11515 FreeExpContents(exp);
11516 op1->ops.Equ(exp, op1, op2);
11517 }
11518 break;
11519 case NE_OP:
11520 if(op1->ops.Nqu)
11521 {
11522 FreeExpContents(exp);
11523 op1->ops.Nqu(exp, op1, op2);
11524 }
11525 break;
11526 case AND_OP:
11527 if(op1->ops.And)
11528 {
11529 FreeExpContents(exp);
11530 op1->ops.And(exp, op1, op2);
11531 }
11532 break;
11533 case OR_OP:
11534 if(op1->ops.Or)
11535 {
11536 FreeExpContents(exp);
11537 op1->ops.Or(exp, op1, op2);
11538 }
11539 break;
11540 case '>':
11541 if(op1->ops.Grt)
11542 {
11543 FreeExpContents(exp);
11544 op1->ops.Grt(exp, op1, op2);
11545 }
11546 break;
11547 case '<':
11548 if(op1->ops.Sma)
11549 {
11550 FreeExpContents(exp);
11551 op1->ops.Sma(exp, op1, op2);
11552 }
11553 break;
11554 case GE_OP:
11555 if(op1->ops.GrtEqu)
11556 {
11557 FreeExpContents(exp);
11558 op1->ops.GrtEqu(exp, op1, op2);
11559 }
11560 break;
11561 case LE_OP:
11562 if(op1->ops.SmaEqu)
11563 {
11564 FreeExpContents(exp);
11565 op1->ops.SmaEqu(exp, op1, op2);
11566 }
11567 break;
11568 }
11569 }
11570 }
11571 }
11572
11573 void PrintTypeNoConst(struct Type * type, char *  string, unsigned int printName, unsigned int fullName);
11574
11575 extern struct Expression * MkExpIdentifier(struct Identifier * id);
11576
11577 void ComputeExpression(struct Expression * exp)
11578 {
11579 char expString[10240];
11580
11581 expString[0] = '\0';
11582 switch(exp->type)
11583 {
11584 case 1:
11585 {
11586 ComputeInstantiation(exp);
11587 break;
11588 }
11589 case 4:
11590 {
11591 struct Expression * exp1, * exp2 = (((void *)0));
11592 struct Operand op1 = 
11593 {
11594 0, 0, 0, 0, 
11595 {
11596 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
11597 }
11598 };
11599 struct Operand op2 = 
11600 {
11601 0, 0, 0, 0, 
11602 {
11603 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
11604 }
11605 };
11606
11607 if(exp->op.exp2)
11608 {
11609 struct Expression * e = exp->op.exp2;
11610
11611 while(((e->type == 5 || e->type == 32 || e->type == 23) && e->list) || e->type == 11)
11612 {
11613 if(e->type == 5 || e->type == 32 || e->type == 23)
11614 {
11615 if(e->type == 23)
11616 e = (*((struct Statement *)(*e->compound->compound.statements).last)->expressions).last;
11617 else
11618 e = (*e->list).last;
11619 }
11620 else if(e->type == 11)
11621 e = e->cast.exp;
11622 }
11623 if(exp->op.op == 261 && e && e->expType)
11624 {
11625 if(e->type == 3 && e->string)
11626 {
11627 char * string = e->string;
11628 int len = strlen(string);
11629 char * tmp = __ecereNameSpace__ecere__com__eSystem_New(sizeof(char) * (len - 2 + 1));
11630
11631 len = UnescapeString(tmp, string + 1, len - 2);
11632 (__ecereNameSpace__ecere__com__eSystem_Delete(tmp), tmp = 0);
11633 FreeExpContents(exp);
11634 exp->type = 2;
11635 exp->constant = PrintUInt(len + 1);
11636 }
11637 else
11638 {
11639 struct Type * type = e->expType;
11640
11641 type->refCount++;
11642 FreeExpContents(exp);
11643 exp->type = 2;
11644 exp->constant = PrintUInt(ComputeTypeSize(type));
11645 FreeType(type);
11646 }
11647 break;
11648 }
11649 else
11650 ComputeExpression(exp->op.exp2);
11651 }
11652 if(exp->op.exp1)
11653 {
11654 ComputeExpression(exp->op.exp1);
11655 exp1 = exp->op.exp1;
11656 exp2 = exp->op.exp2;
11657 op1 = GetOperand(exp1);
11658 if(op1.type)
11659 op1.type->refCount++;
11660 if(exp2)
11661 {
11662 op2 = GetOperand(exp2);
11663 if(op2.type)
11664 op2.type->refCount++;
11665 }
11666 }
11667 else
11668 {
11669 exp1 = exp->op.exp2;
11670 op1 = GetOperand(exp1);
11671 if(op1.type)
11672 op1.type->refCount++;
11673 }
11674 CallOperator(exp, exp1, exp2, &op1, &op2);
11675 if(op1.type)
11676 FreeType(op1.type);
11677 if(op2.type)
11678 FreeType(op2.type);
11679 break;
11680 }
11681 case 5:
11682 case 32:
11683 {
11684 struct Expression * e, * n;
11685
11686 for(e = (*exp->list).first; e; e = n)
11687 {
11688 n = e->next;
11689 if(!n)
11690 {
11691 struct __ecereNameSpace__ecere__sys__OldList * list = exp->list;
11692
11693 ComputeExpression(e);
11694 FreeType(exp->expType);
11695 FreeType(exp->destType);
11696 *exp = *e;
11697 ((e ? (__ecereClass_Expression->Destructor ? __ecereClass_Expression->Destructor(e) : 0, __ecereNameSpace__ecere__com__eSystem_Delete(e)) : 0), e = 0);
11698 (__ecereNameSpace__ecere__com__eSystem_Delete(list), list = 0);
11699 }
11700 else
11701 {
11702 FreeExpression(e);
11703 }
11704 }
11705 break;
11706 }
11707 case 8:
11708 {
11709 struct Expression * memberExp = exp->member.exp;
11710 struct Identifier * memberID = exp->member.member;
11711 struct Type * type;
11712
11713 ComputeExpression(exp->member.exp);
11714 type = exp->member.exp->expType;
11715 if(type)
11716 {
11717 struct __ecereNameSpace__ecere__com__Class * _class = (exp->member.member && exp->member.member->classSym) ? exp->member.member->classSym->registered : (((type->kind == 8 || type->kind == 19) && type->_class) ? type->_class->registered : (((void *)0)));
11718 struct __ecereNameSpace__ecere__com__Property * prop = (((void *)0));
11719 struct __ecereNameSpace__ecere__com__DataMember * member = (((void *)0));
11720 struct __ecereNameSpace__ecere__com__Class * convertTo = (((void *)0));
11721
11722 if(type->kind == 19 && exp->member.exp->type == 24)
11723 _class = __ecereNameSpace__ecere__com__eSystem_FindClass(privateModule, "ecere::com::Class");
11724 if(!_class)
11725 {
11726 char string[256];
11727 struct Symbol * classSym;
11728
11729 string[0] = '\0';
11730 PrintTypeNoConst(type, string, 0x0, 0x1);
11731 classSym = FindClass(string);
11732 _class = classSym ? classSym->registered : (((void *)0));
11733 }
11734 if(exp->member.member)
11735 {
11736 prop = __ecereNameSpace__ecere__com__eClass_FindProperty(_class, exp->member.member->string, privateModule);
11737 if(!prop)
11738 member = __ecereNameSpace__ecere__com__eClass_FindDataMember(_class, exp->member.member->string, privateModule, (((void *)0)), (((void *)0)));
11739 }
11740 if(!prop && !member && _class && exp->member.member)
11741 {
11742 struct Symbol * classSym = FindClass(exp->member.member->string);
11743
11744 convertTo = _class;
11745 _class = classSym ? classSym->registered : (((void *)0));
11746 prop = __ecereNameSpace__ecere__com__eClass_FindProperty(_class, convertTo->fullName, privateModule);
11747 }
11748 if(prop)
11749 {
11750 if(prop->compiled)
11751 {
11752 struct Type * type = prop->dataType;
11753
11754 if(_class->type == 3)
11755 {
11756 if(type->kind == 8)
11757 {
11758 struct __ecereNameSpace__ecere__com__Class * _class = type->_class->registered;
11759
11760 if(_class->type == 3)
11761 {
11762 if(!_class->dataType)
11763 _class->dataType = ProcessTypeString(_class->dataTypeString, 0x0);
11764 type = _class->dataType;
11765 }
11766 }
11767 switch(type->kind)
11768 {
11769 case 6:
11770 {
11771 float value;
11772 float (* Get)(float) = (void *)prop->Get;
11773
11774 GetFloat(exp->member.exp, &value);
11775 exp->constant = PrintFloat(Get ? Get(value) : value);
11776 exp->type = 2;
11777 break;
11778 }
11779 case 7:
11780 {
11781 double value;
11782 double (* Get)(double);
11783
11784 GetDouble(exp->member.exp, &value);
11785 if(convertTo)
11786 Get = (void *)prop->Set;
11787 else
11788 Get = (void *)prop->Get;
11789 exp->constant = PrintDouble(Get ? Get(value) : value);
11790 exp->type = 2;
11791 break;
11792 }
11793 }
11794 }
11795 else
11796 {
11797 if(convertTo)
11798 {
11799 struct Expression * value = exp->member.exp;
11800 struct Type * type;
11801
11802 if(!prop->dataType)
11803 ProcessPropertyType(prop);
11804 type = prop->dataType;
11805 if(!type)
11806 {
11807 }
11808 else if(_class->type == 1)
11809 {
11810 switch(type->kind)
11811 {
11812 case 8:
11813 {
11814 struct __ecereNameSpace__ecere__com__Class * propertyClass = type->_class->registered;
11815
11816 if(propertyClass->type == 1 && value->type == 1)
11817 {
11818 void (* Set)(void *, void *) = (void *)prop->Set;
11819
11820 exp->instance = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Instantiation);
11821 exp->instance->data = __ecereNameSpace__ecere__com__eSystem_New0(sizeof(unsigned char) * (_class->structSize));
11822 exp->instance->_class = MkSpecifierName(_class->fullName);
11823 exp->instance->loc = exp->loc;
11824 exp->type = 1;
11825 Set(exp->instance->data, value->instance->data);
11826 PopulateInstance(exp->instance);
11827 }
11828 break;
11829 }
11830 case 3:
11831 {
11832 int intValue;
11833 void (* Set)(void *, int) = (void *)prop->Set;
11834
11835 exp->instance = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Instantiation);
11836 exp->instance->data = __ecereNameSpace__ecere__com__eSystem_New0(sizeof(unsigned char) * (_class->structSize));
11837 exp->instance->_class = MkSpecifierName(_class->fullName);
11838 exp->instance->loc = exp->loc;
11839 exp->type = 1;
11840 GetInt(value, &intValue);
11841 Set(exp->instance->data, intValue);
11842 PopulateInstance(exp->instance);
11843 break;
11844 }
11845 case 4:
11846 {
11847 long long intValue;
11848 void (* Set)(void *, long long) = (void *)prop->Set;
11849
11850 exp->instance = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Instantiation);
11851 exp->instance->data = __ecereNameSpace__ecere__com__eSystem_New0(sizeof(unsigned char) * (_class->structSize));
11852 exp->instance->_class = MkSpecifierName(_class->fullName);
11853 exp->instance->loc = exp->loc;
11854 exp->type = 1;
11855 GetInt64(value, &intValue);
11856 Set(exp->instance->data, intValue);
11857 PopulateInstance(exp->instance);
11858 break;
11859 }
11860 case 22:
11861 {
11862 intptr_t intValue;
11863 void (* Set)(void *, intptr_t) = (void *)prop->Set;
11864
11865 exp->instance = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Instantiation);
11866 exp->instance->data = __ecereNameSpace__ecere__com__eSystem_New0(sizeof(unsigned char) * (_class->structSize));
11867 exp->instance->_class = MkSpecifierName(_class->fullName);
11868 exp->instance->loc = exp->loc;
11869 exp->type = 1;
11870 GetIntPtr(value, &intValue);
11871 Set(exp->instance->data, intValue);
11872 PopulateInstance(exp->instance);
11873 break;
11874 }
11875 case 23:
11876 {
11877 ssize_t intValue;
11878 void (* Set)(void *, ssize_t) = (void *)prop->Set;
11879
11880 exp->instance = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Instantiation);
11881 exp->instance->data = __ecereNameSpace__ecere__com__eSystem_New0(sizeof(unsigned char) * (_class->structSize));
11882 exp->instance->_class = MkSpecifierName(_class->fullName);
11883 exp->instance->loc = exp->loc;
11884 exp->type = 1;
11885 GetIntSize(value, &intValue);
11886 Set(exp->instance->data, intValue);
11887 PopulateInstance(exp->instance);
11888 break;
11889 }
11890 case 7:
11891 {
11892 double doubleValue;
11893 void (* Set)(void *, double) = (void *)prop->Set;
11894
11895 exp->instance = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Instantiation);
11896 exp->instance->data = __ecereNameSpace__ecere__com__eSystem_New0(sizeof(unsigned char) * (_class->structSize));
11897 exp->instance->_class = MkSpecifierName(_class->fullName);
11898 exp->instance->loc = exp->loc;
11899 exp->type = 1;
11900 GetDouble(value, &doubleValue);
11901 Set(exp->instance->data, doubleValue);
11902 PopulateInstance(exp->instance);
11903 break;
11904 }
11905 }
11906 }
11907 else if(_class->type == 2)
11908 {
11909 switch(type->kind)
11910 {
11911 case 8:
11912 {
11913 struct __ecereNameSpace__ecere__com__Class * propertyClass = type->_class->registered;
11914
11915 if(propertyClass->type == 1 && value->instance->data)
11916 {
11917 unsigned int (* Set)(void *) = (void *)prop->Set;
11918 unsigned int bits = Set(value->instance->data);
11919
11920 exp->constant = PrintHexUInt(bits);
11921 exp->type = 2;
11922 break;
11923 }
11924 else if(_class->type == 2)
11925 {
11926 unsigned int value;
11927 unsigned int (* Set)(unsigned int) = (void *)prop->Set;
11928 unsigned int bits;
11929
11930 GetUInt(exp->member.exp, &value);
11931 bits = Set(value);
11932 exp->constant = PrintHexUInt(bits);
11933 exp->type = 2;
11934 }
11935 }
11936 }
11937 }
11938 }
11939 else
11940 {
11941 if(_class->type == 2)
11942 {
11943 unsigned int value;
11944
11945 GetUInt(exp->member.exp, &value);
11946 switch(type->kind)
11947 {
11948 case 8:
11949 {
11950 struct __ecereNameSpace__ecere__com__Class * _class = type->_class->registered;
11951
11952 if(_class->type == 1)
11953 {
11954 void (* Get)(unsigned int, void *) = (void *)prop->Get;
11955
11956 exp->instance = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Instantiation);
11957 exp->instance->data = __ecereNameSpace__ecere__com__eSystem_New0(sizeof(unsigned char) * (_class->structSize));
11958 exp->instance->_class = MkSpecifierName(_class->fullName);
11959 exp->instance->loc = exp->loc;
11960 exp->type = 1;
11961 Get(value, exp->instance->data);
11962 PopulateInstance(exp->instance);
11963 }
11964 else if(_class->type == 2)
11965 {
11966 unsigned int (* Get)(unsigned int) = (void *)prop->Get;
11967 uint64 bits = Get(value);
11968
11969 exp->constant = PrintHexUInt64(bits);
11970 exp->type = 2;
11971 }
11972 break;
11973 }
11974 }
11975 }
11976 else if(_class->type == 1)
11977 {
11978 char * value = (exp->member.exp->type == 1) ? exp->member.exp->instance->data : (((void *)0));
11979
11980 switch(type->kind)
11981 {
11982 case 8:
11983 {
11984 struct __ecereNameSpace__ecere__com__Class * _class = type->_class->registered;
11985
11986 if(_class->type == 1 && value)
11987 {
11988 void (* Get)(void *, void *) = (void *)prop->Get;
11989
11990 exp->instance = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Instantiation);
11991 exp->instance->data = __ecereNameSpace__ecere__com__eSystem_New0(sizeof(unsigned char) * (_class->structSize));
11992 exp->instance->_class = MkSpecifierName(_class->fullName);
11993 exp->instance->loc = exp->loc;
11994 exp->type = 1;
11995 Get(value, exp->instance->data);
11996 PopulateInstance(exp->instance);
11997 }
11998 break;
11999 }
12000 }
12001 }
12002 }
12003 }
12004 }
12005 else
12006 {
12007 exp->isConstant = 0x0;
12008 }
12009 }
12010 else if(member)
12011 {
12012 }
12013 }
12014 if(exp->type != 8)
12015 {
12016 FreeExpression(memberExp);
12017 FreeIdentifier(memberID);
12018 }
12019 break;
12020 }
12021 case 10:
12022 {
12023 struct Type * type = ProcessType(exp->typeName->qualifiers, exp->typeName->declarator);
12024
12025 FreeExpContents(exp);
12026 exp->constant = PrintUInt(ComputeTypeSize(type));
12027 exp->type = 2;
12028 FreeType(type);
12029 break;
12030 }
12031 case 15:
12032 {
12033 struct Symbol * classSym = exp->_class->symbol;
12034
12035 if(classSym && classSym->registered)
12036 {
12037 if(classSym->registered->fixed)
12038 {
12039 FreeSpecifier(exp->_class);
12040 exp->constant = PrintUInt(classSym->registered->templateClass ? classSym->registered->templateClass->structSize : classSym->registered->structSize);
12041 exp->type = 2;
12042 }
12043 else
12044 {
12045 char className[1024];
12046
12047 strcpy(className, "__ecereClass_");
12048 FullClassNameCat(className, classSym->string, 0x1);
12049 MangleClassName(className);
12050 DeclareClass(classSym, className);
12051 FreeExpContents(exp);
12052 exp->type = 9;
12053 exp->member.exp = MkExpIdentifier(MkIdentifier(className));
12054 exp->member.member = MkIdentifier("structSize");
12055 }
12056 }
12057 break;
12058 }
12059 case 11:
12060 {
12061 struct Type * type;
12062 struct Expression * e = exp;
12063
12064 if(exp->type == 11)
12065 {
12066 if(exp->cast.exp)
12067 ComputeExpression(exp->cast.exp);
12068 e = exp->cast.exp;
12069 }
12070 if(e && exp->expType)
12071 {
12072 type = exp->expType;
12073 if(type->kind == 8)
12074 {
12075 struct __ecereNameSpace__ecere__com__Class * _class = type->_class->registered;
12076
12077 if(_class && (_class->type == 3 || _class->type == 2))
12078 {
12079 if(!_class->dataType)
12080 _class->dataType = ProcessTypeString(_class->dataTypeString, 0x0);
12081 type = _class->dataType;
12082 }
12083 }
12084 switch(type->kind)
12085 {
12086 case 24:
12087 case 1:
12088 if(type->isSigned)
12089 {
12090 char value;
12091
12092 GetChar(e, &value);
12093 FreeExpContents(exp);
12094 exp->constant = PrintChar(value);
12095 exp->type = 2;
12096 }
12097 else
12098 {
12099 unsigned char value;
12100
12101 GetUChar(e, &value);
12102 FreeExpContents(exp);
12103 exp->constant = PrintUChar(value);
12104 exp->type = 2;
12105 }
12106 break;
12107 case 2:
12108 if(type->isSigned)
12109 {
12110 short value;
12111
12112 GetShort(e, &value);
12113 FreeExpContents(exp);
12114 exp->constant = PrintShort(value);
12115 exp->type = 2;
12116 }
12117 else
12118 {
12119 unsigned short value;
12120
12121 GetUShort(e, &value);
12122 FreeExpContents(exp);
12123 exp->constant = PrintUShort(value);
12124 exp->type = 2;
12125 }
12126 break;
12127 case 3:
12128 if(type->isSigned)
12129 {
12130 int value;
12131
12132 GetInt(e, &value);
12133 FreeExpContents(exp);
12134 exp->constant = PrintInt(value);
12135 exp->type = 2;
12136 }
12137 else
12138 {
12139 unsigned int value;
12140
12141 GetUInt(e, &value);
12142 FreeExpContents(exp);
12143 exp->constant = PrintUInt(value);
12144 exp->type = 2;
12145 }
12146 break;
12147 case 4:
12148 if(type->isSigned)
12149 {
12150 long long value;
12151
12152 GetInt64(e, &value);
12153 FreeExpContents(exp);
12154 exp->constant = PrintInt64(value);
12155 exp->type = 2;
12156 }
12157 else
12158 {
12159 uint64 value;
12160
12161 GetUInt64(e, &value);
12162 FreeExpContents(exp);
12163 exp->constant = PrintUInt64(value);
12164 exp->type = 2;
12165 }
12166 break;
12167 case 22:
12168 if(type->isSigned)
12169 {
12170 intptr_t value;
12171
12172 GetIntPtr(e, &value);
12173 FreeExpContents(exp);
12174 exp->constant = PrintInt64((long long)value);
12175 exp->type = 2;
12176 }
12177 else
12178 {
12179 uintptr_t value;
12180
12181 GetUIntPtr(e, &value);
12182 FreeExpContents(exp);
12183 exp->constant = PrintUInt64((uint64)value);
12184 exp->type = 2;
12185 }
12186 break;
12187 case 23:
12188 if(type->isSigned)
12189 {
12190 ssize_t value;
12191
12192 GetIntSize(e, &value);
12193 FreeExpContents(exp);
12194 exp->constant = PrintInt64((long long)value);
12195 exp->type = 2;
12196 }
12197 else
12198 {
12199 size_t value;
12200
12201 GetUIntSize(e, &value);
12202 FreeExpContents(exp);
12203 exp->constant = PrintUInt64((uint64)value);
12204 exp->type = 2;
12205 }
12206 break;
12207 case 6:
12208 {
12209 float value;
12210
12211 GetFloat(e, &value);
12212 FreeExpContents(exp);
12213 exp->constant = PrintFloat(value);
12214 exp->type = 2;
12215 break;
12216 }
12217 case 7:
12218 {
12219 double value;
12220
12221 GetDouble(e, &value);
12222 FreeExpContents(exp);
12223 exp->constant = PrintDouble(value);
12224 exp->type = 2;
12225 break;
12226 }
12227 }
12228 }
12229 break;
12230 }
12231 case 12:
12232 {
12233 struct Operand op1 = 
12234 {
12235 0, 0, 0, 0, 
12236 {
12237 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
12238 }
12239 };
12240 struct Operand op2 = 
12241 {
12242 0, 0, 0, 0, 
12243 {
12244 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
12245 }
12246 };
12247 struct Operand op3 = 
12248 {
12249 0, 0, 0, 0, 
12250 {
12251 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
12252 }
12253 };
12254
12255 if(exp->cond.exp)
12256 ComputeExpression((*exp->cond.exp).last);
12257 if(exp->cond.elseExp)
12258 ComputeExpression(exp->cond.elseExp);
12259 if(exp->cond.cond)
12260 ComputeExpression(exp->cond.cond);
12261 op1 = GetOperand(exp->cond.cond);
12262 if(op1.type)
12263 op1.type->refCount++;
12264 op2 = GetOperand((*exp->cond.exp).last);
12265 if(op2.type)
12266 op2.type->refCount++;
12267 op3 = GetOperand(exp->cond.elseExp);
12268 if(op3.type)
12269 op3.type->refCount++;
12270 if(op1.ops.Cond)
12271 {
12272 FreeExpContents(exp);
12273 op1.ops.Cond(exp, &op1, &op2, &op3);
12274 }
12275 if(op1.type)
12276 FreeType(op1.type);
12277 if(op2.type)
12278 FreeType(op2.type);
12279 if(op3.type)
12280 FreeType(op3.type);
12281 break;
12282 }
12283 }
12284 }
12285
12286 void ApplyAnyObjectLogic(struct Expression * e);
12287
12288 extern void CopyTypeInto(struct Type * type, struct Type * src);
12289
12290 static unsigned int CheckExpressionType(struct Expression * exp, struct Type * destType, unsigned int skipUnitBla)
12291 {
12292 unsigned int result = 0x1;
12293
12294 if(destType)
12295 {
12296 struct __ecereNameSpace__ecere__sys__OldList converts = 
12297 {
12298 0, 0, 0, 0, 0
12299 };
12300 struct Conversion * convert;
12301
12302 if(destType->kind == 0)
12303 return 0x0;
12304 if(!MatchTypeExpression(exp, destType, &converts, skipUnitBla))
12305 result = 0x0;
12306 if(converts.count)
12307 {
12308 for(convert = converts.first; convert; convert = convert->next)
12309 {
12310 unsigned int empty = !(convert->isGet ? (void *)convert->convert->Get : (void *)convert->convert->Set);
12311
12312 if(!empty)
12313 {
12314 struct Expression * newExp = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Expression);
12315 int objectType = exp->expType ? exp->expType->classObjectType : 0;
12316
12317 *newExp = *exp;
12318 newExp->destType = (((void *)0));
12319 if(convert->isGet)
12320 {
12321 exp->type = 8;
12322 exp->addedThis = 0x1;
12323 exp->member.exp = newExp;
12324 FreeType(exp->member.exp->expType);
12325 exp->member.exp->expType = MkClassType(convert->convert->_class->fullName);
12326 exp->member.exp->expType->classObjectType = objectType;
12327 exp->member.member = MkIdentifier(convert->convert->dataTypeString);
12328 exp->member.memberType = 1;
12329 exp->expType = convert->resultType ? convert->resultType : convert->convert->dataType;
12330 exp->needCast = 0x1;
12331 if(exp->expType)
12332 exp->expType->refCount++;
12333 ApplyAnyObjectLogic(exp->member.exp);
12334 }
12335 else
12336 {
12337 {
12338 exp->type = 8;
12339 exp->addedThis = 0x1;
12340 exp->member.exp = newExp;
12341 if(newExp->expType && newExp->expType->kind == 8 && newExp->expType->_class && newExp->expType->_class->registered && newExp->expType->_class->registered->type == 5)
12342 {
12343 newExp->byReference = 0x1;
12344 }
12345 FreeType(exp->member.exp->expType);
12346 exp->member.exp->expType = (((void *)0));
12347 if(convert->convert->dataType)
12348 {
12349 exp->member.exp->expType = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
12350 CopyTypeInto(exp->member.exp->expType, convert->convert->dataType);
12351 exp->member.exp->expType->refCount = 1;
12352 exp->member.exp->expType->classObjectType = objectType;
12353 ApplyAnyObjectLogic(exp->member.exp);
12354 }
12355 exp->member.member = MkIdentifier(convert->convert->_class->fullName);
12356 exp->member.memberType = 4;
12357 exp->expType = convert->resultType ? convert->resultType : MkClassType(convert->convert->_class->fullName);
12358 exp->needCast = 0x1;
12359 if(convert->resultType)
12360 convert->resultType->refCount++;
12361 }
12362 }
12363 }
12364 else
12365 {
12366 FreeType(exp->expType);
12367 if(convert->isGet)
12368 {
12369 exp->expType = convert->resultType ? convert->resultType : convert->convert->dataType;
12370 exp->needCast = 0x1;
12371 if(exp->expType)
12372 exp->expType->refCount++;
12373 }
12374 else
12375 {
12376 exp->expType = convert->resultType ? convert->resultType : MkClassType(convert->convert->_class->fullName);
12377 exp->needCast = 0x1;
12378 if(convert->resultType)
12379 convert->resultType->refCount++;
12380 }
12381 }
12382 }
12383 if(exp->isConstant && inCompiler)
12384 ComputeExpression(exp);
12385 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Free(&converts, FreeConvert);
12386 }
12387 if(!result && exp->expType && converts.count)
12388 {
12389 result = MatchTypes(exp->expType, exp->destType, (((void *)0)), (((void *)0)), (((void *)0)), 0x1, 0x1, 0x0, 0x0);
12390 }
12391 if(!result && exp->expType && exp->destType)
12392 {
12393 if((exp->destType->kind == 8 && exp->expType->kind == 13 && exp->expType->type->kind == 8 && exp->expType->type->_class == exp->destType->_class && exp->destType->_class->registered && exp->destType->_class->registered->type == 1) || (exp->expType->kind == 8 && exp->destType->kind == 13 && exp->destType->type->kind == 8 && exp->destType->type->_class == exp->expType->_class && exp->expType->_class->registered && exp->expType->_class->registered->type == 1))
12394 result = 0x1;
12395 }
12396 }
12397 return result;
12398 }
12399
12400 extern struct Statement * MkCompoundStmt(struct __ecereNameSpace__ecere__sys__OldList * declarations, struct __ecereNameSpace__ecere__sys__OldList * statements);
12401
12402 extern struct Statement * MkExpressionStmt(struct __ecereNameSpace__ecere__sys__OldList * expressions);
12403
12404 extern struct Expression * MkExpMember(struct Expression * expression, struct Identifier * member);
12405
12406 void CheckTemplateTypes(struct Expression * exp)
12407 {
12408 if(exp->destType && exp->destType->passAsTemplate && exp->expType && exp->expType->kind != 20 && !exp->expType->passAsTemplate)
12409 {
12410 struct Expression * newExp = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Expression);
12411 struct Statement * compound;
12412 struct Context * context;
12413
12414 *newExp = *exp;
12415 if(exp->destType)
12416 exp->destType->refCount++;
12417 if(exp->expType)
12418 exp->expType->refCount++;
12419 newExp->prev = (((void *)0));
12420 newExp->next = (((void *)0));
12421 switch(exp->expType->kind)
12422 {
12423 case 7:
12424 if(exp->destType->classObjectType)
12425 {
12426 if(exp->destType)
12427 exp->destType->refCount--;
12428 if(exp->expType)
12429 exp->expType->refCount--;
12430 ((newExp ? (__ecereClass_Expression->Destructor ? __ecereClass_Expression->Destructor(newExp) : 0, __ecereNameSpace__ecere__com__eSystem_Delete(newExp)) : 0), newExp = 0);
12431 }
12432 else
12433 {
12434 struct __ecereNameSpace__ecere__sys__OldList * specs;
12435 struct __ecereNameSpace__ecere__sys__OldList * unionDefs = MkList();
12436 struct __ecereNameSpace__ecere__sys__OldList * statements = MkList();
12437
12438 context = PushContext();
12439 ListAdd(unionDefs, MkClassDefDeclaration(MkStructDeclaration(MkListOne(MkSpecifier(DOUBLE)), MkListOne(MkDeclaratorIdentifier(MkIdentifier("d"))), (((void *)0)))));
12440 ListAdd(unionDefs, MkClassDefDeclaration(MkStructDeclaration(MkListOne(MkSpecifierName("uint64")), MkListOne(MkDeclaratorIdentifier(MkIdentifier("i"))), (((void *)0)))));
12441 specs = MkListOne(MkStructOrUnion(4, (((void *)0)), unionDefs));
12442 exp->type = 23;
12443 exp->compound = MkCompoundStmt(MkListOne(MkDeclaration(specs, MkListOne(MkInitDeclarator(MkDeclaratorIdentifier(MkIdentifier("__internal_union")), (((void *)0)))))), statements);
12444 ListAdd(statements, MkExpressionStmt(MkListOne(MkExpOp(MkExpMember(MkExpIdentifier(MkIdentifier("__internal_union")), MkIdentifier("d")), '=', newExp))));
12445 ListAdd(statements, MkExpressionStmt(MkListOne(MkExpMember(MkExpIdentifier(MkIdentifier("__internal_union")), MkIdentifier("i")))));
12446 exp->compound->compound.context = context;
12447 PopContext(context);
12448 }
12449 break;
12450 default:
12451 exp->type = 11;
12452 exp->cast.typeName = MkTypeName(MkListOne(MkSpecifierName("uint64")), (((void *)0)));
12453 exp->cast.exp = MkExpBrackets(MkListOne(newExp));
12454 break;
12455 }
12456 }
12457 else if(exp->expType && exp->expType->passAsTemplate && exp->destType && ((unsigned int)((exp->usage & 0x1) >> 0)) && exp->destType->kind != 20 && !exp->destType->passAsTemplate)
12458 {
12459 struct Expression * newExp = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Expression);
12460 struct Statement * compound;
12461 struct Context * context;
12462
12463 *newExp = *exp;
12464 if(exp->destType)
12465 exp->destType->refCount++;
12466 if(exp->expType)
12467 exp->expType->refCount++;
12468 newExp->prev = (((void *)0));
12469 newExp->next = (((void *)0));
12470 switch(exp->expType->kind)
12471 {
12472 case 7:
12473 if(exp->destType->classObjectType)
12474 {
12475 if(exp->destType)
12476 exp->destType->refCount--;
12477 if(exp->expType)
12478 exp->expType->refCount--;
12479 ((newExp ? (__ecereClass_Expression->Destructor ? __ecereClass_Expression->Destructor(newExp) : 0, __ecereNameSpace__ecere__com__eSystem_Delete(newExp)) : 0), newExp = 0);
12480 }
12481 else
12482 {
12483 struct __ecereNameSpace__ecere__sys__OldList * specs;
12484 struct __ecereNameSpace__ecere__sys__OldList * unionDefs = MkList();
12485 struct __ecereNameSpace__ecere__sys__OldList * statements = MkList();
12486
12487 context = PushContext();
12488 ListAdd(unionDefs, MkClassDefDeclaration(MkStructDeclaration(MkListOne(MkSpecifier(DOUBLE)), MkListOne(MkDeclaratorIdentifier(MkIdentifier("d"))), (((void *)0)))));
12489 ListAdd(unionDefs, MkClassDefDeclaration(MkStructDeclaration(MkListOne(MkSpecifierName("uint64")), MkListOne(MkDeclaratorIdentifier(MkIdentifier("i"))), (((void *)0)))));
12490 specs = MkListOne(MkStructOrUnion(4, (((void *)0)), unionDefs));
12491 exp->type = 23;
12492 exp->compound = MkCompoundStmt(MkListOne(MkDeclaration(specs, MkListOne(MkInitDeclarator(MkDeclaratorIdentifier(MkIdentifier("__internal_union")), (((void *)0)))))), statements);
12493 ListAdd(statements, MkExpressionStmt(MkListOne(MkExpOp(MkExpMember(MkExpIdentifier(MkIdentifier("__internal_union")), MkIdentifier("i")), '=', newExp))));
12494 ListAdd(statements, MkExpressionStmt(MkListOne(MkExpMember(MkExpIdentifier(MkIdentifier("__internal_union")), MkIdentifier("d")))));
12495 exp->compound->compound.context = context;
12496 PopContext(context);
12497 }
12498 break;
12499 case 8:
12500 {
12501 if(exp->expType->_class && exp->expType->_class->registered && exp->expType->_class->registered->type == 1)
12502 {
12503 exp->type = 5;
12504 exp->list = MkListOne(MkExpOp((((void *)0)), '*', MkExpCast(MkTypeName(MkListOne(MkSpecifierName(exp->expType->_class->string)), MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), (((void *)0)))), newExp)));
12505 ProcessExpressionType((*exp->list).first);
12506 break;
12507 }
12508 else
12509 {
12510 exp->type = 5;
12511 exp->list = MkListOne(MkExpCast(MkTypeName(MkListOne(MkSpecifierName(exp->expType->_class->string)), (((void *)0))), newExp));
12512 newExp->needCast = 0x1;
12513 ProcessExpressionType((*exp->list).first);
12514 break;
12515 }
12516 }
12517 default:
12518 {
12519 if(exp->expType->kind == 20)
12520 {
12521 struct Type * type = ProcessTemplateParameterType(exp->expType->templateParameter);
12522
12523 if(type)
12524 {
12525 FreeType(exp->destType);
12526 FreeType(exp->expType);
12527 ((newExp ? (__ecereClass_Expression->Destructor ? __ecereClass_Expression->Destructor(newExp) : 0, __ecereNameSpace__ecere__com__eSystem_Delete(newExp)) : 0), newExp = 0);
12528 break;
12529 }
12530 }
12531 if(newExp->type == 8 && newExp->member.memberType == 3)
12532 {
12533 exp->type = 4;
12534 exp->op.op = '*';
12535 exp->op.exp1 = (((void *)0));
12536 exp->op.exp2 = MkExpCast(MkTypeName(MkListOne(MkSpecifierName("uint64")), MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), (((void *)0)))), MkExpBrackets(MkListOne(MkExpOp((((void *)0)), '&', newExp))));
12537 }
12538 else
12539 {
12540 char typeString[1024];
12541 struct Declarator * decl;
12542 struct __ecereNameSpace__ecere__sys__OldList * specs = MkList();
12543
12544 typeString[0] = '\0';
12545 PrintType(exp->expType, typeString, 0x0, 0x0);
12546 decl = SpecDeclFromString(typeString, specs, (((void *)0)));
12547 exp->type = 11;
12548 exp->cast.typeName = MkTypeName(specs, decl);
12549 exp->cast.exp = MkExpBrackets(MkListOne(newExp));
12550 exp->cast.exp->needCast = 0x1;
12551 }
12552 break;
12553 }
12554 }
12555 }
12556 }
12557
12558 extern int strncmp(const char * , const char * , size_t n);
12559
12560 struct __ecereNameSpace__ecere__sys__BTNode * __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_FindPrefix(struct __ecereNameSpace__ecere__sys__BinaryTree * this, char *  key);
12561
12562 static struct Symbol * ScanWithNameSpace(struct __ecereNameSpace__ecere__sys__BinaryTree * tree, char * nameSpace, char * name)
12563 {
12564 int nsLen = strlen(nameSpace);
12565 struct Symbol * symbol;
12566
12567 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)))
12568 {
12569 char * s = symbol->string;
12570
12571 if(!strncmp(s, nameSpace, nsLen))
12572 {
12573 int c;
12574 char * namePart;
12575
12576 for(c = strlen(s) - 1; c >= 0; c--)
12577 if(s[c] == ':')
12578 break;
12579 namePart = s + c + 1;
12580 if(!strcmp(namePart, name))
12581 {
12582 return symbol;
12583 }
12584 }
12585 else
12586 break;
12587 }
12588 return (((void *)0));
12589 }
12590
12591 static struct Symbol * FindWithNameSpace(struct __ecereNameSpace__ecere__sys__BinaryTree * tree, char * name)
12592 {
12593 int c;
12594 char nameSpace[1024];
12595 char * namePart;
12596 unsigned int gotColon = 0x0;
12597
12598 nameSpace[0] = '\0';
12599 for(c = strlen(name) - 1; c >= 0; c--)
12600 if(name[c] == ':')
12601 {
12602 gotColon = 0x1;
12603 break;
12604 }
12605 namePart = name + c + 1;
12606 while(c >= 0 && name[c] == ':')
12607 c--;
12608 if(c >= 0)
12609 {
12610 struct Symbol * symbol = (struct Symbol *)__ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_FindString(tree, name);
12611
12612 if(symbol)
12613 return symbol;
12614 memcpy(nameSpace, name, c + 1);
12615 nameSpace[c + 1] = (char)0;
12616 return ScanWithNameSpace(tree, nameSpace, namePart);
12617 }
12618 else if(gotColon)
12619 {
12620 struct Symbol * symbol = (struct Symbol *)__ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_FindString(tree, namePart);
12621
12622 return symbol;
12623 }
12624 else
12625 {
12626 struct Symbol * symbol = (struct Symbol *)__ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_FindString(tree, namePart);
12627
12628 if(symbol)
12629 return symbol;
12630 return ScanWithNameSpace(tree, "", namePart);
12631 }
12632 return (((void *)0));
12633 }
12634
12635 static void ProcessDeclaration(struct Declaration * decl);
12636
12637 struct Symbol * FindSymbol(char * name, struct Context * startContext, struct Context * endContext, unsigned int isStruct, unsigned int globalNameSpace)
12638 {
12639 struct Context * ctx;
12640 struct Symbol * symbol = (((void *)0));
12641
12642 for(ctx = startContext; ctx && !symbol; ctx = ctx->parent)
12643 {
12644 if(ctx == globalContext && !globalNameSpace && ctx->hasNameSpace)
12645 {
12646 symbol = (((void *)0));
12647 if(thisNameSpace)
12648 {
12649 char curName[1024];
12650
12651 strcpy(curName, thisNameSpace);
12652 strcat(curName, "::");
12653 strcat(curName, name);
12654 symbol = FindWithNameSpace(isStruct ? &ctx->structSymbols : &ctx->symbols, curName);
12655 }
12656 if(!symbol)
12657 symbol = FindWithNameSpace(isStruct ? &ctx->structSymbols : &ctx->symbols, name);
12658 }
12659 else
12660 symbol = (struct Symbol *)__ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_FindString((isStruct ? &ctx->structSymbols : &ctx->symbols), name);
12661 if(symbol || ctx == endContext)
12662 break;
12663 }
12664 if(inCompiler && curExternal && symbol && ctx == globalContext && curExternal->symbol && symbol->id > curExternal->symbol->idCode && symbol->pointerExternal)
12665 {
12666 if(symbol->pointerExternal->type == 0)
12667 {
12668 struct FunctionDefinition * function = symbol->pointerExternal->function;
12669 struct Context * tmpContext = curContext;
12670
12671 curContext = (((void *)0));
12672 symbol->pointerExternal = MkExternalDeclaration(MkDeclaration(CopyList(function->specifiers, CopySpecifier), MkListOne(MkInitDeclarator(CopyDeclarator(function->declarator), (((void *)0))))));
12673 curContext = tmpContext;
12674 symbol->pointerExternal->symbol = symbol;
12675 DeclareType(symbol->type, 0x1, 0x1);
12676 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*ast), curExternal->prev, symbol->pointerExternal);
12677 symbol->id = curExternal->symbol->idCode;
12678 }
12679 else if(symbol->pointerExternal->type == 1 && curExternal->symbol->idCode < symbol->pointerExternal->symbol->id)
12680 {
12681 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Move((&*ast), symbol->pointerExternal, curExternal->prev);
12682 symbol->id = curExternal->symbol->idCode;
12683 }
12684 }
12685 return symbol;
12686 }
12687
12688 static void GetTypeSpecs(struct Type * type, struct __ecereNameSpace__ecere__sys__OldList * specs)
12689 {
12690 if(!type->isSigned && type->kind != 22 && type->kind != 23)
12691 ListAdd(specs, MkSpecifier(UNSIGNED));
12692 switch(type->kind)
12693 {
12694 case 8:
12695 {
12696 if(type->_class->registered)
12697 {
12698 if(!type->_class->registered->dataType)
12699 type->_class->registered->dataType = ProcessTypeString(type->_class->registered->dataTypeString, 0x0);
12700 GetTypeSpecs(type->_class->registered->dataType, specs);
12701 }
12702 break;
12703 }
12704 case 7:
12705 ListAdd(specs, MkSpecifier(DOUBLE));
12706 break;
12707 case 6:
12708 ListAdd(specs, MkSpecifier(FLOAT));
12709 break;
12710 case 1:
12711 ListAdd(specs, MkSpecifier(CHAR));
12712 break;
12713 case 24:
12714 ListAdd(specs, MkSpecifier(_BOOL));
12715 break;
12716 case 2:
12717 ListAdd(specs, MkSpecifier(SHORT));
12718 break;
12719 case 4:
12720 ListAdd(specs, MkSpecifier(INT64));
12721 break;
12722 case 22:
12723 ListAdd(specs, MkSpecifierName(type->isSigned ? "intptr" : "uintptr"));
12724 break;
12725 case 23:
12726 ListAdd(specs, MkSpecifierName(type->isSigned ? "intsize" : "uintsize"));
12727 break;
12728 case 3:
12729 default:
12730 ListAdd(specs, MkSpecifier(INT));
12731 break;
12732 }
12733 }
12734
12735 static void PrintArraySize(struct Type * arrayType, char * string)
12736 {
12737 char size[256];
12738
12739 size[0] = '\0';
12740 strcat(size, "[");
12741 if(arrayType->enumClass)
12742 strcat(size, arrayType->enumClass->string);
12743 else if(arrayType->arraySizeExp)
12744 PrintExpression(arrayType->arraySizeExp, size);
12745 strcat(size, "]");
12746 strcat(string, size);
12747 }
12748
12749 static void PrintTypeSpecs(struct Type * type, char * string, unsigned int fullName, unsigned int printConst)
12750 {
12751 if(type)
12752 {
12753 if(printConst && type->constant)
12754 strcat(string, "const ");
12755 switch(type->kind)
12756 {
12757 case 8:
12758 {
12759 struct Symbol * c = type->_class;
12760
12761 if(type->classObjectType == 2)
12762 strcat(string, "typed_object");
12763 else if(type->classObjectType == 3)
12764 strcat(string, "any_object");
12765 else
12766 {
12767 if(c && c->string)
12768 strcat(string, (fullName || !c->registered) ? c->string : c->registered->name);
12769 }
12770 if(type->byReference)
12771 strcat(string, " &");
12772 break;
12773 }
12774 case 0:
12775 strcat(string, "void");
12776 break;
12777 case 3:
12778 strcat(string, type->isSigned ? "int" : "uint");
12779 break;
12780 case 4:
12781 strcat(string, type->isSigned ? "int64" : "uint64");
12782 break;
12783 case 22:
12784 strcat(string, type->isSigned ? "intptr" : "uintptr");
12785 break;
12786 case 23:
12787 strcat(string, type->isSigned ? "intsize" : "uintsize");
12788 break;
12789 case 1:
12790 strcat(string, type->isSigned ? "char" : "byte");
12791 break;
12792 case 24:
12793 strcat(string, "_Bool");
12794 break;
12795 case 2:
12796 strcat(string, type->isSigned ? "short" : "uint16");
12797 break;
12798 case 6:
12799 strcat(string, "float");
12800 break;
12801 case 7:
12802 strcat(string, "double");
12803 break;
12804 case 9:
12805 if(type->enumName)
12806 {
12807 strcat(string, "struct ");
12808 strcat(string, type->enumName);
12809 }
12810 else if(type->typeName)
12811 strcat(string, type->typeName);
12812 else
12813 {
12814 struct Type * member;
12815
12816 strcat(string, "struct { ");
12817 for(member = type->members.first; member; member = member->next)
12818 {
12819 PrintType(member, string, 0x1, fullName);
12820 strcat(string, "; ");
12821 }
12822 strcat(string, "}");
12823 }
12824 break;
12825 case 10:
12826 if(type->enumName)
12827 {
12828 strcat(string, "union ");
12829 strcat(string, type->enumName);
12830 }
12831 else if(type->typeName)
12832 strcat(string, type->typeName);
12833 else
12834 {
12835 strcat(string, "union ");
12836 strcat(string, "(unnamed)");
12837 }
12838 break;
12839 case 15:
12840 if(type->enumName)
12841 {
12842 strcat(string, "enum ");
12843 strcat(string, type->enumName);
12844 }
12845 else if(type->typeName)
12846 strcat(string, type->typeName);
12847 else
12848 strcat(string, "int");
12849 break;
12850 case 14:
12851 strcat(string, "...");
12852 break;
12853 case 19:
12854 strcat(string, "subclass(");
12855 strcat(string, type->_class ? type->_class->string : "int");
12856 strcat(string, ")");
12857 break;
12858 case 20:
12859 strcat(string, type->templateParameter->identifier->string);
12860 break;
12861 case 21:
12862 strcat(string, "thisclass");
12863 break;
12864 case 17:
12865 strcat(string, "__builtin_va_list");
12866 break;
12867 }
12868 }
12869 }
12870
12871 extern char *  __ecereNameSpace__ecere__sys__RSearchString(char *  buffer, char *  subStr, int maxLen, unsigned int matchCase, unsigned int matchWord);
12872
12873 static void PrintName(struct Type * type, char * string, unsigned int fullName)
12874 {
12875 if(type->name && type->name[0])
12876 {
12877 if(fullName)
12878 strcat(string, type->name);
12879 else
12880 {
12881 char * name = __ecereNameSpace__ecere__sys__RSearchString(type->name, "::", strlen(type->name), 0x1, 0x0);
12882
12883 if(name)
12884 name += 2;
12885 else
12886 name = type->name;
12887 strcat(string, name);
12888 }
12889 }
12890 }
12891
12892 static void PrintAttribs(struct Type * type, char * string)
12893 {
12894 if(type)
12895 {
12896 if(type->dllExport)
12897 strcat(string, "dllexport ");
12898 if(type->attrStdcall)
12899 strcat(string, "stdcall ");
12900 }
12901 }
12902
12903 static void PrePrintType(struct Type * type, char * string, unsigned int fullName, struct Type * parentType, unsigned int printConst)
12904 {
12905 if(type->kind == 12 || type->kind == 13 || type->kind == 11 || type->kind == 16)
12906 {
12907 struct Type * attrType = (((void *)0));
12908
12909 if((type->kind == 11 || type->kind == 16) && (!parentType || parentType->kind != 13))
12910 PrintAttribs(type, string);
12911 if(printConst && type->constant && (type->kind == 11 || type->kind == 16))
12912 strcat(string, " const");
12913 PrePrintType(type->kind == 16 ? type->method->dataType : type->type, string, fullName, type, printConst);
12914 if(type->kind == 13 && (type->type->kind == 12 || type->type->kind == 11 || type->type->kind == 16))
12915 strcat(string, " (");
12916 if(type->kind == 13)
12917 {
12918 if(type->type->kind == 11 || type->type->kind == 16)
12919 PrintAttribs(type->type, string);
12920 }
12921 if(type->kind == 13)
12922 {
12923 if(type->type->kind == 11 || type->type->kind == 16 || type->type->kind == 12)
12924 strcat(string, "*");
12925 else
12926 strcat(string, " *");
12927 }
12928 if(printConst && type->constant && type->kind == 13)
12929 strcat(string, " const");
12930 }
12931 else
12932 PrintTypeSpecs(type, string, fullName, printConst);
12933 }
12934
12935 static void PostPrintType(struct Type * type, char * string, unsigned int fullName)
12936 {
12937 if(type->kind == 13 && (type->type->kind == 12 || type->type->kind == 11 || type->type->kind == 16))
12938 strcat(string, ")");
12939 if(type->kind == 12)
12940 PrintArraySize(type, string);
12941 else if(type->kind == 11)
12942 {
12943 struct Type * param;
12944
12945 strcat(string, "(");
12946 for(param = type->params.first; param; param = param->next)
12947 {
12948 PrintType(param, string, 0x1, fullName);
12949 if(param->next)
12950 strcat(string, ", ");
12951 }
12952 strcat(string, ")");
12953 }
12954 if(type->kind == 12 || type->kind == 13 || type->kind == 11 || type->kind == 16)
12955 PostPrintType(type->kind == 16 ? type->method->dataType : type->type, string, fullName);
12956 }
12957
12958 static void _PrintType(struct Type * type, char * string, unsigned int printName, unsigned int fullName, unsigned int printConst)
12959 {
12960 PrePrintType(type, string, fullName, (((void *)0)), printConst);
12961 if(type->thisClass || (printName && type->name && type->name[0]))
12962 strcat(string, " ");
12963 if((type->thisClass || type->staticMethod))
12964 {
12965 struct Symbol * _class = type->thisClass;
12966
12967 if((type->classObjectType == 2 || type->classObjectType == 1) || (_class && !strcmp(_class->string, "class")))
12968 {
12969 if(type->classObjectType == 1)
12970 strcat(string, "class");
12971 else
12972 strcat(string, type->byReference ? "typed_object&" : "typed_object");
12973 }
12974 else if(_class && _class->string)
12975 {
12976 char * s = _class->string;
12977
12978 if(fullName)
12979 strcat(string, s);
12980 else
12981 {
12982 char * name = __ecereNameSpace__ecere__sys__RSearchString(s, "::", strlen(s), 0x1, 0x0);
12983
12984 if(name)
12985 name += 2;
12986 else
12987 name = s;
12988 strcat(string, name);
12989 }
12990 }
12991 strcat(string, "::");
12992 }
12993 if(printName && type->name)
12994 PrintName(type, string, fullName);
12995 PostPrintType(type, string, fullName);
12996 if(type->bitFieldCount)
12997 {
12998 char count[100];
12999
13000 sprintf(count, ":%d", type->bitFieldCount);
13001 strcat(string, count);
13002 }
13003 }
13004
13005 void PrintType(struct Type * type, char * string, unsigned int printName, unsigned int fullName)
13006 {
13007 _PrintType(type, string, printName, fullName, 0x1);
13008 }
13009
13010 void PrintTypeNoConst(struct Type * type, char * string, unsigned int printName, unsigned int fullName)
13011 {
13012 _PrintType(type, string, printName, fullName, 0x0);
13013 }
13014
13015 static struct Type * FindMember(struct Type * type, char * string)
13016 {
13017 struct Type * memberType;
13018
13019 for(memberType = type->members.first; memberType; memberType = memberType->next)
13020 {
13021 if(!memberType->name)
13022 {
13023 struct Type * subType = FindMember(memberType, string);
13024
13025 if(subType)
13026 return subType;
13027 }
13028 else if(!strcmp(memberType->name, string))
13029 return memberType;
13030 }
13031 return (((void *)0));
13032 }
13033
13034 struct Type * FindMemberAndOffset(struct Type * type, char * string, unsigned int * offset)
13035 {
13036 struct Type * memberType;
13037
13038 for(memberType = type->members.first; memberType; memberType = memberType->next)
13039 {
13040 if(!memberType->name)
13041 {
13042 struct Type * subType = FindMember(memberType, string);
13043
13044 if(subType)
13045 {
13046 *offset += memberType->offset;
13047 return subType;
13048 }
13049 }
13050 else if(!strcmp(memberType->name, string))
13051 {
13052 *offset += memberType->offset;
13053 return memberType;
13054 }
13055 }
13056 return (((void *)0));
13057 }
13058
13059 extern unsigned int parseError;
13060
13061 unsigned int GetParseError()
13062 {
13063 return parseError;
13064 }
13065
13066 extern struct __ecereNameSpace__ecere__com__Instance * fileInput;
13067
13068 int __ecereVMethodID___ecereNameSpace__ecere__sys__File_Write;
13069
13070 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__sys__File;
13071
13072 struct Expression * ParseExpressionString(char * expression)
13073 {
13074 parseError = 0x0;
13075 fileInput = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass___ecereNameSpace__ecere__sys__TempFile);
13076 ((int (*)(struct __ecereNameSpace__ecere__com__Instance *, void *  buffer, unsigned int size, unsigned int count))__extension__ ({
13077 struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = fileInput;
13078
13079 __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__sys__File->_vTbl;
13080 })[__ecereVMethodID___ecereNameSpace__ecere__sys__File_Write])(fileInput, expression, 1, strlen(expression));
13081 ((unsigned int (*)(struct __ecereNameSpace__ecere__com__Instance *, int pos, int mode))__extension__ ({
13082 struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = fileInput;
13083
13084 __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__sys__File->_vTbl;
13085 })[__ecereVMethodID___ecereNameSpace__ecere__sys__File_Seek])(fileInput, 0, 0);
13086 echoOn = 0x0;
13087 parsedExpression = (((void *)0));
13088 resetScanner();
13089 expression_yyparse();
13090 (__ecereNameSpace__ecere__com__eInstance_DecRef(fileInput), fileInput = 0);
13091 return parsedExpression;
13092 }
13093
13094 extern char *  QMkString(char *  source);
13095
13096 static unsigned int ResolveIdWithClass(struct Expression * exp, struct __ecereNameSpace__ecere__com__Class * _class, unsigned int skipIDClassCheck)
13097 {
13098 struct Identifier * id = exp->identifier;
13099 struct __ecereNameSpace__ecere__com__Method * method = (((void *)0));
13100 struct __ecereNameSpace__ecere__com__Property * prop = (((void *)0));
13101 struct __ecereNameSpace__ecere__com__DataMember * member = (((void *)0));
13102 struct __ecereNameSpace__ecere__com__ClassProperty * classProp = (((void *)0));
13103
13104 if(_class && _class->type == 4)
13105 {
13106 struct __ecereNameSpace__ecere__sys__NamedLink * value = (((void *)0));
13107 struct __ecereNameSpace__ecere__com__Class * enumClass = __ecereNameSpace__ecere__com__eSystem_FindClass(privateModule, "enum");
13108
13109 if(enumClass)
13110 {
13111 struct __ecereNameSpace__ecere__com__Class * baseClass;
13112
13113 for(baseClass = _class; baseClass && baseClass->type == 4; baseClass = baseClass->base)
13114 {
13115 struct __ecereNameSpace__ecere__com__EnumClassData * e = (baseClass ? ((void *)(((char *)baseClass->data) + enumClass->offsetClass)) : (((void *)0)));
13116
13117 for(value = e->values.first; value; value = value->next)
13118 {
13119 if(!strcmp(value->name, id->string))
13120 break;
13121 }
13122 if(value)
13123 {
13124 char constant[256];
13125
13126 FreeExpContents(exp);
13127 exp->type = 2;
13128 exp->isConstant = 0x1;
13129 if(!strcmp(baseClass->dataTypeString, "int"))
13130 sprintf(constant, "%d", (int)value->data);
13131 else
13132 sprintf(constant, "0x%X", (int)value->data);
13133 exp->constant = __ecereNameSpace__ecere__sys__CopyString(constant);
13134 exp->expType = MkClassType(baseClass->fullName);
13135 break;
13136 }
13137 }
13138 }
13139 if(value)
13140 return 0x1;
13141 }
13142 if((method = __ecereNameSpace__ecere__com__eClass_FindMethod(_class, id->string, privateModule)))
13143 {
13144 ProcessMethodType(method);
13145 exp->expType = __extension__ ({
13146 struct Type * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
13147
13148 __ecereInstance1->refCount = 1, __ecereInstance1->kind = 16, __ecereInstance1->method = method, __ecereInstance1->methodClass = (skipIDClassCheck || (id && id->_class)) ? _class : (((void *)0)), __ecereInstance1;
13149 });
13150 return 0x1;
13151 }
13152 else if((prop = __ecereNameSpace__ecere__com__eClass_FindProperty(_class, id->string, privateModule)))
13153 {
13154 if(!prop->dataType)
13155 ProcessPropertyType(prop);
13156 exp->expType = prop->dataType;
13157 if(prop->dataType)
13158 prop->dataType->refCount++;
13159 return 0x1;
13160 }
13161 else if((member = __ecereNameSpace__ecere__com__eClass_FindDataMember(_class, id->string, privateModule, (((void *)0)), (((void *)0)))))
13162 {
13163 if(!member->dataType)
13164 member->dataType = ProcessTypeString(member->dataTypeString, 0x0);
13165 exp->expType = member->dataType;
13166 if(member->dataType)
13167 member->dataType->refCount++;
13168 return 0x1;
13169 }
13170 else if((classProp = __ecereNameSpace__ecere__com__eClass_FindClassProperty(_class, id->string)))
13171 {
13172 if(!classProp->dataType)
13173 classProp->dataType = ProcessTypeString(classProp->dataTypeString, 0x0);
13174 if(classProp->constant)
13175 {
13176 FreeExpContents(exp);
13177 exp->isConstant = 0x1;
13178 if(classProp->dataType->kind == 13 && classProp->dataType->type->kind == 1)
13179 {
13180 exp->type = 3;
13181 exp->constant = QMkString((char *)classProp->Get(_class));
13182 }
13183 else
13184 {
13185 char constant[256];
13186
13187 exp->type = 2;
13188 sprintf(constant, "%d", (int)classProp->Get(_class));
13189 exp->constant = __ecereNameSpace__ecere__sys__CopyString(constant);
13190 }
13191 }
13192 else
13193 {
13194 }
13195 exp->expType = classProp->dataType;
13196 if(classProp->dataType)
13197 classProp->dataType->refCount++;
13198 return 0x1;
13199 }
13200 return 0x0;
13201 }
13202
13203 static struct GlobalData * ScanGlobalData(struct __ecereNameSpace__ecere__com__NameSpace * nameSpace, char * name)
13204 {
13205 struct __ecereNameSpace__ecere__sys__BinaryTree * tree = &nameSpace->functions;
13206 struct GlobalData * data = (struct GlobalData *)__ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_FindString((&*tree), name);
13207 struct __ecereNameSpace__ecere__com__NameSpace * child;
13208
13209 if(!data)
13210 {
13211 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)))
13212 {
13213 data = ScanGlobalData(child, name);
13214 if(data)
13215 break;
13216 }
13217 }
13218 return data;
13219 }
13220
13221 extern struct __ecereNameSpace__ecere__com__NameSpace *  globalData;
13222
13223 extern char *  strncpy(char * , const char * , size_t n);
13224
13225 static struct GlobalData * FindGlobalData(char * name)
13226 {
13227 int start = 0, c;
13228 struct __ecereNameSpace__ecere__com__NameSpace * nameSpace;
13229
13230 nameSpace = globalData;
13231 for(c = 0; name[c]; c++)
13232 {
13233 if(name[c] == '.' || (name[c] == ':' && name[c + 1] == ':'))
13234 {
13235 struct __ecereNameSpace__ecere__com__NameSpace * newSpace;
13236 char * spaceName = __ecereNameSpace__ecere__com__eSystem_New(sizeof(char) * (c - start + 1));
13237
13238 strncpy(spaceName, name + start, c - start);
13239 spaceName[c - start] = '\0';
13240 newSpace = (struct __ecereNameSpace__ecere__com__NameSpace *)__ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_FindString(&(*nameSpace).nameSpaces, spaceName);
13241 (__ecereNameSpace__ecere__com__eSystem_Delete(spaceName), spaceName = 0);
13242 if(!newSpace)
13243 return (((void *)0));
13244 nameSpace = newSpace;
13245 if(name[c] == ':')
13246 c++;
13247 start = c + 1;
13248 }
13249 }
13250 if(c - start)
13251 {
13252 return ScanGlobalData(nameSpace, name + start);
13253 }
13254 return (((void *)0));
13255 }
13256
13257 static int definedExpStackPos;
13258
13259 static void * definedExpStack[512];
13260
13261 void ReplaceExpContents(struct Expression * checkedExp, struct Expression * newExp)
13262 {
13263 struct Expression * prev = checkedExp->prev, * next = checkedExp->next;
13264
13265 FreeExpContents(checkedExp);
13266 FreeType(checkedExp->expType);
13267 FreeType(checkedExp->destType);
13268 *checkedExp = *newExp;
13269 ((newExp ? (__ecereClass_Expression->Destructor ? __ecereClass_Expression->Destructor(newExp) : 0, __ecereNameSpace__ecere__com__eSystem_Delete(newExp)) : 0), newExp = 0);
13270 checkedExp->prev = prev;
13271 checkedExp->next = next;
13272 }
13273
13274 extern struct Expression * MkExpCall(struct Expression * expression, struct __ecereNameSpace__ecere__sys__OldList * arguments);
13275
13276 extern int printf(char * , ...);
13277
13278 void __ecereMethod_Expression_Clear();
13279
13280 void ApplyAnyObjectLogic(struct Expression * e)
13281 {
13282 struct Type * destType = e->destType;
13283
13284 if(destType && (destType->classObjectType == 3))
13285 {
13286 if(e && e->expType)
13287 {
13288 struct Type * type = e->expType;
13289 struct __ecereNameSpace__ecere__com__Class * _class = (((void *)0));
13290
13291 if(type->kind == 8 && type->_class && type->_class->registered)
13292 {
13293 _class = type->_class->registered;
13294 }
13295 else if(type->kind == 19)
13296 {
13297 _class = FindClass("ecere::com::Class")->registered;
13298 }
13299 else
13300 {
13301 char string[1024] = "";
13302 struct Symbol * classSym;
13303
13304 PrintTypeNoConst(type, string, 0x0, 0x1);
13305 classSym = FindClass(string);
13306 if(classSym)
13307 _class = classSym->registered;
13308 }
13309 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->_class || !type->_class->registered || type->_class->registered->type == 1))) || destType->byReference)))
13310 {
13311 if(!_class || strcmp(_class->fullName, "char *"))
13312 {
13313 struct Expression * checkedExp = e, * newExp;
13314
13315 while(((checkedExp->type == 5 || checkedExp->type == 32 || checkedExp->type == 23) && checkedExp->list) || checkedExp->type == 11)
13316 {
13317 if(checkedExp->type == 5 || checkedExp->type == 32 || checkedExp->type == 23)
13318 {
13319 if(checkedExp->type == 23)
13320 {
13321 checkedExp = (*((struct Statement *)(*checkedExp->compound->compound.statements).last)->expressions).last;
13322 }
13323 else
13324 checkedExp = (*checkedExp->list).last;
13325 }
13326 else if(checkedExp->type == 11)
13327 checkedExp = checkedExp->cast.exp;
13328 }
13329 if(checkedExp && checkedExp->type == 4 && checkedExp->op.op == '*' && !checkedExp->op.exp1)
13330 {
13331 newExp = checkedExp->op.exp2;
13332 checkedExp->op.exp2 = (((void *)0));
13333 FreeExpContents(checkedExp);
13334 if(e->expType && e->expType->passAsTemplate)
13335 {
13336 char size[100];
13337
13338 ComputeTypeSize(e->expType);
13339 sprintf(size, "%d", e->expType->size);
13340 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))))));
13341 }
13342 ReplaceExpContents(checkedExp, newExp);
13343 e->byReference = 0x1;
13344 }
13345 else if(!e->byReference || (_class && _class->type == 5))
13346 {
13347 struct Expression * checkedExp, * newExp;
13348
13349 {
13350 unsigned int hasAddress = e->type == 0 || (e->type == 8 && e->member.memberType == 3) || (e->type == 9 && e->member.memberType == 3) || (e->type == 4 && !e->op.exp1 && e->op.op == '*') || e->type == 6;
13351
13352 if(_class && _class->type != 5 && _class->type != 0 && _class->type != 1 && !hasAddress)
13353 {
13354 struct Context * context = PushContext();
13355 struct Declarator * decl;
13356 struct __ecereNameSpace__ecere__sys__OldList * specs = MkList();
13357 char typeString[1024];
13358 struct Expression * newExp = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Expression);
13359
13360 typeString[0] = '\0';
13361 *newExp = *e;
13362 newExp->prev = (((void *)0));
13363 newExp->next = (((void *)0));
13364 newExp->expType = (((void *)0));
13365 PrintTypeNoConst(e->expType, typeString, 0x0, 0x1);
13366 decl = SpecDeclFromString(typeString, specs, (((void *)0)));
13367 newExp->destType = ProcessType(specs, decl);
13368 curContext = context;
13369 if(curCompound)
13370 {
13371 char name[100];
13372 struct __ecereNameSpace__ecere__sys__OldList * stmts = MkList();
13373
13374 e->type = 23;
13375 sprintf(name, "__internalValue%03X", internalValueCounter++);
13376 if(!curCompound->compound.declarations)
13377 curCompound->compound.declarations = MkList();
13378 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*curCompound->compound.declarations), (((void *)0)), MkDeclaration(specs, MkListOne(MkInitDeclarator(MkDeclaratorIdentifier(MkIdentifier(name)), (((void *)0))))));
13379 ListAdd(stmts, MkExpressionStmt(MkListOne(MkExpOp(MkExpIdentifier(MkIdentifier(name)), '=', newExp))));
13380 ListAdd(stmts, MkExpressionStmt(MkListOne(MkExpIdentifier(MkIdentifier(name)))));
13381 e->compound = MkCompoundStmt((((void *)0)), stmts);
13382 }
13383 else
13384 printf("libec: compiler error, curCompound is null in ApplyAnyObjectLogic\n");
13385 {
13386 struct Type * type = e->destType;
13387
13388 e->destType = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
13389 CopyTypeInto(e->destType, type);
13390 e->destType->refCount = 1;
13391 e->destType->classObjectType = 0;
13392 FreeType(type);
13393 }
13394 e->compound->compound.context = context;
13395 PopContext(context);
13396 curContext = context->parent;
13397 }
13398 }
13399 checkedExp = e;
13400 while(((checkedExp->type == 5 || checkedExp->type == 32 || checkedExp->type == 23) && checkedExp->list) || checkedExp->type == 11)
13401 {
13402 if(checkedExp->type == 5 || checkedExp->type == 32 || checkedExp->type == 23)
13403 {
13404 if(checkedExp->type == 23)
13405 {
13406 checkedExp = (*((struct Statement *)(*checkedExp->compound->compound.statements).last)->expressions).last;
13407 }
13408 else
13409 checkedExp = (*checkedExp->list).last;
13410 }
13411 else if(checkedExp->type == 11)
13412 checkedExp = checkedExp->cast.exp;
13413 }
13414 {
13415 struct Expression * operand = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Expression);
13416
13417 *operand = *checkedExp;
13418 checkedExp->destType = (((void *)0));
13419 checkedExp->expType = (((void *)0));
13420 __ecereMethod_Expression_Clear(checkedExp);
13421 checkedExp->type = 4;
13422 checkedExp->op.op = '&';
13423 checkedExp->op.exp1 = (((void *)0));
13424 checkedExp->op.exp2 = operand;
13425 }
13426 }
13427 }
13428 }
13429 }
13430 }
13431 {
13432 }
13433 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->_class && e->expType->_class->registered && (e->expType->_class->registered->type == 2 || e->expType->_class->registered->type == 4 || e->expType->_class->registered->type == 3))))
13434 {
13435 if(e->expType->classObjectType && destType && destType->classObjectType)
13436 {
13437 return ;
13438 }
13439 else
13440 {
13441 struct Expression * thisExp = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Expression);
13442
13443 *thisExp = *e;
13444 thisExp->prev = (((void *)0));
13445 thisExp->next = (((void *)0));
13446 __ecereMethod_Expression_Clear(e);
13447 e->type = 5;
13448 e->list = MkListOne(MkExpOp((((void *)0)), '*', thisExp->type == 0 ? thisExp : MkExpBrackets(MkListOne(thisExp))));
13449 if(thisExp->expType->kind == 8 && thisExp->expType->_class && thisExp->expType->_class->registered && thisExp->expType->_class->registered->type == 5)
13450 ((struct Expression *)(*e->list).first)->byReference = 0x1;
13451 {
13452 e->expType = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
13453 CopyTypeInto(e->expType, thisExp->expType);
13454 e->expType->byReference = 0x0;
13455 e->expType->refCount = 1;
13456 if(e->expType->kind == 8 && e->expType->_class && e->expType->_class->registered && (e->expType->_class->registered->type == 2 || e->expType->_class->registered->type == 4 || e->expType->_class->registered->type == 3))
13457 {
13458 e->expType->classObjectType = 0;
13459 }
13460 }
13461 }
13462 }
13463 else if(destType && e->expType && (e->expType->classObjectType == 3 || e->expType->classObjectType == 2) && !destType->classObjectType && destType->kind != 0)
13464 {
13465 if(destType->kind == 14)
13466 {
13467 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "Unspecified type\n", (((void *)0))));
13468 }
13469 else if(!(destType->truth && e->expType->kind == 8 && e->expType->_class && e->expType->_class->registered && e->expType->_class->registered->type == 1))
13470 {
13471 unsigned int byReference = e->expType->byReference;
13472 struct Expression * thisExp = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Expression);
13473 struct Declarator * decl;
13474 struct __ecereNameSpace__ecere__sys__OldList * specs = MkList();
13475 char typeString[1024];
13476 struct Type * type;
13477 int backupClassObjectType;
13478 unsigned int backupByReference;
13479
13480 if(e->expType->kind == 8 && e->expType->_class && e->expType->_class->registered && strcmp(e->expType->_class->registered->name, "class"))
13481 type = e->expType;
13482 else
13483 type = destType;
13484 backupClassObjectType = type->classObjectType;
13485 backupByReference = type->byReference;
13486 type->classObjectType = 0;
13487 type->byReference = 0x0;
13488 typeString[0] = '\0';
13489 PrintType(type, typeString, 0x0, 0x1);
13490 decl = SpecDeclFromString(typeString, specs, (((void *)0)));
13491 type->classObjectType = backupClassObjectType;
13492 type->byReference = backupByReference;
13493 *thisExp = *e;
13494 thisExp->prev = (((void *)0));
13495 thisExp->next = (((void *)0));
13496 __ecereMethod_Expression_Clear(e);
13497 if((type->kind == 8 && type->_class && type->_class->registered && (type->_class->registered->type == 1000 || type->_class->registered->type == 2 || type->_class->registered->type == 4 || type->_class->registered->type == 3)) || (type->kind != 13 && type->kind != 22 && type->kind != 12 && type->kind != 8) || (!destType->byReference && byReference && (destType->kind != 13 || type->kind != 13)))
13498 {
13499 e->type = 4;
13500 e->op.op = '*';
13501 e->op.exp1 = (((void *)0));
13502 e->op.exp2 = MkExpCast(MkTypeName(specs, MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), decl)), thisExp);
13503 e->expType = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
13504 CopyTypeInto(e->expType, type);
13505 e->expType->byReference = 0x0;
13506 e->expType->refCount = 1;
13507 }
13508 else
13509 {
13510 e->type = 11;
13511 e->cast.typeName = MkTypeName(specs, decl);
13512 e->cast.exp = thisExp;
13513 e->byReference = 0x1;
13514 e->expType = type;
13515 type->refCount++;
13516 }
13517 e->destType = destType;
13518 destType->refCount++;
13519 }
13520 }
13521 }
13522
13523 extern char *  strstr(const char * , const char * );
13524
13525 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__DefinedExpression;
13526
13527 struct __ecereNameSpace__ecere__com__DefinedExpression
13528 {
13529 struct __ecereNameSpace__ecere__com__DefinedExpression * prev;
13530 struct __ecereNameSpace__ecere__com__DefinedExpression * next;
13531 char *  name;
13532 char *  value;
13533 struct __ecereNameSpace__ecere__com__NameSpace *  nameSpace;
13534 } __attribute__ ((gcc_struct));
13535
13536 extern struct __ecereNameSpace__ecere__com__DefinedExpression * __ecereNameSpace__ecere__com__eSystem_FindDefine(struct __ecereNameSpace__ecere__com__Instance * module, char *  name);
13537
13538 extern struct __ecereNameSpace__ecere__com__GlobalFunction * __ecereNameSpace__ecere__com__eSystem_FindFunction(struct __ecereNameSpace__ecere__com__Instance * module, char *  name);
13539
13540 extern unsigned int __ecereNameSpace__ecere__sys__UTF8GetChar(char *  string, int *  numBytes);
13541
13542 extern struct Expression * GetTemplateArgExp(struct TemplateParameter * param, struct __ecereNameSpace__ecere__com__Class * curClass, unsigned int pointer);
13543
13544 extern struct Expression * MkExpCondition(struct Expression * cond, struct __ecereNameSpace__ecere__sys__OldList * expressions, struct Expression * elseExp);
13545
13546 extern struct Expression * CopyExpression(struct Expression * exp);
13547
13548 extern struct Expression * MkExpTypeSize(struct TypeName * typeName);
13549
13550 extern struct Expression * MkExpClass(struct __ecereNameSpace__ecere__sys__OldList *  specifiers, struct Declarator * decl);
13551
13552 static void ProcessStatement(struct Statement * stmt);
13553
13554 extern struct Expression * MkExpExtensionInitializer(struct TypeName * typeName, struct Initializer * initializer);
13555
13556 extern struct Initializer * MkInitializerList(struct __ecereNameSpace__ecere__sys__OldList * list);
13557
13558 extern char *  __ecereNameSpace__ecere__com__PrintString(struct __ecereNameSpace__ecere__com__Class * class, void * object, ...);
13559
13560 extern char *  sourceFile;
13561
13562 void __ecereMethod___ecereNameSpace__ecere__sys__OldList_Clear(struct __ecereNameSpace__ecere__sys__OldList * this);
13563
13564 void ProcessExpressionType(struct Expression * exp)
13565 {
13566 unsigned int unresolved = 0x0;
13567 struct Location oldyylloc = yylloc;
13568 unsigned int notByReference = 0x0;
13569
13570 if(!exp || exp->expType)
13571 return ;
13572 yylloc = exp->loc;
13573 switch(exp->type)
13574 {
13575 case 0:
13576 {
13577 struct Identifier * id = exp->identifier;
13578
13579 if(!id || !topContext)
13580 return ;
13581 if(id->_class && id->_class->name)
13582 {
13583 id->classSym = id->_class->symbol;
13584 }
13585 if(strstr(id->string, "__ecereClass") == id->string)
13586 {
13587 exp->expType = ProcessTypeString("ecere::com::Class", 0x1);
13588 break;
13589 }
13590 else if(id->_class && (id->classSym || (id->_class->name && !strcmp(id->_class->name, "property"))))
13591 {
13592 ReplaceClassMembers(exp, thisClass);
13593 if(exp->type != 0)
13594 {
13595 ProcessExpressionType(exp);
13596 break;
13597 }
13598 if(id->classSym && ResolveIdWithClass(exp, id->classSym->registered, 0x0))
13599 break;
13600 }
13601 else
13602 {
13603 struct Symbol * symbol = FindSymbol(id->string, curContext, topContext, 0x0, id->_class && id->_class->name == (((void *)0)));
13604
13605 if(!symbol)
13606 {
13607 if(exp->destType && CheckExpressionType(exp, exp->destType, 0x0))
13608 break;
13609 else
13610 {
13611 if(thisClass)
13612 {
13613 ReplaceClassMembers(exp, thisClass ? thisClass : currentClass);
13614 if(exp->type != 0)
13615 {
13616 ProcessExpressionType(exp);
13617 break;
13618 }
13619 }
13620 else if(currentClass && !id->_class)
13621 {
13622 if(ResolveIdWithClass(exp, currentClass, 0x1))
13623 break;
13624 }
13625 symbol = FindSymbol(id->string, topContext->parent, globalContext, 0x0, id->_class && id->_class->name == (((void *)0)));
13626 }
13627 }
13628 if(symbol)
13629 {
13630 struct Type * type = symbol->type;
13631 struct __ecereNameSpace__ecere__com__Class * _class = (type && type->kind == 8 && type->_class) ? type->_class->registered : (((void *)0));
13632
13633 if(_class && !strcmp(id->string, "this") && !type->classObjectType)
13634 {
13635 struct Context * context = SetupTemplatesContext(_class);
13636
13637 type = ReplaceThisClassType(_class);
13638 FinishTemplatesContext(context);
13639 if(type)
13640 type->refCount = 0;
13641 }
13642 FreeSpecifier(id->_class);
13643 id->_class = (((void *)0));
13644 (__ecereNameSpace__ecere__com__eSystem_Delete(id->string), id->string = 0);
13645 id->string = __ecereNameSpace__ecere__sys__CopyString(symbol->string);
13646 id->classSym = (((void *)0));
13647 exp->expType = type;
13648 if(type)
13649 type->refCount++;
13650 if(type && (type->kind == 15 || (_class && _class->type == 4)))
13651 exp->isConstant = 0x1;
13652 if(symbol->isParam || !strcmp(id->string, "this"))
13653 {
13654 if(_class && _class->type == 1 && !type->declaredWithStruct)
13655 exp->byReference = 0x1;
13656 }
13657 if(symbol->isIterator)
13658 {
13659 if(symbol->isIterator == 3)
13660 {
13661 exp->type = 5;
13662 exp->list = MkListOne(MkExpOp((((void *)0)), '*', MkExpIdentifier(exp->identifier)));
13663 ((struct Expression *)(*exp->list).first)->op.exp2->expType = exp->expType;
13664 exp->expType = (((void *)0));
13665 ProcessExpressionType(exp);
13666 }
13667 else if(symbol->isIterator != 4)
13668 {
13669 exp->type = 8;
13670 exp->member.exp = MkExpIdentifier(exp->identifier);
13671 exp->member.exp->expType = exp->expType;
13672 exp->member.member = MkIdentifier("data");
13673 exp->expType = (((void *)0));
13674 ProcessExpressionType(exp);
13675 }
13676 }
13677 break;
13678 }
13679 else
13680 {
13681 struct __ecereNameSpace__ecere__com__DefinedExpression * definedExp = (((void *)0));
13682
13683 if(thisNameSpace && !(id->_class && !id->_class->name))
13684 {
13685 char name[1024];
13686
13687 strcpy(name, thisNameSpace);
13688 strcat(name, "::");
13689 strcat(name, id->string);
13690 definedExp = __ecereNameSpace__ecere__com__eSystem_FindDefine(privateModule, name);
13691 }
13692 if(!definedExp)
13693 definedExp = __ecereNameSpace__ecere__com__eSystem_FindDefine(privateModule, id->string);
13694 if(definedExp)
13695 {
13696 int c;
13697
13698 for(c = 0; c < definedExpStackPos; c++)
13699 if(definedExpStack[c] == definedExp)
13700 break;
13701 if(c == definedExpStackPos && c < sizeof (definedExpStack) / sizeof(void *))
13702 {
13703 struct Location backupYylloc = yylloc;
13704 struct __ecereNameSpace__ecere__com__Instance * backInput = fileInput;
13705
13706 definedExpStack[definedExpStackPos++] = definedExp;
13707 fileInput = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass___ecereNameSpace__ecere__sys__TempFile);
13708 ((int (*)(struct __ecereNameSpace__ecere__com__Instance *, void *  buffer, unsigned int size, unsigned int count))__extension__ ({
13709 struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = fileInput;
13710
13711 __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__sys__File->_vTbl;
13712 })[__ecereVMethodID___ecereNameSpace__ecere__sys__File_Write])(fileInput, definedExp->value, 1, strlen(definedExp->value));
13713 ((unsigned int (*)(struct __ecereNameSpace__ecere__com__Instance *, int pos, int mode))__extension__ ({
13714 struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = fileInput;
13715
13716 __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__sys__File->_vTbl;
13717 })[__ecereVMethodID___ecereNameSpace__ecere__sys__File_Seek])(fileInput, 0, 0);
13718 echoOn = 0x0;
13719 parsedExpression = (((void *)0));
13720 resetScanner();
13721 expression_yyparse();
13722 (__ecereNameSpace__ecere__com__eInstance_DecRef(fileInput), fileInput = 0);
13723 if(backInput)
13724 fileInput = backInput;
13725 yylloc = backupYylloc;
13726 if(parsedExpression)
13727 {
13728 FreeIdentifier(id);
13729 exp->type = 5;
13730 exp->list = MkListOne(parsedExpression);
13731 parsedExpression->loc = yylloc;
13732 ProcessExpressionType(exp);
13733 definedExpStackPos--;
13734 return ;
13735 }
13736 definedExpStackPos--;
13737 }
13738 else
13739 {
13740 if(inCompiler)
13741 {
13742 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "Recursion in defined expression %s\n", (((void *)0))), id->string);
13743 }
13744 }
13745 }
13746 else
13747 {
13748 struct GlobalData * data = (((void *)0));
13749
13750 if(thisNameSpace && !(id->_class && !id->_class->name))
13751 {
13752 char name[1024];
13753
13754 strcpy(name, thisNameSpace);
13755 strcat(name, "::");
13756 strcat(name, id->string);
13757 data = FindGlobalData(name);
13758 }
13759 if(!data)
13760 data = FindGlobalData(id->string);
13761 if(data)
13762 {
13763 DeclareGlobalData(data);
13764 exp->expType = data->dataType;
13765 if(data->dataType)
13766 data->dataType->refCount++;
13767 (__ecereNameSpace__ecere__com__eSystem_Delete(id->string), id->string = 0);
13768 id->string = __ecereNameSpace__ecere__sys__CopyString(data->fullName);
13769 FreeSpecifier(id->_class);
13770 id->_class = (((void *)0));
13771 break;
13772 }
13773 else
13774 {
13775 struct __ecereNameSpace__ecere__com__GlobalFunction * function = (((void *)0));
13776
13777 if(thisNameSpace && !(id->_class && !id->_class->name))
13778 {
13779 char name[1024];
13780
13781 strcpy(name, thisNameSpace);
13782 strcat(name, "::");
13783 strcat(name, id->string);
13784 function = __ecereNameSpace__ecere__com__eSystem_FindFunction(privateModule, name);
13785 }
13786 if(!function)
13787 function = __ecereNameSpace__ecere__com__eSystem_FindFunction(privateModule, id->string);
13788 if(function)
13789 {
13790 char name[1024];
13791
13792 (__ecereNameSpace__ecere__com__eSystem_Delete(id->string), id->string = 0);
13793 id->string = __ecereNameSpace__ecere__sys__CopyString(function->name);
13794 name[0] = (char)0;
13795 if(((struct __ecereNameSpace__ecere__com__Module *)(((char *)function->module + structSize_Instance)))->importType != 1 && (!function->dataType || !function->dataType->dllExport))
13796 strcpy(name, "__ecereFunction_");
13797 FullClassNameCat(name, id->string, 0x0);
13798 if(DeclareFunction(function, name))
13799 {
13800 (__ecereNameSpace__ecere__com__eSystem_Delete(id->string), id->string = 0);
13801 id->string = __ecereNameSpace__ecere__sys__CopyString(name);
13802 }
13803 exp->expType = function->dataType;
13804 if(function->dataType)
13805 function->dataType->refCount++;
13806 FreeSpecifier(id->_class);
13807 id->_class = (((void *)0));
13808 break;
13809 }
13810 }
13811 }
13812 }
13813 }
13814 unresolved = 0x1;
13815 break;
13816 }
13817 case 1:
13818 {
13819 struct __ecereNameSpace__ecere__com__Class * _class;
13820
13821 if(!exp->instance->_class)
13822 {
13823 if(exp->destType && exp->destType->kind == 8 && exp->destType->_class)
13824 {
13825 exp->instance->_class = MkSpecifierName(exp->destType->_class->string);
13826 }
13827 }
13828 ProcessInstantiationType(exp->instance);
13829 exp->isConstant = exp->instance->isConstant;
13830 if(exp->instance->_class)
13831 {
13832 exp->expType = MkClassType(exp->instance->_class->name);
13833 }
13834 break;
13835 }
13836 case 2:
13837 {
13838 if(!exp->expType)
13839 {
13840 char * constant = exp->constant;
13841 struct Type * type = (type = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type), type->refCount = 1, type->constant = 0x1, type);
13842
13843 exp->expType = type;
13844 if(constant[0] == '\'')
13845 {
13846 if((int)((unsigned char *)constant)[1] > 127)
13847 {
13848 int nb;
13849 unsigned int ch = __ecereNameSpace__ecere__sys__UTF8GetChar(constant + 1, &nb);
13850
13851 if(nb < 2)
13852 ch = constant[1];
13853 (__ecereNameSpace__ecere__com__eSystem_Delete(constant), constant = 0);
13854 exp->constant = PrintUInt(ch);
13855 type->kind = 8;
13856 type->_class = FindClass("unichar");
13857 type->isSigned = 0x0;
13858 }
13859 else
13860 {
13861 type->kind = 1;
13862 type->isSigned = 0x1;
13863 }
13864 }
13865 else
13866 {
13867 char * dot = strchr(constant, '.');
13868 unsigned int isHex = (constant[0] == '0' && (constant[1] == 'x' || constant[1] == 'X'));
13869 char * exponent;
13870
13871 if(isHex)
13872 {
13873 exponent = strchr(constant, 'p');
13874 if(!exponent)
13875 exponent = strchr(constant, 'P');
13876 }
13877 else
13878 {
13879 exponent = strchr(constant, 'e');
13880 if(!exponent)
13881 exponent = strchr(constant, 'E');
13882 }
13883 if(dot || exponent)
13884 {
13885 if(strchr(constant, 'f') || strchr(constant, 'F'))
13886 type->kind = 6;
13887 else
13888 type->kind = 7;
13889 type->isSigned = 0x1;
13890 }
13891 else
13892 {
13893 unsigned int isSigned = constant[0] == '-';
13894 long long i64 = strtoll(constant, (((void *)0)), 0);
13895 uint64 ui64 = strtoull(constant, (((void *)0)), 0);
13896 unsigned int is64Bit = 0x0;
13897
13898 if(isSigned)
13899 {
13900 if(i64 < (((int)0x80000000)))
13901 is64Bit = 0x1;
13902 }
13903 else
13904 {
13905 if(ui64 > (((int)0x7fffffff)))
13906 {
13907 if(ui64 > (0xffffffff))
13908 {
13909 is64Bit = 0x1;
13910 if(ui64 <= (((long long)0x7fffffffffffffffLL)) && (constant[0] != '0' || !constant[1]))
13911 isSigned = 0x1;
13912 }
13913 }
13914 else if(constant[0] != '0' || !constant[1])
13915 isSigned = 0x1;
13916 }
13917 type->kind = is64Bit ? 4 : 3;
13918 type->isSigned = isSigned;
13919 }
13920 }
13921 exp->isConstant = 0x1;
13922 if(exp->destType && exp->destType->kind == 7)
13923 type->kind = 7;
13924 else if(exp->destType && exp->destType->kind == 6)
13925 type->kind = 6;
13926 else if(exp->destType && exp->destType->kind == 4)
13927 type->kind = 4;
13928 }
13929 break;
13930 }
13931 case 3:
13932 {
13933 exp->isConstant = 0x1;
13934 exp->expType = __extension__ ({
13935 struct Type * __ecereInstance2 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
13936
13937 __ecereInstance2->refCount = 1, __ecereInstance2->kind = 13, __ecereInstance2->type = __extension__ ({
13938 struct Type * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
13939
13940 __ecereInstance1->refCount = 1, __ecereInstance1->kind = 1, __ecereInstance1->constant = 0x1, __ecereInstance1->isSigned = 0x1, __ecereInstance1;
13941 }), __ecereInstance2;
13942 });
13943 break;
13944 }
13945 case 13:
13946 case 26:
13947 ProcessExpressionType(exp->_new.size);
13948 exp->expType = __extension__ ({
13949 struct Type * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
13950
13951 __ecereInstance1->refCount = 1, __ecereInstance1->kind = 13, __ecereInstance1->type = ProcessType(exp->_new.typeName->qualifiers, exp->_new.typeName->declarator), __ecereInstance1;
13952 });
13953 DeclareType(exp->expType->type, 0x0, 0x0);
13954 break;
13955 case 14:
13956 case 27:
13957 ProcessExpressionType(exp->_renew.size);
13958 ProcessExpressionType(exp->_renew.exp);
13959 exp->expType = __extension__ ({
13960 struct Type * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
13961
13962 __ecereInstance1->refCount = 1, __ecereInstance1->kind = 13, __ecereInstance1->type = ProcessType(exp->_renew.typeName->qualifiers, exp->_renew.typeName->declarator), __ecereInstance1;
13963 });
13964 DeclareType(exp->expType->type, 0x0, 0x0);
13965 break;
13966 case 4:
13967 {
13968 unsigned int assign = 0x0, boolResult = 0x0, boolOps = 0x0;
13969 struct Type * type1 = (((void *)0)), * type2 = (((void *)0));
13970 unsigned int useDestType = 0x0, useSideType = 0x0;
13971 struct Location oldyylloc = yylloc;
13972 unsigned int useSideUnit = 0x0;
13973 struct Type * dummy = (dummy = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type), dummy->count = 1, dummy->refCount = 1, dummy);
13974
13975 switch(exp->op.op)
13976 {
13977 case '=':
13978 case MUL_ASSIGN:
13979 case DIV_ASSIGN:
13980 case MOD_ASSIGN:
13981 case ADD_ASSIGN:
13982 case SUB_ASSIGN:
13983 case LEFT_ASSIGN:
13984 case RIGHT_ASSIGN:
13985 case AND_ASSIGN:
13986 case XOR_ASSIGN:
13987 case OR_ASSIGN:
13988 assign = 0x1;
13989 break;
13990 case '!':
13991 break;
13992 case AND_OP:
13993 case OR_OP:
13994 boolOps = 0x1;
13995 boolResult = 0x1;
13996 break;
13997 case EQ_OP:
13998 case '<':
13999 case '>':
14000 case LE_OP:
14001 case GE_OP:
14002 case NE_OP:
14003 boolResult = 0x1;
14004 useSideType = 0x1;
14005 break;
14006 case '+':
14007 case '-':
14008 useSideUnit = 0x1;
14009 case '|':
14010 case '&':
14011 case '^':
14012 case '/':
14013 case '%':
14014 case '*':
14015 if(exp->op.op != '*' || exp->op.exp1)
14016 {
14017 useSideType = 0x1;
14018 useDestType = 0x1;
14019 }
14020 break;
14021 }
14022 if(exp->op.op == '&')
14023 {
14024 if(!exp->op.exp1 && exp->op.exp2 && exp->op.exp2->type == 0 && exp->op.exp2->identifier)
14025 {
14026 struct Identifier * id = exp->op.exp2->identifier;
14027 struct Symbol * symbol = FindSymbol(id->string, curContext, topContext, 0x0, id->_class && id->_class->name == (((void *)0)));
14028
14029 if(symbol && symbol->isIterator == 2)
14030 {
14031 exp->type = 8;
14032 exp->member.exp = exp->op.exp2;
14033 exp->member.member = MkIdentifier("key");
14034 exp->expType = (((void *)0));
14035 exp->op.exp2->expType = symbol->type;
14036 symbol->type->refCount++;
14037 ProcessExpressionType(exp);
14038 FreeType(dummy);
14039 break;
14040 }
14041 }
14042 }
14043 if(exp->op.exp1)
14044 {
14045 if(exp->destType && exp->destType->kind == 8 && exp->destType->_class && exp->destType->_class->registered && useDestType && ((exp->destType->_class->registered->type == 3 && useSideUnit) || exp->destType->_class->registered->type == 4 || exp->destType->_class->registered->type == 2))
14046 {
14047 if(exp->op.exp1->destType)
14048 FreeType(exp->op.exp1->destType);
14049 exp->op.exp1->destType = exp->destType;
14050 if(exp->destType)
14051 exp->destType->refCount++;
14052 }
14053 else if(!assign)
14054 {
14055 if(exp->op.exp1->destType)
14056 FreeType(exp->op.exp1->destType);
14057 exp->op.exp1->destType = dummy;
14058 dummy->refCount++;
14059 }
14060 if(exp->op.exp1->destType && exp->op.op != '=')
14061 exp->op.exp1->destType->count++;
14062 ProcessExpressionType(exp->op.exp1);
14063 if(exp->op.exp1->destType && exp->op.op != '=')
14064 exp->op.exp1->destType->count--;
14065 if(exp->op.exp1->destType == dummy)
14066 {
14067 FreeType(dummy);
14068 exp->op.exp1->destType = (((void *)0));
14069 }
14070 type1 = exp->op.exp1->expType;
14071 }
14072 if(exp->op.exp2)
14073 {
14074 char expString[10240];
14075
14076 expString[0] = '\0';
14077 if(exp->op.exp2->type == 1 && !exp->op.exp2->instance->_class)
14078 {
14079 if(exp->op.exp1)
14080 {
14081 exp->op.exp2->destType = exp->op.exp1->expType;
14082 if(exp->op.exp1->expType)
14083 exp->op.exp1->expType->refCount++;
14084 }
14085 else
14086 {
14087 exp->op.exp2->destType = exp->destType;
14088 if(exp->destType)
14089 exp->destType->refCount++;
14090 }
14091 if(type1)
14092 type1->refCount++;
14093 exp->expType = type1;
14094 }
14095 else if(assign)
14096 {
14097 if(inCompiler)
14098 PrintExpression(exp->op.exp2, expString);
14099 if(type1 && type1->kind == 13)
14100 {
14101 if(exp->op.op == MUL_ASSIGN || exp->op.op == DIV_ASSIGN || exp->op.op == MOD_ASSIGN || exp->op.op == LEFT_ASSIGN || exp->op.op == RIGHT_ASSIGN || exp->op.op == AND_ASSIGN || exp->op.op == OR_ASSIGN)
14102 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "operator %s illegal on pointer\n", (((void *)0))), exp->op.op);
14103 else if(exp->op.op == '=')
14104 {
14105 if(exp->op.exp2->destType)
14106 FreeType(exp->op.exp2->destType);
14107 exp->op.exp2->destType = type1;
14108 if(type1)
14109 type1->refCount++;
14110 }
14111 }
14112 else
14113 {
14114 if(exp->op.op == MUL_ASSIGN || exp->op.op == DIV_ASSIGN || exp->op.op == MOD_ASSIGN || exp->op.op == LEFT_ASSIGN || exp->op.op == RIGHT_ASSIGN)
14115 ;
14116 else
14117 {
14118 if(exp->op.exp2->destType)
14119 FreeType(exp->op.exp2->destType);
14120 exp->op.exp2->destType = type1;
14121 if(type1)
14122 type1->refCount++;
14123 }
14124 }
14125 if(type1)
14126 type1->refCount++;
14127 exp->expType = type1;
14128 }
14129 else if(exp->destType && exp->destType->kind == 8 && exp->destType->_class && exp->destType->_class->registered && ((exp->destType->_class->registered->type == 3 && useDestType && useSideUnit) || (exp->destType->_class->registered->type == 4 && useDestType)))
14130 {
14131 if(exp->op.exp2->destType)
14132 FreeType(exp->op.exp2->destType);
14133 exp->op.exp2->destType = exp->destType;
14134 if(exp->destType)
14135 exp->destType->refCount++;
14136 }
14137 else
14138 {
14139 if(exp->op.exp2->destType)
14140 FreeType(exp->op.exp2->destType);
14141 exp->op.exp2->destType = dummy;
14142 dummy->refCount++;
14143 }
14144 if(type1 && boolResult && useSideType && type1->kind == 8 && type1->_class && type1->_class->registered && (type1->_class->registered->type == 2 || type1->_class->registered->type == 4))
14145 {
14146 FreeType(exp->op.exp2->destType);
14147 exp->op.exp2->destType = type1;
14148 type1->refCount++;
14149 }
14150 if(exp->op.exp2->destType && exp->op.op != '=')
14151 exp->op.exp2->destType->count++;
14152 ProcessExpressionType(exp->op.exp2);
14153 if(exp->op.exp2->destType && exp->op.op != '=')
14154 exp->op.exp2->destType->count--;
14155 if(assign && type1 && type1->kind == 13 && exp->op.exp2->expType)
14156 {
14157 if(exp->op.exp2->expType->kind == 23 || exp->op.exp2->expType->kind == 22 || exp->op.exp2->expType->kind == 4 || exp->op.exp2->expType->kind == 3 || exp->op.exp2->expType->kind == 2 || exp->op.exp2->expType->kind == 1)
14158 {
14159 if(exp->op.op != '=' && type1->type->kind == 0)
14160 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "void *: unknown size\n", (((void *)0))));
14161 }
14162 else if(exp->op.exp2->expType->kind == 13 || exp->op.exp2->expType->kind == 12 || exp->op.exp2->expType->kind == 11 || exp->op.exp2->expType->kind == 16 || (type1->type->kind == 0 && exp->op.exp2->expType->kind == 8 && exp->op.exp2->expType->_class->registered && (exp->op.exp2->expType->_class->registered->type == 0 || exp->op.exp2->expType->_class->registered->type == 1 || exp->op.exp2->expType->_class->registered->type == 5)))
14163 {
14164 if(exp->op.op == ADD_ASSIGN)
14165 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "cannot add two pointers\n", (((void *)0))));
14166 }
14167 else if((exp->op.exp2->expType->kind == 8 && type1->kind == 13 && type1->type->kind == 8 && type1->type->_class == exp->op.exp2->expType->_class && exp->op.exp2->expType->_class->registered && exp->op.exp2->expType->_class->registered->type == 1))
14168 {
14169 if(exp->op.op == ADD_ASSIGN)
14170 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "cannot add two pointers\n", (((void *)0))));
14171 }
14172 else if(inCompiler)
14173 {
14174 char type1String[1024];
14175 char type2String[1024];
14176
14177 type1String[0] = '\0';
14178 type2String[0] = '\0';
14179 PrintType(exp->op.exp2->expType, type1String, 0x0, 0x1);
14180 PrintType(type1, type2String, 0x0, 0x1);
14181 __ecereNameSpace__ecere__sys__ChangeCh(expString, '\n', ' ');
14182 Compiler_Warning(__ecereNameSpace__ecere__GetTranslatedString("ec", "incompatible expression %s (%s); expected %s\n", (((void *)0))), expString, type1String, type2String);
14183 }
14184 }
14185 if(exp->op.exp2->destType == dummy)
14186 {
14187 FreeType(dummy);
14188 exp->op.exp2->destType = (((void *)0));
14189 }
14190 if(exp->op.op == '-' && !exp->op.exp1 && exp->op.exp2->expType && !exp->op.exp2->expType->isSigned)
14191 {
14192 type2 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
14193 type2->refCount = 1;
14194 CopyTypeInto(type2, exp->op.exp2->expType);
14195 type2->isSigned = 0x1;
14196 }
14197 else if(exp->op.op == '~' && !exp->op.exp1 && exp->op.exp2->expType && (!exp->op.exp2->expType->isSigned || exp->op.exp2->expType->kind != 3))
14198 {
14199 type2 = __extension__ ({
14200 struct Type * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
14201
14202 __ecereInstance1->kind = 3, __ecereInstance1;
14203 });
14204 type2->refCount = 1;
14205 type2->isSigned = 0x1;
14206 }
14207 else
14208 {
14209 type2 = exp->op.exp2->expType;
14210 if(type2)
14211 type2->refCount++;
14212 }
14213 }
14214 dummy->kind = 0;
14215 if(exp->op.op == SIZEOF)
14216 {
14217 exp->expType = __extension__ ({
14218 struct Type * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
14219
14220 __ecereInstance1->refCount = 1, __ecereInstance1->kind = 3, __ecereInstance1;
14221 });
14222 exp->isConstant = 0x1;
14223 }
14224 else if(exp->op.op == '*' && !exp->op.exp1)
14225 {
14226 exp->expType = Dereference(type2);
14227 if(type2 && type2->kind == 8)
14228 notByReference = 0x1;
14229 }
14230 else if(exp->op.op == '&' && !exp->op.exp1)
14231 exp->expType = Reference(type2);
14232 else if(!assign)
14233 {
14234 if(boolOps)
14235 {
14236 if(exp->op.exp1)
14237 {
14238 if(exp->op.exp1->destType)
14239 FreeType(exp->op.exp1->destType);
14240 exp->op.exp1->destType = MkClassType("bool");
14241 exp->op.exp1->destType->truth = 0x1;
14242 if(!exp->op.exp1->expType)
14243 ProcessExpressionType(exp->op.exp1);
14244 else
14245 CheckExpressionType(exp->op.exp1, exp->op.exp1->destType, 0x0);
14246 FreeType(exp->op.exp1->expType);
14247 exp->op.exp1->expType = MkClassType("bool");
14248 exp->op.exp1->expType->truth = 0x1;
14249 }
14250 if(exp->op.exp2)
14251 {
14252 if(exp->op.exp2->destType)
14253 FreeType(exp->op.exp2->destType);
14254 exp->op.exp2->destType = MkClassType("bool");
14255 exp->op.exp2->destType->truth = 0x1;
14256 if(!exp->op.exp2->expType)
14257 ProcessExpressionType(exp->op.exp2);
14258 else
14259 CheckExpressionType(exp->op.exp2, exp->op.exp2->destType, 0x0);
14260 FreeType(exp->op.exp2->expType);
14261 exp->op.exp2->expType = MkClassType("bool");
14262 exp->op.exp2->expType->truth = 0x1;
14263 }
14264 }
14265 else if(exp->op.exp1 && exp->op.exp2 && ((useSideType) || ((!type1 || type1->kind != 8 || !strcmp(type1->_class->string, "String")) && (!type2 || type2->kind != 8 || !strcmp(type2->_class->string, "String")))))
14266 {
14267 if(type1 && type2 && ((type1->kind == 8 && type1->_class && strcmp(type1->_class->string, "String")) == (type2->kind == 8 && type2->_class && strcmp(type2->_class->string, "String"))))
14268 {
14269 if(exp->op.exp2->destType)
14270 FreeType(exp->op.exp2->destType);
14271 exp->op.exp2->destType = type1;
14272 type1->refCount++;
14273 if(exp->op.exp1->destType)
14274 FreeType(exp->op.exp1->destType);
14275 exp->op.exp1->destType = type2;
14276 type2->refCount++;
14277 if(!boolResult && type1->kind == 8 && (!exp->destType || exp->destType->kind != 8) && type1->_class->registered && type1->_class->registered->type == 3 && type2->_class->registered && type2->_class->registered->type == 3 && type1->_class->registered != type2->_class->registered)
14278 Compiler_Warning(__ecereNameSpace__ecere__GetTranslatedString("ec", "operating on %s and %s with an untyped result, assuming %s\n", (((void *)0))), type1->_class->string, type2->_class->string, type1->_class->string);
14279 if(type1->kind == 13 && type1->type->kind == 20 && type2->kind != 13)
14280 {
14281 struct Expression * argExp = GetTemplateArgExp(type1->type->templateParameter, thisClass, 0x1);
14282
14283 if(argExp)
14284 {
14285 struct Expression * classExp = MkExpMember(argExp, MkIdentifier("dataTypeClass"));
14286
14287 exp->op.exp1 = MkExpBrackets(MkListOne(MkExpCast(MkTypeName(MkListOne(MkSpecifierName("byte")), MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), (((void *)0)))), exp->op.exp1)));
14288 ProcessExpressionType(exp->op.exp1);
14289 if(type2->kind != 13)
14290 {
14291 ProcessExpressionType(classExp);
14292 exp->op.exp2 = MkExpBrackets(MkListOne(MkExpOp(exp->op.exp2, '*', MkExpBrackets(MkListOne(MkExpCondition(MkExpBrackets(MkListOne(MkExpOp(MkExpOp(MkExpMember(CopyExpression(classExp), MkIdentifier("type")), EQ_OP, MkExpConstant("5")), OR_OP, MkExpOp(MkExpMember(CopyExpression(classExp), MkIdentifier("type")), EQ_OP, MkExpConstant("0"))))), MkListOne(MkExpTypeSize(MkTypeName(MkListOne(MkSpecifier(VOID)), MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), (((void *)0)))))), MkExpMember(classExp, MkIdentifier("typeSize"))))))));
14293 if(!exp->op.exp2->expType)
14294 {
14295 if(type2)
14296 FreeType(type2);
14297 type2 = exp->op.exp2->expType = ProcessTypeString("int", 0x0);
14298 type2->refCount++;
14299 }
14300 ProcessExpressionType(exp->op.exp2);
14301 }
14302 }
14303 }
14304 if(!boolResult && ((type1->kind == 13 || type1->kind == 12 || (type1->kind == 8 && !strcmp(type1->_class->string, "String"))) && (type2->kind == 23 || type2->kind == 22 || type2->kind == 4 || type2->kind == 3 || type2->kind == 2 || type2->kind == 1)))
14305 {
14306 if(type1->kind != 8 && type1->type->kind == 0)
14307 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "void *: unknown size\n", (((void *)0))));
14308 exp->expType = type1;
14309 if(type1)
14310 type1->refCount++;
14311 }
14312 else if(!boolResult && ((type2->kind == 13 || type2->kind == 12 || (type2->kind == 8 && !strcmp(type2->_class->string, "String"))) && (type1->kind == 23 || type1->kind == 22 || type1->kind == 4 || type1->kind == 3 || type1->kind == 2 || type1->kind == 1)))
14313 {
14314 if(type2->kind != 8 && type2->type->kind == 0)
14315 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "void *: unknown size\n", (((void *)0))));
14316 exp->expType = type2;
14317 if(type2)
14318 type2->refCount++;
14319 }
14320 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))
14321 {
14322 Compiler_Warning(__ecereNameSpace__ecere__GetTranslatedString("ec", "different levels of indirection\n", (((void *)0))));
14323 }
14324 else
14325 {
14326 unsigned int success = 0x0;
14327
14328 if(type1->kind == 13 && type2->kind == 13)
14329 {
14330 if(exp->op.op == '+')
14331 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "cannot add two pointers\n", (((void *)0))));
14332 else if(exp->op.op == '-')
14333 {
14334 if(MatchTypes(type1->type, type2->type, (((void *)0)), (((void *)0)), (((void *)0)), 0x0, 0x0, 0x0, 0x0))
14335 {
14336 exp->expType = __extension__ ({
14337 struct Type * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
14338
14339 __ecereInstance1->kind = 3, __ecereInstance1->refCount = 1, __ecereInstance1;
14340 });
14341 success = 0x1;
14342 if(type1->type->kind == 20)
14343 {
14344 struct Expression * argExp = GetTemplateArgExp(type1->type->templateParameter, thisClass, 0x1);
14345
14346 if(argExp)
14347 {
14348 struct Expression * classExp = MkExpMember(argExp, MkIdentifier("dataTypeClass"));
14349
14350 ProcessExpressionType(classExp);
14351 exp->type = 5;
14352 exp->list = MkListOne(MkExpOp(MkExpBrackets(MkListOne(MkExpOp(MkExpCast(MkTypeName(MkListOne(MkSpecifierName("byte")), MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), (((void *)0)))), MkExpBrackets(MkListOne(exp->op.exp1))), exp->op.op, MkExpCast(MkTypeName(MkListOne(MkSpecifierName("byte")), MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), (((void *)0)))), MkExpBrackets(MkListOne(exp->op.exp2)))))), '/', MkExpBrackets(MkListOne(MkExpCondition(MkExpBrackets(MkListOne(MkExpOp(MkExpOp(MkExpMember(CopyExpression(classExp), MkIdentifier("type")), EQ_OP, MkExpIdentifier(MkIdentifier("noHeadClass"))), OR_OP, MkExpOp(MkExpMember(CopyExpression(classExp), MkIdentifier("type")), EQ_OP, MkExpIdentifier(MkIdentifier("normalClass")))))), MkListOne(MkExpTypeSize(MkTypeName(MkListOne(MkSpecifier(VOID)), MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), (((void *)0)))))), MkExpMember(classExp, MkIdentifier("typeSize")))))));
14353 ProcessExpressionType(((struct Expression *)(*exp->list).first)->op.exp2);
14354 FreeType(dummy);
14355 return ;
14356 }
14357 }
14358 }
14359 }
14360 }
14361 if(!success && exp->op.exp1->type == 2)
14362 {
14363 if(CheckExpressionType(exp->op.exp1, exp->op.exp1->destType, 0x0))
14364 {
14365 if(exp->expType)
14366 FreeType(exp->expType);
14367 exp->expType = exp->op.exp1->destType;
14368 if(exp->op.exp1->destType)
14369 exp->op.exp1->destType->refCount++;
14370 success = 0x1;
14371 }
14372 else if(CheckExpressionType(exp->op.exp2, exp->op.exp2->destType, 0x0))
14373 {
14374 if(exp->expType)
14375 FreeType(exp->expType);
14376 exp->expType = exp->op.exp2->destType;
14377 if(exp->op.exp2->destType)
14378 exp->op.exp2->destType->refCount++;
14379 success = 0x1;
14380 }
14381 }
14382 else if(!success)
14383 {
14384 if(CheckExpressionType(exp->op.exp2, exp->op.exp2->destType, 0x0))
14385 {
14386 if(exp->expType)
14387 FreeType(exp->expType);
14388 exp->expType = exp->op.exp2->destType;
14389 if(exp->op.exp2->destType)
14390 exp->op.exp2->destType->refCount++;
14391 success = 0x1;
14392 }
14393 else if(CheckExpressionType(exp->op.exp1, exp->op.exp1->destType, 0x0))
14394 {
14395 if(exp->expType)
14396 FreeType(exp->expType);
14397 exp->expType = exp->op.exp1->destType;
14398 if(exp->op.exp1->destType)
14399 exp->op.exp1->destType->refCount++;
14400 success = 0x1;
14401 }
14402 }
14403 if(!success)
14404 {
14405 char expString1[10240];
14406 char expString2[10240];
14407 char type1[1024];
14408 char type2[1024];
14409
14410 expString1[0] = '\0';
14411 expString2[0] = '\0';
14412 type1[0] = '\0';
14413 type2[0] = '\0';
14414 if(inCompiler)
14415 {
14416 PrintExpression(exp->op.exp1, expString1);
14417 __ecereNameSpace__ecere__sys__ChangeCh(expString1, '\n', ' ');
14418 PrintExpression(exp->op.exp2, expString2);
14419 __ecereNameSpace__ecere__sys__ChangeCh(expString2, '\n', ' ');
14420 PrintType(exp->op.exp1->expType, type1, 0x0, 0x1);
14421 PrintType(exp->op.exp2->expType, type2, 0x0, 0x1);
14422 }
14423 Compiler_Warning(__ecereNameSpace__ecere__GetTranslatedString("ec", "incompatible expressions %s (%s) and %s (%s)\n", (((void *)0))), expString1, type1, expString2, type2);
14424 }
14425 }
14426 }
14427 else if(!boolResult && (!useSideUnit) && type2 && type1 && type2->kind == 8 && type1->kind != 8 && type2->_class && type2->_class->registered && type2->_class->registered->type == 3)
14428 {
14429 if(exp->op.exp1->destType)
14430 FreeType(exp->op.exp1->destType);
14431 exp->op.exp1->destType = type2->_class->registered->dataType;
14432 if(type2->_class->registered->dataType)
14433 type2->_class->registered->dataType->refCount++;
14434 CheckExpressionType(exp->op.exp1, exp->op.exp1->destType, 0x0);
14435 exp->expType = type2;
14436 if(type2)
14437 type2->refCount++;
14438 }
14439 else if(!boolResult && (!useSideUnit) && type1 && type2 && type1->kind == 8 && type2->kind != 8 && type1->_class && type1->_class->registered && type1->_class->registered->type == 3)
14440 {
14441 if(exp->op.exp2->destType)
14442 FreeType(exp->op.exp2->destType);
14443 exp->op.exp2->destType = type1->_class->registered->dataType;
14444 if(type1->_class->registered->dataType)
14445 type1->_class->registered->dataType->refCount++;
14446 CheckExpressionType(exp->op.exp2, exp->op.exp2->destType, 0x0);
14447 exp->expType = type1;
14448 if(type1)
14449 type1->refCount++;
14450 }
14451 else if(type1)
14452 {
14453 unsigned int valid = 0x0;
14454
14455 if(!boolResult && useSideUnit && type1 && type1->kind == 8 && type1->_class->registered && type1->_class->registered->type == 3 && type2 && type2->kind != 8)
14456 {
14457 if(exp->op.exp2->destType)
14458 FreeType(exp->op.exp2->destType);
14459 if(!type1->_class->registered->dataType)
14460 type1->_class->registered->dataType = ProcessTypeString(type1->_class->registered->dataTypeString, 0x0);
14461 exp->op.exp2->destType = type1->_class->registered->dataType;
14462 exp->op.exp2->destType->refCount++;
14463 CheckExpressionType(exp->op.exp2, exp->op.exp2->destType, 0x0);
14464 if(type2)
14465 FreeType(type2);
14466 type2 = exp->op.exp2->destType;
14467 if(type2)
14468 type2->refCount++;
14469 exp->expType = type2;
14470 type2->refCount++;
14471 }
14472 if(!boolResult && useSideUnit && type2 && type2->kind == 8 && type2->_class->registered && type2->_class->registered->type == 3 && type1 && type1->kind != 8)
14473 {
14474 if(exp->op.exp1->destType)
14475 FreeType(exp->op.exp1->destType);
14476 if(!type2->_class->registered->dataType)
14477 type2->_class->registered->dataType = ProcessTypeString(type2->_class->registered->dataTypeString, 0x0);
14478 exp->op.exp1->destType = type2->_class->registered->dataType;
14479 exp->op.exp1->destType->refCount++;
14480 CheckExpressionType(exp->op.exp1, exp->op.exp1->destType, 0x0);
14481 type1 = exp->op.exp1->destType;
14482 exp->expType = type1;
14483 type1->refCount++;
14484 }
14485 if(!boolResult || exp->op.op == '>' || exp->op.op == '<')
14486 {
14487 if(type1->kind == 8 && type1->_class && type1->_class->registered && type1->_class->registered->type == 4 && exp->op.exp2->expType)
14488 {
14489 if(CheckExpressionType(exp->op.exp1, exp->op.exp2->expType, 0x0))
14490 {
14491 if(exp->expType)
14492 FreeType(exp->expType);
14493 exp->expType = exp->op.exp1->expType;
14494 if(exp->op.exp2->expType)
14495 exp->op.exp1->expType->refCount++;
14496 valid = 0x1;
14497 }
14498 }
14499 else if(type2 && (type2->kind == 8 && type2->_class && type2->_class->registered && type2->_class->registered->type == 4 && exp->op.exp1->expType))
14500 {
14501 if(CheckExpressionType(exp->op.exp2, exp->op.exp1->expType, 0x0))
14502 {
14503 if(exp->expType)
14504 FreeType(exp->expType);
14505 exp->expType = exp->op.exp2->expType;
14506 if(exp->op.exp2->expType)
14507 exp->op.exp2->expType->refCount++;
14508 valid = 0x1;
14509 }
14510 }
14511 }
14512 if(!valid)
14513 {
14514 if(exp->op.exp2->destType)
14515 FreeType(exp->op.exp2->destType);
14516 exp->op.exp2->destType = type1;
14517 type1->refCount++;
14518 if(CheckExpressionType(exp->op.exp2, exp->op.exp2->destType, 0x0))
14519 {
14520 if(exp->expType)
14521 FreeType(exp->expType);
14522 exp->expType = exp->op.exp2->destType;
14523 if(exp->op.exp2->destType)
14524 exp->op.exp2->destType->refCount++;
14525 }
14526 else if(type1 && type2)
14527 {
14528 char expString1[10240];
14529 char expString2[10240];
14530 char type1String[1024];
14531 char type2String[1024];
14532
14533 expString1[0] = '\0';
14534 expString2[0] = '\0';
14535 type1String[0] = '\0';
14536 type2String[0] = '\0';
14537 if(inCompiler)
14538 {
14539 PrintExpression(exp->op.exp1, expString1);
14540 __ecereNameSpace__ecere__sys__ChangeCh(expString1, '\n', ' ');
14541 PrintExpression(exp->op.exp2, expString2);
14542 __ecereNameSpace__ecere__sys__ChangeCh(expString2, '\n', ' ');
14543 PrintType(exp->op.exp1->expType, type1String, 0x0, 0x1);
14544 PrintType(exp->op.exp2->expType, type2String, 0x0, 0x1);
14545 }
14546 Compiler_Warning(__ecereNameSpace__ecere__GetTranslatedString("ec", "incompatible expressions %s (%s) and %s (%s)\n", (((void *)0))), expString1, type1String, expString2, type2String);
14547 if(type1->kind == 8 && type1->_class && type1->_class->registered && type1->_class->registered->type == 4)
14548 {
14549 exp->expType = exp->op.exp1->expType;
14550 if(exp->op.exp1->expType)
14551 exp->op.exp1->expType->refCount++;
14552 }
14553 else if(type2->kind == 8 && type2->_class && type2->_class->registered && type2->_class->registered->type == 4)
14554 {
14555 exp->expType = exp->op.exp2->expType;
14556 if(exp->op.exp2->expType)
14557 exp->op.exp2->expType->refCount++;
14558 }
14559 }
14560 }
14561 }
14562 else if(type2)
14563 {
14564 if(type2->kind == 8 && type2->_class && type2->_class->registered && type2->_class->registered->type == 4)
14565 {
14566 struct Type * oldType = exp->op.exp1->expType;
14567
14568 exp->op.exp1->expType = (((void *)0));
14569 if(CheckExpressionType(exp->op.exp1, exp->op.exp1->destType, 0x0))
14570 FreeType(oldType);
14571 else
14572 exp->op.exp1->expType = oldType;
14573 }
14574 if(exp->op.exp1->destType)
14575 FreeType(exp->op.exp1->destType);
14576 exp->op.exp1->destType = type2;
14577 type2->refCount++;
14578 if(CheckExpressionType(exp->op.exp1, exp->op.exp1->destType, 0x0))
14579 {
14580 if(exp->expType)
14581 FreeType(exp->expType);
14582 exp->expType = exp->op.exp1->destType;
14583 if(exp->op.exp1->destType)
14584 exp->op.exp1->destType->refCount++;
14585 }
14586 }
14587 }
14588 else if(type2 && (!type1 || (type2->kind == 8 && type1->kind != 8)))
14589 {
14590 if(type1 && type2->_class && type2->_class->registered && type2->_class->registered->type == 3)
14591 {
14592 if(exp->op.exp1->destType)
14593 FreeType(exp->op.exp1->destType);
14594 exp->op.exp1->destType = type2->_class->registered->dataType;
14595 if(type2->_class->registered->dataType)
14596 type2->_class->registered->dataType->refCount++;
14597 CheckExpressionType(exp->op.exp1, exp->op.exp1->destType, 0x0);
14598 }
14599 if(exp->op.op == '!')
14600 {
14601 exp->expType = MkClassType("bool");
14602 exp->expType->truth = 0x1;
14603 }
14604 else
14605 {
14606 exp->expType = type2;
14607 if(type2)
14608 type2->refCount++;
14609 }
14610 }
14611 else if(type1 && (!type2 || (type1->kind == 8 && type2->kind != 8)))
14612 {
14613 if(type2 && type1->_class && type1->_class->registered && type1->_class->registered->type == 3)
14614 {
14615 if(exp->op.exp2->destType)
14616 FreeType(exp->op.exp2->destType);
14617 exp->op.exp2->destType = type1->_class->registered->dataType;
14618 if(type1->_class->registered->dataType)
14619 type1->_class->registered->dataType->refCount++;
14620 CheckExpressionType(exp->op.exp2, exp->op.exp2->destType, 0x0);
14621 }
14622 exp->expType = type1;
14623 if(type1)
14624 type1->refCount++;
14625 }
14626 }
14627 yylloc = exp->loc;
14628 if(exp->op.exp1 && !exp->op.exp1->expType)
14629 {
14630 char expString[10000];
14631
14632 expString[0] = '\0';
14633 if(inCompiler)
14634 {
14635 PrintExpression(exp->op.exp1, expString);
14636 __ecereNameSpace__ecere__sys__ChangeCh(expString, '\n', ' ');
14637 }
14638 if(expString[0])
14639 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "couldn't determine type of %s\n", (((void *)0))), expString);
14640 }
14641 if(exp->op.exp2 && !exp->op.exp2->expType)
14642 {
14643 char expString[10240];
14644
14645 expString[0] = '\0';
14646 if(inCompiler)
14647 {
14648 PrintExpression(exp->op.exp2, expString);
14649 __ecereNameSpace__ecere__sys__ChangeCh(expString, '\n', ' ');
14650 }
14651 if(expString[0])
14652 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "couldn't determine type of %s\n", (((void *)0))), expString);
14653 }
14654 if(boolResult)
14655 {
14656 FreeType(exp->expType);
14657 exp->expType = MkClassType("bool");
14658 exp->expType->truth = 0x1;
14659 }
14660 if(exp->op.op != SIZEOF)
14661 exp->isConstant = (!exp->op.exp1 || exp->op.exp1->isConstant) && (!exp->op.exp2 || exp->op.exp2->isConstant);
14662 if(exp->op.op == SIZEOF && exp->op.exp2->expType)
14663 {
14664 DeclareType(exp->op.exp2->expType, 0x0, 0x0);
14665 }
14666 yylloc = oldyylloc;
14667 FreeType(dummy);
14668 if(type2)
14669 FreeType(type2);
14670 break;
14671 }
14672 case 5:
14673 case 32:
14674 {
14675 struct Expression * e;
14676
14677 exp->isConstant = 0x1;
14678 for(e = (*exp->list).first; e; e = e->next)
14679 {
14680 unsigned int inced = 0x0;
14681
14682 if(!e->next)
14683 {
14684 FreeType(e->destType);
14685 e->destType = exp->destType;
14686 if(e->destType)
14687 {
14688 exp->destType->refCount++;
14689 e->destType->count++;
14690 inced = 0x1;
14691 }
14692 }
14693 ProcessExpressionType(e);
14694 if(inced)
14695 exp->destType->count--;
14696 if(!exp->expType && !e->next)
14697 {
14698 exp->expType = e->expType;
14699 if(e->expType)
14700 e->expType->refCount++;
14701 }
14702 if(!e->isConstant)
14703 exp->isConstant = 0x0;
14704 }
14705 e = (*exp->list).first;
14706 if(!e->next && e->type == 8)
14707 {
14708 struct Expression * next = exp->next, * prev = exp->prev;
14709
14710 FreeType(exp->expType);
14711 FreeType(exp->destType);
14712 (__ecereNameSpace__ecere__com__eSystem_Delete(exp->list), exp->list = 0);
14713 *exp = *e;
14714 exp->prev = prev;
14715 exp->next = next;
14716 ((e ? (__ecereClass_Expression->Destructor ? __ecereClass_Expression->Destructor(e) : 0, __ecereNameSpace__ecere__com__eSystem_Delete(e)) : 0), e = 0);
14717 ProcessExpressionType(exp);
14718 }
14719 break;
14720 }
14721 case 6:
14722 {
14723 struct Expression * e;
14724
14725 exp->isConstant = 0x1;
14726 ProcessExpressionType(exp->index.exp);
14727 if(!exp->index.exp->isConstant)
14728 exp->isConstant = 0x0;
14729 if(exp->index.exp->expType)
14730 {
14731 struct Type * source = exp->index.exp->expType;
14732
14733 if(source->kind == 8 && source->_class && source->_class->registered)
14734 {
14735 struct __ecereNameSpace__ecere__com__Class * _class = source->_class->registered;
14736 struct __ecereNameSpace__ecere__com__Class * c = _class->templateClass ? _class->templateClass : _class;
14737
14738 if(_class != containerClass && __ecereNameSpace__ecere__com__eClass_IsDerived(c, containerClass) && _class->templateArgs)
14739 {
14740 exp->expType = ProcessTypeString(_class->templateArgs[2].dataTypeString, 0x0);
14741 if(exp->index.index && (*exp->index.index).last)
14742 {
14743 ((struct Expression *)(*exp->index.index).last)->destType = ProcessTypeString(_class->templateArgs[1].dataTypeString, 0x0);
14744 }
14745 }
14746 }
14747 }
14748 for(e = (*exp->index.index).first; e; e = e->next)
14749 {
14750 if(!e->next && exp->index.exp->expType && exp->index.exp->expType->kind == 12 && exp->index.exp->expType->enumClass)
14751 {
14752 if(e->destType)
14753 FreeType(e->destType);
14754 e->destType = MkClassType(exp->index.exp->expType->enumClass->string);
14755 }
14756 ProcessExpressionType(e);
14757 if(!e->next)
14758 {
14759 }
14760 if(!e->isConstant)
14761 exp->isConstant = 0x0;
14762 }
14763 if(!exp->expType)
14764 exp->expType = Dereference(exp->index.exp->expType);
14765 if(exp->expType)
14766 DeclareType(exp->expType, 0x0, 0x0);
14767 break;
14768 }
14769 case 7:
14770 {
14771 struct Expression * e;
14772 struct Type * functionType;
14773 struct Type * methodType = (((void *)0));
14774 char name[1024];
14775
14776 name[0] = '\0';
14777 if(inCompiler)
14778 {
14779 PrintExpression(exp->call.exp, name);
14780 if(exp->call.exp->expType && !exp->call.exp->expType->returnType)
14781 {
14782 PrintExpression(exp->call.exp, name);
14783 }
14784 }
14785 if(exp->call.exp->type == 0)
14786 {
14787 struct Expression * idExp = exp->call.exp;
14788 struct Identifier * id = idExp->identifier;
14789
14790 if(!strcmp(id->string, "__builtin_frame_address"))
14791 {
14792 exp->expType = ProcessTypeString("void *", 0x1);
14793 if(exp->call.arguments && (*exp->call.arguments).first)
14794 ProcessExpressionType((*exp->call.arguments).first);
14795 break;
14796 }
14797 else if(!strcmp(id->string, "__ENDIAN_PAD"))
14798 {
14799 exp->expType = ProcessTypeString("int", 0x1);
14800 if(exp->call.arguments && (*exp->call.arguments).first)
14801 ProcessExpressionType((*exp->call.arguments).first);
14802 break;
14803 }
14804 else if(!strcmp(id->string, "Max") || !strcmp(id->string, "Min") || !strcmp(id->string, "Sgn") || !strcmp(id->string, "Abs"))
14805 {
14806 struct Expression * a = (((void *)0));
14807 struct Expression * b = (((void *)0));
14808 struct Expression * tempExp1 = (((void *)0)), * tempExp2 = (((void *)0));
14809
14810 if((!strcmp(id->string, "Max") || !strcmp(id->string, "Min")) && (*exp->call.arguments).count == 2)
14811 {
14812 a = (*exp->call.arguments).first;
14813 b = (*exp->call.arguments).last;
14814 tempExp1 = a;
14815 tempExp2 = b;
14816 }
14817 else if((*exp->call.arguments).count == 1)
14818 {
14819 a = (*exp->call.arguments).first;
14820 tempExp1 = a;
14821 }
14822 if(a)
14823 {
14824 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Clear((&*exp->call.arguments));
14825 idExp->identifier = (((void *)0));
14826 FreeExpContents(exp);
14827 ProcessExpressionType(a);
14828 if(b)
14829 ProcessExpressionType(b);
14830 exp->type = 5;
14831 exp->list = MkList();
14832 if(a->expType && (!b || b->expType))
14833 {
14834 if((!a->isConstant && a->type != 0) || (b && !b->isConstant && b->type != 0))
14835 {
14836 if(inCompiler)
14837 {
14838 struct __ecereNameSpace__ecere__sys__OldList * specs = MkList();
14839 struct __ecereNameSpace__ecere__sys__OldList * decls = MkList();
14840 struct Declaration * decl;
14841 char temp1[1024], temp2[1024];
14842
14843 GetTypeSpecs(a->expType, specs);
14844 if(a && !a->isConstant && a->type != 0)
14845 {
14846 sprintf(temp1, "__simpleStruct%d", curContext->simpleID++);
14847 ListAdd(decls, MkInitDeclarator(MkDeclaratorIdentifier(MkIdentifier(temp1)), (((void *)0))));
14848 tempExp1 = QMkExpId(temp1);
14849 tempExp1->expType = a->expType;
14850 if(a->expType)
14851 a->expType->refCount++;
14852 ListAdd(exp->list, MkExpOp(CopyExpression(tempExp1), '=', a));
14853 }
14854 if(b && !b->isConstant && b->type != 0)
14855 {
14856 sprintf(temp2, "__simpleStruct%d", curContext->simpleID++);
14857 ListAdd(decls, MkInitDeclarator(MkDeclaratorIdentifier(MkIdentifier(temp2)), (((void *)0))));
14858 tempExp2 = QMkExpId(temp2);
14859 tempExp2->expType = b->expType;
14860 if(b->expType)
14861 b->expType->refCount++;
14862 ListAdd(exp->list, MkExpOp(CopyExpression(tempExp2), '=', b));
14863 }
14864 decl = MkDeclaration(specs, decls);
14865 if(!curCompound->compound.declarations)
14866 curCompound->compound.declarations = MkList();
14867 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*curCompound->compound.declarations), (((void *)0)), decl);
14868 }
14869 }
14870 }
14871 if(!strcmp(id->string, "Max") || !strcmp(id->string, "Min"))
14872 {
14873 int op = (!strcmp(id->string, "Max")) ? '>' : '<';
14874
14875 ListAdd(exp->list, MkExpCondition(MkExpBrackets(MkListOne(MkExpOp(CopyExpression(tempExp1), op, CopyExpression(tempExp2)))), MkListOne(CopyExpression(tempExp1)), CopyExpression(tempExp2)));
14876 exp->expType = a->expType;
14877 if(a->expType)
14878 a->expType->refCount++;
14879 }
14880 else if(!strcmp(id->string, "Abs"))
14881 {
14882 ListAdd(exp->list, MkExpCondition(MkExpBrackets(MkListOne(MkExpOp(CopyExpression(tempExp1), '<', MkExpConstant("0")))), MkListOne(MkExpOp((((void *)0)), '-', CopyExpression(tempExp1))), CopyExpression(tempExp1)));
14883 exp->expType = a->expType;
14884 if(a->expType)
14885 a->expType->refCount++;
14886 }
14887 else if(!strcmp(id->string, "Sgn"))
14888 {
14889 ListAdd(exp->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"))))));
14890 exp->expType = ProcessTypeString("int", 0x0);
14891 }
14892 FreeExpression(tempExp1);
14893 if(tempExp2)
14894 FreeExpression(tempExp2);
14895 FreeIdentifier(id);
14896 break;
14897 }
14898 }
14899 }
14900 {
14901 struct Type * dummy = (dummy = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type), dummy->count = 1, dummy->refCount = 1, dummy);
14902
14903 if(!exp->call.exp->destType)
14904 {
14905 exp->call.exp->destType = dummy;
14906 dummy->refCount++;
14907 }
14908 ProcessExpressionType(exp->call.exp);
14909 if(exp->call.exp->destType == dummy)
14910 {
14911 FreeType(dummy);
14912 exp->call.exp->destType = (((void *)0));
14913 }
14914 FreeType(dummy);
14915 }
14916 functionType = exp->call.exp->expType;
14917 if(functionType && functionType->kind == 16)
14918 {
14919 methodType = functionType;
14920 functionType = methodType->method->dataType;
14921 if(exp->call.exp->expType->usedClass)
14922 {
14923 char typeString[1024];
14924
14925 typeString[0] = '\0';
14926 {
14927 struct Symbol * back = functionType->thisClass;
14928
14929 functionType->thisClass = (((void *)0));
14930 PrintType(functionType, typeString, 0x1, 0x1);
14931 functionType->thisClass = back;
14932 }
14933 if(strstr(typeString, "thisclass"))
14934 {
14935 struct __ecereNameSpace__ecere__sys__OldList * specs = MkList();
14936 struct Declarator * decl;
14937
14938 {
14939 struct Context * context = SetupTemplatesContext(exp->call.exp->expType->usedClass);
14940
14941 decl = SpecDeclFromString(typeString, specs, (((void *)0)));
14942 if(thisClass != (exp->call.exp->expType->usedClass->templateClass ? exp->call.exp->expType->usedClass->templateClass : exp->call.exp->expType->usedClass))
14943 thisClassParams = 0x0;
14944 ReplaceThisClassSpecifiers(specs, exp->call.exp->expType->usedClass);
14945 {
14946 struct __ecereNameSpace__ecere__com__Class * backupThisClass = thisClass;
14947
14948 thisClass = exp->call.exp->expType->usedClass;
14949 ProcessDeclarator(decl);
14950 thisClass = backupThisClass;
14951 }
14952 thisClassParams = 0x1;
14953 functionType = ProcessType(specs, decl);
14954 functionType->refCount = 0;
14955 FinishTemplatesContext(context);
14956 }
14957 FreeList(specs, FreeSpecifier);
14958 FreeDeclarator(decl);
14959 }
14960 }
14961 }
14962 if(functionType && functionType->kind == 13 && functionType->type && functionType->type->kind == 11)
14963 {
14964 struct Type * type = functionType->type;
14965
14966 if(!functionType->refCount)
14967 {
14968 functionType->type = (((void *)0));
14969 FreeType(functionType);
14970 }
14971 functionType = type;
14972 }
14973 if(functionType && functionType->kind != 11)
14974 {
14975 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "called object %s is not a function\n", (((void *)0))), name);
14976 }
14977 else if(functionType)
14978 {
14979 unsigned int emptyParams = 0x0, noParams = 0x0;
14980 struct Expression * e = exp->call.arguments ? (*exp->call.arguments).first : (((void *)0));
14981 struct Type * type = functionType->params.first;
14982 struct Expression * memberExp = (exp->call.exp->type == 8) ? exp->call.exp : (((void *)0));
14983 int extra = 0;
14984 struct Location oldyylloc = yylloc;
14985
14986 if(!type)
14987 emptyParams = 0x1;
14988 if(functionType->extraParam && e && functionType->thisClass)
14989 {
14990 e->destType = MkClassType(functionType->thisClass->string);
14991 e = e->next;
14992 }
14993 if(!functionType->staticMethod && !functionType->extraParam)
14994 {
14995 if(memberExp && memberExp->member.exp && memberExp->member.exp->expType && memberExp->member.exp->expType->kind == 19 && memberExp->member.exp->expType->_class)
14996 {
14997 type = MkClassType(memberExp->member.exp->expType->_class->string);
14998 if(e)
14999 {
15000 e->destType = type;
15001 e = e->next;
15002 type = functionType->params.first;
15003 }
15004 else
15005 type->refCount = 0;
15006 }
15007 else if(!memberExp && (functionType->thisClass || (methodType && methodType->methodClass)))
15008 {
15009 type = MkClassType(functionType->thisClass ? functionType->thisClass->string : (methodType ? methodType->methodClass->fullName : (((void *)0))));
15010 type->byReference = functionType->byReference;
15011 type->typedByReference = functionType->typedByReference;
15012 if(e)
15013 {
15014 if(e->next && type->kind == 8 && (functionType && functionType->thisClass) && functionType->classObjectType == 2)
15015 e = e->next;
15016 e->destType = type;
15017 e = e->next;
15018 type = functionType->params.first;
15019 }
15020 else
15021 type->refCount = 0;
15022 }
15023 }
15024 if(type && type->kind == 0)
15025 {
15026 noParams = 0x1;
15027 if(!type->refCount)
15028 FreeType(type);
15029 type = (((void *)0));
15030 }
15031 for(; e; e = e->next)
15032 {
15033 if(!type && !emptyParams)
15034 {
15035 yylloc = e->loc;
15036 if(methodType && methodType->methodClass)
15037 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "too many arguments for method %s::%s (%d given, expected %d)\n", (((void *)0))), methodType->methodClass->fullName, methodType->method->name, (*exp->call.arguments).count, noParams ? 0 : functionType->params.count);
15038 else
15039 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "too many arguments for function %s (%d given, expected %d)\n", (((void *)0))), name, (*exp->call.arguments).count, noParams ? 0 : functionType->params.count);
15040 break;
15041 }
15042 if(methodType && type && type->kind == 20 && type->templateParameter->type == 0)
15043 {
15044 struct Type * templatedType = (((void *)0));
15045 struct __ecereNameSpace__ecere__com__Class * _class = methodType->usedClass;
15046 struct __ecereNameSpace__ecere__com__ClassTemplateParameter * curParam = (((void *)0));
15047 int id = 0;
15048
15049 if(_class && _class->templateArgs)
15050 {
15051 struct __ecereNameSpace__ecere__com__Class * sClass;
15052
15053 for(sClass = _class; sClass; sClass = sClass->base)
15054 {
15055 if(sClass->templateClass)
15056 sClass = sClass->templateClass;
15057 id = 0;
15058 for(curParam = sClass->templateParams.first; curParam; curParam = curParam->next)
15059 {
15060 if(curParam->type == 0 && !strcmp(type->templateParameter->identifier->string, curParam->name))
15061 {
15062 struct __ecereNameSpace__ecere__com__Class * nextClass;
15063
15064 for(nextClass = sClass->base; nextClass; nextClass = nextClass->base)
15065 {
15066 if(nextClass->templateClass)
15067 nextClass = nextClass->templateClass;
15068 id += nextClass->templateParams.count;
15069 }
15070 break;
15071 }
15072 id++;
15073 }
15074 if(curParam)
15075 break;
15076 }
15077 }
15078 if(curParam && _class->templateArgs[id].dataTypeString)
15079 {
15080 struct __ecereNameSpace__ecere__com__ClassTemplateArgument arg = _class->templateArgs[id];
15081
15082 {
15083 struct Context * context = SetupTemplatesContext(_class);
15084
15085 templatedType = ProcessTypeString(arg.dataTypeString, 0x0);
15086 FinishTemplatesContext(context);
15087 }
15088 e->destType = templatedType;
15089 if(templatedType)
15090 {
15091 templatedType->passAsTemplate = 0x1;
15092 }
15093 }
15094 else
15095 {
15096 e->destType = type;
15097 if(type)
15098 type->refCount++;
15099 }
15100 }
15101 else
15102 {
15103 if(type && type->kind == 14 && type->prev && type->prev->kind == 8 && type->prev->classObjectType)
15104 {
15105 e->destType = type->prev;
15106 e->destType->refCount++;
15107 }
15108 else
15109 {
15110 e->destType = type;
15111 if(type)
15112 type->refCount++;
15113 }
15114 }
15115 if(type && type->kind != 14)
15116 {
15117 struct Type * next = type->next;
15118
15119 if(!type->refCount)
15120 FreeType(type);
15121 type = next;
15122 }
15123 }
15124 if(type && type->kind != 14)
15125 {
15126 if(methodType && methodType->methodClass)
15127 Compiler_Warning(__ecereNameSpace__ecere__GetTranslatedString("ec", "not enough arguments for method %s::%s (%d given, expected %d)\n", (((void *)0))), methodType->methodClass->fullName, methodType->method->name, exp->call.arguments ? (*exp->call.arguments).count : 0, functionType->params.count + extra);
15128 else
15129 Compiler_Warning(__ecereNameSpace__ecere__GetTranslatedString("ec", "not enough arguments for function %s (%d given, expected %d)\n", (((void *)0))), name, exp->call.arguments ? (*exp->call.arguments).count : 0, functionType->params.count + extra);
15130 }
15131 yylloc = oldyylloc;
15132 if(type && !type->refCount)
15133 FreeType(type);
15134 }
15135 else
15136 {
15137 functionType = __extension__ ({
15138 struct Type * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
15139
15140 __ecereInstance1->refCount = 0, __ecereInstance1->kind = 11, __ecereInstance1;
15141 });
15142 if(exp->call.exp->type == 0)
15143 {
15144 char * string = exp->call.exp->identifier->string;
15145
15146 if(inCompiler)
15147 {
15148 struct Symbol * symbol;
15149 struct Location oldyylloc = yylloc;
15150
15151 yylloc = exp->call.exp->identifier->loc;
15152 if(strstr(string, "__builtin_") == string)
15153 {
15154 if(exp->destType)
15155 {
15156 functionType->returnType = exp->destType;
15157 exp->destType->refCount++;
15158 }
15159 }
15160 else
15161 Compiler_Warning(__ecereNameSpace__ecere__GetTranslatedString("ec", "%s undefined; assuming extern returning int\n", (((void *)0))), string);
15162 symbol = __extension__ ({
15163 struct Symbol * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol);
15164
15165 __ecereInstance1->string = __ecereNameSpace__ecere__sys__CopyString(string), __ecereInstance1->type = ProcessTypeString("int()", 0x1), __ecereInstance1;
15166 });
15167 __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Add(&globalContext->symbols, (struct __ecereNameSpace__ecere__sys__BTNode *)symbol);
15168 if(strstr(symbol->string, "::"))
15169 globalContext->hasNameSpace = 0x1;
15170 yylloc = oldyylloc;
15171 }
15172 }
15173 else if(exp->call.exp->type == 8)
15174 {
15175 }
15176 else
15177 Compiler_Warning(__ecereNameSpace__ecere__GetTranslatedString("ec", "callable object undefined; extern assuming returning int\n", (((void *)0))));
15178 if(!functionType->returnType)
15179 {
15180 functionType->returnType = __extension__ ({
15181 struct Type * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
15182
15183 __ecereInstance1->refCount = 1, __ecereInstance1->kind = 3, __ecereInstance1;
15184 });
15185 }
15186 }
15187 if(functionType && functionType->kind == 11)
15188 {
15189 exp->expType = functionType->returnType;
15190 if(functionType->returnType)
15191 functionType->returnType->refCount++;
15192 if(!functionType->refCount)
15193 FreeType(functionType);
15194 }
15195 if(exp->call.arguments)
15196 {
15197 for(e = (*exp->call.arguments).first; e; e = e->next)
15198 {
15199 struct Type * destType = e->destType;
15200
15201 ProcessExpressionType(e);
15202 }
15203 }
15204 break;
15205 }
15206 case 8:
15207 {
15208 struct Type * type;
15209 struct Location oldyylloc = yylloc;
15210 unsigned int thisPtr;
15211 struct Expression * checkExp = exp->member.exp;
15212
15213 while(checkExp)
15214 {
15215 if(checkExp->type == 11)
15216 checkExp = checkExp->cast.exp;
15217 else if(checkExp->type == 5)
15218 checkExp = checkExp->list ? (*checkExp->list).first : (((void *)0));
15219 else
15220 break;
15221 }
15222 thisPtr = (checkExp && checkExp->type == 0 && !strcmp(checkExp->identifier->string, "this"));
15223 exp->thisPtr = thisPtr;
15224 if(exp->member.member && exp->member.member->_class && exp->member.member->_class->name)
15225 {
15226 exp->member.member->classSym = exp->member.member->_class->symbol;
15227 }
15228 ProcessExpressionType(exp->member.exp);
15229 if(exp->member.exp->expType && exp->member.exp->expType->kind == 8 && exp->member.exp->expType->_class && exp->member.exp->expType->_class->registered && exp->member.exp->expType->_class->registered->type == 0)
15230 {
15231 exp->isConstant = 0x0;
15232 }
15233 else
15234 exp->isConstant = exp->member.exp->isConstant;
15235 type = exp->member.exp->expType;
15236 yylloc = exp->loc;
15237 if(type && (type->kind == 20))
15238 {
15239 struct __ecereNameSpace__ecere__com__Class * _class = thisClass ? thisClass : currentClass;
15240 struct __ecereNameSpace__ecere__com__ClassTemplateParameter * param = (((void *)0));
15241
15242 if(_class)
15243 {
15244 for(param = _class->templateParams.first; param; param = param->next)
15245 {
15246 if(param->type == 1 && exp->member.member && exp->member.member->string && !strcmp(param->name, exp->member.member->string))
15247 break;
15248 }
15249 }
15250 if(param && param->defaultArg.member)
15251 {
15252 struct Expression * argExp = GetTemplateArgExpByName(param->name, thisClass, 1);
15253
15254 if(argExp)
15255 {
15256 struct Expression * expMember = exp->member.exp;
15257 struct Declarator * decl;
15258 struct __ecereNameSpace__ecere__sys__OldList * specs = MkList();
15259 char thisClassTypeString[1024];
15260
15261 FreeIdentifier(exp->member.member);
15262 ProcessExpressionType(argExp);
15263 {
15264 char * colon = strstr(param->defaultArg.memberString, "::");
15265
15266 if(colon)
15267 {
15268 char className[1024];
15269 struct __ecereNameSpace__ecere__com__Class * sClass;
15270
15271 memcpy(thisClassTypeString, param->defaultArg.memberString, colon - param->defaultArg.memberString);
15272 thisClassTypeString[colon - param->defaultArg.memberString] = '\0';
15273 }
15274 else
15275 strcpy(thisClassTypeString, _class->fullName);
15276 }
15277 decl = SpecDeclFromString(param->defaultArg.member->dataTypeString, specs, (((void *)0)));
15278 exp->expType = ProcessType(specs, decl);
15279 if(exp->expType->kind == 8 && exp->expType->_class && exp->expType->_class->registered && exp->expType->_class->registered->templateClass)
15280 {
15281 struct __ecereNameSpace__ecere__com__Class * expClass = exp->expType->_class->registered;
15282 struct __ecereNameSpace__ecere__com__Class * cClass = (((void *)0));
15283 int c;
15284 int paramCount = 0;
15285 int lastParam = -1;
15286 char templateString[1024];
15287 struct __ecereNameSpace__ecere__com__ClassTemplateParameter * param;
15288
15289 sprintf(templateString, "%s<", expClass->templateClass->fullName);
15290 for(cClass = expClass; cClass; cClass = cClass->base)
15291 {
15292 int p = 0;
15293
15294 for(param = cClass->templateParams.first; param; param = param->next)
15295 {
15296 int id = p;
15297 struct __ecereNameSpace__ecere__com__Class * sClass;
15298 struct __ecereNameSpace__ecere__com__ClassTemplateArgument arg;
15299
15300 for(sClass = cClass->base; sClass; sClass = sClass->base)
15301 id += sClass->templateParams.count;
15302 arg = expClass->templateArgs[id];
15303 for(sClass = _class; sClass; sClass = sClass->base)
15304 {
15305 struct __ecereNameSpace__ecere__com__ClassTemplateParameter * cParam;
15306 int p = 0;
15307 struct __ecereNameSpace__ecere__com__Class * nextClass;
15308
15309 for(nextClass = sClass->base; nextClass; nextClass = nextClass->base)
15310 p += nextClass->templateParams.count;
15311 for(cParam = sClass->templateParams.first; cParam; cParam = cParam->next, p++)
15312 {
15313 if(cParam->type == 0 && arg.dataTypeString && !strcmp(cParam->name, arg.dataTypeString))
15314 {
15315 if(_class->templateArgs && arg.dataTypeString && (!param->defaultArg.dataTypeString || strcmp(arg.dataTypeString, param->defaultArg.dataTypeString)))
15316 {
15317 arg.dataTypeString = _class->templateArgs[p].dataTypeString;
15318 arg.dataTypeClass = _class->templateArgs[p].dataTypeClass;
15319 break;
15320 }
15321 }
15322 }
15323 }
15324 {
15325 char argument[256];
15326
15327 argument[0] = '\0';
15328 switch(param->type)
15329 {
15330 case 2:
15331 {
15332 char expString[1024];
15333 struct __ecereNameSpace__ecere__sys__OldList * specs = MkList();
15334 struct Declarator * decl = SpecDeclFromString(param->dataTypeString, specs, (((void *)0)));
15335 struct Expression * exp;
15336 char * string = PrintHexUInt64(arg.expression.ui64);
15337
15338 exp = MkExpCast(MkTypeName(specs, decl), MkExpConstant(string));
15339 (__ecereNameSpace__ecere__com__eSystem_Delete(string), string = 0);
15340 ProcessExpressionType(exp);
15341 ComputeExpression(exp);
15342 expString[0] = '\0';
15343 PrintExpression(exp, expString);
15344 strcat(argument, expString);
15345 FreeExpression(exp);
15346 break;
15347 }
15348 case 1:
15349 {
15350 strcat(argument, arg.member->name);
15351 break;
15352 }
15353 case 0:
15354 {
15355 if(arg.dataTypeString && (!param->defaultArg.dataTypeString || strcmp(arg.dataTypeString, param->defaultArg.dataTypeString)))
15356 {
15357 if(!strcmp(arg.dataTypeString, "thisclass"))
15358 strcat(argument, thisClassTypeString);
15359 else
15360 strcat(argument, arg.dataTypeString);
15361 }
15362 break;
15363 }
15364 }
15365 if(argument[0])
15366 {
15367 if(paramCount)
15368 strcat(templateString, ", ");
15369 if(lastParam != p - 1)
15370 {
15371 strcat(templateString, param->name);
15372 strcat(templateString, " = ");
15373 }
15374 strcat(templateString, argument);
15375 paramCount++;
15376 lastParam = p;
15377 }
15378 p++;
15379 }
15380 }
15381 }
15382 {
15383 int len = strlen(templateString);
15384
15385 if(templateString[len - 1] == '>')
15386 templateString[len++] = ' ';
15387 templateString[len++] = '>';
15388 templateString[len++] = '\0';
15389 }
15390 {
15391 struct Context * context = SetupTemplatesContext(_class);
15392
15393 FreeType(exp->expType);
15394 exp->expType = ProcessTypeString(templateString, 0x0);
15395 FinishTemplatesContext(context);
15396 }
15397 }
15398 exp->type = 5;
15399 exp->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")))))))));
15400 }
15401 }
15402 else if(type->templateParameter && type->templateParameter->type == 0 && (type->templateParameter->dataType || type->templateParameter->dataTypeString))
15403 {
15404 type = ProcessTemplateParameterType(type->templateParameter);
15405 }
15406 }
15407 if(type && (type->kind == 20))
15408 ;
15409 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->type->kind == 1)))
15410 {
15411 struct Identifier * id = exp->member.member;
15412 int typeKind = type->kind;
15413 struct __ecereNameSpace__ecere__com__Class * _class = (id && (!id->_class || id->_class->name)) ? (id->classSym ? id->classSym->registered : (type->_class ? type->_class->registered : (((void *)0)))) : (((void *)0));
15414
15415 if(typeKind == 19 && exp->member.exp->type == 24)
15416 {
15417 _class = __ecereNameSpace__ecere__com__eSystem_FindClass(privateModule, "ecere::com::Class");
15418 typeKind = 8;
15419 }
15420 if(id)
15421 {
15422 if(typeKind == 3 || typeKind == 15)
15423 _class = __ecereNameSpace__ecere__com__eSystem_FindClass(privateModule, "int");
15424 else if(!_class)
15425 {
15426 if(type->kind == 8 && type->_class && type->_class->registered)
15427 {
15428 _class = type->_class->registered;
15429 }
15430 else if((type->kind == 12 || type->kind == 13) && type->type && type->type->kind == 1)
15431 {
15432 _class = FindClass("char *")->registered;
15433 }
15434 else if(type->kind == 13)
15435 {
15436 _class = __ecereNameSpace__ecere__com__eSystem_FindClass(privateModule, "uintptr");
15437 FreeType(exp->expType);
15438 exp->expType = ProcessTypeString("uintptr", 0x0);
15439 exp->byReference = 0x1;
15440 }
15441 else
15442 {
15443 char string[1024] = "";
15444 struct Symbol * classSym;
15445
15446 PrintTypeNoConst(type, string, 0x0, 0x1);
15447 classSym = FindClass(string);
15448 if(classSym)
15449 _class = classSym->registered;
15450 }
15451 }
15452 }
15453 if(_class && id)
15454 {
15455 struct __ecereNameSpace__ecere__com__Property * prop = (((void *)0));
15456 struct __ecereNameSpace__ecere__com__Method * method = (((void *)0));
15457 struct __ecereNameSpace__ecere__com__DataMember * member = (((void *)0));
15458 struct __ecereNameSpace__ecere__com__Property * revConvert = (((void *)0));
15459 struct __ecereNameSpace__ecere__com__ClassProperty * classProp = (((void *)0));
15460
15461 if(id && id->_class && id->_class->name && !strcmp(id->_class->name, "property"))
15462 exp->member.memberType = 1;
15463 if(id && id->_class && type->_class && !__ecereNameSpace__ecere__com__eClass_IsDerived(type->_class->registered, _class))
15464 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "invalid class specifier %s for object of class %s\n", (((void *)0))), _class->fullName, type->_class->string);
15465 if(typeKind != 19)
15466 {
15467 if((exp->member.memberType == 0 && thisPtr) || exp->member.memberType == 3)
15468 {
15469 member = __ecereNameSpace__ecere__com__eClass_FindDataMember(_class, id->string, privateModule, (((void *)0)), (((void *)0)));
15470 if(member && member->_class != (_class->templateClass ? _class->templateClass : _class) && exp->member.memberType != 3)
15471 {
15472 prop = __ecereNameSpace__ecere__com__eClass_FindProperty(_class, id->string, privateModule);
15473 if(prop)
15474 member = (((void *)0));
15475 }
15476 if(!member && !prop)
15477 prop = __ecereNameSpace__ecere__com__eClass_FindProperty(_class, id->string, privateModule);
15478 if((member && member->_class == (_class->templateClass ? _class->templateClass : _class)) || (prop && prop->_class == (_class->templateClass ? _class->templateClass : _class)))
15479 exp->member.thisPtr = 0x1;
15480 }
15481 else
15482 {
15483 if(!id->classSym)
15484 {
15485 prop = __ecereNameSpace__ecere__com__eClass_FindProperty(_class, id->string, (((void *)0)));
15486 if(!id->_class || !id->_class->name || strcmp(id->_class->name, "property"))
15487 member = __ecereNameSpace__ecere__com__eClass_FindDataMember(_class, id->string, (((void *)0)), (((void *)0)), (((void *)0)));
15488 }
15489 if(!prop && !member)
15490 {
15491 method = __ecereNameSpace__ecere__com__eClass_FindMethod(_class, id->string, (((void *)0)));
15492 if(!method)
15493 {
15494 prop = __ecereNameSpace__ecere__com__eClass_FindProperty(_class, id->string, privateModule);
15495 if(!id->_class || !id->_class->name || strcmp(id->_class->name, "property"))
15496 member = __ecereNameSpace__ecere__com__eClass_FindDataMember(_class, id->string, privateModule, (((void *)0)), (((void *)0)));
15497 }
15498 }
15499 if(member && prop)
15500 {
15501 if(member->_class != prop->_class && !id->_class && __ecereNameSpace__ecere__com__eClass_IsDerived(member->_class, prop->_class))
15502 prop = (((void *)0));
15503 else
15504 member = (((void *)0));
15505 }
15506 }
15507 }
15508 if(!prop && !member && !method)
15509 method = __ecereNameSpace__ecere__com__eClass_FindMethod(_class, id->string, privateModule);
15510 if(!prop && !member && !method)
15511 {
15512 if(typeKind == 19)
15513 {
15514 classProp = __ecereNameSpace__ecere__com__eClass_FindClassProperty(type->_class->registered, exp->member.member->string);
15515 if(classProp)
15516 {
15517 exp->member.memberType = 5;
15518 exp->expType = ProcessTypeString(classProp->dataTypeString, 0x0);
15519 }
15520 else
15521 {
15522 char structName[1024];
15523 struct Identifier * id = exp->member.member;
15524 struct Expression * classExp = exp->member.exp;
15525
15526 type->refCount++;
15527 FreeType(classExp->expType);
15528 classExp->expType = ProcessTypeString("ecere::com::Class", 0x0);
15529 strcpy(structName, "__ecereClassData_");
15530 FullClassNameCat(structName, type->_class->string, 0x0);
15531 exp->type = 9;
15532 exp->member.member = id;
15533 exp->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->_class->string)), (((void *)0))), MkIdentifier("offsetClass"))))))));
15534 FreeType(type);
15535 ProcessExpressionType(exp);
15536 return ;
15537 }
15538 }
15539 else
15540 {
15541 struct Symbol * classSym = FindClass(id->string);
15542
15543 if(classSym)
15544 {
15545 struct __ecereNameSpace__ecere__com__Class * convertClass = classSym->registered;
15546
15547 if(convertClass)
15548 revConvert = __ecereNameSpace__ecere__com__eClass_FindProperty(convertClass, _class->fullName, privateModule);
15549 }
15550 }
15551 }
15552 if(prop)
15553 {
15554 exp->member.memberType = 1;
15555 if(!prop->dataType)
15556 ProcessPropertyType(prop);
15557 exp->expType = prop->dataType;
15558 if(prop->dataType)
15559 prop->dataType->refCount++;
15560 }
15561 else if(member)
15562 {
15563 if(exp->member.exp->expType->classObjectType == 2 && !strcmp(exp->member.member->string, "_class"))
15564 {
15565 FreeExpContents(exp);
15566 exp->type = 0;
15567 exp->identifier = MkIdentifier("class");
15568 ProcessExpressionType(exp);
15569 return ;
15570 }
15571 exp->member.memberType = 3;
15572 DeclareStruct(_class->fullName, 0x0);
15573 if(!member->dataType)
15574 {
15575 struct Context * context = SetupTemplatesContext(_class);
15576
15577 member->dataType = ProcessTypeString(member->dataTypeString, 0x0);
15578 FinishTemplatesContext(context);
15579 }
15580 exp->expType = member->dataType;
15581 if(member->dataType)
15582 member->dataType->refCount++;
15583 }
15584 else if(revConvert)
15585 {
15586 exp->member.memberType = 4;
15587 exp->expType = MkClassType(revConvert->_class->fullName);
15588 }
15589 else if(method)
15590 {
15591 {
15592 exp->member.memberType = 2;
15593 }
15594 if(!method->dataType)
15595 ProcessMethodType(method);
15596 exp->expType = __extension__ ({
15597 struct Type * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
15598
15599 __ecereInstance1->refCount = 1, __ecereInstance1->kind = 16, __ecereInstance1->method = method, __ecereInstance1;
15600 });
15601 exp->expType->methodClass = (id && id->_class) ? _class : (((void *)0));
15602 exp->expType->usedClass = _class;
15603 }
15604 else if(!classProp)
15605 {
15606 if(exp->member.exp->expType->classObjectType == 2 && !strcmp(exp->member.member->string, "_class"))
15607 {
15608 FreeExpContents(exp);
15609 exp->type = 0;
15610 exp->identifier = MkIdentifier("class");
15611 FreeType(exp->expType);
15612 exp->expType = MkClassType("ecere::com::Class");
15613 return ;
15614 }
15615 yylloc = exp->member.member->loc;
15616 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "couldn't find member %s in class %s\n", (((void *)0))), id->string, _class->fullName);
15617 if(inCompiler)
15618 __ecereNameSpace__ecere__com__eClass_AddDataMember(_class, id->string, "int", 0, 0, 1);
15619 }
15620 if(_class && exp->expType)
15621 {
15622 struct __ecereNameSpace__ecere__com__Class * tClass;
15623
15624 tClass = _class;
15625 while(tClass && !tClass->templateClass)
15626 tClass = tClass->base;
15627 if(tClass && exp->expType->kind == 20 && exp->expType->templateParameter->type == 0)
15628 {
15629 int id = 0;
15630 struct __ecereNameSpace__ecere__com__ClassTemplateParameter * curParam = (((void *)0));
15631 struct __ecereNameSpace__ecere__com__Class * sClass;
15632
15633 for(sClass = tClass; sClass; sClass = sClass->base)
15634 {
15635 id = 0;
15636 if(sClass->templateClass)
15637 sClass = sClass->templateClass;
15638 for(curParam = sClass->templateParams.first; curParam; curParam = curParam->next)
15639 {
15640 if(curParam->type == 0 && !strcmp(exp->expType->templateParameter->identifier->string, curParam->name))
15641 {
15642 for(sClass = sClass->base; sClass; sClass = sClass->base)
15643 id += sClass->templateParams.count;
15644 break;
15645 }
15646 id++;
15647 }
15648 if(curParam)
15649 break;
15650 }
15651 if(curParam && tClass->templateArgs[id].dataTypeString)
15652 {
15653 struct __ecereNameSpace__ecere__com__ClassTemplateArgument arg = tClass->templateArgs[id];
15654 struct Context * context = SetupTemplatesContext(tClass);
15655
15656 FreeType(exp->expType);
15657 exp->expType = ProcessTypeString(arg.dataTypeString, 0x0);
15658 if(exp->expType)
15659 {
15660 if(exp->expType->kind == 21)
15661 {
15662 FreeType(exp->expType);
15663 exp->expType = ReplaceThisClassType(_class);
15664 }
15665 if(tClass->templateClass)
15666 exp->expType->passAsTemplate = 0x1;
15667 if(!exp->destType)
15668 {
15669 exp->destType = ProcessTypeString(arg.dataTypeString, 0x0);
15670 if(exp->destType->kind == 21)
15671 {
15672 FreeType(exp->destType);
15673 exp->destType = ReplaceThisClassType(_class);
15674 }
15675 }
15676 }
15677 FinishTemplatesContext(context);
15678 }
15679 }
15680 else if(tClass && exp->expType->kind == 13 && exp->expType->type && exp->expType->type->kind == 20 && exp->expType->type->templateParameter->type == 0)
15681 {
15682 int id = 0;
15683 struct __ecereNameSpace__ecere__com__ClassTemplateParameter * curParam = (((void *)0));
15684 struct __ecereNameSpace__ecere__com__Class * sClass;
15685
15686 for(sClass = tClass; sClass; sClass = sClass->base)
15687 {
15688 id = 0;
15689 if(sClass->templateClass)
15690 sClass = sClass->templateClass;
15691 for(curParam = sClass->templateParams.first; curParam; curParam = curParam->next)
15692 {
15693 if(curParam->type == 0 && !strcmp(exp->expType->type->templateParameter->identifier->string, curParam->name))
15694 {
15695 for(sClass = sClass->base; sClass; sClass = sClass->base)
15696 id += sClass->templateParams.count;
15697 break;
15698 }
15699 id++;
15700 }
15701 if(curParam)
15702 break;
15703 }
15704 if(curParam)
15705 {
15706 struct __ecereNameSpace__ecere__com__ClassTemplateArgument arg = tClass->templateArgs[id];
15707 struct Context * context = SetupTemplatesContext(tClass);
15708 struct Type * basicType;
15709
15710 basicType = ProcessTypeString(arg.dataTypeString, 0x0);
15711 if(basicType)
15712 {
15713 if(basicType->kind == 21)
15714 {
15715 FreeType(basicType);
15716 basicType = ReplaceThisClassType(_class);
15717 }
15718 FreeType(exp->expType);
15719 exp->expType = __extension__ ({
15720 struct Type * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
15721
15722 __ecereInstance1->refCount = 1, __ecereInstance1->kind = 13, __ecereInstance1->type = basicType, __ecereInstance1;
15723 });
15724 if(!exp->destType)
15725 {
15726 exp->destType = exp->expType;
15727 exp->destType->refCount++;
15728 }
15729 {
15730 struct Expression * newExp = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Expression);
15731 struct __ecereNameSpace__ecere__sys__OldList * specs = MkList();
15732 struct Declarator * decl;
15733
15734 decl = SpecDeclFromString(arg.dataTypeString, specs, (((void *)0)));
15735 *newExp = *exp;
15736 if(exp->destType)
15737 exp->destType->refCount++;
15738 if(exp->expType)
15739 exp->expType->refCount++;
15740 exp->type = 11;
15741 exp->cast.typeName = MkTypeName(specs, MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), decl));
15742 exp->cast.exp = newExp;
15743 }
15744 }
15745 FinishTemplatesContext(context);
15746 }
15747 }
15748 else if(tClass && exp->expType->kind == 8 && exp->expType->_class && strchr(exp->expType->_class->string, '<'))
15749 {
15750 struct __ecereNameSpace__ecere__com__Class * expClass = exp->expType->_class->registered;
15751
15752 if(expClass)
15753 {
15754 struct __ecereNameSpace__ecere__com__Class * cClass = (((void *)0));
15755 int c;
15756 int p = 0;
15757 int paramCount = 0;
15758 int lastParam = -1;
15759 char templateString[1024];
15760 struct __ecereNameSpace__ecere__com__ClassTemplateParameter * param;
15761
15762 sprintf(templateString, "%s<", expClass->templateClass->fullName);
15763 while(cClass != expClass)
15764 {
15765 struct __ecereNameSpace__ecere__com__Class * sClass;
15766
15767 for(sClass = expClass; sClass && sClass->base != cClass; sClass = sClass->base)
15768 ;
15769 cClass = sClass;
15770 for(param = cClass->templateParams.first; param; param = param->next)
15771 {
15772 struct __ecereNameSpace__ecere__com__Class * cClassCur = (((void *)0));
15773 int c;
15774 int cp = 0;
15775 struct __ecereNameSpace__ecere__com__ClassTemplateParameter * paramCur = (((void *)0));
15776 struct __ecereNameSpace__ecere__com__ClassTemplateArgument arg;
15777
15778 while(cClassCur != tClass && !paramCur)
15779 {
15780 struct __ecereNameSpace__ecere__com__Class * sClassCur;
15781
15782 for(sClassCur = tClass; sClassCur && sClassCur->base != cClassCur; sClassCur = sClassCur->base)
15783 ;
15784 cClassCur = sClassCur;
15785 for(paramCur = cClassCur->templateParams.first; paramCur; paramCur = paramCur->next)
15786 {
15787 if(!strcmp(paramCur->name, param->name))
15788 {
15789 break;
15790 }
15791 cp++;
15792 }
15793 }
15794 if(paramCur && paramCur->type == 0)
15795 arg = tClass->templateArgs[cp];
15796 else
15797 arg = expClass->templateArgs[p];
15798 {
15799 char argument[256];
15800
15801 argument[0] = '\0';
15802 switch(param->type)
15803 {
15804 case 2:
15805 {
15806 char expString[1024];
15807 struct __ecereNameSpace__ecere__sys__OldList * specs = MkList();
15808 struct Declarator * decl = SpecDeclFromString(param->dataTypeString, specs, (((void *)0)));
15809 struct Expression * exp;
15810 char * string = PrintHexUInt64(arg.expression.ui64);
15811
15812 exp = MkExpCast(MkTypeName(specs, decl), MkExpConstant(string));
15813 (__ecereNameSpace__ecere__com__eSystem_Delete(string), string = 0);
15814 ProcessExpressionType(exp);
15815 ComputeExpression(exp);
15816 expString[0] = '\0';
15817 PrintExpression(exp, expString);
15818 strcat(argument, expString);
15819 FreeExpression(exp);
15820 break;
15821 }
15822 case 1:
15823 {
15824 strcat(argument, arg.member->name);
15825 break;
15826 }
15827 case 0:
15828 {
15829 if(arg.dataTypeString && (!param->defaultArg.dataTypeString || strcmp(arg.dataTypeString, param->defaultArg.dataTypeString)))
15830 strcat(argument, arg.dataTypeString);
15831 break;
15832 }
15833 }
15834 if(argument[0])
15835 {
15836 if(paramCount)
15837 strcat(templateString, ", ");
15838 if(lastParam != p - 1)
15839 {
15840 strcat(templateString, param->name);
15841 strcat(templateString, " = ");
15842 }
15843 strcat(templateString, argument);
15844 paramCount++;
15845 lastParam = p;
15846 }
15847 }
15848 p++;
15849 }
15850 }
15851 {
15852 int len = strlen(templateString);
15853
15854 if(templateString[len - 1] == '>')
15855 templateString[len++] = ' ';
15856 templateString[len++] = '>';
15857 templateString[len++] = '\0';
15858 }
15859 FreeType(exp->expType);
15860 {
15861 struct Context * context = SetupTemplatesContext(tClass);
15862
15863 exp->expType = ProcessTypeString(templateString, 0x0);
15864 FinishTemplatesContext(context);
15865 }
15866 }
15867 }
15868 }
15869 }
15870 else
15871 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "undefined class %s\n", (((void *)0))), (id && (!id->_class || id->_class->name)) ? (id->classSym ? id->classSym->string : (type->_class ? type->_class->string : (((void *)0)))) : "(null)");
15872 }
15873 else if(type && (type->kind == 9 || type->kind == 10))
15874 {
15875 struct Type * memberType = exp->member.member ? FindMember(type, exp->member.member->string) : (((void *)0));
15876
15877 if(memberType)
15878 {
15879 exp->expType = memberType;
15880 if(memberType)
15881 memberType->refCount++;
15882 }
15883 }
15884 else
15885 {
15886 char expString[10240];
15887
15888 expString[0] = '\0';
15889 if(inCompiler)
15890 {
15891 PrintExpression(exp, expString);
15892 __ecereNameSpace__ecere__sys__ChangeCh(expString, '\n', ' ');
15893 }
15894 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "member operator on non-structure type expression %s\n", (((void *)0))), expString);
15895 }
15896 if(exp->expType && exp->expType->kind == 21 && (!exp->destType || exp->destType->kind != 21))
15897 {
15898 if(type && (type->kind == 8 || type->kind == 19 || type->kind == 3 || type->kind == 15))
15899 {
15900 struct Identifier * id = exp->member.member;
15901 struct __ecereNameSpace__ecere__com__Class * _class = (id && (!id->_class || id->_class->name)) ? (id->classSym ? id->classSym->registered : (type->_class ? type->_class->registered : (((void *)0)))) : (((void *)0));
15902
15903 if(_class)
15904 {
15905 FreeType(exp->expType);
15906 exp->expType = ReplaceThisClassType(_class);
15907 }
15908 }
15909 }
15910 yylloc = oldyylloc;
15911 break;
15912 }
15913 case 9:
15914 {
15915 struct Type * destType = exp->destType;
15916
15917 if(exp->member.member && exp->member.member->_class && exp->member.member->_class->name)
15918 {
15919 exp->member.member->classSym = exp->member.member->_class->symbol;
15920 }
15921 exp->member.exp = MkExpBrackets(MkListOne(MkExpOp((((void *)0)), '*', exp->member.exp)));
15922 exp->type = 8;
15923 if(destType)
15924 destType->count++;
15925 ProcessExpressionType(exp);
15926 if(destType)
15927 destType->count--;
15928 break;
15929 }
15930 case 15:
15931 {
15932 struct Symbol * classSym = exp->_class->symbol;
15933
15934 if(classSym && classSym->registered)
15935 {
15936 if(classSym->registered->type == 5)
15937 {
15938 char name[1024];
15939
15940 name[0] = '\0';
15941 DeclareStruct(classSym->string, 0x0);
15942 FreeSpecifier(exp->_class);
15943 exp->type = 10;
15944 FullClassNameCat(name, classSym->string, 0x0);
15945 exp->typeName = MkTypeName(MkListOne(MkStructOrUnion(3, MkIdentifier(name), (((void *)0)))), (((void *)0)));
15946 }
15947 else
15948 {
15949 if(classSym->registered->fixed)
15950 {
15951 FreeSpecifier(exp->_class);
15952 exp->constant = PrintUInt(classSym->registered->templateClass ? classSym->registered->templateClass->structSize : classSym->registered->structSize);
15953 exp->type = 2;
15954 }
15955 else
15956 {
15957 char className[1024];
15958
15959 strcpy(className, "__ecereClass_");
15960 FullClassNameCat(className, classSym->string, 0x1);
15961 MangleClassName(className);
15962 DeclareClass(classSym, className);
15963 FreeExpContents(exp);
15964 exp->type = 9;
15965 exp->member.exp = MkExpIdentifier(MkIdentifier(className));
15966 exp->member.member = MkIdentifier("structSize");
15967 }
15968 }
15969 }
15970 exp->expType = __extension__ ({
15971 struct Type * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
15972
15973 __ecereInstance1->refCount = 1, __ecereInstance1->kind = 3, __ecereInstance1;
15974 });
15975 break;
15976 }
15977 case 10:
15978 {
15979 struct Type * type = ProcessType(exp->typeName->qualifiers, exp->typeName->declarator);
15980
15981 exp->expType = __extension__ ({
15982 struct Type * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
15983
15984 __ecereInstance1->refCount = 1, __ecereInstance1->kind = 3, __ecereInstance1;
15985 });
15986 exp->isConstant = 0x1;
15987 DeclareType(type, 0x0, 0x0);
15988 FreeType(type);
15989 break;
15990 }
15991 case 11:
15992 {
15993 struct Type * type = ProcessType(exp->cast.typeName->qualifiers, exp->cast.typeName->declarator);
15994
15995 type->count = 1;
15996 FreeType(exp->cast.exp->destType);
15997 exp->cast.exp->destType = type;
15998 type->refCount++;
15999 ProcessExpressionType(exp->cast.exp);
16000 type->count = 0;
16001 exp->expType = type;
16002 if(!exp->cast.exp->needCast && !NeedCast(exp->cast.exp->expType, type))
16003 {
16004 void * prev = exp->prev, * next = exp->next;
16005 struct Type * expType = exp->cast.exp->destType;
16006 struct Expression * castExp = exp->cast.exp;
16007 struct Type * destType = exp->destType;
16008
16009 if(expType)
16010 expType->refCount++;
16011 FreeType(exp->expType);
16012 FreeTypeName(exp->cast.typeName);
16013 *exp = *castExp;
16014 FreeType(exp->expType);
16015 FreeType(exp->destType);
16016 exp->expType = expType;
16017 exp->destType = destType;
16018 ((castExp ? (__ecereClass_Expression->Destructor ? __ecereClass_Expression->Destructor(castExp) : 0, __ecereNameSpace__ecere__com__eSystem_Delete(castExp)) : 0), castExp = 0);
16019 exp->prev = prev;
16020 exp->next = next;
16021 }
16022 else
16023 {
16024 exp->isConstant = exp->cast.exp->isConstant;
16025 }
16026 break;
16027 }
16028 case 33:
16029 {
16030 struct Type * type = ProcessType(exp->initializer.typeName->qualifiers, exp->initializer.typeName->declarator);
16031
16032 exp->expType = type;
16033 break;
16034 }
16035 case 34:
16036 {
16037 struct Type * type = ProcessType(exp->vaArg.typeName->qualifiers, exp->vaArg.typeName->declarator);
16038
16039 ProcessExpressionType(exp->vaArg.exp);
16040 exp->expType = type;
16041 break;
16042 }
16043 case 12:
16044 {
16045 struct Expression * e;
16046
16047 exp->isConstant = 0x1;
16048 FreeType(exp->cond.cond->destType);
16049 exp->cond.cond->destType = MkClassType("bool");
16050 exp->cond.cond->destType->truth = 0x1;
16051 ProcessExpressionType(exp->cond.cond);
16052 if(!exp->cond.cond->isConstant)
16053 exp->isConstant = 0x0;
16054 for(e = (*exp->cond.exp).first; e; e = e->next)
16055 {
16056 if(!e->next)
16057 {
16058 FreeType(e->destType);
16059 e->destType = exp->destType;
16060 if(e->destType)
16061 e->destType->refCount++;
16062 }
16063 ProcessExpressionType(e);
16064 if(!e->next)
16065 {
16066 exp->expType = e->expType;
16067 if(e->expType)
16068 e->expType->refCount++;
16069 }
16070 if(!e->isConstant)
16071 exp->isConstant = 0x0;
16072 }
16073 FreeType(exp->cond.elseExp->destType);
16074 exp->cond.elseExp->destType = exp->destType ? exp->destType : exp->expType;
16075 if(exp->cond.elseExp->destType)
16076 exp->cond.elseExp->destType->refCount++;
16077 ProcessExpressionType(exp->cond.elseExp);
16078 if(!exp->cond.elseExp->isConstant)
16079 exp->isConstant = 0x0;
16080 break;
16081 }
16082 case 23:
16083 {
16084 if(exp->compound && exp->compound->compound.statements && (*exp->compound->compound.statements).last)
16085 {
16086 struct Statement * last = (*exp->compound->compound.statements).last;
16087
16088 if(last->type == 3 && last->expressions && (*last->expressions).last)
16089 {
16090 ((struct Expression *)(*last->expressions).last)->destType = exp->destType;
16091 if(exp->destType)
16092 exp->destType->refCount++;
16093 }
16094 ProcessStatement(exp->compound);
16095 exp->expType = (last->expressions && (*last->expressions).last) ? ((struct Expression *)(*last->expressions).last)->expType : (((void *)0));
16096 if(exp->expType)
16097 exp->expType->refCount++;
16098 }
16099 break;
16100 }
16101 case 24:
16102 {
16103 struct Specifier * spec = (*exp->_classExp.specifiers).first;
16104
16105 if(spec && spec->type == 1)
16106 {
16107 exp->expType = MkClassType(spec->name);
16108 exp->expType->kind = 19;
16109 exp->byReference = 0x1;
16110 }
16111 else
16112 {
16113 exp->expType = MkClassType("ecere::com::Class");
16114 exp->byReference = 0x1;
16115 }
16116 break;
16117 }
16118 case 25:
16119 {
16120 struct __ecereNameSpace__ecere__com__Class * _class = thisClass ? thisClass : currentClass;
16121
16122 if(_class)
16123 {
16124 struct Identifier * id = exp->classData.id;
16125 char structName[1024];
16126 struct Expression * classExp;
16127
16128 strcpy(structName, "__ecereClassData_");
16129 FullClassNameCat(structName, _class->fullName, 0x0);
16130 exp->type = 9;
16131 exp->member.member = id;
16132 if(curCompound && FindSymbol("this", curContext, curCompound->compound.context, 0x0, 0x0))
16133 classExp = MkExpMember(MkExpIdentifier(MkIdentifier("this")), MkIdentifier("_class"));
16134 else
16135 classExp = MkExpIdentifier(MkIdentifier("class"));
16136 exp->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"))))))));
16137 ProcessExpressionType(exp);
16138 return ;
16139 }
16140 break;
16141 }
16142 case 35:
16143 {
16144 struct Type * type = (((void *)0));
16145 char * typeString = (((void *)0));
16146 char typeStringBuf[1024];
16147
16148 if(exp->destType && exp->destType->kind == 8 && exp->destType->_class && exp->destType->_class->registered && exp->destType->_class->registered != containerClass && __ecereNameSpace__ecere__com__eClass_IsDerived(exp->destType->_class->registered, containerClass))
16149 {
16150 struct __ecereNameSpace__ecere__com__Class * templateClass = exp->destType->_class->registered;
16151
16152 typeString = templateClass->templateArgs[2].dataTypeString;
16153 }
16154 else if(exp->list)
16155 {
16156 struct Expression * e;
16157
16158 for(e = (*exp->list).first; e; e = e->next)
16159 {
16160 ProcessExpressionType(e);
16161 if(e->expType)
16162 {
16163 if(!type)
16164 {
16165 type = e->expType;
16166 type->refCount++;
16167 }
16168 else
16169 {
16170 if(!MatchTypeExpression(e, type, (((void *)0)), 0x0))
16171 {
16172 FreeType(type);
16173 type = e->expType;
16174 e->expType = (((void *)0));
16175 e = (*exp->list).first;
16176 ProcessExpressionType(e);
16177 if(e->expType)
16178 {
16179 if(!MatchTypeExpression(e, type, (((void *)0)), 0x0))
16180 {
16181 FreeType(e->expType);
16182 e->expType = (((void *)0));
16183 FreeType(type);
16184 type = (((void *)0));
16185 break;
16186 }
16187 }
16188 }
16189 }
16190 if(e->expType)
16191 {
16192 FreeType(e->expType);
16193 e->expType = (((void *)0));
16194 }
16195 }
16196 }
16197 if(type)
16198 {
16199 typeStringBuf[0] = '\0';
16200 PrintTypeNoConst(type, typeStringBuf, 0x0, 0x1);
16201 typeString = typeStringBuf;
16202 FreeType(type);
16203 type = (((void *)0));
16204 }
16205 }
16206 if(typeString)
16207 {
16208 char templateString[1024];
16209 struct __ecereNameSpace__ecere__sys__OldList * initializers = MkList();
16210 struct __ecereNameSpace__ecere__sys__OldList * structInitializers = MkList();
16211 struct __ecereNameSpace__ecere__sys__OldList * specs = MkList();
16212 struct Expression * expExt;
16213 struct Declarator * decl = SpecDeclFromString(typeString, specs, (((void *)0)));
16214
16215 sprintf(templateString, "Container<%s>", typeString);
16216 if(exp->list)
16217 {
16218 struct Expression * e;
16219
16220 type = ProcessTypeString(typeString, 0x0);
16221 while(e = (*exp->list).first)
16222 {
16223 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Remove((&*exp->list), e);
16224 e->destType = type;
16225 type->refCount++;
16226 ProcessExpressionType(e);
16227 ListAdd(initializers, MkInitializerAssignment(e));
16228 }
16229 FreeType(type);
16230 (__ecereNameSpace__ecere__com__eSystem_Delete(exp->list), exp->list = 0);
16231 }
16232 DeclareStruct("ecere::com::BuiltInContainer", 0x0);
16233 ListAdd(structInitializers, MkInitializerAssignment(MkExpMember(MkExpClass(MkListOne(MkSpecifierName("BuiltInContainer")), (((void *)0))), MkIdentifier("_vTbl"))));
16234 ProcessExpressionType(((struct Initializer *)(*structInitializers).last)->exp);
16235 ListAdd(structInitializers, MkInitializerAssignment(MkExpClass(MkListOne(MkSpecifierName("BuiltInContainer")), (((void *)0)))));
16236 ProcessExpressionType(((struct Initializer *)(*structInitializers).last)->exp);
16237 ListAdd(structInitializers, MkInitializerAssignment(MkExpConstant("0")));
16238 ProcessExpressionType(((struct Initializer *)(*structInitializers).last)->exp);
16239 ListAdd(structInitializers, MkInitializerAssignment(MkExpExtensionInitializer(MkTypeName(specs, MkDeclaratorArray(decl, (((void *)0)))), MkInitializerList(initializers))));
16240 ProcessExpressionType(((struct Initializer *)(*structInitializers).last)->exp);
16241 ListAdd(structInitializers, MkInitializerAssignment(__extension__ ({
16242 struct Expression * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Expression);
16243
16244 __ecereInstance1->type = 2, __ecereInstance1->constant = __ecereNameSpace__ecere__com__PrintString(__ecereClass_int, &(*initializers).count, (void *)0), __ecereInstance1;
16245 })));
16246 ProcessExpressionType(((struct Initializer *)(*structInitializers).last)->exp);
16247 ListAdd(structInitializers, MkInitializerAssignment(MkExpClass(CopyList(specs, CopySpecifier), CopyDeclarator(decl))));
16248 ProcessExpressionType(((struct Initializer *)(*structInitializers).last)->exp);
16249 exp->expType = ProcessTypeString(templateString, 0x0);
16250 exp->type = 5;
16251 exp->list = MkListOne(MkExpCast(MkTypeName(MkListOne(MkSpecifierName(templateString)), (((void *)0))), MkExpOp((((void *)0)), '&', expExt = MkExpExtensionInitializer(MkTypeName(MkListOne(MkSpecifierName("BuiltInContainer")), (((void *)0))), MkInitializerList(structInitializers)))));
16252 ProcessExpressionType(expExt);
16253 }
16254 else
16255 {
16256 exp->expType = ProcessTypeString("Container", 0x0);
16257 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "Couldn't determine type of array elements\n", (((void *)0))));
16258 }
16259 break;
16260 }
16261 }
16262 if(exp->expType && exp->expType->kind == 21 && thisClass && (!exp->destType || exp->destType->kind != 21))
16263 {
16264 FreeType(exp->expType);
16265 exp->expType = ReplaceThisClassType(thisClass);
16266 }
16267 if(exp->expType && (exp->expType->kind == 9 || exp->expType->kind == 10 || exp->expType->kind == 15) && !exp->expType->members.first && exp->expType->enumName)
16268 {
16269 struct Symbol * symbol = FindSymbol(exp->expType->enumName, curContext, globalContext, 0x1, 0x0);
16270
16271 if(symbol)
16272 {
16273 if(exp->expType->kind != 15)
16274 {
16275 struct Type * member;
16276 char * enumName = __ecereNameSpace__ecere__sys__CopyString(exp->expType->enumName);
16277
16278 FreeType(exp->expType);
16279 exp->expType = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
16280 exp->expType->kind = symbol->type->kind;
16281 exp->expType->refCount++;
16282 exp->expType->enumName = enumName;
16283 exp->expType->members = symbol->type->members;
16284 for(member = symbol->type->members.first; member; member = member->next)
16285 member->refCount++;
16286 }
16287 else
16288 {
16289 struct __ecereNameSpace__ecere__sys__NamedLink * member;
16290
16291 for(member = symbol->type->members.first; member; member = member->next)
16292 {
16293 struct __ecereNameSpace__ecere__sys__NamedLink * value = (value = __ecereNameSpace__ecere__com__eSystem_New0(structSize_NamedLink), value->name = __ecereNameSpace__ecere__sys__CopyString(member->name), value);
16294
16295 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(&exp->expType->members, value);
16296 }
16297 }
16298 }
16299 }
16300 yylloc = exp->loc;
16301 if(exp->destType && (exp->destType->kind == 0 || exp->destType->kind == 18))
16302 ;
16303 else if(exp->destType && !exp->destType->keepCast)
16304 {
16305 if(!CheckExpressionType(exp, exp->destType, 0x0))
16306 {
16307 if(!exp->destType->count || unresolved)
16308 {
16309 if(!exp->expType)
16310 {
16311 yylloc = exp->loc;
16312 if(exp->destType->kind != 14)
16313 {
16314 char type2[1024];
16315
16316 type2[0] = '\0';
16317 if(inCompiler)
16318 {
16319 char expString[10240];
16320
16321 expString[0] = '\0';
16322 PrintType(exp->destType, type2, 0x0, 0x1);
16323 if(inCompiler)
16324 {
16325 PrintExpression(exp, expString);
16326 __ecereNameSpace__ecere__sys__ChangeCh(expString, '\n', ' ');
16327 }
16328 if(unresolved)
16329 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "unresolved identifier %s; expected %s\n", (((void *)0))), expString, type2);
16330 else if(exp->type != 16)
16331 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "couldn't determine type of %s; expected %s\n", (((void *)0))), expString, type2);
16332 }
16333 }
16334 else
16335 {
16336 char expString[10240];
16337
16338 expString[0] = '\0';
16339 if(inCompiler)
16340 {
16341 PrintExpression(exp, expString);
16342 __ecereNameSpace__ecere__sys__ChangeCh(expString, '\n', ' ');
16343 }
16344 if(unresolved)
16345 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "unresolved identifier %s\n", (((void *)0))), expString);
16346 else if(exp->type != 16)
16347 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "couldn't determine type of %s\n", (((void *)0))), expString);
16348 }
16349 }
16350 else
16351 {
16352 char type1[1024];
16353 char type2[1024];
16354
16355 type1[0] = '\0';
16356 type2[0] = '\0';
16357 if(inCompiler)
16358 {
16359 PrintType(exp->expType, type1, 0x0, 0x1);
16360 PrintType(exp->destType, type2, 0x0, 0x1);
16361 }
16362 if(exp->destType->truth && exp->destType->_class && exp->destType->_class->registered && !strcmp(exp->destType->_class->registered->name, "bool") && exp->expType->kind != 0 && exp->expType->kind != 9 && exp->expType->kind != 10 && (exp->expType->kind != 8 || exp->expType->classObjectType || (exp->expType->_class && exp->expType->_class->registered && exp->expType->_class->registered->type != 1)))
16363 ;
16364 else
16365 {
16366 char expString[10240];
16367
16368 expString[0] = '\0';
16369 if(inCompiler)
16370 {
16371 PrintExpression(exp, expString);
16372 __ecereNameSpace__ecere__sys__ChangeCh(expString, '\n', ' ');
16373 }
16374 if(!sourceFile || (strcmp(sourceFile, "src\\lexer.ec") && strcmp(sourceFile, "src/lexer.ec") && strcmp(sourceFile, "src\\grammar.ec") && strcmp(sourceFile, "src/grammar.ec")))
16375 Compiler_Warning(__ecereNameSpace__ecere__GetTranslatedString("ec", "incompatible expression %s (%s); expected %s\n", (((void *)0))), expString, type1, type2);
16376 FreeType(exp->expType);
16377 exp->destType->refCount++;
16378 exp->expType = exp->destType;
16379 }
16380 }
16381 }
16382 }
16383 else if(exp->destType && exp->destType->kind == 14 && exp->expType && exp->expType->passAsTemplate)
16384 {
16385 struct Expression * newExp = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Expression);
16386 char typeString[1024];
16387 struct __ecereNameSpace__ecere__sys__OldList * specs = MkList();
16388 struct Declarator * decl;
16389
16390 typeString[0] = '\0';
16391 *newExp = *exp;
16392 if(exp->expType)
16393 exp->expType->refCount++;
16394 if(exp->expType)
16395 exp->expType->refCount++;
16396 exp->type = 11;
16397 newExp->destType = exp->expType;
16398 PrintType(exp->expType, typeString, 0x0, 0x0);
16399 decl = SpecDeclFromString(typeString, specs, (((void *)0)));
16400 exp->cast.typeName = MkTypeName(specs, decl);
16401 exp->cast.exp = newExp;
16402 }
16403 }
16404 else if(unresolved)
16405 {
16406 if(exp->identifier->_class && exp->identifier->_class->name)
16407 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "unresolved identifier %s::%s\n", (((void *)0))), exp->identifier->_class->name, exp->identifier->string);
16408 else if(exp->identifier->string && exp->identifier->string[0])
16409 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "unresolved identifier %s\n", (((void *)0))), exp->identifier->string);
16410 }
16411 else if(!exp->expType && exp->type != 16)
16412 {
16413 char expString[10240];
16414
16415 expString[0] = '\0';
16416 if(inCompiler)
16417 {
16418 PrintExpression(exp, expString);
16419 __ecereNameSpace__ecere__sys__ChangeCh(expString, '\n', ' ');
16420 }
16421 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "couldn't determine type of %s\n", (((void *)0))), expString);
16422 }
16423 if(inCompiler)
16424 ApplyAnyObjectLogic(exp);
16425 if(!notByReference && exp->expType && exp->expType->kind == 8 && exp->expType->_class && exp->expType->_class->registered && exp->expType->_class->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)))
16426 {
16427 exp->byReference = 0x1;
16428 }
16429 yylloc = oldyylloc;
16430 }
16431
16432 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)
16433 {
16434 if(*curMember)
16435 {
16436 *curMember = (*curMember)->next;
16437 if(subMemberStackPos && *subMemberStackPos > 0 && subMemberStack[*subMemberStackPos - 1]->type == 1)
16438 {
16439 *curMember = subMemberStack[--(*subMemberStackPos)];
16440 *curMember = (*curMember)->next;
16441 }
16442 while((*curMember) && (*curMember)->isProperty)
16443 *curMember = (*curMember)->next;
16444 if(subMemberStackPos)
16445 {
16446 while((*curMember) && !(*curMember)->isProperty && !(*curMember)->name && ((*curMember)->type == 2 || (*curMember)->type == 1))
16447 {
16448 subMemberStack[(*subMemberStackPos)++] = *curMember;
16449 *curMember = (*curMember)->members.first;
16450 while(*curMember && (*curMember)->isProperty)
16451 *curMember = (*curMember)->next;
16452 }
16453 }
16454 }
16455 while(!*curMember)
16456 {
16457 if(!*curMember)
16458 {
16459 if(subMemberStackPos && *subMemberStackPos)
16460 {
16461 *curMember = subMemberStack[--(*subMemberStackPos)];
16462 *curMember = (*curMember)->next;
16463 }
16464 else
16465 {
16466 struct __ecereNameSpace__ecere__com__Class * lastCurClass = *curClass;
16467
16468 if(*curClass == _class)
16469 break;
16470 for(*curClass = _class; (*curClass)->base != lastCurClass && (*curClass)->base->type != 1000; *curClass = (*curClass)->base)
16471 ;
16472 *curMember = (*curClass)->membersAndProperties.first;
16473 }
16474 while((*curMember) && (*curMember)->isProperty)
16475 *curMember = (*curMember)->next;
16476 if(subMemberStackPos)
16477 {
16478 while((*curMember) && !(*curMember)->isProperty && !(*curMember)->name && ((*curMember)->type == 2 || (*curMember)->type == 1))
16479 {
16480 subMemberStack[(*subMemberStackPos)++] = *curMember;
16481 *curMember = (*curMember)->members.first;
16482 while(*curMember && (*curMember)->isProperty)
16483 *curMember = (*curMember)->next;
16484 }
16485 }
16486 }
16487 }
16488 }
16489
16490 static void ProcessInitializer(struct Initializer * init, struct Type * type)
16491 {
16492 switch(init->type)
16493 {
16494 case 0:
16495 if(!init->exp || init->exp->type != 1 || !init->exp->instance || init->exp->instance->_class || !type || type->kind == 8)
16496 {
16497 if(init->exp && !init->exp->destType)
16498 {
16499 FreeType(init->exp->destType);
16500 init->exp->destType = type;
16501 if(type)
16502 type->refCount++;
16503 }
16504 if(init->exp)
16505 {
16506 ProcessExpressionType(init->exp);
16507 init->isConstant = init->exp->isConstant;
16508 }
16509 break;
16510 }
16511 else
16512 {
16513 struct Expression * exp = init->exp;
16514 struct Instantiation * inst = exp->instance;
16515 struct MembersInit * members;
16516
16517 init->type = 1;
16518 init->list = MkList();
16519 if(inst->members)
16520 {
16521 for(members = (*inst->members).first; members; members = members->next)
16522 {
16523 if(members->type == 0)
16524 {
16525 struct MemberInit * member;
16526
16527 for(member = (*members->dataMembers).first; member; member = member->next)
16528 {
16529 ListAdd(init->list, member->initializer);
16530 member->initializer = (((void *)0));
16531 }
16532 }
16533 }
16534 }
16535 FreeExpression(exp);
16536 }
16537 case 1:
16538 {
16539 struct Initializer * i;
16540 struct Type * initializerType = (((void *)0));
16541 struct __ecereNameSpace__ecere__com__Class * curClass = (((void *)0));
16542 struct __ecereNameSpace__ecere__com__DataMember * curMember = (((void *)0));
16543 struct __ecereNameSpace__ecere__com__DataMember * subMemberStack[256];
16544 int subMemberStackPos = 0;
16545
16546 if(type && type->kind == 12)
16547 initializerType = Dereference(type);
16548 else if(type && (type->kind == 9 || type->kind == 10))
16549 initializerType = type->members.first;
16550 for(i = (*init->list).first; i; i = i->next)
16551 {
16552 if(type && type->kind == 8 && type->_class && type->_class->registered)
16553 {
16554 FindNextDataMember(type->_class->registered, &curClass, &curMember, subMemberStack, &subMemberStackPos);
16555 if(curMember)
16556 {
16557 if(!curMember->dataType)
16558 curMember->dataType = ProcessTypeString(curMember->dataTypeString, 0x0);
16559 initializerType = curMember->dataType;
16560 }
16561 }
16562 ProcessInitializer(i, initializerType);
16563 if(initializerType && type && (type->kind == 9 || type->kind == 10))
16564 initializerType = initializerType->next;
16565 if(!i->isConstant)
16566 init->isConstant = 0x0;
16567 }
16568 if(type && type->kind == 12)
16569 FreeType(initializerType);
16570 if(type && type->kind != 12 && type->kind != 9 && type->kind != 10 && (type->kind != 8 || !type->_class->registered || type->_class->registered->type != 1))
16571 {
16572 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "Assigning list initializer to non list\n", (((void *)0))));
16573 }
16574 break;
16575 }
16576 }
16577 }
16578
16579 extern struct Symbol * FindType(struct Context * ctx, char *  name);
16580
16581 static void ProcessClass(struct __ecereNameSpace__ecere__sys__OldList * definitions, struct Symbol * symbol);
16582
16583 static void ProcessSpecifier(struct Specifier * spec, unsigned int declareStruct)
16584 {
16585 switch(spec->type)
16586 {
16587 case 0:
16588 {
16589 if(spec->specifier == THISCLASS)
16590 {
16591 if(thisClass)
16592 {
16593 spec->type = 1;
16594 spec->name = ReplaceThisClass(thisClass);
16595 spec->symbol = FindClass(spec->name);
16596 ProcessSpecifier(spec, declareStruct);
16597 }
16598 }
16599 break;
16600 }
16601 case 1:
16602 {
16603 struct Symbol * symbol = FindType(curContext, spec->name);
16604
16605 if(symbol)
16606 DeclareType(symbol->type, 0x1, 0x1);
16607 else if((symbol = spec->symbol) && symbol->registered && symbol->registered->type == 1 && declareStruct)
16608 DeclareStruct(spec->name, 0x0);
16609 break;
16610 }
16611 case 2:
16612 {
16613 struct Enumerator * e;
16614
16615 if(spec->list)
16616 {
16617 for(e = (*spec->list).first; e; e = e->next)
16618 {
16619 if(e->exp)
16620 ProcessExpressionType(e->exp);
16621 }
16622 }
16623 break;
16624 }
16625 case 3:
16626 case 4:
16627 {
16628 if(spec->definitions)
16629 {
16630 struct ClassDef * def;
16631 struct Symbol * symbol = spec->id ? FindClass(spec->id->string) : (((void *)0));
16632
16633 ProcessClass(spec->definitions, symbol);
16634 }
16635 break;
16636 }
16637 }
16638 }
16639
16640 static void ProcessDeclarator(struct Declarator * decl)
16641 {
16642 switch(decl->type)
16643 {
16644 case 1:
16645 if(decl->identifier->classSym)
16646 {
16647 FreeSpecifier(decl->identifier->_class);
16648 decl->identifier->_class = (((void *)0));
16649 }
16650 break;
16651 case 3:
16652 if(decl->array.exp)
16653 ProcessExpressionType(decl->array.exp);
16654 case 0:
16655 case 2:
16656 case 4:
16657 case 5:
16658 case 6:
16659 case 7:
16660 if(decl->declarator)
16661 ProcessDeclarator(decl->declarator);
16662 if(decl->type == 4)
16663 {
16664 struct Identifier * id = GetDeclId(decl);
16665
16666 if(id && id->_class)
16667 {
16668 struct TypeName * param = (param = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_TypeName), param->qualifiers = MkListOne(id->_class), param->declarator = (((void *)0)), param);
16669
16670 if(!decl->function.parameters)
16671 decl->function.parameters = MkList();
16672 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*decl->function.parameters), (((void *)0)), param);
16673 id->_class = (((void *)0));
16674 }
16675 if(decl->function.parameters)
16676 {
16677 struct TypeName * param;
16678
16679 for(param = (*decl->function.parameters).first; param; param = param->next)
16680 {
16681 if(param->qualifiers && (*param->qualifiers).first)
16682 {
16683 struct Specifier * spec = (*param->qualifiers).first;
16684
16685 if(spec && spec->specifier == TYPED_OBJECT)
16686 {
16687 struct Declarator * d = param->declarator;
16688 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);
16689
16690 FreeList(param->qualifiers, FreeSpecifier);
16691 param->qualifiers = MkListOne(MkStructOrUnion(3, MkIdentifier("__ecereNameSpace__ecere__com__Class"), (((void *)0))));
16692 param->declarator = MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), MkDeclaratorIdentifier(MkIdentifier("class")));
16693 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*decl->function.parameters), param, newParam);
16694 param = newParam;
16695 }
16696 else if(spec && spec->specifier == ANY_OBJECT)
16697 {
16698 struct Declarator * d = param->declarator;
16699
16700 FreeList(param->qualifiers, FreeSpecifier);
16701 param->qualifiers = MkListOne(MkSpecifier(VOID));
16702 param->declarator = MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), d);
16703 }
16704 else if(spec->specifier == THISCLASS)
16705 {
16706 if(thisClass)
16707 {
16708 spec->type = 1;
16709 spec->name = ReplaceThisClass(thisClass);
16710 spec->symbol = FindClass(spec->name);
16711 ProcessSpecifier(spec, 0x0);
16712 }
16713 }
16714 }
16715 if(param->declarator)
16716 ProcessDeclarator(param->declarator);
16717 }
16718 }
16719 }
16720 break;
16721 }
16722 }
16723
16724 extern struct Identifier * CopyIdentifier(struct Identifier * id);
16725
16726 extern void FreeInitDeclarator(struct InitDeclarator * decl);
16727
16728 static void ProcessDeclaration(struct Declaration * decl)
16729 {
16730 yylloc = decl->loc;
16731 switch(decl->type)
16732 {
16733 case 1:
16734 {
16735 unsigned int declareStruct = 0x0;
16736
16737 if(decl->declarators)
16738 {
16739 struct InitDeclarator * d;
16740
16741 for(d = (*decl->declarators).first; d; d = d->next)
16742 {
16743 struct Type * type, * subType;
16744
16745 ProcessDeclarator(d->declarator);
16746 type = ProcessType(decl->specifiers, d->declarator);
16747 if(d->initializer)
16748 {
16749 ProcessInitializer(d->initializer, type);
16750 if((*decl->declarators).count == 1 && d->initializer->type == 0 && d->initializer->exp->type == 1)
16751 {
16752 if(type->kind == 8 && type->_class == d->initializer->exp->expType->_class)
16753 {
16754 struct Instantiation * inst = d->initializer->exp->instance;
16755
16756 inst->exp = MkExpIdentifier(CopyIdentifier(GetDeclId(d->declarator)));
16757 d->initializer->exp->instance = (((void *)0));
16758 if(decl->specifiers)
16759 FreeList(decl->specifiers, FreeSpecifier);
16760 FreeList(decl->declarators, FreeInitDeclarator);
16761 d = (((void *)0));
16762 decl->type = 2;
16763 decl->inst = inst;
16764 }
16765 }
16766 }
16767 for(subType = type; subType; )
16768 {
16769 if(subType->kind == 8)
16770 {
16771 declareStruct = 0x1;
16772 break;
16773 }
16774 else if(subType->kind == 13)
16775 break;
16776 else if(subType->kind == 12)
16777 subType = subType->arrayType;
16778 else
16779 break;
16780 }
16781 FreeType(type);
16782 if(!d)
16783 break;
16784 }
16785 }
16786 if(decl->specifiers)
16787 {
16788 struct Specifier * s;
16789
16790 for(s = (*decl->specifiers).first; s; s = s->next)
16791 {
16792 ProcessSpecifier(s, declareStruct);
16793 }
16794 }
16795 break;
16796 }
16797 case 2:
16798 {
16799 ProcessInstantiationType(decl->inst);
16800 break;
16801 }
16802 case 0:
16803 {
16804 struct Specifier * spec;
16805 struct Declarator * d;
16806 unsigned int declareStruct = 0x0;
16807
16808 if(decl->declarators)
16809 {
16810 for(d = (*decl->declarators).first; d; d = d->next)
16811 {
16812 struct Type * type = ProcessType(decl->specifiers, d->declarator);
16813 struct Type * subType;
16814
16815 ProcessDeclarator(d);
16816 for(subType = type; subType; )
16817 {
16818 if(subType->kind == 8)
16819 {
16820 declareStruct = 0x1;
16821 break;
16822 }
16823 else if(subType->kind == 13)
16824 break;
16825 else if(subType->kind == 12)
16826 subType = subType->arrayType;
16827 else
16828 break;
16829 }
16830 FreeType(type);
16831 }
16832 }
16833 if(decl->specifiers)
16834 {
16835 for(spec = (*decl->specifiers).first; spec; spec = spec->next)
16836 ProcessSpecifier(spec, declareStruct);
16837 }
16838 break;
16839 }
16840 }
16841 }
16842
16843 static struct FunctionDefinition * curFunction;
16844
16845 static void CreateFireWatcher(struct __ecereNameSpace__ecere__com__Property * prop, struct Expression * object, struct Statement * stmt)
16846 {
16847 char propName[1024], propNameM[1024];
16848 char getName[1024], setName[1024];
16849 struct __ecereNameSpace__ecere__sys__OldList * args;
16850
16851 DeclareProperty(prop, setName, getName);
16852 strcpy(propName, "__ecereProp_");
16853 FullClassNameCat(propName, prop->_class->fullName, 0x0);
16854 strcat(propName, "_");
16855 FullClassNameCat(propName, prop->name, 0x1);
16856 MangleClassName(propName);
16857 strcpy(propNameM, "__ecerePropM_");
16858 FullClassNameCat(propNameM, prop->_class->fullName, 0x0);
16859 strcat(propNameM, "_");
16860 FullClassNameCat(propNameM, prop->name, 0x1);
16861 MangleClassName(propNameM);
16862 if(prop->isWatchable)
16863 {
16864 args = MkList();
16865 ListAdd(args, object ? CopyExpression(object) : MkExpIdentifier(MkIdentifier("this")));
16866 ListAdd(args, MkExpIdentifier(MkIdentifier(propName)));
16867 ListAdd(stmt->expressions, MkExpCall(MkExpIdentifier(MkIdentifier("ecere::com::eInstance_FireWatchers")), args));
16868 args = MkList();
16869 ListAdd(args, object ? CopyExpression(object) : MkExpIdentifier(MkIdentifier("this")));
16870 ListAdd(args, MkExpIdentifier(MkIdentifier(propNameM)));
16871 ListAdd(stmt->expressions, MkExpCall(MkExpIdentifier(MkIdentifier("ecere::com::eInstance_FireWatchers")), args));
16872 }
16873 {
16874 args = MkList();
16875 ListAdd(args, object ? CopyExpression(object) : MkExpIdentifier(MkIdentifier("this")));
16876 ListAdd(args, MkExpIdentifier(MkIdentifier(propName)));
16877 ListAdd(stmt->expressions, MkExpCall(MkExpIdentifier(MkIdentifier("ecere::com::eInstance_FireSelfWatchers")), args));
16878 args = MkList();
16879 ListAdd(args, object ? CopyExpression(object) : MkExpIdentifier(MkIdentifier("this")));
16880 ListAdd(args, MkExpIdentifier(MkIdentifier(propNameM)));
16881 ListAdd(stmt->expressions, MkExpCall(MkExpIdentifier(MkIdentifier("ecere::com::eInstance_FireSelfWatchers")), args));
16882 }
16883 if(curFunction->propSet && !strcmp(curFunction->propSet->string, prop->name) && (!object || (object->type == 0 && !strcmp(object->identifier->string, "this"))))
16884 curFunction->propSet->fireWatchersDone = 0x1;
16885 }
16886
16887 extern struct Declaration * MkDeclarationInst(struct Instantiation * inst);
16888
16889 extern struct Instantiation * MkInstantiationNamed(struct __ecereNameSpace__ecere__sys__OldList * specs, struct Expression * exp, struct __ecereNameSpace__ecere__sys__OldList * members);
16890
16891 extern struct Statement * MkIfStmt(struct __ecereNameSpace__ecere__sys__OldList * exp, struct Statement * statement, struct Statement * elseStmt);
16892
16893 extern struct Statement * MkForStmt(struct Statement * init, struct Statement * check, struct __ecereNameSpace__ecere__sys__OldList * inc, struct Statement * statement);
16894
16895 extern struct Statement * MkWhileStmt(struct __ecereNameSpace__ecere__sys__OldList * exp, struct Statement * statement);
16896
16897 extern struct ClassFunction * MkClassFunction(struct __ecereNameSpace__ecere__sys__OldList * specifiers, struct Specifier * _class, struct Declarator * decl, struct __ecereNameSpace__ecere__sys__OldList * declList);
16898
16899 extern void ProcessClassFunctionBody(struct ClassFunction * func, struct Statement * body);
16900
16901 extern void FreePropertyWatch(struct PropertyWatch * watcher);
16902
16903 static void ProcessStatement(struct Statement * stmt)
16904 {
16905 yylloc = stmt->loc;
16906 switch(stmt->type)
16907 {
16908 case 0:
16909 ProcessStatement(stmt->labeled.stmt);
16910 break;
16911 case 1:
16912 if(stmt->caseStmt.exp)
16913 {
16914 FreeType(stmt->caseStmt.exp->destType);
16915 stmt->caseStmt.exp->destType = curSwitchType;
16916 if(curSwitchType)
16917 curSwitchType->refCount++;
16918 ProcessExpressionType(stmt->caseStmt.exp);
16919 ComputeExpression(stmt->caseStmt.exp);
16920 }
16921 if(stmt->caseStmt.stmt)
16922 ProcessStatement(stmt->caseStmt.stmt);
16923 break;
16924 case 2:
16925 {
16926 if(stmt->compound.context)
16927 {
16928 struct Declaration * decl;
16929 struct Statement * s;
16930 struct Statement * prevCompound = curCompound;
16931 struct Context * prevContext = curContext;
16932
16933 if(!stmt->compound.isSwitch)
16934 curCompound = stmt;
16935 curContext = stmt->compound.context;
16936 if(stmt->compound.declarations)
16937 {
16938 for(decl = (*stmt->compound.declarations).first; decl; decl = decl->next)
16939 ProcessDeclaration(decl);
16940 }
16941 if(stmt->compound.statements)
16942 {
16943 for(s = (*stmt->compound.statements).first; s; s = s->next)
16944 ProcessStatement(s);
16945 }
16946 curContext = prevContext;
16947 curCompound = prevCompound;
16948 }
16949 break;
16950 }
16951 case 3:
16952 {
16953 struct Expression * exp;
16954
16955 if(stmt->expressions)
16956 {
16957 for(exp = (*stmt->expressions).first; exp; exp = exp->next)
16958 ProcessExpressionType(exp);
16959 }
16960 break;
16961 }
16962 case 4:
16963 {
16964 struct Expression * exp;
16965
16966 FreeType(((struct Expression *)(*stmt->ifStmt.exp).last)->destType);
16967 ((struct Expression *)(*stmt->ifStmt.exp).last)->destType = MkClassType("bool");
16968 ((struct Expression *)(*stmt->ifStmt.exp).last)->destType->truth = 0x1;
16969 for(exp = (*stmt->ifStmt.exp).first; exp; exp = exp->next)
16970 {
16971 ProcessExpressionType(exp);
16972 }
16973 if(stmt->ifStmt.stmt)
16974 ProcessStatement(stmt->ifStmt.stmt);
16975 if(stmt->ifStmt.elseStmt)
16976 ProcessStatement(stmt->ifStmt.elseStmt);
16977 break;
16978 }
16979 case 5:
16980 {
16981 struct Type * oldSwitchType = curSwitchType;
16982
16983 if(stmt->switchStmt.exp)
16984 {
16985 struct Expression * exp;
16986
16987 for(exp = (*stmt->switchStmt.exp).first; exp; exp = exp->next)
16988 {
16989 if(!exp->next)
16990 {
16991 ProcessExpressionType(exp);
16992 }
16993 if(!exp->next)
16994 curSwitchType = exp->expType;
16995 }
16996 }
16997 ProcessStatement(stmt->switchStmt.stmt);
16998 curSwitchType = oldSwitchType;
16999 break;
17000 }
17001 case 6:
17002 {
17003 if(stmt->whileStmt.exp)
17004 {
17005 struct Expression * exp;
17006
17007 FreeType(((struct Expression *)(*stmt->whileStmt.exp).last)->destType);
17008 ((struct Expression *)(*stmt->whileStmt.exp).last)->destType = MkClassType("bool");
17009 ((struct Expression *)(*stmt->whileStmt.exp).last)->destType->truth = 0x1;
17010 for(exp = (*stmt->whileStmt.exp).first; exp; exp = exp->next)
17011 {
17012 ProcessExpressionType(exp);
17013 }
17014 }
17015 if(stmt->whileStmt.stmt)
17016 ProcessStatement(stmt->whileStmt.stmt);
17017 break;
17018 }
17019 case 7:
17020 {
17021 if(stmt->doWhile.exp)
17022 {
17023 struct Expression * exp;
17024
17025 if((*stmt->doWhile.exp).last)
17026 {
17027 FreeType(((struct Expression *)(*stmt->doWhile.exp).last)->destType);
17028 ((struct Expression *)(*stmt->doWhile.exp).last)->destType = MkClassType("bool");
17029 ((struct Expression *)(*stmt->doWhile.exp).last)->destType->truth = 0x1;
17030 }
17031 for(exp = (*stmt->doWhile.exp).first; exp; exp = exp->next)
17032 {
17033 ProcessExpressionType(exp);
17034 }
17035 }
17036 if(stmt->doWhile.stmt)
17037 ProcessStatement(stmt->doWhile.stmt);
17038 break;
17039 }
17040 case 8:
17041 {
17042 struct Expression * exp;
17043
17044 if(stmt->forStmt.init)
17045 ProcessStatement(stmt->forStmt.init);
17046 if(stmt->forStmt.check && stmt->forStmt.check->expressions)
17047 {
17048 FreeType(((struct Expression *)(*stmt->forStmt.check->expressions).last)->destType);
17049 ((struct Expression *)(*stmt->forStmt.check->expressions).last)->destType = MkClassType("bool");
17050 ((struct Expression *)(*stmt->forStmt.check->expressions).last)->destType->truth = 0x1;
17051 }
17052 if(stmt->forStmt.check)
17053 ProcessStatement(stmt->forStmt.check);
17054 if(stmt->forStmt.increment)
17055 {
17056 for(exp = (*stmt->forStmt.increment).first; exp; exp = exp->next)
17057 ProcessExpressionType(exp);
17058 }
17059 if(stmt->forStmt.stmt)
17060 ProcessStatement(stmt->forStmt.stmt);
17061 break;
17062 }
17063 case 18:
17064 {
17065 struct Identifier * id = stmt->forEachStmt.id;
17066 struct __ecereNameSpace__ecere__sys__OldList * exp = stmt->forEachStmt.exp;
17067 struct __ecereNameSpace__ecere__sys__OldList * filter = stmt->forEachStmt.filter;
17068 struct Statement * block = stmt->forEachStmt.stmt;
17069 char iteratorType[1024];
17070 struct Type * source;
17071 struct Expression * e;
17072 unsigned int isBuiltin = exp && (*exp).last && (((struct Expression *)(*exp).last)->type == 35 || (((struct Expression *)(*exp).last)->type == 11 && ((struct Expression *)(*exp).last)->cast.exp->type == 35));
17073 struct Expression * arrayExp;
17074 char * typeString = (((void *)0));
17075 int builtinCount = 0;
17076
17077 for(e = exp ? (*exp).first : (((void *)0)); e; e = e->next)
17078 {
17079 if(!e->next)
17080 {
17081 FreeType(e->destType);
17082 e->destType = ProcessTypeString("Container", 0x0);
17083 }
17084 if(!isBuiltin || e->next)
17085 ProcessExpressionType(e);
17086 }
17087 source = (exp && (*exp).last) ? ((struct Expression *)(*exp).last)->expType : (((void *)0));
17088 if(isBuiltin || (source && source->kind == 8 && source->_class && source->_class->registered && source->_class->registered != containerClass && __ecereNameSpace__ecere__com__eClass_IsDerived(source->_class->registered, containerClass)))
17089 {
17090 struct __ecereNameSpace__ecere__com__Class * _class = source ? source->_class->registered : (((void *)0));
17091 struct Symbol * symbol;
17092 struct Expression * expIt = (((void *)0));
17093 unsigned int isMap = 0x0, isArray = 0x0, isLinkList = 0x0, isList = 0x0, isCustomAVLTree = 0x0, isAVLTree = 0x0;
17094 struct __ecereNameSpace__ecere__com__Class * arrayClass = __ecereNameSpace__ecere__com__eSystem_FindClass(privateModule, "Array");
17095 struct __ecereNameSpace__ecere__com__Class * linkListClass = __ecereNameSpace__ecere__com__eSystem_FindClass(privateModule, "LinkList");
17096 struct __ecereNameSpace__ecere__com__Class * customAVLTreeClass = __ecereNameSpace__ecere__com__eSystem_FindClass(privateModule, "CustomAVLTree");
17097
17098 stmt->type = 2;
17099 stmt->compound.context = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Context);
17100 stmt->compound.context->parent = curContext;
17101 curContext = stmt->compound.context;
17102 if(source && __ecereNameSpace__ecere__com__eClass_IsDerived(source->_class->registered, customAVLTreeClass))
17103 {
17104 struct __ecereNameSpace__ecere__com__Class * mapClass = __ecereNameSpace__ecere__com__eSystem_FindClass(privateModule, "Map");
17105 struct __ecereNameSpace__ecere__com__Class * avlTreeClass = __ecereNameSpace__ecere__com__eSystem_FindClass(privateModule, "AVLTree");
17106
17107 isCustomAVLTree = 0x1;
17108 if(__ecereNameSpace__ecere__com__eClass_IsDerived(source->_class->registered, avlTreeClass))
17109 isAVLTree = 0x1;
17110 else if(__ecereNameSpace__ecere__com__eClass_IsDerived(source->_class->registered, mapClass))
17111 isMap = 0x1;
17112 }
17113 else if(source && __ecereNameSpace__ecere__com__eClass_IsDerived(source->_class->registered, arrayClass))
17114 isArray = 0x1;
17115 else if(source && __ecereNameSpace__ecere__com__eClass_IsDerived(source->_class->registered, linkListClass))
17116 {
17117 struct __ecereNameSpace__ecere__com__Class * listClass = __ecereNameSpace__ecere__com__eSystem_FindClass(privateModule, "List");
17118
17119 isLinkList = 0x1;
17120 isList = __ecereNameSpace__ecere__com__eClass_IsDerived(source->_class->registered, listClass);
17121 }
17122 if(isArray)
17123 {
17124 struct Declarator * decl;
17125 struct __ecereNameSpace__ecere__sys__OldList * specs = MkList();
17126
17127 decl = SpecDeclFromString(_class->templateArgs[2].dataTypeString, specs, MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), MkDeclaratorIdentifier(id)));
17128 stmt->compound.declarations = MkListOne(MkDeclaration(specs, MkListOne(MkInitDeclarator(decl, (((void *)0))))));
17129 ListAdd(stmt->compound.declarations, MkDeclaration(MkListOne(MkSpecifierName(source->_class->registered->fullName)), MkListOne(MkInitDeclarator(MkDeclaratorIdentifier(MkIdentifier("__internalArray")), MkInitializerAssignment(MkExpBrackets(exp))))));
17130 }
17131 else if(isBuiltin)
17132 {
17133 struct Type * type = (((void *)0));
17134 char typeStringBuf[1024];
17135
17136 arrayExp = (((struct Expression *)(*exp).last)->type == 35) ? (struct Expression *)(*exp).last : ((struct Expression *)(*exp).last)->cast.exp;
17137 if(((struct Expression *)(*exp).last)->type == 11)
17138 {
17139 struct TypeName * typeName = ((struct Expression *)(*exp).last)->cast.typeName;
17140
17141 if(typeName)
17142 arrayExp->destType = ProcessType(typeName->qualifiers, typeName->declarator);
17143 }
17144 if(arrayExp->destType && arrayExp->destType->kind == 8 && arrayExp->destType->_class && arrayExp->destType->_class->registered && arrayExp->destType->_class->registered != containerClass && __ecereNameSpace__ecere__com__eClass_IsDerived(arrayExp->destType->_class->registered, containerClass) && arrayExp->destType->_class->registered->templateArgs)
17145 {
17146 struct __ecereNameSpace__ecere__com__Class * templateClass = arrayExp->destType->_class->registered;
17147
17148 typeString = templateClass->templateArgs[2].dataTypeString;
17149 }
17150 else if(arrayExp->list)
17151 {
17152 struct Expression * e;
17153
17154 for(e = (*arrayExp->list).first; e; e = e->next)
17155 {
17156 ProcessExpressionType(e);
17157 if(e->expType)
17158 {
17159 if(!type)
17160 {
17161 type = e->expType;
17162 type->refCount++;
17163 }
17164 else
17165 {
17166 if(!MatchTypeExpression(e, type, (((void *)0)), 0x0))
17167 {
17168 FreeType(type);
17169 type = e->expType;
17170 e->expType = (((void *)0));
17171 e = (*arrayExp->list).first;
17172 ProcessExpressionType(e);
17173 if(e->expType)
17174 {
17175 if(!MatchTypeExpression(e, type, (((void *)0)), 0x0))
17176 {
17177 FreeType(e->expType);
17178 e->expType = (((void *)0));
17179 FreeType(type);
17180 type = (((void *)0));
17181 break;
17182 }
17183 }
17184 }
17185 }
17186 if(e->expType)
17187 {
17188 FreeType(e->expType);
17189 e->expType = (((void *)0));
17190 }
17191 }
17192 }
17193 if(type)
17194 {
17195 typeStringBuf[0] = '\0';
17196 PrintType(type, typeStringBuf, 0x0, 0x1);
17197 typeString = typeStringBuf;
17198 FreeType(type);
17199 }
17200 }
17201 if(typeString)
17202 {
17203 struct __ecereNameSpace__ecere__sys__OldList * initializers = MkList();
17204 struct Declarator * decl;
17205 struct __ecereNameSpace__ecere__sys__OldList * specs = MkList();
17206
17207 if(arrayExp->list)
17208 {
17209 struct Expression * e;
17210
17211 builtinCount = (*arrayExp->list).count;
17212 type = ProcessTypeString(typeString, 0x0);
17213 while(e = (*arrayExp->list).first)
17214 {
17215 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Remove((&*arrayExp->list), e);
17216 e->destType = type;
17217 type->refCount++;
17218 ProcessExpressionType(e);
17219 ListAdd(initializers, MkInitializerAssignment(e));
17220 }
17221 FreeType(type);
17222 (__ecereNameSpace__ecere__com__eSystem_Delete(arrayExp->list), arrayExp->list = 0);
17223 }
17224 decl = SpecDeclFromString(typeString, specs, MkDeclaratorIdentifier(id));
17225 stmt->compound.declarations = MkListOne(MkDeclaration(CopyList(specs, CopySpecifier), MkListOne(MkInitDeclarator(MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), decl), (((void *)0))))));
17226 ListAdd(stmt->compound.declarations, MkDeclaration(specs, MkListOne(MkInitDeclarator(PlugDeclarator(decl, MkDeclaratorArray(MkDeclaratorIdentifier(MkIdentifier("__internalArray")), (((void *)0)))), MkInitializerList(initializers)))));
17227 FreeList(exp, FreeExpression);
17228 }
17229 else
17230 {
17231 arrayExp->expType = ProcessTypeString("Container", 0x0);
17232 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "Couldn't determine type of array elements\n", (((void *)0))));
17233 }
17234 }
17235 else if(isLinkList && !isList)
17236 {
17237 struct Declarator * decl;
17238 struct __ecereNameSpace__ecere__sys__OldList * specs = MkList();
17239
17240 decl = SpecDeclFromString(_class->templateArgs[3].dataTypeString, specs, MkDeclaratorIdentifier(id));
17241 stmt->compound.declarations = MkListOne(MkDeclaration(specs, MkListOne(MkInitDeclarator(decl, (((void *)0))))));
17242 ListAdd(stmt->compound.declarations, MkDeclaration(MkListOne(MkSpecifierName(source->_class->registered->fullName)), MkListOne(MkInitDeclarator(MkDeclaratorIdentifier(MkIdentifier("__internalLinkList")), MkInitializerAssignment(MkExpBrackets(exp))))));
17243 }
17244 else if(_class->templateArgs)
17245 {
17246 if(isMap)
17247 sprintf(iteratorType, "MapIterator<%s, %s >", _class->templateArgs[5].dataTypeString, _class->templateArgs[6].dataTypeString);
17248 else
17249 sprintf(iteratorType, "Iterator<%s, %s >", _class->templateArgs[2].dataTypeString, _class->templateArgs[1].dataTypeString);
17250 stmt->compound.declarations = MkListOne(MkDeclarationInst(MkInstantiationNamed(MkListOne(MkSpecifierName(iteratorType)), MkExpIdentifier(id), MkListOne(MkMembersInitList(MkListOne(MkMemberInit(isMap ? MkListOne(MkIdentifier("map")) : (((void *)0)), MkInitializerAssignment(MkExpBrackets(exp)))))))));
17251 }
17252 symbol = FindSymbol(id->string, curContext, curContext, 0x0, 0x0);
17253 if(block)
17254 {
17255 switch(block->type)
17256 {
17257 case 2:
17258 if(block->compound.context)
17259 block->compound.context->parent = stmt->compound.context;
17260 break;
17261 case 4:
17262 if(block->ifStmt.stmt && block->ifStmt.stmt->type == 2 && block->ifStmt.stmt->compound.context)
17263 block->ifStmt.stmt->compound.context->parent = stmt->compound.context;
17264 if(block->ifStmt.elseStmt && block->ifStmt.elseStmt->type == 2 && block->ifStmt.elseStmt->compound.context)
17265 block->ifStmt.elseStmt->compound.context->parent = stmt->compound.context;
17266 break;
17267 case 5:
17268 if(block->switchStmt.stmt && block->switchStmt.stmt->type == 2 && block->switchStmt.stmt->compound.context)
17269 block->switchStmt.stmt->compound.context->parent = stmt->compound.context;
17270 break;
17271 case 6:
17272 if(block->whileStmt.stmt && block->whileStmt.stmt->type == 2 && block->whileStmt.stmt->compound.context)
17273 block->whileStmt.stmt->compound.context->parent = stmt->compound.context;
17274 break;
17275 case 7:
17276 if(block->doWhile.stmt && block->doWhile.stmt->type == 2 && block->doWhile.stmt->compound.context)
17277 block->doWhile.stmt->compound.context->parent = stmt->compound.context;
17278 break;
17279 case 8:
17280 if(block->forStmt.stmt && block->forStmt.stmt->type == 2 && block->forStmt.stmt->compound.context)
17281 block->forStmt.stmt->compound.context->parent = stmt->compound.context;
17282 break;
17283 case 18:
17284 if(block->forEachStmt.stmt && block->forEachStmt.stmt->type == 2 && block->forEachStmt.stmt->compound.context)
17285 block->forEachStmt.stmt->compound.context->parent = stmt->compound.context;
17286 break;
17287 }
17288 }
17289 if(filter)
17290 {
17291 block = MkIfStmt(filter, block, (((void *)0)));
17292 }
17293 if(isArray)
17294 {
17295 stmt->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));
17296 ProcessStatement(((struct Statement *)(*stmt->compound.statements).first)->forStmt.init);
17297 ProcessStatement(((struct Statement *)(*stmt->compound.statements).first)->forStmt.check);
17298 ProcessExpressionType((*((struct Statement *)(*stmt->compound.statements).first)->forStmt.increment).first);
17299 }
17300 else if(isBuiltin)
17301 {
17302 char count[128];
17303
17304 sprintf(count, "%d", builtinCount);
17305 stmt->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));
17306 ProcessStatement(((struct Statement *)(*stmt->compound.statements).first)->forStmt.init);
17307 ProcessStatement(((struct Statement *)(*stmt->compound.statements).first)->forStmt.check);
17308 ProcessExpressionType((*((struct Statement *)(*stmt->compound.statements).first)->forStmt.increment).first);
17309 }
17310 else if(isLinkList && !isList)
17311 {
17312 struct __ecereNameSpace__ecere__com__Class * typeClass = __ecereNameSpace__ecere__com__eSystem_FindClass(_class->module, _class->templateArgs[3].dataTypeString);
17313 struct __ecereNameSpace__ecere__com__Class * listItemClass = __ecereNameSpace__ecere__com__eSystem_FindClass(_class->module, "ListItem");
17314
17315 if(typeClass && __ecereNameSpace__ecere__com__eClass_IsDerived(typeClass, listItemClass) && _class->templateArgs[5].dataTypeString && !strcmp(_class->templateArgs[5].dataTypeString, "LT::link"))
17316 {
17317 stmt->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));
17318 }
17319 else
17320 {
17321 struct __ecereNameSpace__ecere__sys__OldList * specs = MkList();
17322 struct Declarator * decl = SpecDeclFromString(_class->templateArgs[3].dataTypeString, specs, (((void *)0)));
17323
17324 stmt->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));
17325 }
17326 ProcessStatement(((struct Statement *)(*stmt->compound.statements).first)->forStmt.init);
17327 ProcessStatement(((struct Statement *)(*stmt->compound.statements).first)->forStmt.check);
17328 ProcessExpressionType((*((struct Statement *)(*stmt->compound.statements).first)->forStmt.increment).first);
17329 }
17330 else
17331 {
17332 stmt->compound.statements = MkListOne(MkWhileStmt(MkListOne(MkExpCall(MkExpMember(expIt = MkExpIdentifier(CopyIdentifier(id)), MkIdentifier("Next")), (((void *)0)))), block));
17333 }
17334 ProcessExpressionType(expIt);
17335 if((*stmt->compound.declarations).first)
17336 ProcessDeclaration((*stmt->compound.declarations).first);
17337 if(symbol)
17338 symbol->isIterator = isMap ? 2 : ((isArray || isBuiltin) ? 3 : (isLinkList ? (isList ? 5 : 4) : (isCustomAVLTree ? 6 : 1)));
17339 ProcessStatement(stmt);
17340 curContext = stmt->compound.context->parent;
17341 break;
17342 }
17343 else
17344 {
17345 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "Expression is not a container\n", (((void *)0))));
17346 }
17347 break;
17348 }
17349 case 9:
17350 break;
17351 case 10:
17352 break;
17353 case 11:
17354 break;
17355 case 12:
17356 {
17357 struct Expression * exp;
17358
17359 if(stmt->expressions)
17360 {
17361 for(exp = (*stmt->expressions).first; exp; exp = exp->next)
17362 {
17363 if(!exp->next)
17364 {
17365 if(curFunction && !curFunction->type)
17366 curFunction->type = ProcessType(curFunction->specifiers, curFunction->declarator);
17367 FreeType(exp->destType);
17368 exp->destType = (curFunction && curFunction->type && curFunction->type->kind == 11) ? curFunction->type->returnType : (((void *)0));
17369 if(exp->destType)
17370 exp->destType->refCount++;
17371 }
17372 ProcessExpressionType(exp);
17373 }
17374 }
17375 break;
17376 }
17377 case 14:
17378 {
17379 ProcessDeclaration(stmt->decl);
17380 break;
17381 }
17382 case 13:
17383 {
17384 struct AsmField * field;
17385
17386 if(stmt->asmStmt.inputFields)
17387 {
17388 for(field = (*stmt->asmStmt.inputFields).first; field; field = field->next)
17389 if(field->expression)
17390 ProcessExpressionType(field->expression);
17391 }
17392 if(stmt->asmStmt.outputFields)
17393 {
17394 for(field = (*stmt->asmStmt.outputFields).first; field; field = field->next)
17395 if(field->expression)
17396 ProcessExpressionType(field->expression);
17397 }
17398 if(stmt->asmStmt.clobberedFields)
17399 {
17400 for(field = (*stmt->asmStmt.clobberedFields).first; field; field = field->next)
17401 {
17402 if(field->expression)
17403 ProcessExpressionType(field->expression);
17404 }
17405 }
17406 break;
17407 }
17408 case 17:
17409 {
17410 struct PropertyWatch * propWatch;
17411 struct __ecereNameSpace__ecere__sys__OldList * watches = stmt->_watch.watches;
17412 struct Expression * object = stmt->_watch.object;
17413 struct Expression * watcher = stmt->_watch.watcher;
17414
17415 if(watcher)
17416 ProcessExpressionType(watcher);
17417 if(object)
17418 ProcessExpressionType(object);
17419 if(inCompiler)
17420 {
17421 if(watcher || thisClass)
17422 {
17423 struct External * external = curExternal;
17424 struct Context * context = curContext;
17425
17426 stmt->type = 3;
17427 stmt->expressions = MkList();
17428 curExternal = external->prev;
17429 for(propWatch = (*watches).first; propWatch; propWatch = propWatch->next)
17430 {
17431 struct ClassFunction * func;
17432 char watcherName[1024];
17433 struct __ecereNameSpace__ecere__com__Class * watcherClass = watcher ? ((watcher->expType && watcher->expType->kind == 8 && watcher->expType->_class) ? watcher->expType->_class->registered : (((void *)0))) : thisClass;
17434 struct External * createdExternal;
17435 struct External * externalDecl = MkExternalDeclaration((((void *)0)));
17436
17437 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*ast), curExternal->prev, externalDecl);
17438 sprintf(watcherName, "__ecerePropertyWatcher_%d", propWatcherID++);
17439 if(propWatch->deleteWatch)
17440 strcat(watcherName, "_delete");
17441 else
17442 {
17443 struct Identifier * propID;
17444
17445 for(propID = (*propWatch->properties).first; propID; propID = propID->next)
17446 {
17447 strcat(watcherName, "_");
17448 strcat(watcherName, propID->string);
17449 }
17450 }
17451 if(object && object->expType && object->expType->kind == 8 && object->expType->_class && object->expType->_class->registered)
17452 {
17453 func = MkClassFunction(MkListOne(MkSpecifier(VOID)), (((void *)0)), MkDeclaratorFunction(MkDeclaratorIdentifier(MkIdentifier(watcherName)), MkListOne(MkTypeName(MkListOne(MkSpecifierName(object->expType->_class->string)), MkDeclaratorIdentifier(MkIdentifier("value"))))), (((void *)0)));
17454 ProcessClassFunctionBody(func, propWatch->compound);
17455 propWatch->compound = (((void *)0));
17456 createdExternal = ProcessClassFunction(watcherClass, func, ast, curExternal, 0x1);
17457 createdExternal->symbol->idCode = external->symbol->idCode;
17458 curExternal = createdExternal;
17459 ProcessFunction(createdExternal->function);
17460 {
17461 struct Declaration * decl = MkDeclaration(CopyList(createdExternal->function->specifiers, CopySpecifier), MkListOne(MkInitDeclarator(CopyDeclarator(createdExternal->function->declarator), (((void *)0)))));
17462
17463 externalDecl->declaration = decl;
17464 if(decl->symbol && !decl->symbol->pointerExternal)
17465 decl->symbol->pointerExternal = externalDecl;
17466 }
17467 if(propWatch->deleteWatch)
17468 {
17469 struct __ecereNameSpace__ecere__sys__OldList * args = MkList();
17470
17471 ListAdd(args, CopyExpression(object));
17472 ListAdd(args, watcher ? CopyExpression(watcher) : MkExpIdentifier(MkIdentifier("this")));
17473 ListAdd(args, MkExpIdentifier(MkIdentifier(watcherName)));
17474 ListAdd(stmt->expressions, MkExpCall(MkExpIdentifier(MkIdentifier("ecere::com::eInstance_WatchDestruction")), args));
17475 }
17476 else
17477 {
17478 struct __ecereNameSpace__ecere__com__Class * _class = object->expType->_class->registered;
17479 struct Identifier * propID;
17480
17481 for(propID = (*propWatch->properties).first; propID; propID = propID->next)
17482 {
17483 char propName[1024];
17484 struct __ecereNameSpace__ecere__com__Property * prop = __ecereNameSpace__ecere__com__eClass_FindProperty(_class, propID->string, privateModule);
17485
17486 if(prop)
17487 {
17488 char getName[1024], setName[1024];
17489 struct __ecereNameSpace__ecere__sys__OldList * args = MkList();
17490
17491 DeclareProperty(prop, setName, getName);
17492 strcpy(propName, "__ecereProp_");
17493 FullClassNameCat(propName, prop->_class->fullName, 0x0);
17494 strcat(propName, "_");
17495 FullClassNameCat(propName, prop->name, 0x1);
17496 ListAdd(args, CopyExpression(object));
17497 ListAdd(args, MkExpIdentifier(MkIdentifier(propName)));
17498 ListAdd(args, watcher ? CopyExpression(watcher) : MkExpIdentifier(MkIdentifier("this")));
17499 ListAdd(args, MkExpIdentifier(MkIdentifier(watcherName)));
17500 ListAdd(stmt->expressions, MkExpCall(MkExpIdentifier(MkIdentifier("ecere::com::eInstance_Watch")), args));
17501 }
17502 else
17503 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "Property %s not found in class %s\n", (((void *)0))), prop->name, _class->fullName);
17504 }
17505 }
17506 }
17507 else
17508 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "Invalid watched object\n", (((void *)0))));
17509 }
17510 curExternal = external;
17511 curContext = context;
17512 if(watcher)
17513 FreeExpression(watcher);
17514 if(object)
17515 FreeExpression(object);
17516 FreeList(watches, FreePropertyWatch);
17517 }
17518 else
17519 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "No observer specified and not inside a _class\n", (((void *)0))));
17520 }
17521 else
17522 {
17523 for(propWatch = (*watches).first; propWatch; propWatch = propWatch->next)
17524 {
17525 ProcessStatement(propWatch->compound);
17526 }
17527 }
17528 break;
17529 }
17530 case 15:
17531 {
17532 struct __ecereNameSpace__ecere__sys__OldList * watches = stmt->_watch.watches;
17533 struct Expression * object = stmt->_watch.object;
17534 struct __ecereNameSpace__ecere__com__Class * _class;
17535
17536 if(object)
17537 ProcessExpressionType(object);
17538 if(inCompiler)
17539 {
17540 _class = object ? ((object->expType && object->expType->kind == 8 && object->expType->_class) ? object->expType->_class->registered : (((void *)0))) : thisClass;
17541 if(_class)
17542 {
17543 struct Identifier * propID;
17544
17545 stmt->type = 3;
17546 stmt->expressions = MkList();
17547 if(!watches && curFunction->propSet && (!object || (object->type == 0 && !strcmp(object->identifier->string, "this"))))
17548 {
17549 watches = MkListOne(MkIdentifier(curFunction->propSet->string));
17550 }
17551 else if(!watches)
17552 {
17553 }
17554 if(watches)
17555 {
17556 for(propID = (*watches).first; propID; propID = propID->next)
17557 {
17558 struct __ecereNameSpace__ecere__com__Property * prop = __ecereNameSpace__ecere__com__eClass_FindProperty(_class, propID->string, privateModule);
17559
17560 if(prop)
17561 {
17562 CreateFireWatcher(prop, object, stmt);
17563 }
17564 else
17565 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "Property %s not found in class %s\n", (((void *)0))), propID->string, _class->fullName);
17566 }
17567 }
17568 else
17569 {
17570 struct __ecereNameSpace__ecere__com__Property * prop;
17571 struct __ecereNameSpace__ecere__com__Class * base;
17572
17573 for(base = _class; base; base = base->base)
17574 {
17575 for(prop = base->membersAndProperties.first; prop; prop = prop->next)
17576 {
17577 if(prop->isProperty && prop->isWatchable)
17578 {
17579 CreateFireWatcher(prop, object, stmt);
17580 }
17581 }
17582 }
17583 }
17584 if(object)
17585 FreeExpression(object);
17586 FreeList(watches, FreeIdentifier);
17587 }
17588 else
17589 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "Invalid object specified and not inside a class\n", (((void *)0))));
17590 }
17591 break;
17592 }
17593 case 16:
17594 {
17595 struct __ecereNameSpace__ecere__sys__OldList * watches = stmt->_watch.watches;
17596 struct Expression * object = stmt->_watch.object;
17597 struct Expression * watcher = stmt->_watch.watcher;
17598 struct __ecereNameSpace__ecere__com__Class * _class;
17599
17600 if(object)
17601 ProcessExpressionType(object);
17602 if(watcher)
17603 ProcessExpressionType(watcher);
17604 if(inCompiler)
17605 {
17606 _class = (object && object->expType && object->expType->kind == 8 && object->expType->_class) ? object->expType->_class->registered : (((void *)0));
17607 if(watcher || thisClass)
17608 {
17609 if(_class)
17610 {
17611 struct Identifier * propID;
17612
17613 stmt->type = 3;
17614 stmt->expressions = MkList();
17615 if(!watches)
17616 {
17617 struct __ecereNameSpace__ecere__sys__OldList * args;
17618
17619 args = MkList();
17620 ListAdd(args, CopyExpression(object));
17621 ListAdd(args, MkExpConstant("0"));
17622 ListAdd(args, watcher ? CopyExpression(watcher) : MkExpIdentifier(MkIdentifier("this")));
17623 ListAdd(stmt->expressions, MkExpCall(MkExpIdentifier(MkIdentifier("ecere::com::eInstance_StopWatching")), args));
17624 }
17625 else
17626 {
17627 for(propID = (*watches).first; propID; propID = propID->next)
17628 {
17629 char propName[1024];
17630 struct __ecereNameSpace__ecere__com__Property * prop = __ecereNameSpace__ecere__com__eClass_FindProperty(_class, propID->string, privateModule);
17631
17632 if(prop)
17633 {
17634 char getName[1024], setName[1024];
17635 struct __ecereNameSpace__ecere__sys__OldList * args = MkList();
17636
17637 DeclareProperty(prop, setName, getName);
17638 strcpy(propName, "__ecereProp_");
17639 FullClassNameCat(propName, prop->_class->fullName, 0x0);
17640 strcat(propName, "_");
17641 FullClassNameCat(propName, prop->name, 0x1);
17642 MangleClassName(propName);
17643 ListAdd(args, CopyExpression(object));
17644 ListAdd(args, MkExpIdentifier(MkIdentifier(propName)));
17645 ListAdd(args, watcher ? CopyExpression(watcher) : MkExpIdentifier(MkIdentifier("this")));
17646 ListAdd(stmt->expressions, MkExpCall(MkExpIdentifier(MkIdentifier("ecere::com::eInstance_StopWatching")), args));
17647 }
17648 else
17649 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "Property %s not found in class %s\n", (((void *)0))), prop->name, _class->fullName);
17650 }
17651 }
17652 if(object)
17653 FreeExpression(object);
17654 if(watcher)
17655 FreeExpression(watcher);
17656 FreeList(watches, FreeIdentifier);
17657 }
17658 else
17659 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "Invalid object specified and not inside a class\n", (((void *)0))));
17660 }
17661 else
17662 Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "No observer specified and not inside a class\n", (((void *)0))));
17663 }
17664 break;
17665 }
17666 }
17667 }
17668
17669 extern struct Expression * QBrackets(struct Expression * exp);
17670
17671 extern struct TypeName * QMkType(char *  spec, struct Declarator * decl);
17672
17673 extern struct Declarator * QMkPtrDecl(char *  id);
17674
17675 extern struct Expression * MkExpPointer(struct Expression * expression, struct Identifier * member);
17676
17677 extern struct Expression * QMkExpCond(struct Expression * cond, struct Expression * exp, struct Expression * elseExp);
17678
17679 extern struct Statement * MkFireWatchersStmt(struct Expression * object, struct __ecereNameSpace__ecere__sys__OldList * watches);
17680
17681 static void ProcessFunction(struct FunctionDefinition * function)
17682 {
17683 struct Identifier * id = GetDeclId(function->declarator);
17684 struct Symbol * symbol = function->declarator ? function->declarator->symbol : (((void *)0));
17685 struct Type * type = symbol ? symbol->type : (((void *)0));
17686 struct __ecereNameSpace__ecere__com__Class * oldThisClass = thisClass;
17687 struct Context * oldTopContext = topContext;
17688
17689 yylloc = function->loc;
17690 if(type && type->thisClass)
17691 {
17692 struct Symbol * classSym = type->thisClass;
17693 struct __ecereNameSpace__ecere__com__Class * _class = type->thisClass->registered;
17694 char className[1024];
17695 char structName[1024];
17696 struct Declarator * funcDecl;
17697 struct Symbol * thisSymbol;
17698 unsigned int typedObject = 0x0;
17699
17700 if(_class && !_class->base)
17701 {
17702 _class = currentClass;
17703 if(_class && !_class->symbol)
17704 _class->symbol = FindClass(_class->fullName);
17705 classSym = _class ? _class->symbol : (((void *)0));
17706 typedObject = 0x1;
17707 }
17708 thisClass = _class;
17709 if(inCompiler && _class)
17710 {
17711 if(type->kind == 11)
17712 {
17713 if(symbol->type->params.count == 1 && ((struct Type *)symbol->type->params.first)->kind == 0)
17714 {
17715 struct Type * param = symbol->type->params.first;
17716
17717 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Remove(&symbol->type->params, param);
17718 FreeType(param);
17719 }
17720 if(type->classObjectType != 1)
17721 {
17722 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert(&symbol->type->params, (((void *)0)), MkClassType(_class->fullName));
17723 symbol->type->staticMethod = 0x1;
17724 symbol->type->thisClass = (((void *)0));
17725 symbol->type->extraParam = 0x0;
17726 }
17727 }
17728 strcpy(className, "__ecereClass_");
17729 FullClassNameCat(className, _class->fullName, 0x1);
17730 MangleClassName(className);
17731 structName[0] = (char)0;
17732 FullClassNameCat(structName, _class->fullName, 0x0);
17733 funcDecl = GetFuncDecl(function->declarator);
17734 if(funcDecl)
17735 {
17736 if(funcDecl->function.parameters && (*funcDecl->function.parameters).count == 1)
17737 {
17738 struct TypeName * param = (*funcDecl->function.parameters).first;
17739
17740 if(param->qualifiers && (*param->qualifiers).count == 1 && ((struct Specifier *)(*param->qualifiers).first)->specifier == VOID && !param->declarator)
17741 {
17742 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Remove((&*funcDecl->function.parameters), param);
17743 FreeTypeName(param);
17744 }
17745 }
17746 if(!function->propertyNoThis)
17747 {
17748 struct TypeName * thisParam;
17749
17750 if(type->classObjectType != 1)
17751 {
17752 thisParam = QMkClass(_class->fullName, MkDeclaratorIdentifier(MkIdentifier("this")));
17753 if(!funcDecl->function.parameters)
17754 funcDecl->function.parameters = MkList();
17755 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*funcDecl->function.parameters), (((void *)0)), thisParam);
17756 }
17757 if(typedObject)
17758 {
17759 if(type->classObjectType != 1)
17760 {
17761 if(type->byReference || _class->type == 3 || _class->type == 1000 || _class->type == 4 || _class->type == 2)
17762 thisParam->declarator = MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), thisParam->declarator);
17763 }
17764 thisParam = __extension__ ({
17765 struct TypeName * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_TypeName);
17766
17767 __ecereInstance1->declarator = MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), MkDeclaratorIdentifier(MkIdentifier("class"))), __ecereInstance1->qualifiers = MkListOne(MkStructOrUnion(3, MkIdentifier("__ecereNameSpace__ecere__com__Class"), (((void *)0)))), __ecereInstance1;
17768 });
17769 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*funcDecl->function.parameters), (((void *)0)), thisParam);
17770 }
17771 }
17772 }
17773 if(symbol && symbol->pointerExternal && symbol->pointerExternal->type == 1)
17774 {
17775 struct InitDeclarator * initDecl = (*symbol->pointerExternal->declaration->declarators).first;
17776
17777 funcDecl = GetFuncDecl(initDecl->declarator);
17778 if(funcDecl)
17779 {
17780 if(funcDecl->function.parameters && (*funcDecl->function.parameters).count == 1)
17781 {
17782 struct TypeName * param = (*funcDecl->function.parameters).first;
17783
17784 if(param->qualifiers && (*param->qualifiers).count == 1 && ((struct Specifier *)(*param->qualifiers).first)->specifier == VOID && !param->declarator)
17785 {
17786 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Remove((&*funcDecl->function.parameters), param);
17787 FreeTypeName(param);
17788 }
17789 }
17790 if(type->classObjectType != 1)
17791 {
17792 if((_class->type != 2 && _class->type != 3 && _class->type != 4) || function != (struct FunctionDefinition *)symbol->externalSet)
17793 {
17794 struct TypeName * thisParam = QMkClass(_class->fullName, MkDeclaratorIdentifier(MkIdentifier("this")));
17795
17796 if(!funcDecl->function.parameters)
17797 funcDecl->function.parameters = MkList();
17798 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*funcDecl->function.parameters), (((void *)0)), thisParam);
17799 }
17800 }
17801 }
17802 }
17803 }
17804 if(function->body)
17805 {
17806 if(type->classObjectType != 1)
17807 {
17808 thisSymbol = __extension__ ({
17809 struct Symbol * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol);
17810
17811 __ecereInstance1->string = __ecereNameSpace__ecere__sys__CopyString("this"), __ecereInstance1->type = classSym ? MkClassType(classSym->string) : (((void *)0)), __ecereInstance1;
17812 });
17813 __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Add(&function->body->compound.context->symbols, (struct __ecereNameSpace__ecere__sys__BTNode *)thisSymbol);
17814 if(typedObject && thisSymbol->type)
17815 {
17816 thisSymbol->type->classObjectType = 2;
17817 thisSymbol->type->byReference = type->byReference;
17818 thisSymbol->type->typedByReference = type->byReference;
17819 }
17820 }
17821 }
17822 if(inCompiler && _class && (_class->type == 0) && type->classObjectType != 1)
17823 {
17824 struct __ecereNameSpace__ecere__com__DataMember * member = (((void *)0));
17825
17826 {
17827 struct __ecereNameSpace__ecere__com__Class * base;
17828
17829 for(base = _class; base && base->type != 1000; base = base->next)
17830 {
17831 for(member = base->membersAndProperties.first; member; member = member->next)
17832 if(!member->isProperty)
17833 break;
17834 if(member)
17835 break;
17836 }
17837 }
17838 for(member = _class->membersAndProperties.first; member; member = member->next)
17839 if(!member->isProperty)
17840 break;
17841 if(member)
17842 {
17843 char pointerName[1024];
17844 struct Declaration * decl;
17845 struct Initializer * initializer;
17846 struct Expression * exp, * bytePtr;
17847
17848 strcpy(pointerName, "__ecerePointer_");
17849 FullClassNameCat(pointerName, _class->fullName, 0x0);
17850 {
17851 char className[1024];
17852
17853 strcpy(className, "__ecereClass_");
17854 FullClassNameCat(className, classSym->string, 0x1);
17855 MangleClassName(className);
17856 DeclareClass(classSym, className);
17857 }
17858 bytePtr = QBrackets(MkExpCast(QMkType("char", QMkPtrDecl((((void *)0)))), QMkExpId("this")));
17859 if(_class->fixed)
17860 {
17861 char string[256];
17862
17863 sprintf(string, "%d", _class->offset);
17864 exp = QBrackets(MkExpOp(bytePtr, '+', MkExpConstant(string)));
17865 }
17866 else
17867 {
17868 exp = QBrackets(MkExpOp(bytePtr, '+', MkExpPointer(QMkExpId(className), MkIdentifier("offset"))));
17869 }
17870 exp = QBrackets(QMkExpCond(QMkExpId("this"), exp, MkExpConstant("0")));
17871 exp->expType = __extension__ ({
17872 struct Type * __ecereInstance2 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
17873
17874 __ecereInstance2->refCount = 1, __ecereInstance2->kind = 13, __ecereInstance2->type = __extension__ ({
17875 struct Type * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type);
17876
17877 __ecereInstance1->refCount = 1, __ecereInstance1->kind = 0, __ecereInstance1;
17878 }), __ecereInstance2;
17879 });
17880 if(function->body)
17881 {
17882 yylloc = function->body->loc;
17883 initializer = MkInitializerAssignment(MkExpCast(MkTypeName(MkListOne(MkStructOrUnion(3, MkIdentifier(structName), (((void *)0)))), MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), (((void *)0)))), exp));
17884 {
17885 struct Context * prevContext = curContext;
17886
17887 curContext = function->body->compound.context;
17888 decl = MkDeclaration(MkListOne(MkStructOrUnion(3, MkIdentifier(structName), (((void *)0)))), MkListOne(MkInitDeclarator(QMkPtrDecl(pointerName), initializer)));
17889 curContext = prevContext;
17890 }
17891 decl->symbol = (((void *)0));
17892 if(!function->body->compound.declarations)
17893 function->body->compound.declarations = MkList();
17894 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*function->body->compound.declarations), (((void *)0)), decl);
17895 }
17896 }
17897 }
17898 }
17899 else
17900 thisClass = (((void *)0));
17901 if(id)
17902 {
17903 FreeSpecifier(id->_class);
17904 id->_class = (((void *)0));
17905 if(symbol && symbol->pointerExternal && symbol->pointerExternal->type == 1)
17906 {
17907 struct InitDeclarator * initDecl = (*symbol->pointerExternal->declaration->declarators).first;
17908
17909 id = GetDeclId(initDecl->declarator);
17910 FreeSpecifier(id->_class);
17911 id->_class = (((void *)0));
17912 }
17913 }
17914 if(function->body)
17915 topContext = function->body->compound.context;
17916 {
17917 struct FunctionDefinition * oldFunction = curFunction;
17918
17919 curFunction = function;
17920 if(function->body)
17921 ProcessStatement(function->body);
17922 if(inCompiler && function->propSet && !function->propSet->fireWatchersDone)
17923 {
17924 struct Statement * prevCompound = curCompound;
17925 struct Context * prevContext = curContext;
17926 struct Statement * fireWatchers = MkFireWatchersStmt((((void *)0)), (((void *)0)));
17927
17928 if(!function->body->compound.statements)
17929 function->body->compound.statements = MkList();
17930 ListAdd(function->body->compound.statements, fireWatchers);
17931 curCompound = function->body;
17932 curContext = function->body->compound.context;
17933 ProcessStatement(fireWatchers);
17934 curContext = prevContext;
17935 curCompound = prevCompound;
17936 }
17937 curFunction = oldFunction;
17938 }
17939 if(function->declarator)
17940 {
17941 ProcessDeclarator(function->declarator);
17942 }
17943 topContext = oldTopContext;
17944 thisClass = oldThisClass;
17945 }
17946
17947 extern void FreeSymbol(struct Symbol * symbol);
17948
17949 void __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Remove(struct __ecereNameSpace__ecere__sys__BinaryTree * this, struct __ecereNameSpace__ecere__sys__BTNode * node);
17950
17951 static void ProcessClass(struct __ecereNameSpace__ecere__sys__OldList * definitions, struct Symbol * symbol)
17952 {
17953 struct ClassDef * def;
17954 struct External * external = curExternal;
17955 struct __ecereNameSpace__ecere__com__Class * regClass = symbol ? symbol->registered : (((void *)0));
17956
17957 for(def = definitions->first; def; def = def->next)
17958 {
17959 if(def->type == 0)
17960 {
17961 if(def->function->declarator)
17962 curExternal = def->function->declarator->symbol->pointerExternal;
17963 else
17964 curExternal = external;
17965 ProcessFunction((struct FunctionDefinition *)def->function);
17966 }
17967 else if(def->type == 2)
17968 {
17969 if(def->decl->type == 2)
17970 {
17971 thisClass = regClass;
17972 ProcessInstantiationType(def->decl->inst);
17973 thisClass = (((void *)0));
17974 }
17975 else
17976 {
17977 struct __ecereNameSpace__ecere__com__Class * backThisClass = thisClass;
17978
17979 if(regClass)
17980 thisClass = regClass;
17981 ProcessDeclaration(def->decl);
17982 thisClass = backThisClass;
17983 }
17984 }
17985 else if(def->type == 1 && def->defProperties)
17986 {
17987 struct MemberInit * defProperty;
17988 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);
17989
17990 __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Add(&globalContext->symbols, (struct __ecereNameSpace__ecere__sys__BTNode *)thisSymbol);
17991 for(defProperty = (*def->defProperties).first; defProperty; defProperty = defProperty->next)
17992 {
17993 thisClass = regClass;
17994 ProcessMemberInitData(defProperty, regClass, (((void *)0)), (((void *)0)), (((void *)0)), (((void *)0)));
17995 thisClass = (((void *)0));
17996 }
17997 __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Remove(&globalContext->symbols, (struct __ecereNameSpace__ecere__sys__BTNode *)thisSymbol);
17998 FreeSymbol(thisSymbol);
17999 }
18000 else if(def->type == 3 && def->propertyDef)
18001 {
18002 struct PropertyDef * prop = def->propertyDef;
18003
18004 thisClass = regClass;
18005 if(prop->setStmt)
18006 {
18007 if(regClass)
18008 {
18009 struct Symbol * thisSymbol = (thisSymbol = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol), thisSymbol->string = __ecereNameSpace__ecere__sys__CopyString("this"), thisSymbol->type = MkClassType(regClass->fullName), thisSymbol);
18010
18011 __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Add(&prop->setStmt->compound.context->symbols, (struct __ecereNameSpace__ecere__sys__BTNode *)thisSymbol);
18012 }
18013 curExternal = prop->symbol ? prop->symbol->externalSet : (((void *)0));
18014 ProcessStatement(prop->setStmt);
18015 }
18016 if(prop->getStmt)
18017 {
18018 if(regClass)
18019 {
18020 struct Symbol * thisSymbol = (thisSymbol = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol), thisSymbol->string = __ecereNameSpace__ecere__sys__CopyString("this"), thisSymbol->type = MkClassType(regClass->fullName), thisSymbol);
18021
18022 __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Add(&prop->getStmt->compound.context->symbols, (struct __ecereNameSpace__ecere__sys__BTNode *)thisSymbol);
18023 }
18024 curExternal = prop->symbol ? prop->symbol->externalGet : (((void *)0));
18025 ProcessStatement(prop->getStmt);
18026 }
18027 if(prop->issetStmt)
18028 {
18029 if(regClass)
18030 {
18031 struct Symbol * thisSymbol = (thisSymbol = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol), thisSymbol->string = __ecereNameSpace__ecere__sys__CopyString("this"), thisSymbol->type = MkClassType(regClass->fullName), thisSymbol);
18032
18033 __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Add(&prop->issetStmt->compound.context->symbols, (struct __ecereNameSpace__ecere__sys__BTNode *)thisSymbol);
18034 }
18035 curExternal = prop->symbol ? prop->symbol->externalIsSet : (((void *)0));
18036 ProcessStatement(prop->issetStmt);
18037 }
18038 thisClass = (((void *)0));
18039 }
18040 else if(def->type == 4 && def->propertyWatch)
18041 {
18042 struct PropertyWatch * propertyWatch = def->propertyWatch;
18043
18044 thisClass = regClass;
18045 if(propertyWatch->compound)
18046 {
18047 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);
18048
18049 __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Add(&propertyWatch->compound->compound.context->symbols, (struct __ecereNameSpace__ecere__sys__BTNode *)thisSymbol);
18050 curExternal = (((void *)0));
18051 ProcessStatement(propertyWatch->compound);
18052 }
18053 thisClass = (((void *)0));
18054 }
18055 }
18056 }
18057
18058 void DeclareFunctionUtil(char * s)
18059 {
18060 struct __ecereNameSpace__ecere__com__GlobalFunction * function = __ecereNameSpace__ecere__com__eSystem_FindFunction(privateModule, s);
18061
18062 if(function)
18063 {
18064 char name[1024];
18065
18066 name[0] = (char)0;
18067 if(((struct __ecereNameSpace__ecere__com__Module *)(((char *)function->module + structSize_Instance)))->importType != 1 && (!function->dataType || !function->dataType->dllExport))
18068 strcpy(name, "__ecereFunction_");
18069 FullClassNameCat(name, s, 0x0);
18070 DeclareFunction(function, name);
18071 }
18072 }
18073
18074 extern struct __ecereNameSpace__ecere__com__Instance * GetPrivateModule(void);
18075
18076 void ComputeDataTypes()
18077 {
18078 struct External * external;
18079 struct External * temp = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_External);
18080 struct External * after = (((void *)0));
18081
18082 currentClass = (((void *)0));
18083 containerClass = __ecereNameSpace__ecere__com__eSystem_FindClass(GetPrivateModule(), "Container");
18084 for(external = (*ast).first; external; external = external->next)
18085 {
18086 if(external->type == 1)
18087 {
18088 struct Declaration * decl = external->declaration;
18089
18090 if(decl)
18091 {
18092 struct __ecereNameSpace__ecere__sys__OldList * decls = decl->declarators;
18093
18094 if(decls)
18095 {
18096 struct InitDeclarator * initDecl = (*decls).first;
18097
18098 if(initDecl)
18099 {
18100 struct Declarator * declarator = initDecl->declarator;
18101
18102 if(declarator && declarator->type == 1)
18103 {
18104 struct Identifier * id = declarator->identifier;
18105
18106 if(id && id->string)
18107 {
18108 if(!strcmp(id->string, "uintptr_t") || !strcmp(id->string, "intptr_t") || !strcmp(id->string, "size_t") || !strcmp(id->string, "ssize_t"))
18109 {
18110 external->symbol->id = -1001, external->symbol->idCode = -1001;
18111 after = external;
18112 }
18113 }
18114 }
18115 }
18116 }
18117 }
18118 }
18119 }
18120 temp->symbol = __extension__ ({
18121 struct Symbol * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol);
18122
18123 __ecereInstance1->id = -1000, __ecereInstance1->idCode = -1000, __ecereInstance1;
18124 });
18125 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert((&*ast), after, temp);
18126 curExternal = temp;
18127 DeclareFunctionUtil("eSystem_New");
18128 DeclareFunctionUtil("eSystem_New0");
18129 DeclareFunctionUtil("eSystem_Renew");
18130 DeclareFunctionUtil("eSystem_Renew0");
18131 DeclareFunctionUtil("eSystem_Delete");
18132 DeclareFunctionUtil("eClass_GetProperty");
18133 DeclareFunctionUtil("eInstance_FireSelfWatchers");
18134 DeclareStruct("ecere::com::Class", 0x0);
18135 DeclareStruct("ecere::com::Instance", 0x0);
18136 DeclareStruct("ecere::com::Property", 0x0);
18137 DeclareStruct("ecere::com::DataMember", 0x0);
18138 DeclareStruct("ecere::com::Method", 0x0);
18139 DeclareStruct("ecere::com::SerialBuffer", 0x0);
18140 DeclareStruct("ecere::com::ClassTemplateArgument", 0x0);
18141 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Remove((&*ast), temp);
18142 for(external = (*ast).first; external; external = external->next)
18143 {
18144 afterExternal = curExternal = external;
18145 if(external->type == 0)
18146 {
18147 currentClass = external->function->_class;
18148 ProcessFunction(external->function);
18149 }
18150 else if(external->type == 1)
18151 {
18152 currentClass = (((void *)0));
18153 ProcessDeclaration(external->declaration);
18154 }
18155 else if(external->type == 2)
18156 {
18157 struct ClassDefinition * _class = external->_class;
18158
18159 currentClass = external->symbol->registered;
18160 if(_class->definitions)
18161 {
18162 ProcessClass(_class->definitions, _class->symbol);
18163 }
18164 if(inCompiler)
18165 {
18166 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Remove((&*ast), external);
18167 ((external ? (__ecereClass_External->Destructor ? __ecereClass_External->Destructor(external) : 0, __ecereNameSpace__ecere__com__eSystem_Delete(external)) : 0), external = 0);
18168 }
18169 }
18170 else if(external->type == 4)
18171 {
18172 thisNameSpace = external->id->string;
18173 }
18174 }
18175 currentClass = (((void *)0));
18176 thisNameSpace = (((void *)0));
18177 ((temp->symbol ? (__ecereClass_Symbol->Destructor ? __ecereClass_Symbol->Destructor(temp->symbol) : 0, __ecereNameSpace__ecere__com__eSystem_Delete(temp->symbol)) : 0), temp->symbol = 0);
18178 ((temp ? (__ecereClass_External->Destructor ? __ecereClass_External->Destructor(temp) : 0, __ecereNameSpace__ecere__com__eSystem_Delete(temp)) : 0), temp = 0);
18179 }
18180
18181 extern struct __ecereNameSpace__ecere__com__GlobalFunction * __ecereNameSpace__ecere__com__eSystem_RegisterFunction(char *  name, char *  type, void *  func, struct __ecereNameSpace__ecere__com__Instance * module, int declMode);
18182
18183 extern struct __ecereNameSpace__ecere__com__Class * __ecereNameSpace__ecere__com__eSystem_RegisterClass(int type, char *  name, char *  baseName, int size, int sizeClass, unsigned int (*  Constructor)(void * ), void (*  Destructor)(void * ), struct __ecereNameSpace__ecere__com__Instance * module, int declMode, int inheritanceAccess);
18184
18185 extern struct __ecereNameSpace__ecere__com__Instance * __thisModule;
18186
18187 void __ecereRegisterModule_pass15(struct __ecereNameSpace__ecere__com__Instance * module)
18188 {
18189 struct __ecereNameSpace__ecere__com__Class * class;
18190
18191 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("SetYydebug", "void SetYydebug(bool b)", SetYydebug, module, 1);
18192 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("SetThisClass", "void SetThisClass(ecere::com::Class c)", SetThisClass, module, 1);
18193 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("GetThisClass", "ecere::com::Class GetThisClass(void)", GetThisClass, module, 1);
18194 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("PrintExpression", "void PrintExpression(Expression exp, char * string)", PrintExpression, module, 1);
18195 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("ProcessTemplateParameterType", "Type ProcessTemplateParameterType(TemplateParameter param)", ProcessTemplateParameterType, module, 2);
18196 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("NeedCast", "bool NeedCast(Type type1, Type type2)", NeedCast, module, 2);
18197 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("PrintInt", "char * PrintInt(int64 result)", PrintInt, module, 1);
18198 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("PrintUInt", "char * PrintUInt(uint64 result)", PrintUInt, module, 1);
18199 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("PrintInt64", "char * PrintInt64(int64 result)", PrintInt64, module, 1);
18200 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("PrintUInt64", "char * PrintUInt64(uint64 result)", PrintUInt64, module, 1);
18201 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("PrintHexUInt", "char * PrintHexUInt(uint64 result)", PrintHexUInt, module, 1);
18202 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("PrintHexUInt64", "char * PrintHexUInt64(uint64 result)", PrintHexUInt64, module, 1);
18203 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("PrintShort", "char * PrintShort(short result)", PrintShort, module, 1);
18204 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("PrintUShort", "char * PrintUShort(uint16 result)", PrintUShort, module, 1);
18205 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("PrintChar", "char * PrintChar(char result)", PrintChar, module, 1);
18206 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("PrintUChar", "char * PrintUChar(byte result)", PrintUChar, module, 1);
18207 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("PrintFloat", "char * PrintFloat(float result)", PrintFloat, module, 1);
18208 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("PrintDouble", "char * PrintDouble(double result)", PrintDouble, module, 1);
18209 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("GetInt", "bool GetInt(Expression exp, int * value2)", GetInt, module, 1);
18210 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("GetUInt", "bool GetUInt(Expression exp, uint * value2)", GetUInt, module, 1);
18211 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("GetInt64", "bool GetInt64(Expression exp, int64 * value2)", GetInt64, module, 1);
18212 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("GetUInt64", "bool GetUInt64(Expression exp, uint64 * value2)", GetUInt64, module, 1);
18213 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("GetIntPtr", "bool GetIntPtr(Expression exp, intptr * value2)", GetIntPtr, module, 1);
18214 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("GetUIntPtr", "bool GetUIntPtr(Expression exp, uintptr * value2)", GetUIntPtr, module, 1);
18215 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("GetIntSize", "bool GetIntSize(Expression exp, intsize * value2)", GetIntSize, module, 1);
18216 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("GetUIntSize", "bool GetUIntSize(Expression exp, uintsize * value2)", GetUIntSize, module, 1);
18217 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("GetShort", "bool GetShort(Expression exp, short * value2)", GetShort, module, 1);
18218 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("GetUShort", "bool GetUShort(Expression exp, uint16 * value2)", GetUShort, module, 1);
18219 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("GetChar", "bool GetChar(Expression exp, char * value2)", GetChar, module, 1);
18220 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("GetUChar", "bool GetUChar(Expression exp, byte * value2)", GetUChar, module, 1);
18221 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("GetFloat", "bool GetFloat(Expression exp, float * value2)", GetFloat, module, 1);
18222 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("GetDouble", "bool GetDouble(Expression exp, double * value2)", GetDouble, module, 1);
18223 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("ComputeClassMembers", "void ComputeClassMembers(ecere::com::Class _class, bool isMember)", ComputeClassMembers, module, 2);
18224 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("ComputeModuleClasses", "void ComputeModuleClasses(ecere::com::Module module)", ComputeModuleClasses, module, 1);
18225 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("ComputeTypeSize", "int ComputeTypeSize(Type type)", ComputeTypeSize, module, 1);
18226 __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);
18227 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("DeclareStruct", "void DeclareStruct(char * name, bool skipNoHead)", DeclareStruct, module, 2);
18228 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("DeclareProperty", "void DeclareProperty(ecere::com::Property prop, char * setName, char * getName)", DeclareProperty, module, 2);
18229 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("Dereference", "Type Dereference(Type source)", Dereference, module, 1);
18230 __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);
18231 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("ProcessInstantiationType", "void ProcessInstantiationType(Instantiation inst)", ProcessInstantiationType, module, 2);
18232 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("FindTemplateArg", "ecere::com::ClassTemplateArgument * FindTemplateArg(ecere::com::Class _class, TemplateParameter param)", FindTemplateArg, module, 2);
18233 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("SetupTemplatesContext", "Context SetupTemplatesContext(ecere::com::Class _class)", SetupTemplatesContext, module, 1);
18234 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("FinishTemplatesContext", "void FinishTemplatesContext(Context context)", FinishTemplatesContext, module, 1);
18235 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("ProcessMethodType", "void ProcessMethodType(ecere::com::Method method)", ProcessMethodType, module, 1);
18236 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("ProcessPropertyType", "void ProcessPropertyType(ecere::com::Property prop)", ProcessPropertyType, module, 1);
18237 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("DeclareMethod", "void DeclareMethod(ecere::com::Method method, char * name)", DeclareMethod, module, 1);
18238 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("ReplaceThisClass", "char * ReplaceThisClass(ecere::com::Class _class)", ReplaceThisClass, module, 2);
18239 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("ReplaceThisClassType", "Type ReplaceThisClassType(ecere::com::Class _class)", ReplaceThisClassType, module, 2);
18240 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("ReplaceThisClassSpecifiers", "void ReplaceThisClassSpecifiers(ecere::sys::OldList specs, ecere::com::Class _class)", ReplaceThisClassSpecifiers, module, 2);
18241 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("DeclareFunction", "bool DeclareFunction(ecere::com::GlobalFunction function, char * name)", DeclareFunction, module, 2);
18242 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("DeclareGlobalData", "void DeclareGlobalData(GlobalData data)", DeclareGlobalData, module, 2);
18243 class = __ecereNameSpace__ecere__com__eSystem_RegisterClass(5, "Conversion", 0, sizeof(struct Conversion), 0, 0, 0, module, 2, 1);
18244 if(((struct __ecereNameSpace__ecere__com__Module *)(((char *)module + structSize_Instance)))->application == ((struct __ecereNameSpace__ecere__com__Module *)(((char *)__thisModule + structSize_Instance)))->application && class)
18245 __ecereClass_Conversion = class;
18246 __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)", MatchTypes, module, 1);
18247 __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);
18248 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("ModuleVisibility", "bool ModuleVisibility(ecere::com::Module searchIn, ecere::com::Module searchFor)", ModuleVisibility, module, 1);
18249 __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);
18250 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("MatchTypeExpression", "bool MatchTypeExpression(Expression sourceExp, Type dest, ecere::sys::OldList conversions, bool skipUnitBla)", MatchTypeExpression, module, 2);
18251 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("ReadString", "void ReadString(char * output, char * string)", ReadString, module, 1);
18252 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("UnescapeString", "int UnescapeString(char * d, char * s, int len)", UnescapeString, module, 1);
18253 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("OffsetEscapedString", "char * OffsetEscapedString(char * s, int len, int offset)", OffsetEscapedString, module, 1);
18254 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("GetOperand", "Operand GetOperand(Expression exp)", GetOperand, module, 1);
18255 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("PopulateInstance", "void PopulateInstance(Instantiation inst)", PopulateInstance, module, 1);
18256 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("ComputeInstantiation", "void ComputeInstantiation(Expression exp)", ComputeInstantiation, module, 1);
18257 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("CallOperator", "void CallOperator(Expression exp, Expression exp1, Expression exp2, Operand op1, Operand op2)", CallOperator, module, 1);
18258 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("ComputeExpression", "void ComputeExpression(Expression exp)", ComputeExpression, module, 1);
18259 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("CheckTemplateTypes", "void CheckTemplateTypes(Expression exp)", CheckTemplateTypes, module, 1);
18260 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("FindSymbol", "Symbol FindSymbol(char * name, Context startContext, Context endContext, bool isStruct, bool globalNameSpace)", FindSymbol, module, 1);
18261 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("PrintType", "void PrintType(Type type, char * string, bool printName, bool fullName)", PrintType, module, 1);
18262 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("PrintTypeNoConst", "void PrintTypeNoConst(Type type, char * string, bool printName, bool fullName)", PrintTypeNoConst, module, 1);
18263 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("FindMemberAndOffset", "Type FindMemberAndOffset(Type type, char * string, uint * offset)", FindMemberAndOffset, module, 1);
18264 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("GetParseError", "bool GetParseError(void)", GetParseError, module, 1);
18265 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("ParseExpressionString", "Expression ParseExpressionString(char * expression)", ParseExpressionString, module, 1);
18266 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("ReplaceExpContents", "void ReplaceExpContents(Expression checkedExp, Expression newExp)", ReplaceExpContents, module, 1);
18267 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("ApplyAnyObjectLogic", "void ApplyAnyObjectLogic(Expression e)", ApplyAnyObjectLogic, module, 1);
18268 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("ProcessExpressionType", "void ProcessExpressionType(Expression exp)", ProcessExpressionType, module, 1);
18269 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("DeclareFunctionUtil", "void DeclareFunctionUtil(String s)", DeclareFunctionUtil, module, 1);
18270 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("ComputeDataTypes", "void ComputeDataTypes(void)", ComputeDataTypes, module, 1);
18271 }
18272
18273 void __ecereUnregisterModule_pass15(struct __ecereNameSpace__ecere__com__Instance * module)
18274 {
18275
18276 }
18277