d5d76952dd02018d813fd40d56738c78219a89cb
[sdk] / compiler / bootstrap / ecp / bootstrap / ecp.c
1 /* Code generated from eC source file: ecp.ec */
2 #if defined(_WIN32)
3 #define __runtimePlatform 1
4 #elif defined(__APPLE__)
5 #define __runtimePlatform 3
6 #else
7 #define __runtimePlatform 2
8 #endif
9 #if defined(__GNUC__)
10 typedef long long int64;
11 typedef unsigned long long uint64;
12 #ifndef _WIN32
13 #define __declspec(x)
14 #endif
15 #elif defined(__TINYC__)
16 #include <stdarg.h>
17 #define __builtin_va_list va_list
18 #define __builtin_va_start va_start
19 #define __builtin_va_end va_end
20 #ifdef _WIN32
21 #define strcasecmp stricmp
22 #define strncasecmp strnicmp
23 #define __declspec(x) __attribute__((x))
24 #else
25 #define __declspec(x)
26 #endif
27 typedef long long int64;
28 typedef unsigned long long uint64;
29 #else
30 typedef __int64 int64;
31 typedef unsigned __int64 uint64;
32 #endif
33 #ifdef __BIG_ENDIAN__
34 #define __ENDIAN_PAD(x) (8 - (x))
35 #else
36 #define __ENDIAN_PAD(x) 0
37 #endif
38 #include <stdint.h>
39 #include <sys/types.h>
40 enum yytokentype
41 {
42 IDENTIFIER = 258, CONSTANT = 259, STRING_LITERAL = 260, SIZEOF = 261, PTR_OP = 262, INC_OP = 263, DEC_OP = 264, LEFT_OP = 265, RIGHT_OP = 266, LE_OP = 267, GE_OP = 268, EQ_OP = 269, NE_OP = 270, AND_OP = 271, OR_OP = 272, MUL_ASSIGN = 273, DIV_ASSIGN = 274, MOD_ASSIGN = 275, ADD_ASSIGN = 276, SUB_ASSIGN = 277, LEFT_ASSIGN = 278, RIGHT_ASSIGN = 279, AND_ASSIGN = 280, XOR_ASSIGN = 281, OR_ASSIGN = 282, TYPE_NAME = 283, TYPEDEF = 284, EXTERN = 285, STATIC = 286, AUTO = 287, REGISTER = 288, CHAR = 289, SHORT = 290, INT = 291, UINT = 292, INT64 = 293, LONG = 294, SIGNED = 295, UNSIGNED = 296, FLOAT = 297, DOUBLE = 298, CONST = 299, VOLATILE = 300, VOID = 301, VALIST = 302, STRUCT = 303, UNION = 304, ENUM = 305, ELLIPSIS = 306, CASE = 307, DEFAULT = 308, IF = 309, SWITCH = 310, WHILE = 311, DO = 312, FOR = 313, GOTO = 314, CONTINUE = 315, BREAK = 316, RETURN = 317, IFX = 318, ELSE = 319, CLASS = 320, THISCLASS = 321, CLASS_NAME = 322, PROPERTY = 323, SETPROP = 324, GETPROP = 325, NEWOP = 326, RENEW = 327, DELETE = 328, EXT_DECL = 329, EXT_STORAGE = 330, IMPORT = 331, DEFINE = 332, VIRTUAL = 333, ATTRIB = 334, PUBLIC = 335, PRIVATE = 336, TYPED_OBJECT = 337, ANY_OBJECT = 338, _INCREF = 339, EXTENSION = 340, ASM = 341, TYPEOF = 342, WATCH = 343, STOPWATCHING = 344, FIREWATCHERS = 345, WATCHABLE = 346, CLASS_DESIGNER = 347, CLASS_NO_EXPANSION = 348, CLASS_FIXED = 349, ISPROPSET = 350, CLASS_DEFAULT_PROPERTY = 351, PROPERTY_CATEGORY = 352, CLASS_DATA = 353, CLASS_PROPERTY = 354, SUBCLASS = 355, NAMESPACE = 356, NEW0OP = 357, RENEW0 = 358, VAARG = 359, DBTABLE = 360, DBFIELD = 361, DBINDEX = 362, DATABASE_OPEN = 363, ALIGNOF = 364, ATTRIB_DEP = 365, __ATTRIB = 366, BOOL = 367, _BOOL = 368, _COMPLEX = 369, _IMAGINARY = 370, RESTRICT = 371, THREAD = 372, WIDE_STRING_LITERAL = 373
43 };
44
45 static unsigned int globalInstance = 0;
46
47 static struct Context * globalContext;
48
49 extern struct __ecereNameSpace__ecere__com__Property * __ecereProp___ecereNameSpace__ecere__com__Platform_char__PTR_;
50
51 struct __ecereNameSpace__ecere__sys__BTNode;
52
53 struct __ecereNameSpace__ecere__sys__OldList
54 {
55 void *  first;
56 void *  last;
57 int count;
58 unsigned int offset;
59 unsigned int circ;
60 } __attribute__ ((gcc_struct));
61
62 struct __ecereNameSpace__ecere__com__DataValue
63 {
64 union
65 {
66 char c;
67 unsigned char uc;
68 short s;
69 unsigned short us;
70 int i;
71 unsigned int ui;
72 void *  p;
73 float f;
74 double d;
75 long long i64;
76 uint64 ui64;
77 } __attribute__ ((gcc_struct)) __anon1;
78 } __attribute__ ((gcc_struct));
79
80 struct __ecereNameSpace__ecere__com__SerialBuffer
81 {
82 unsigned char *  _buffer;
83 unsigned int count;
84 unsigned int _size;
85 unsigned int pos;
86 } __attribute__ ((gcc_struct));
87
88 extern void *  __ecereNameSpace__ecere__com__eSystem_New(unsigned int size);
89
90 extern void *  __ecereNameSpace__ecere__com__eSystem_New0(unsigned int size);
91
92 extern void *  __ecereNameSpace__ecere__com__eSystem_Renew(void *  memory, unsigned int size);
93
94 extern void *  __ecereNameSpace__ecere__com__eSystem_Renew0(void *  memory, unsigned int size);
95
96 extern void __ecereNameSpace__ecere__com__eSystem_Delete(void *  memory);
97
98 struct Initializer;
99
100 struct TypeName;
101
102 struct Statement;
103
104 struct Attrib;
105
106 struct ExtDecl;
107
108 struct Attribute;
109
110 struct MembersInit;
111
112 struct MemberInit;
113
114 struct PropertyWatch;
115
116 struct DBTableDef;
117
118 struct CodePosition
119 {
120 int line;
121 int charPos;
122 int pos;
123 int included;
124 } __attribute__ ((gcc_struct));
125
126 struct ModuleImport;
127
128 struct ClassImport;
129
130 extern char *  __ecereNameSpace__ecere__sys__CopyString(const char *  string);
131
132 extern int strtol(const char * , char * * , int base);
133
134 extern char *  strcpy(char * , const char * );
135
136 extern char *  strcat(char * , const char * );
137
138 extern void SetParsingType(unsigned int b);
139
140 extern int strcmp(const char * , const char * );
141
142 extern char *  PrintInt64(long long result);
143
144 extern int printf(const char * , ...);
145
146 extern const char *  __ecereNameSpace__ecere__GetTranslatedString(const char * name, const char *  string, const char *  stringAndContext);
147
148 struct __ecereNameSpace__ecere__com__LinkList
149 {
150 void * first;
151 void * last;
152 int count;
153 } __attribute__ ((gcc_struct));
154
155 extern void SetCurrentNameSpace(const char *  s);
156
157 extern void __ecereNameSpace__ecere__sys__ChangeCh(char *  string, char ch1, char ch2);
158
159 extern int GetHostBits(void);
160
161 extern size_t strlen(const char * );
162
163 extern char *  PassArg(char *  output, const char *  input);
164
165 extern const char *  GetOutputFile(void);
166
167 extern void SetOutputFile(const char *  s);
168
169 extern const char *  GetSourceFile(void);
170
171 extern void SetSourceFile(const char *  s);
172
173 extern void SetSymbolsDir(const char *  s);
174
175 extern void SetDefaultNameSpace(const char *  s);
176
177 extern void SetStrictNameSpaces(unsigned int b);
178
179 extern void SetI18nModuleName(const char *  s);
180
181 extern const char *  GetSymbolsDir(void);
182
183 extern char *  __ecereNameSpace__ecere__sys__PathCat(char *  string, const char *  addedPath);
184
185 extern char *  __ecereNameSpace__ecere__sys__ChangeExtension(const char *  string, const char *  ext, char *  output);
186
187 extern void SetInPreCompiler(unsigned int b);
188
189 extern void SetTargetPlatform(int platform);
190
191 extern void SetTargetBits(int bits);
192
193 extern void SetEchoOn(unsigned int b);
194
195 extern unsigned int __ecereNameSpace__ecere__sys__FileExists(const char *  fileName);
196
197 extern unsigned int __ecereNameSpace__ecere__sys__DeleteFile(const char *  fileName);
198
199 extern int snprintf(char * , size_t, const char * , ...);
200
201 extern void resetScanner(void);
202
203 extern void ParseEc(void);
204
205 extern void SetYydebug(unsigned int b);
206
207 extern void ProcessDBTableDefinitions(void);
208
209 extern void FreeIncludeFiles(void);
210
211 struct __ecereNameSpace__ecere__com__GlobalFunction;
212
213 const char *  __ecereProp___ecereNameSpace__ecere__com__Platform_Get_char__PTR_(int this);
214
215 int __ecereProp___ecereNameSpace__ecere__com__Platform_Set_char__PTR_(const char *  value);
216
217 static struct __ecereNameSpace__ecere__sys__OldList defines, imports, precompDefines;
218
219 extern struct __ecereNameSpace__ecere__sys__OldList *  MkListOne(void *  item);
220
221 extern struct __ecereNameSpace__ecere__sys__OldList *  GetAST(void);
222
223 struct __ecereNameSpace__ecere__com__EnumClassData
224 {
225 struct __ecereNameSpace__ecere__sys__OldList values;
226 long long largest;
227 } __attribute__ ((gcc_struct));
228
229 extern void SetExcludedSymbols(struct __ecereNameSpace__ecere__sys__OldList *  list);
230
231 extern void SetDefines(struct __ecereNameSpace__ecere__sys__OldList *  list);
232
233 extern void SetImports(struct __ecereNameSpace__ecere__sys__OldList *  list);
234
235 extern void SetPrecompDefines(struct __ecereNameSpace__ecere__sys__OldList *  list);
236
237 extern void FreeASTTree(struct __ecereNameSpace__ecere__sys__OldList * ast);
238
239 extern void FreeExcludedSymbols(struct __ecereNameSpace__ecere__sys__OldList * excludedSymbols);
240
241 void __ecereMethod___ecereNameSpace__ecere__sys__OldList_Free(struct __ecereNameSpace__ecere__sys__OldList * this, void (*  freeFn)(void * ));
242
243 void __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(struct __ecereNameSpace__ecere__sys__OldList * this, void *  item);
244
245 struct Location
246 {
247 struct CodePosition start;
248 struct CodePosition end;
249 } __attribute__ ((gcc_struct));
250
251 extern void SetMainModule(struct ModuleImport * moduleImport);
252
253 extern void FreeModuleImport(struct ModuleImport * imp);
254
255 extern struct Location yylloc;
256
257 struct Definition;
258
259 struct ClassDefine
260 {
261 struct Definition * prev;
262 struct Definition * next;
263 char *  name;
264 int type;
265 char * base;
266 struct __ecereNameSpace__ecere__sys__OldList propertiesAndMembers;
267 struct __ecereNameSpace__ecere__sys__OldList classProperties;
268 struct __ecereNameSpace__ecere__sys__OldList methods;
269 unsigned int isRemote;
270 unsigned int isWatchable;
271 unsigned int fixed;
272 unsigned int isStatic;
273 unsigned int noExpansion;
274 } __attribute__ ((gcc_struct));
275
276 struct FunctionDefine
277 {
278 struct Definition * prev;
279 struct Definition * next;
280 char *  name;
281 int type;
282 char * dataType;
283 } __attribute__ ((gcc_struct));
284
285 struct DataDefine
286 {
287 struct Definition * prev;
288 struct Definition * next;
289 char *  name;
290 int type;
291 char * dataType;
292 } __attribute__ ((gcc_struct));
293
294 struct Definition
295 {
296 struct Definition * prev;
297 struct Definition * next;
298 char *  name;
299 int type;
300 } __attribute__ ((gcc_struct));
301
302 extern void FreeModuleDefine(struct Definition * def);
303
304 void FreeDataDefine(struct DataDefine * data)
305 {
306 (__ecereNameSpace__ecere__com__eSystem_Delete(data->name), data->name = 0);
307 (__ecereNameSpace__ecere__com__eSystem_Delete(data->dataType), data->dataType = 0);
308 }
309
310 struct MethodDefine;
311
312 struct MethodDefine
313 {
314 struct MethodDefine * prev, * next;
315 char * name;
316 int memberAccess;
317 char * type;
318 unsigned int isVirtual;
319 } __attribute__ ((gcc_struct));
320
321 void FreeMethodDefine(struct MethodDefine * method)
322 {
323 (__ecereNameSpace__ecere__com__eSystem_Delete(method->name), method->name = 0);
324 (__ecereNameSpace__ecere__com__eSystem_Delete(method->type), method->type = 0);
325 }
326
327 struct PropertyDefine;
328
329 struct PropertyDefine
330 {
331 struct PropertyDefine * prev, * next;
332 char * name;
333 int isProperty;
334 char * type;
335 unsigned int isWatchable;
336 int memberAccess;
337 unsigned int isVirtual;
338 unsigned int hasSet, hasGet;
339 } __attribute__ ((gcc_struct));
340
341 struct __ecereNameSpace__ecere__com__Class;
342
343 struct __ecereNameSpace__ecere__com__Instance
344 {
345 void * *  _vTbl;
346 struct __ecereNameSpace__ecere__com__Class * _class;
347 int _refCount;
348 } __attribute__ ((gcc_struct));
349
350 extern long long __ecereNameSpace__ecere__com__eClass_GetProperty(struct __ecereNameSpace__ecere__com__Class * _class, const char *  name);
351
352 extern void __ecereNameSpace__ecere__com__eClass_SetProperty(struct __ecereNameSpace__ecere__com__Class * _class, const char *  name, long long value);
353
354 extern void __ecereNameSpace__ecere__com__eEnum_AddFixedValue(struct __ecereNameSpace__ecere__com__Class * _class, const char *  string, long long value);
355
356 extern long long __ecereNameSpace__ecere__com__eEnum_AddValue(struct __ecereNameSpace__ecere__com__Class * _class, const char *  string);
357
358 extern void *  __ecereNameSpace__ecere__com__eInstance_New(struct __ecereNameSpace__ecere__com__Class * _class);
359
360 extern void __ecereNameSpace__ecere__com__eInstance_SetMethod(struct __ecereNameSpace__ecere__com__Instance * instance, const char *  name, void *  function);
361
362 extern void __ecereNameSpace__ecere__com__eInstance_IncRef(struct __ecereNameSpace__ecere__com__Instance * instance);
363
364 extern struct __ecereNameSpace__ecere__com__Instance * __ecereNameSpace__ecere__sys__FileOpen(const char *  fileName, int mode);
365
366 extern struct __ecereNameSpace__ecere__com__Instance * __ecereNameSpace__ecere__sys__DualPipeOpen(unsigned int mode, const char *  commandLine);
367
368 extern void SetFileInput(struct __ecereNameSpace__ecere__com__Instance * file);
369
370 int __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(struct __ecereNameSpace__ecere__com__Instance * this, const char *  format, ...);
371
372 int __ecereVMethodID___ecereNameSpace__ecere__sys__File_Puts;
373
374 extern void __ecereNameSpace__ecere__com__eInstance_DecRef(struct __ecereNameSpace__ecere__com__Instance * instance);
375
376 int __ecereVMethodID___ecereNameSpace__ecere__sys__File_Eof;
377
378 int __ecereVMethodID___ecereNameSpace__ecere__sys__File_Read;
379
380 int __ecereVMethodID___ecereNameSpace__ecere__sys__File_Write;
381
382 int __ecereMethod___ecereNameSpace__ecere__sys__DualPipe_GetExitCode();
383
384 int __ecereVMethodID___ecereNameSpace__ecere__sys__File_Seek;
385
386 struct __ecereNameSpace__ecere__com__Property;
387
388 extern void __ecereNameSpace__ecere__com__eInstance_FireSelfWatchers(struct __ecereNameSpace__ecere__com__Instance * instance, struct __ecereNameSpace__ecere__com__Property * _property);
389
390 extern void __ecereNameSpace__ecere__com__eInstance_StopWatching(struct __ecereNameSpace__ecere__com__Instance * instance, struct __ecereNameSpace__ecere__com__Property * _property, struct __ecereNameSpace__ecere__com__Instance * object);
391
392 extern void __ecereNameSpace__ecere__com__eInstance_Watch(void *  instance, struct __ecereNameSpace__ecere__com__Property * _property, void *  object, void (*  callback)(void * , void * ));
393
394 extern void __ecereNameSpace__ecere__com__eInstance_FireWatchers(struct __ecereNameSpace__ecere__com__Instance * instance, struct __ecereNameSpace__ecere__com__Property * _property);
395
396 extern struct __ecereNameSpace__ecere__com__Property * __ecereNameSpace__ecere__com__eClass_AddProperty(struct __ecereNameSpace__ecere__com__Class * _class, const char *  name, const char *  dataType, void *  setStmt, void *  getStmt, int declMode);
397
398 struct Declarator;
399
400 extern char *  StringFromSpecDecl(struct __ecereNameSpace__ecere__sys__OldList * specs, struct Declarator * decl);
401
402 struct TemplateDatatype
403 {
404 struct __ecereNameSpace__ecere__sys__OldList *  specifiers;
405 struct Declarator * decl;
406 } __attribute__ ((gcc_struct));
407
408 struct Expression;
409
410 struct Define
411 {
412 struct Definition * prev;
413 struct Definition * next;
414 char *  name;
415 int type;
416 struct Expression * exp;
417 } __attribute__ ((gcc_struct));
418
419 extern void ProcessExpressionType(struct Expression * exp);
420
421 extern void ComputeExpression(struct Expression * exp);
422
423 extern void FreeExpression(struct Expression * exp);
424
425 extern void FreeExpContents(struct Expression * exp);
426
427 extern void PrintExpression(struct Expression * exp, char *  string);
428
429 extern void OutputExpression(struct Expression * exp, struct __ecereNameSpace__ecere__com__Instance * f);
430
431 struct Type;
432
433 struct __ecereNameSpace__ecere__com__Property
434 {
435 struct __ecereNameSpace__ecere__com__Property * prev;
436 struct __ecereNameSpace__ecere__com__Property * next;
437 const char *  name;
438 unsigned int isProperty;
439 int memberAccess;
440 int id;
441 struct __ecereNameSpace__ecere__com__Class * _class;
442 const char *  dataTypeString;
443 struct __ecereNameSpace__ecere__com__Class * dataTypeClass;
444 struct Type * dataType;
445 void (*  Set)(void * , int);
446 int (*  Get)(void * );
447 unsigned int (*  IsSet)(void * );
448 void *  data;
449 void *  symbol;
450 int vid;
451 unsigned int conversion;
452 unsigned int watcherOffset;
453 const char *  category;
454 unsigned int compiled;
455 unsigned int selfWatchable;
456 unsigned int isWatchable;
457 } __attribute__ ((gcc_struct));
458
459 extern struct Type * ProcessType(struct __ecereNameSpace__ecere__sys__OldList * specs, struct Declarator * decl);
460
461 extern void PrintType(struct Type * type, char *  string, unsigned int printName, unsigned int fullName);
462
463 extern void FreeType(struct Type * type);
464
465 extern struct Type * ProcessTypeString(const char *  string, unsigned int staticMethod);
466
467 struct __ecereNameSpace__ecere__com__DataMember;
468
469 extern struct __ecereNameSpace__ecere__com__DataMember * __ecereNameSpace__ecere__com__eMember_AddDataMember(struct __ecereNameSpace__ecere__com__DataMember * member, const char *  name, const char *  type, unsigned int size, unsigned int alignment, int declMode);
470
471 extern struct __ecereNameSpace__ecere__com__DataMember * __ecereNameSpace__ecere__com__eClass_AddDataMember(struct __ecereNameSpace__ecere__com__Class * _class, const char *  name, const char *  type, unsigned int size, unsigned int alignment, int declMode);
472
473 extern struct __ecereNameSpace__ecere__com__DataMember * __ecereNameSpace__ecere__com__eMember_New(int type, int declMode);
474
475 extern unsigned int __ecereNameSpace__ecere__com__eMember_AddMember(struct __ecereNameSpace__ecere__com__DataMember * addTo, struct __ecereNameSpace__ecere__com__DataMember * dataMember);
476
477 extern unsigned int __ecereNameSpace__ecere__com__eClass_AddMember(struct __ecereNameSpace__ecere__com__Class * _class, struct __ecereNameSpace__ecere__com__DataMember * dataMember);
478
479 struct __ecereNameSpace__ecere__sys__NamedLink64;
480
481 struct __ecereNameSpace__ecere__sys__NamedLink64
482 {
483 struct __ecereNameSpace__ecere__sys__NamedLink64 * prev;
484 struct __ecereNameSpace__ecere__sys__NamedLink64 * next;
485 char *  name;
486 long long data;
487 } __attribute__ ((gcc_struct));
488
489 struct Symbol;
490
491 extern struct Symbol * FindClass(const char *  name);
492
493 struct ImportedModule;
494
495 struct ImportedModule
496 {
497 struct ImportedModule * prev;
498 struct ImportedModule * next;
499 char *  name;
500 int type;
501 int importType;
502 unsigned int globalInstance;
503 unsigned int dllOnly;
504 int importAccess;
505 } __attribute__ ((gcc_struct));
506
507 struct __ecereNameSpace__ecere__com__NameSpace;
508
509 extern void SetGlobalData(struct __ecereNameSpace__ecere__com__NameSpace *  nameSpace);
510
511 struct Context;
512
513 extern void SetGlobalContext(struct Context * context);
514
515 extern void SetCurrentContext(struct Context * context);
516
517 extern void SetTopContext(struct Context * context);
518
519 extern void FreeContext(struct Context * context);
520
521 struct __ecereNameSpace__ecere__sys__BinaryTree;
522
523 struct __ecereNameSpace__ecere__sys__BinaryTree
524 {
525 struct __ecereNameSpace__ecere__sys__BTNode * root;
526 int count;
527 int (*  CompareKey)(struct __ecereNameSpace__ecere__sys__BinaryTree * tree, uintptr_t a, uintptr_t b);
528 void (*  FreeKey)(void *  key);
529 } __attribute__ ((gcc_struct));
530
531 struct __ecereNameSpace__ecere__com__NameSpace
532 {
533 const char *  name;
534 struct __ecereNameSpace__ecere__com__NameSpace *  btParent;
535 struct __ecereNameSpace__ecere__com__NameSpace *  left;
536 struct __ecereNameSpace__ecere__com__NameSpace *  right;
537 int depth;
538 struct __ecereNameSpace__ecere__com__NameSpace *  parent;
539 struct __ecereNameSpace__ecere__sys__BinaryTree nameSpaces;
540 struct __ecereNameSpace__ecere__sys__BinaryTree classes;
541 struct __ecereNameSpace__ecere__sys__BinaryTree defines;
542 struct __ecereNameSpace__ecere__sys__BinaryTree functions;
543 } __attribute__ ((gcc_struct));
544
545 struct __ecereNameSpace__ecere__com__DataMember
546 {
547 struct __ecereNameSpace__ecere__com__DataMember * prev;
548 struct __ecereNameSpace__ecere__com__DataMember * next;
549 const char *  name;
550 unsigned int isProperty;
551 int memberAccess;
552 int id;
553 struct __ecereNameSpace__ecere__com__Class * _class;
554 const char *  dataTypeString;
555 struct __ecereNameSpace__ecere__com__Class * dataTypeClass;
556 struct Type * dataType;
557 int type;
558 int offset;
559 int memberID;
560 struct __ecereNameSpace__ecere__sys__OldList members;
561 struct __ecereNameSpace__ecere__sys__BinaryTree membersAlpha;
562 int memberOffset;
563 short structAlignment;
564 short pointerAlignment;
565 } __attribute__ ((gcc_struct));
566
567 unsigned int __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Add(struct __ecereNameSpace__ecere__sys__BinaryTree * this, struct __ecereNameSpace__ecere__sys__BTNode * node);
568
569 int __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_CompareString(struct __ecereNameSpace__ecere__sys__BinaryTree * this, const char *  a, const char *  b);
570
571 struct __ecereNameSpace__ecere__com__Application
572 {
573 int argc;
574 const char * *  argv;
575 int exitCode;
576 unsigned int isGUIApp;
577 struct __ecereNameSpace__ecere__sys__OldList allModules;
578 char *  parsedCommand;
579 struct __ecereNameSpace__ecere__com__NameSpace systemNameSpace;
580 } __attribute__ ((gcc_struct));
581
582 static struct __ecereNameSpace__ecere__com__NameSpace globalData;
583
584 extern void FreeGlobalData(struct __ecereNameSpace__ecere__com__NameSpace * globalDataList);
585
586 extern struct __ecereNameSpace__ecere__com__Instance * __ecereNameSpace__ecere__com____ecere_COM_Initialize(unsigned int guiApp, int argc, char *  argv[]);
587
588 struct DataMemberDefine;
589
590 struct DataMemberDefine
591 {
592 struct DataMemberDefine * prev, * next;
593 char * name;
594 int isProperty;
595 char * type;
596 struct __ecereNameSpace__ecere__sys__OldList dataMembers;
597 struct __ecereNameSpace__ecere__sys__OldList classProperties;
598 int memberAccess;
599 int memberType;
600 int size, bitPos;
601 } __attribute__ ((gcc_struct));
602
603 void FreeDataMemberDefine(struct DataMemberDefine * dataMember)
604 {
605 (__ecereNameSpace__ecere__com__eSystem_Delete(dataMember->name), dataMember->name = 0);
606 (__ecereNameSpace__ecere__com__eSystem_Delete(dataMember->type), dataMember->type = 0);
607 }
608
609 void FreeDefinition(struct Definition * definition)
610 {
611 (__ecereNameSpace__ecere__com__eSystem_Delete(definition->name), definition->name = 0);
612 switch(definition->type)
613 {
614 case 1:
615 {
616 struct ClassDefine * classDefine = (struct ClassDefine *)definition;
617
618 (__ecereNameSpace__ecere__com__eSystem_Delete(classDefine->base), classDefine->base = 0);
619 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Free(&classDefine->methods, (void *)(FreeMethodDefine));
620 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Free(&classDefine->propertiesAndMembers, (void *)(FreeDataMemberDefine));
621 break;
622 }
623 case 3:
624 (__ecereNameSpace__ecere__com__eSystem_Delete(((struct FunctionDefine *)definition)->dataType), ((struct FunctionDefine *)definition)->dataType = 0);
625 break;
626 case 4:
627 (__ecereNameSpace__ecere__com__eSystem_Delete(((struct DataDefine *)definition)->dataType), ((struct DataDefine *)definition)->dataType = 0);
628 break;
629 case 2:
630 break;
631 }
632 }
633
634 struct ClassDef;
635
636 struct __ecereNameSpace__ecere__com__BitMember;
637
638 extern struct __ecereNameSpace__ecere__com__BitMember * __ecereNameSpace__ecere__com__eClass_AddBitMember(struct __ecereNameSpace__ecere__com__Class * _class, const char *  name, const char *  type, int bitSize, int bitPos, int declMode);
639
640 struct __ecereNameSpace__ecere__com__BitMember
641 {
642 struct __ecereNameSpace__ecere__com__BitMember * prev;
643 struct __ecereNameSpace__ecere__com__BitMember * next;
644 const char *  name;
645 unsigned int isProperty;
646 int memberAccess;
647 int id;
648 struct __ecereNameSpace__ecere__com__Class * _class;
649 const char *  dataTypeString;
650 struct __ecereNameSpace__ecere__com__Class * dataTypeClass;
651 struct Type * dataType;
652 int type;
653 int size;
654 int pos;
655 uint64 mask;
656 } __attribute__ ((gcc_struct));
657
658 struct __ecereNameSpace__ecere__com__ClassProperty;
659
660 extern struct __ecereNameSpace__ecere__com__ClassProperty * __ecereNameSpace__ecere__com__eClass_AddClassProperty(struct __ecereNameSpace__ecere__com__Class * _class, const char *  name, const char *  dataType, void *  setStmt, void *  getStmt);
661
662 struct __ecereNameSpace__ecere__com__ClassProperty
663 {
664 const char *  name;
665 struct __ecereNameSpace__ecere__com__ClassProperty * parent;
666 struct __ecereNameSpace__ecere__com__ClassProperty * left;
667 struct __ecereNameSpace__ecere__com__ClassProperty * right;
668 int depth;
669 void (*  Set)(struct __ecereNameSpace__ecere__com__Class *, long long);
670 long long (*  Get)(struct __ecereNameSpace__ecere__com__Class *);
671 const char *  dataTypeString;
672 struct Type * dataType;
673 unsigned int constant;
674 } __attribute__ ((gcc_struct));
675
676 struct __ecereNameSpace__ecere__com__Method;
677
678 struct __ecereNameSpace__ecere__com__ClassTemplateArgument
679 {
680 union
681 {
682 struct
683 {
684 const char *  dataTypeString;
685 struct __ecereNameSpace__ecere__com__Class * dataTypeClass;
686 } __attribute__ ((gcc_struct)) __anon1;
687 struct __ecereNameSpace__ecere__com__DataValue expression;
688 struct
689 {
690 const char *  memberString;
691 union
692 {
693 struct __ecereNameSpace__ecere__com__DataMember * member;
694 struct __ecereNameSpace__ecere__com__Property * prop;
695 struct __ecereNameSpace__ecere__com__Method * method;
696 } __attribute__ ((gcc_struct)) __anon1;
697 } __attribute__ ((gcc_struct)) __anon2;
698 } __attribute__ ((gcc_struct)) __anon1;
699 } __attribute__ ((gcc_struct));
700
701 struct __ecereNameSpace__ecere__com__Method
702 {
703 const char *  name;
704 struct __ecereNameSpace__ecere__com__Method * parent;
705 struct __ecereNameSpace__ecere__com__Method * left;
706 struct __ecereNameSpace__ecere__com__Method * right;
707 int depth;
708 int (*  function)();
709 int vid;
710 int type;
711 struct __ecereNameSpace__ecere__com__Class * _class;
712 void *  symbol;
713 const char *  dataTypeString;
714 struct Type * dataType;
715 int memberAccess;
716 } __attribute__ ((gcc_struct));
717
718 extern struct __ecereNameSpace__ecere__com__Method * __ecereNameSpace__ecere__com__eClass_AddVirtualMethod(struct __ecereNameSpace__ecere__com__Class * _class, const char *  name, const char *  type, void *  function, int declMode);
719
720 extern struct __ecereNameSpace__ecere__com__Method * __ecereNameSpace__ecere__com__eClass_AddMethod(struct __ecereNameSpace__ecere__com__Class * _class, const char *  name, const char *  type, void *  function, int declMode);
721
722 struct __ecereNameSpace__ecere__com__Module;
723
724 struct __ecereNameSpace__ecere__com__Module
725 {
726 struct __ecereNameSpace__ecere__com__Instance * application;
727 struct __ecereNameSpace__ecere__sys__OldList classes;
728 struct __ecereNameSpace__ecere__sys__OldList defines;
729 struct __ecereNameSpace__ecere__sys__OldList functions;
730 struct __ecereNameSpace__ecere__sys__OldList modules;
731 struct __ecereNameSpace__ecere__com__Instance * prev;
732 struct __ecereNameSpace__ecere__com__Instance * next;
733 const char *  name;
734 void *  library;
735 void *  Unload;
736 int importType;
737 int origImportType;
738 struct __ecereNameSpace__ecere__com__NameSpace privateNameSpace;
739 struct __ecereNameSpace__ecere__com__NameSpace publicNameSpace;
740 } __attribute__ ((gcc_struct));
741
742 struct __ecereNameSpace__ecere__com__Class
743 {
744 struct __ecereNameSpace__ecere__com__Class * prev;
745 struct __ecereNameSpace__ecere__com__Class * next;
746 const char *  name;
747 int offset;
748 int structSize;
749 void * *  _vTbl;
750 int vTblSize;
751 unsigned int (*  Constructor)(void * );
752 void (*  Destructor)(void * );
753 int offsetClass;
754 int sizeClass;
755 struct __ecereNameSpace__ecere__com__Class * base;
756 struct __ecereNameSpace__ecere__sys__BinaryTree methods;
757 struct __ecereNameSpace__ecere__sys__BinaryTree members;
758 struct __ecereNameSpace__ecere__sys__BinaryTree prop;
759 struct __ecereNameSpace__ecere__sys__OldList membersAndProperties;
760 struct __ecereNameSpace__ecere__sys__BinaryTree classProperties;
761 struct __ecereNameSpace__ecere__sys__OldList derivatives;
762 int memberID;
763 int startMemberID;
764 int type;
765 struct __ecereNameSpace__ecere__com__Instance * module;
766 struct __ecereNameSpace__ecere__com__NameSpace *  nameSpace;
767 const char *  dataTypeString;
768 struct Type * dataType;
769 int typeSize;
770 int defaultAlignment;
771 void (*  Initialize)();
772 int memberOffset;
773 struct __ecereNameSpace__ecere__sys__OldList selfWatchers;
774 const char *  designerClass;
775 unsigned int noExpansion;
776 const char *  defaultProperty;
777 unsigned int comRedefinition;
778 int count;
779 int isRemote;
780 unsigned int internalDecl;
781 void *  data;
782 unsigned int computeSize;
783 short structAlignment;
784 short pointerAlignment;
785 int destructionWatchOffset;
786 unsigned int fixed;
787 struct __ecereNameSpace__ecere__sys__OldList delayedCPValues;
788 int inheritanceAccess;
789 const char *  fullName;
790 void *  symbol;
791 struct __ecereNameSpace__ecere__sys__OldList conversions;
792 struct __ecereNameSpace__ecere__sys__OldList templateParams;
793 struct __ecereNameSpace__ecere__com__ClassTemplateArgument *  templateArgs;
794 struct __ecereNameSpace__ecere__com__Class * templateClass;
795 struct __ecereNameSpace__ecere__sys__OldList templatized;
796 int numParams;
797 unsigned int isInstanceClass;
798 unsigned int byValueSystemClass;
799 } __attribute__ ((gcc_struct));
800
801 static struct __ecereNameSpace__ecere__com__Instance * privateModule;
802
803 extern struct __ecereNameSpace__ecere__com__Property * __ecereNameSpace__ecere__com__eClass_FindProperty(struct __ecereNameSpace__ecere__com__Class * _class, const char *  name, struct __ecereNameSpace__ecere__com__Instance * module);
804
805 extern struct __ecereNameSpace__ecere__com__DataMember * __ecereNameSpace__ecere__com__eClass_FindDataMember(struct __ecereNameSpace__ecere__com__Class * _class, const char *  name, struct __ecereNameSpace__ecere__com__Instance * module, struct __ecereNameSpace__ecere__com__DataMember **  subMemberStack, int *  subMemberStackPos);
806
807 extern struct __ecereNameSpace__ecere__com__Class * __ecereNameSpace__ecere__com__eSystem_RegisterClass(int type, const char *  name, const char *  baseName, int size, int sizeClass, unsigned int (*  Constructor)(void * ), void (*  Destructor)(void * ), struct __ecereNameSpace__ecere__com__Instance * module, int declMode, int inheritanceAccess);
808
809 extern struct __ecereNameSpace__ecere__com__Method * __ecereNameSpace__ecere__com__eClass_FindMethod(struct __ecereNameSpace__ecere__com__Class * _class, const char *  name, struct __ecereNameSpace__ecere__com__Instance * module);
810
811 extern struct __ecereNameSpace__ecere__com__Instance * __thisModule;
812
813 extern void ComputeModuleClasses(struct __ecereNameSpace__ecere__com__Instance * module);
814
815 extern struct __ecereNameSpace__ecere__com__Class * __ecereNameSpace__ecere__com__eSystem_FindClass(struct __ecereNameSpace__ecere__com__Instance * module, const char *  name);
816
817 extern void SetPrivateModule(struct __ecereNameSpace__ecere__com__Instance * module);
818
819 extern void FreeTypeData(struct __ecereNameSpace__ecere__com__Instance * privateModule);
820
821 extern struct __ecereNameSpace__ecere__com__GlobalFunction * __ecereNameSpace__ecere__com__eSystem_RegisterFunction(const char *  name, const char *  type, void *  func, struct __ecereNameSpace__ecere__com__Instance * module, int declMode);
822
823 void __ecereUnregisterModule_ecp(struct __ecereNameSpace__ecere__com__Instance * module)
824 {
825
826 }
827
828 static struct __ecereNameSpace__ecere__com__Class * __ecereClass_ClassDefine;
829
830 static struct __ecereNameSpace__ecere__com__Class * __ecereClass_Define;
831
832 static struct __ecereNameSpace__ecere__com__Class * __ecereClass_FunctionDefine;
833
834 static struct __ecereNameSpace__ecere__com__Class * __ecereClass_DataDefine;
835
836 static struct __ecereNameSpace__ecere__com__Class * __ecereClass_MethodDefine;
837
838 static struct __ecereNameSpace__ecere__com__Class * __ecereClass_PropertyDefine;
839
840 static struct __ecereNameSpace__ecere__com__Class * __ecereClass_DataMemberDefine;
841
842 static struct __ecereNameSpace__ecere__com__Class * __ecereClass_PrecompApp;
843
844 static void OutputDataMembers(struct ClassDefine * classDefine, struct __ecereNameSpace__ecere__com__Class * _class, struct __ecereNameSpace__ecere__com__Instance * f)
845 {
846 if(classDefine->propertiesAndMembers.first)
847 {
848 struct DataMemberDefine * member = classDefine->propertiesAndMembers.first;
849 int last = 0;
850
851 for(member = classDefine->propertiesAndMembers.first; member; member = member->next)
852 {
853 if(member->isProperty == 1)
854 {
855 struct PropertyDefine * prop = (struct PropertyDefine *)member;
856
857 if(last != 1)
858 {
859 if(last)
860 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "         .\n");
861 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "      [Defined Properties]\n");
862 }
863 if(prop->name)
864 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "         %s\n", prop->name);
865 else
866 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "         [Conversion]\n");
867 if(prop->memberAccess == 1)
868 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "            [Public]\n");
869 else
870 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "            [Private]\n");
871 if(prop->isVirtual)
872 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "            [Virtual]\n");
873 if(prop->hasSet)
874 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "            [Set]\n");
875 if(prop->hasGet)
876 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "            [Get]\n");
877 if(prop->isWatchable)
878 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "            [Watchable]\n");
879 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "            [Type]\n");
880 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "               %s\n", prop->type ? prop->type : "");
881 }
882 else
883 {
884 if(last != 3)
885 {
886 if(last)
887 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "         .\n");
888 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "      [Defined Data Members]\n");
889 }
890 if(member->memberType == 0)
891 {
892 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "         %s\n", member->name);
893 if(member->memberAccess == 1)
894 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "            [Public]\n");
895 else
896 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "            [Private]\n");
897 if(_class && _class->type == 2)
898 {
899 if(member->size)
900 {
901 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "            [Size]\n");
902 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "               %d\n", member->size);
903 }
904 if(member->bitPos != -1)
905 {
906 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "            [Pos]\n");
907 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "               %d\n", member->bitPos);
908 }
909 }
910 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "            [Type]\n");
911 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "               %s\n", member->type ? member->type : "");
912 }
913 else
914 {
915 if(member->memberAccess == 1)
916 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "            [Public]\n");
917 else
918 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "            [Private]\n");
919 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, (member->memberType == 1) ? "      [Union]\n" : "      [Struct]\n");
920 OutputDataMembers((struct ClassDefine *)member, (((void *)0)), f);
921 }
922 }
923 last = member->isProperty;
924 }
925 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "         .\n");
926 }
927 if(classDefine->classProperties.first)
928 {
929 struct PropertyDefine * prop = classDefine->propertiesAndMembers.first;
930
931 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "      [Defined Class Properties]\n");
932 for(prop = classDefine->classProperties.first; prop; prop = prop->next)
933 {
934 if(prop->name)
935 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "         %s\n", prop->name);
936 if(prop->hasSet)
937 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "            [Set]\n");
938 if(prop->hasGet)
939 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "            [Get]\n");
940 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "            [Type]\n");
941 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "               %s\n", prop->type ? prop->type : "");
942 }
943 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "         .\n");
944 }
945 }
946
947 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Type;
948
949 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Symbol;
950
951 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__sys__TempFile;
952
953 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_ModuleImport;
954
955 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Context;
956
957 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__Application;
958
959 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__sys__File;
960
961 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__sys__DualPipe;
962
963 extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__com__Module;
964
965 void __ecereCreateModuleInstances_ecp()
966 {
967 globalContext = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Context);
968 (globalData.classes.CompareKey = (void *)__ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_CompareString, globalData.defines.CompareKey = (void *)__ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_CompareString, globalData.functions.CompareKey = (void *)__ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_CompareString, globalData.nameSpaces.CompareKey = (void *)__ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_CompareString);
969 }
970
971 void __ecereDestroyModuleInstances_ecp()
972 {
973 ((globalContext ? (__ecereClass_Context->Destructor ? __ecereClass_Context->Destructor((void *)globalContext) : 0, __ecereNameSpace__ecere__com__eSystem_Delete(globalContext)) : 0), globalContext = 0);
974 }
975
976 struct Identifier;
977
978 extern struct Identifier * GetDeclId(struct Declarator * decl);
979
980 extern struct Declarator * MkDeclaratorIdentifier(struct Identifier * id);
981
982 struct InitDeclarator;
983
984 struct InitDeclarator
985 {
986 struct InitDeclarator * prev;
987 struct InitDeclarator * next;
988 struct Location loc;
989 struct Declarator * declarator;
990 struct Initializer * initializer;
991 } __attribute__ ((gcc_struct));
992
993 struct Operand;
994
995 struct OpTable
996 {
997 unsigned int (*  Add)(struct Expression *, struct Operand *, struct Operand *);
998 unsigned int (*  Sub)(struct Expression *, struct Operand *, struct Operand *);
999 unsigned int (*  Mul)(struct Expression *, struct Operand *, struct Operand *);
1000 unsigned int (*  Div)(struct Expression *, struct Operand *, struct Operand *);
1001 unsigned int (*  Mod)(struct Expression *, struct Operand *, struct Operand *);
1002 unsigned int (*  Neg)(struct Expression *, struct Operand *);
1003 unsigned int (*  Inc)(struct Expression *, struct Operand *);
1004 unsigned int (*  Dec)(struct Expression *, struct Operand *);
1005 unsigned int (*  Asign)(struct Expression *, struct Operand *, struct Operand *);
1006 unsigned int (*  AddAsign)(struct Expression *, struct Operand *, struct Operand *);
1007 unsigned int (*  SubAsign)(struct Expression *, struct Operand *, struct Operand *);
1008 unsigned int (*  MulAsign)(struct Expression *, struct Operand *, struct Operand *);
1009 unsigned int (*  DivAsign)(struct Expression *, struct Operand *, struct Operand *);
1010 unsigned int (*  ModAsign)(struct Expression *, struct Operand *, struct Operand *);
1011 unsigned int (*  BitAnd)(struct Expression *, struct Operand *, struct Operand *);
1012 unsigned int (*  BitOr)(struct Expression *, struct Operand *, struct Operand *);
1013 unsigned int (*  BitXor)(struct Expression *, struct Operand *, struct Operand *);
1014 unsigned int (*  LShift)(struct Expression *, struct Operand *, struct Operand *);
1015 unsigned int (*  RShift)(struct Expression *, struct Operand *, struct Operand *);
1016 unsigned int (*  BitNot)(struct Expression *, struct Operand *);
1017 unsigned int (*  AndAsign)(struct Expression *, struct Operand *, struct Operand *);
1018 unsigned int (*  OrAsign)(struct Expression *, struct Operand *, struct Operand *);
1019 unsigned int (*  XorAsign)(struct Expression *, struct Operand *, struct Operand *);
1020 unsigned int (*  LShiftAsign)(struct Expression *, struct Operand *, struct Operand *);
1021 unsigned int (*  RShiftAsign)(struct Expression *, struct Operand *, struct Operand *);
1022 unsigned int (*  Not)(struct Expression *, struct Operand *);
1023 unsigned int (*  Equ)(struct Expression *, struct Operand *, struct Operand *);
1024 unsigned int (*  Nqu)(struct Expression *, struct Operand *, struct Operand *);
1025 unsigned int (*  And)(struct Expression *, struct Operand *, struct Operand *);
1026 unsigned int (*  Or)(struct Expression *, struct Operand *, struct Operand *);
1027 unsigned int (*  Grt)(struct Expression *, struct Operand *, struct Operand *);
1028 unsigned int (*  Sma)(struct Expression *, struct Operand *, struct Operand *);
1029 unsigned int (*  GrtEqu)(struct Expression *, struct Operand *, struct Operand *);
1030 unsigned int (*  SmaEqu)(struct Expression *, struct Operand *, struct Operand *);
1031 unsigned int (*  Cond)(struct Expression *, struct Operand *, struct Operand *, struct Operand *);
1032 } __attribute__ ((gcc_struct));
1033
1034 struct Operand
1035 {
1036 int kind;
1037 struct Type * type;
1038 unsigned int ptrSize;
1039 union
1040 {
1041 char c;
1042 unsigned char uc;
1043 short s;
1044 unsigned short us;
1045 int i;
1046 unsigned int ui;
1047 float f;
1048 double d;
1049 long long i64;
1050 uint64 ui64;
1051 } __attribute__ ((gcc_struct)) __anon1;
1052 struct OpTable ops;
1053 } __attribute__ ((gcc_struct));
1054
1055 extern struct Operand GetOperand(struct Expression * exp);
1056
1057 struct Instantiation;
1058
1059 struct ClassFunction;
1060
1061 struct ClassFunction
1062 {
1063 struct ClassFunction * prev;
1064 struct ClassFunction * next;
1065 struct Location loc;
1066 struct __ecereNameSpace__ecere__sys__OldList *  specifiers;
1067 struct Declarator * declarator;
1068 struct __ecereNameSpace__ecere__sys__OldList *  declarations;
1069 struct Statement * body;
1070 struct __ecereNameSpace__ecere__com__Class * _class;
1071 struct __ecereNameSpace__ecere__sys__OldList attached;
1072 int declMode;
1073 struct Type * type;
1074 struct Symbol * propSet;
1075 unsigned int isVirtual;
1076 unsigned int isConstructor;
1077 unsigned int isDestructor;
1078 unsigned int dontMangle;
1079 int id;
1080 int idCode;
1081 } __attribute__ ((gcc_struct));
1082
1083 struct ClassDefinition;
1084
1085 struct Context
1086 {
1087 struct Context * parent;
1088 struct __ecereNameSpace__ecere__sys__BinaryTree types;
1089 struct __ecereNameSpace__ecere__sys__BinaryTree classes;
1090 struct __ecereNameSpace__ecere__sys__BinaryTree symbols;
1091 struct __ecereNameSpace__ecere__sys__BinaryTree structSymbols;
1092 int nextID;
1093 int simpleID;
1094 struct __ecereNameSpace__ecere__sys__BinaryTree templateTypes;
1095 struct ClassDefinition * classDef;
1096 unsigned int templateTypesOnly;
1097 unsigned int hasNameSpace;
1098 } __attribute__ ((gcc_struct));
1099
1100 struct FunctionDefinition;
1101
1102 struct FunctionDefinition
1103 {
1104 struct FunctionDefinition * prev;
1105 struct FunctionDefinition * next;
1106 struct Location loc;
1107 struct __ecereNameSpace__ecere__sys__OldList *  specifiers;
1108 struct Declarator * declarator;
1109 struct __ecereNameSpace__ecere__sys__OldList *  declarations;
1110 struct Statement * body;
1111 struct __ecereNameSpace__ecere__com__Class * _class;
1112 struct __ecereNameSpace__ecere__sys__OldList attached;
1113 int declMode;
1114 struct Type * type;
1115 struct Symbol * propSet;
1116 int tempCount;
1117 unsigned int propertyNoThis;
1118 } __attribute__ ((gcc_struct));
1119
1120 struct External;
1121
1122 struct Symbol
1123 {
1124 char *  string;
1125 struct Symbol * parent;
1126 struct Symbol * left;
1127 struct Symbol * right;
1128 int depth;
1129 struct Type * type;
1130 union
1131 {
1132 struct __ecereNameSpace__ecere__com__Method * method;
1133 struct __ecereNameSpace__ecere__com__Property * _property;
1134 struct __ecereNameSpace__ecere__com__Class * registered;
1135 } __attribute__ ((gcc_struct)) __anon1;
1136 unsigned int notYetDeclared;
1137 union
1138 {
1139 struct
1140 {
1141 struct External * pointerExternal;
1142 struct External * structExternal;
1143 } __attribute__ ((gcc_struct)) __anon1;
1144 struct
1145 {
1146 struct External * externalGet;
1147 struct External * externalSet;
1148 struct External * externalPtr;
1149 struct External * externalIsSet;
1150 } __attribute__ ((gcc_struct)) __anon2;
1151 struct
1152 {
1153 struct External * methodExternal;
1154 struct External * methodCodeExternal;
1155 } __attribute__ ((gcc_struct)) __anon3;
1156 } __attribute__ ((gcc_struct)) __anon2;
1157 unsigned int imported;
1158 unsigned int declaredStructSym;
1159 struct __ecereNameSpace__ecere__com__Class * _class;
1160 unsigned int declaredStruct;
1161 unsigned int needConstructor;
1162 unsigned int needDestructor;
1163 char *  constructorName;
1164 char *  structName;
1165 char *  className;
1166 char *  destructorName;
1167 struct ModuleImport * module;
1168 struct ClassImport * _import;
1169 struct Location nameLoc;
1170 unsigned int isParam;
1171 unsigned int isRemote;
1172 unsigned int isStruct;
1173 unsigned int fireWatchersDone;
1174 int declaring;
1175 unsigned int classData;
1176 unsigned int isStatic;
1177 char *  shortName;
1178 struct __ecereNameSpace__ecere__sys__OldList *  templateParams;
1179 struct __ecereNameSpace__ecere__sys__OldList templatedClasses;
1180 struct Context * ctx;
1181 int isIterator;
1182 struct Expression * propCategory;
1183 unsigned int mustRegister;
1184 } __attribute__ ((gcc_struct));
1185
1186 struct __ecereNameSpace__ecere__sys__OldList _excludedSymbols =
1187 {
1188 0, 0, 0, (unsigned int)(uintptr_t)&((struct Symbol *)(void * )0)->left, 0
1189 };
1190
1191 struct TemplateParameter;
1192
1193 struct Type
1194 {
1195 struct Type * prev;
1196 struct Type * next;
1197 int refCount;
1198 union
1199 {
1200 struct Symbol * _class;
1201 struct
1202 {
1203 struct __ecereNameSpace__ecere__sys__OldList members;
1204 char *  enumName;
1205 } __attribute__ ((gcc_struct)) __anon1;
1206 struct
1207 {
1208 struct Type * returnType;
1209 struct __ecereNameSpace__ecere__sys__OldList params;
1210 struct Symbol * thisClass;
1211 unsigned int staticMethod;
1212 struct TemplateParameter * thisClassTemplate;
1213 } __attribute__ ((gcc_struct)) __anon2;
1214 struct
1215 {
1216 struct __ecereNameSpace__ecere__com__Method * method;
1217 struct __ecereNameSpace__ecere__com__Class * methodClass;
1218 struct __ecereNameSpace__ecere__com__Class * usedClass;
1219 } __attribute__ ((gcc_struct)) __anon3;
1220 struct
1221 {
1222 struct Type * arrayType;
1223 int arraySize;
1224 struct Expression * arraySizeExp;
1225 unsigned int freeExp;
1226 struct Symbol * enumClass;
1227 } __attribute__ ((gcc_struct)) __anon4;
1228 struct Type * type;
1229 struct TemplateParameter * templateParameter;
1230 } __attribute__ ((gcc_struct)) __anon1;
1231 int kind;
1232 unsigned int size;
1233 char *  name;
1234 char *  typeName;
1235 struct __ecereNameSpace__ecere__com__Class * thisClassFrom;
1236 int classObjectType;
1237 int alignment;
1238 unsigned int offset;
1239 int bitFieldCount;
1240 int count;
1241 unsigned int isSigned : 1;
1242 unsigned int constant : 1;
1243 unsigned int truth : 1;
1244 unsigned int byReference : 1;
1245 unsigned int extraParam : 1;
1246 unsigned int directClassAccess : 1;
1247 unsigned int computing : 1;
1248 unsigned int keepCast : 1;
1249 unsigned int passAsTemplate : 1;
1250 unsigned int dllExport : 1;
1251 unsigned int attrStdcall : 1;
1252 unsigned int declaredWithStruct : 1;
1253 unsigned int typedByReference : 1;
1254 unsigned int casted : 1;
1255 unsigned int pointerAlignment : 1;
1256 unsigned int isLong : 1;
1257 } __attribute__ ((gcc_struct));
1258
1259 struct __ecereNameSpace__ecere__com__ClassTemplateParameter;
1260
1261 extern struct __ecereNameSpace__ecere__com__ClassTemplateParameter * __ecereNameSpace__ecere__com__eClass_AddTemplateParameter(struct __ecereNameSpace__ecere__com__Class * _class, const char *  name, int type, const void *  info, struct __ecereNameSpace__ecere__com__ClassTemplateArgument * defaultArg);
1262
1263 struct __ecereNameSpace__ecere__com__ClassTemplateParameter
1264 {
1265 struct __ecereNameSpace__ecere__com__ClassTemplateParameter * prev;
1266 struct __ecereNameSpace__ecere__com__ClassTemplateParameter * next;
1267 const char *  name;
1268 int type;
1269 union
1270 {
1271 const char *  dataTypeString;
1272 int memberType;
1273 } __attribute__ ((gcc_struct)) __anon1;
1274 struct __ecereNameSpace__ecere__com__ClassTemplateArgument defaultArg;
1275 void *  param;
1276 } __attribute__ ((gcc_struct));
1277
1278 void __ecereMethod_PrecompApp_Main(struct __ecereNameSpace__ecere__com__Instance *  this);
1279
1280 struct Specifier;
1281
1282 struct Declarator
1283 {
1284 struct Declarator * prev;
1285 struct Declarator * next;
1286 struct Location loc;
1287 int type;
1288 struct Symbol * symbol;
1289 struct Declarator * declarator;
1290 union
1291 {
1292 struct Identifier * identifier;
1293 struct
1294 {
1295 struct Expression * exp;
1296 struct Expression * posExp;
1297 struct Attrib * attrib;
1298 } __attribute__ ((gcc_struct)) structDecl;
1299 struct
1300 {
1301 struct Expression * exp;
1302 struct Specifier * enumClass;
1303 } __attribute__ ((gcc_struct)) array;
1304 struct
1305 {
1306 struct __ecereNameSpace__ecere__sys__OldList * parameters;
1307 } __attribute__ ((gcc_struct)) function;
1308 struct
1309 {
1310 struct __ecereNameSpace__ecere__com__Instance * pointer;
1311 } __attribute__ ((gcc_struct)) pointer;
1312 struct
1313 {
1314 struct ExtDecl * extended;
1315 } __attribute__ ((gcc_struct)) extended;
1316 } __attribute__ ((gcc_struct)) __anon1;
1317 } __attribute__ ((gcc_struct));
1318
1319 struct Identifier
1320 {
1321 struct Identifier * prev;
1322 struct Identifier * next;
1323 struct Location loc;
1324 struct Symbol * classSym;
1325 struct Specifier * _class;
1326 char *  string;
1327 struct Identifier * badID;
1328 } __attribute__ ((gcc_struct));
1329
1330 struct Expression
1331 {
1332 struct Expression * prev;
1333 struct Expression * next;
1334 struct Location loc;
1335 int type;
1336 union
1337 {
1338 struct
1339 {
1340 char *  constant;
1341 struct Identifier * identifier;
1342 } __attribute__ ((gcc_struct)) __anon1;
1343 struct Statement * compound;
1344 struct Instantiation * instance;
1345 struct
1346 {
1347 char *  string;
1348 unsigned int intlString;
1349 unsigned int wideString;
1350 } __attribute__ ((gcc_struct)) __anon2;
1351 struct __ecereNameSpace__ecere__sys__OldList *  list;
1352 struct
1353 {
1354 struct __ecereNameSpace__ecere__sys__OldList * specifiers;
1355 struct Declarator * decl;
1356 } __attribute__ ((gcc_struct)) _classExp;
1357 struct
1358 {
1359 struct Identifier * id;
1360 } __attribute__ ((gcc_struct)) classData;
1361 struct
1362 {
1363 struct Expression * exp;
1364 struct __ecereNameSpace__ecere__sys__OldList * arguments;
1365 struct Location argLoc;
1366 } __attribute__ ((gcc_struct)) call;
1367 struct
1368 {
1369 struct Expression * exp;
1370 struct __ecereNameSpace__ecere__sys__OldList * index;
1371 } __attribute__ ((gcc_struct)) index;
1372 struct
1373 {
1374 struct Expression * exp;
1375 struct Identifier * member;
1376 int memberType;
1377 unsigned int thisPtr;
1378 } __attribute__ ((gcc_struct)) member;
1379 struct
1380 {
1381 int op;
1382 struct Expression * exp1;
1383 struct Expression * exp2;
1384 } __attribute__ ((gcc_struct)) op;
1385 struct TypeName * typeName;
1386 struct Specifier * _class;
1387 struct
1388 {
1389 struct TypeName * typeName;
1390 struct Expression * exp;
1391 } __attribute__ ((gcc_struct)) cast;
1392 struct
1393 {
1394 struct Expression * cond;
1395 struct __ecereNameSpace__ecere__sys__OldList * exp;
1396 struct Expression * elseExp;
1397 } __attribute__ ((gcc_struct)) cond;
1398 struct
1399 {
1400 struct TypeName * typeName;
1401 struct Expression * size;
1402 } __attribute__ ((gcc_struct)) _new;
1403 struct
1404 {
1405 struct TypeName * typeName;
1406 struct Expression * size;
1407 struct Expression * exp;
1408 } __attribute__ ((gcc_struct)) _renew;
1409 struct
1410 {
1411 char * table;
1412 struct Identifier * id;
1413 } __attribute__ ((gcc_struct)) db;
1414 struct
1415 {
1416 struct Expression * ds;
1417 struct Expression * name;
1418 } __attribute__ ((gcc_struct)) dbopen;
1419 struct
1420 {
1421 struct TypeName * typeName;
1422 struct Initializer * initializer;
1423 } __attribute__ ((gcc_struct)) initializer;
1424 struct
1425 {
1426 struct Expression * exp;
1427 struct TypeName * typeName;
1428 } __attribute__ ((gcc_struct)) vaArg;
1429 } __attribute__ ((gcc_struct)) __anon1;
1430 unsigned int debugValue;
1431 struct __ecereNameSpace__ecere__com__DataValue val;
1432 uint64 address;
1433 unsigned int hasAddress;
1434 struct Type * expType;
1435 struct Type * destType;
1436 unsigned int usage;
1437 int tempCount;
1438 unsigned int byReference;
1439 unsigned int isConstant;
1440 unsigned int addedThis;
1441 unsigned int needCast;
1442 unsigned int thisPtr;
1443 unsigned int opDestType;
1444 unsigned int needTemplateCast;
1445 } __attribute__ ((gcc_struct));
1446
1447 struct Specifier
1448 {
1449 struct Specifier * prev;
1450 struct Specifier * next;
1451 struct Location loc;
1452 int type;
1453 union
1454 {
1455 int specifier;
1456 struct
1457 {
1458 struct ExtDecl * extDecl;
1459 char *  name;
1460 struct Symbol * symbol;
1461 struct __ecereNameSpace__ecere__sys__OldList *  templateArgs;
1462 struct Specifier * nsSpec;
1463 } __attribute__ ((gcc_struct)) __anon1;
1464 struct
1465 {
1466 struct Identifier * id;
1467 struct __ecereNameSpace__ecere__sys__OldList *  list;
1468 struct __ecereNameSpace__ecere__sys__OldList *  baseSpecs;
1469 struct __ecereNameSpace__ecere__sys__OldList *  definitions;
1470 unsigned int addNameSpace;
1471 struct Context * ctx;
1472 struct ExtDecl * extDeclStruct;
1473 } __attribute__ ((gcc_struct)) __anon2;
1474 struct Expression * expression;
1475 struct Specifier * _class;
1476 struct TemplateParameter * templateParameter;
1477 } __attribute__ ((gcc_struct)) __anon1;
1478 } __attribute__ ((gcc_struct));
1479
1480 struct Instantiation
1481 {
1482 struct Instantiation * prev;
1483 struct Instantiation * next;
1484 struct Location loc;
1485 struct Specifier * _class;
1486 struct Expression * exp;
1487 struct __ecereNameSpace__ecere__sys__OldList *  members;
1488 struct Symbol * symbol;
1489 unsigned int fullSet;
1490 unsigned int isConstant;
1491 unsigned char *  data;
1492 struct Location nameLoc;
1493 struct Location insideLoc;
1494 unsigned int built;
1495 } __attribute__ ((gcc_struct));
1496
1497 struct ClassDefinition
1498 {
1499 struct ClassDefinition * prev;
1500 struct ClassDefinition * next;
1501 struct Location loc;
1502 struct Specifier * _class;
1503 struct __ecereNameSpace__ecere__sys__OldList *  baseSpecs;
1504 struct __ecereNameSpace__ecere__sys__OldList *  definitions;
1505 struct Symbol * symbol;
1506 struct Location blockStart;
1507 struct Location nameLoc;
1508 int declMode;
1509 unsigned int deleteWatchable;
1510 } __attribute__ ((gcc_struct));
1511
1512 struct PropertyDef;
1513
1514 struct PropertyDef
1515 {
1516 struct PropertyDef * prev;
1517 struct PropertyDef * next;
1518 struct Location loc;
1519 struct __ecereNameSpace__ecere__sys__OldList *  specifiers;
1520 struct Declarator * declarator;
1521 struct Identifier * id;
1522 struct Statement * getStmt;
1523 struct Statement * setStmt;
1524 struct Statement * issetStmt;
1525 struct Symbol * symbol;
1526 struct Expression * category;
1527 struct
1528 {
1529 unsigned int conversion : 1;
1530 unsigned int isWatchable : 1;
1531 unsigned int isDBProp : 1;
1532 } __attribute__ ((gcc_struct)) __anon1;
1533 } __attribute__ ((gcc_struct));
1534
1535 struct TemplateArgument;
1536
1537 struct TemplateParameter
1538 {
1539 struct TemplateParameter * prev;
1540 struct TemplateParameter * next;
1541 struct Location loc;
1542 int type;
1543 struct Identifier * identifier;
1544 union
1545 {
1546 struct TemplateDatatype * dataType;
1547 int memberType;
1548 } __attribute__ ((gcc_struct)) __anon1;
1549 struct TemplateArgument * defaultArgument;
1550 const char *  dataTypeString;
1551 struct Type * baseType;
1552 } __attribute__ ((gcc_struct));
1553
1554 struct TemplateArgument
1555 {
1556 struct TemplateArgument * prev;
1557 struct TemplateArgument * next;
1558 struct Location loc;
1559 struct Identifier * name;
1560 int type;
1561 union
1562 {
1563 struct Expression * expression;
1564 struct Identifier * identifier;
1565 struct TemplateDatatype * templateDatatype;
1566 } __attribute__ ((gcc_struct)) __anon1;
1567 } __attribute__ ((gcc_struct));
1568
1569 static void OutputSymbols(const char * fileName)
1570 {
1571 struct __ecereNameSpace__ecere__com__Instance * f = __ecereNameSpace__ecere__sys__FileOpen(fileName, 2);
1572
1573 if(f)
1574 {
1575 int lastType = (int)-1;
1576 struct Definition * definition;
1577
1578 if(globalInstance)
1579 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "[Global Instance]\n");
1580 for(definition = precompDefines.first; definition; definition = definition->next)
1581 {
1582 if(definition->type != lastType)
1583 {
1584 if(lastType != (int)-1)
1585 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "   .\n");
1586 if(definition->type == 0)
1587 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "[Imported Modules]\n");
1588 else if(definition->type == 1)
1589 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "[Defined Classes]\n");
1590 else if(definition->type == 2)
1591 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "[Defined Expressions]\n");
1592 else if(definition->type == 3)
1593 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "[Defined Functions]\n");
1594 else if(definition->type == 4)
1595 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "[Defined Data]\n");
1596 lastType = definition->type;
1597 }
1598 if(definition->type == 0)
1599 {
1600 struct ImportedModule * module = (struct ImportedModule *)definition;
1601
1602 if(module->importType == 1)
1603 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "   [Static]\n");
1604 else if(module->importType == 2)
1605 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "   [Remote]\n");
1606 if(module->importAccess == 2)
1607 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "   [Private]\n");
1608 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "   %s\n", module->name);
1609 }
1610 else if(definition->type == 1)
1611 {
1612 struct __ecereNameSpace__ecere__com__Class * _class = __ecereNameSpace__ecere__com__eSystem_FindClass(privateModule, definition->name);
1613 struct ClassDefine * classDefine = (struct ClassDefine *)definition;
1614
1615 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "   %s\n", definition->name);
1616 if(classDefine->isStatic)
1617 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "      [Static]\n");
1618 if(classDefine->fixed)
1619 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "      [Fixed]\n");
1620 if(classDefine->noExpansion)
1621 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "      [No Expansion]\n");
1622 if(classDefine->isRemote)
1623 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "      [Remote]\n");
1624 if(classDefine->isWatchable)
1625 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "      [Watchable]\n");
1626 if(_class->type == 4)
1627 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "      [Enum]\n");
1628 else if(_class->type == 2)
1629 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "      [Bit]\n");
1630 else if(_class->type == 1)
1631 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "      [Struct]\n");
1632 else if(_class->type == 3)
1633 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "      [Unit]\n");
1634 else if(_class->type == 5)
1635 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "      [NoHead]\n");
1636 if(_class->inheritanceAccess == 2)
1637 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "      [Private Base]\n");
1638 else
1639 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "      [Base]\n");
1640 if(classDefine->base)
1641 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "         %s\n", classDefine->base);
1642 else
1643 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "         [None]\n");
1644 if(_class->templateParams.count)
1645 {
1646 struct __ecereNameSpace__ecere__com__ClassTemplateParameter * param;
1647 struct TemplateParameter * tp;
1648
1649 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "         [Template Parameters]\n");
1650 for(tp = (*((struct Symbol *)_class->symbol)->templateParams).first, param = _class->templateParams.first; param && tp; param = param->next, tp = tp->next)
1651 {
1652 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "               %s\n", param->name);
1653 switch(param->type)
1654 {
1655 case 0:
1656 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "               [Type]\n");
1657 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "               %s\n", param->__anon1.dataTypeString ? param->__anon1.dataTypeString : "[None]");
1658 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "               %s\n", param->defaultArg.__anon1.__anon1.dataTypeString ? param->defaultArg.__anon1.__anon1.dataTypeString : "[None]");
1659 break;
1660 case 2:
1661 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "               [Expression]\n");
1662 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "               %s\n", param->__anon1.dataTypeString ? param->__anon1.dataTypeString : "[None]");
1663 if(tp->defaultArgument && tp->defaultArgument->__anon1.expression)
1664 {
1665 char temp[8192];
1666
1667 temp[0] = (char)0;
1668 PrintExpression(tp->defaultArgument->__anon1.expression, temp);
1669 __ecereNameSpace__ecere__sys__ChangeCh(temp, '\n', ' ');
1670 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "               ");
1671 ((unsigned int (*)(struct __ecereNameSpace__ecere__com__Instance *, const char *  string))__extension__ ({
1672 struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = f;
1673
1674 __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__sys__File->_vTbl;
1675 })[__ecereVMethodID___ecereNameSpace__ecere__sys__File_Puts])(f, temp);
1676 ((unsigned int (*)(struct __ecereNameSpace__ecere__com__Instance *, const char *  string))__extension__ ({
1677 struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = f;
1678
1679 __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__sys__File->_vTbl;
1680 })[__ecereVMethodID___ecereNameSpace__ecere__sys__File_Puts])(f, "\n");
1681 }
1682 else
1683 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "               [None]\n");
1684 break;
1685 case 1:
1686 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "               [Identifier]\n");
1687 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "               %s\n", (param->__anon1.memberType == 0) ? "[Data member]" : ((param->__anon1.memberType == 1) ? "[Method]" : "[Property]"));
1688 if(tp->defaultArgument && tp->defaultArgument->__anon1.identifier)
1689 {
1690 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "               ");
1691 if(tp->defaultArgument->__anon1.identifier->_class && tp->defaultArgument->__anon1.identifier->_class->type == 1 && tp->defaultArgument->__anon1.identifier->_class->__anon1.__anon1.name)
1692 {
1693 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "%s::", tp->defaultArgument->__anon1.identifier->_class->__anon1.__anon1.name);
1694 }
1695 else if(tp->defaultArgument->__anon1.identifier->_class && tp->defaultArgument->__anon1.identifier->_class->type == 8 && tp->defaultArgument->__anon1.identifier->_class->__anon1.templateParameter->identifier)
1696 {
1697 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "%s::", tp->defaultArgument->__anon1.identifier->_class->__anon1.templateParameter->identifier->string);
1698 }
1699 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "%s\n", tp->defaultArgument->__anon1.identifier->string);
1700 }
1701 else
1702 {
1703 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "               [None]\n");
1704 }
1705 break;
1706 }
1707 }
1708 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "         .\n");
1709 }
1710 if(!classDefine->isStatic)
1711 {
1712 if(classDefine->methods.first)
1713 {
1714 struct MethodDefine * method;
1715
1716 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "      [Defined Methods]\n");
1717 for(method = classDefine->methods.first; method; method = method->next)
1718 {
1719 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "         %s\n", method->name);
1720 if(method->memberAccess == 1)
1721 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "            [Public]\n");
1722 else
1723 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "            [Private]\n");
1724 if(method->isVirtual)
1725 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "            [Virtual]\n");
1726 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "            [Type]\n");
1727 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "               %s\n", method->type ? method->type : "");
1728 }
1729 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "         .\n");
1730 }
1731 OutputDataMembers(classDefine, _class, f);
1732 if(_class->type == 4)
1733 {
1734 struct __ecereNameSpace__ecere__sys__NamedLink64 * value;
1735 struct __ecereNameSpace__ecere__com__Class * enumClass = __ecereNameSpace__ecere__com__eSystem_FindClass(privateModule, "enum");
1736 struct __ecereNameSpace__ecere__com__EnumClassData * e = (_class ? ((void *)(((char *)_class->data) + enumClass->offsetClass)) : (((void *)0)));
1737
1738 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "      [Enum Values]\n");
1739 for(value = e->values.first; value; value = value->next)
1740 {
1741 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "         %s = ", value->name);
1742 if(_class->dataTypeString && !strcmp(_class->dataTypeString, "uint64") && *(uint64 *)&value->data > (((long long)0x7fffffffffffffffLL)))
1743 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, ((__runtimePlatform == 1) ? "0x%I64X" : "0x%llX"), *(uint64 *)&value->data);
1744 else
1745 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, ((__runtimePlatform == 1) ? "%I64d" : "%lld"), value->data);
1746 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "\n");
1747 }
1748 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "         .\n");
1749 }
1750 }
1751 }
1752 else if(definition->type == 2)
1753 {
1754 struct Define * defineDefine = (struct Define *)definition;
1755
1756 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "   %s\n", definition->name);
1757 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "      [Value]\n");
1758 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "         ");
1759 OutputExpression(defineDefine->exp, f);
1760 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "\n");
1761 }
1762 else if(definition->type == 3)
1763 {
1764 struct FunctionDefine * functionDefine = (struct FunctionDefine *)definition;
1765
1766 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "   %s\n", functionDefine->name);
1767 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "      [Type]\n");
1768 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "         %s\n", functionDefine->dataType);
1769 }
1770 else if(definition->type == 4)
1771 {
1772 struct DataDefine * dataDefine = (struct DataDefine *)definition;
1773
1774 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "   %s\n", dataDefine->name);
1775 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "      [Type]\n");
1776 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "         %s\n", dataDefine->dataType);
1777 }
1778 }
1779 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "   .\n");
1780 (__ecereNameSpace__ecere__com__eInstance_DecRef(f), f = 0);
1781 }
1782 }
1783
1784 struct Enumerator;
1785
1786 struct Enumerator
1787 {
1788 struct Enumerator * prev;
1789 struct Enumerator * next;
1790 struct Location loc;
1791 struct Identifier * id;
1792 struct Expression * exp;
1793 } __attribute__ ((gcc_struct));
1794
1795 static void ProcessClassEnumValues(int classType, struct __ecereNameSpace__ecere__sys__OldList * definitions, struct Symbol * symbol, struct __ecereNameSpace__ecere__sys__OldList * baseSpecs, struct __ecereNameSpace__ecere__sys__OldList * enumValues)
1796 {
1797 struct __ecereNameSpace__ecere__com__Class * regClass = symbol->__anon1.registered;
1798
1799 if(regClass && enumValues)
1800 {
1801 struct Enumerator * e;
1802
1803 for(e = enumValues->first; e; e = e->next)
1804 {
1805 if(e->exp)
1806 {
1807 struct Type * destType = (destType = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type), destType->kind = 4, destType->refCount = 1, destType);
1808
1809 e->exp->destType = destType;
1810 SetParsingType(1);
1811 ProcessExpressionType(e->exp);
1812 SetParsingType(0);
1813 if(!e->exp->expType)
1814 {
1815 destType->kind = 8;
1816 destType->__anon1._class = symbol;
1817 ProcessExpressionType(e->exp);
1818 }
1819 if(e->exp->isConstant)
1820 {
1821 if(e->exp->type == 0 && e->exp->expType && e->exp->__anon1.__anon1.identifier && e->exp->__anon1.__anon1.identifier->string && e->exp->expType->kind == 15)
1822 {
1823 struct __ecereNameSpace__ecere__sys__NamedLink64 * l;
1824 char * string = e->exp->__anon1.__anon1.identifier->string;
1825
1826 for(l = e->exp->expType->__anon1.__anon1.members.first; l; l = l->next)
1827 {
1828 if(!strcmp(l->name, string))
1829 {
1830 if(l->data)
1831 {
1832 FreeExpContents(e->exp);
1833 e->exp->type = 2;
1834 e->exp->__anon1.__anon1.constant = PrintInt64(l->data);
1835 FreeType(e->exp->expType);
1836 e->exp->expType = ProcessTypeString("int64", 0);
1837 }
1838 break;
1839 }
1840 }
1841 }
1842 else
1843 ComputeExpression(e->exp);
1844 }
1845 if(e->exp->isConstant && e->exp->type == 2)
1846 {
1847 struct Operand op = GetOperand(e->exp);
1848 long long value;
1849
1850 switch(op.kind)
1851 {
1852 case 1:
1853 value = op.type->isSigned ? (long long)op.__anon1.c : (long long)op.__anon1.uc;
1854 break;
1855 case 2:
1856 value = op.type->isSigned ? (long long)op.__anon1.s : (long long)op.__anon1.us;
1857 break;
1858 case 4:
1859 value = op.type->isSigned ? op.__anon1.i64 : (long long)op.__anon1.ui64;
1860 break;
1861 case 3:
1862 default:
1863 value = op.type->isSigned ? (long long)op.__anon1.i : (int)op.__anon1.ui;
1864 }
1865 __ecereNameSpace__ecere__com__eEnum_AddFixedValue(regClass, e->id->string, value);
1866 }
1867 else
1868 {
1869 char expString[8192];
1870
1871 expString[0] = (char)0;
1872 PrintExpression(e->exp, expString);
1873 printf(__ecereNameSpace__ecere__GetTranslatedString("ecp", "error: could not resolve value %s for enum %s in precompiler\n", (((void *)0))), expString, regClass->name);
1874 ((struct __ecereNameSpace__ecere__com__Application *)(((char *)((struct __ecereNameSpace__ecere__com__Instance *)__thisModule) + sizeof(struct __ecereNameSpace__ecere__com__Module) + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->exitCode = 1;
1875 __ecereNameSpace__ecere__com__eEnum_AddValue(regClass, e->id->string);
1876 }
1877 }
1878 else
1879 __ecereNameSpace__ecere__com__eEnum_AddValue(regClass, e->id->string);
1880 }
1881 }
1882 }
1883
1884 struct Declaration;
1885
1886 typedef union YYSTYPE
1887 {
1888 int specifierType;
1889 int i;
1890 int declMode;
1891 struct Identifier * id;
1892 struct Expression * exp;
1893 struct Specifier * specifier;
1894 struct __ecereNameSpace__ecere__sys__OldList * list;
1895 struct Enumerator * enumerator;
1896 struct Declarator * declarator;
1897 struct __ecereNameSpace__ecere__com__Instance * pointer;
1898 struct Initializer * initializer;
1899 struct InitDeclarator * initDeclarator;
1900 struct TypeName * typeName;
1901 struct Declaration * declaration;
1902 struct Statement * stmt;
1903 struct FunctionDefinition * function;
1904 struct External * external;
1905 struct Context * context;
1906 struct __ecereNameSpace__ecere__com__Instance * asmField;
1907 struct Attrib * attrib;
1908 struct ExtDecl * extDecl;
1909 struct Attribute * attribute;
1910 struct Instantiation * instance;
1911 struct MembersInit * membersInit;
1912 struct MemberInit * memberInit;
1913 struct ClassFunction * classFunction;
1914 struct ClassDefinition * _class;
1915 struct ClassDef * classDef;
1916 struct PropertyDef * prop;
1917 char * string;
1918 struct Symbol * symbol;
1919 struct PropertyWatch * propertyWatch;
1920 struct TemplateParameter * templateParameter;
1921 struct TemplateArgument * templateArgument;
1922 struct TemplateDatatype * templateDatatype;
1923 struct __ecereNameSpace__ecere__com__Instance * dbtableEntry;
1924 struct __ecereNameSpace__ecere__com__Instance * dbindexItem;
1925 struct DBTableDef * dbtableDef;
1926 } __attribute__ ((gcc_struct)) YYSTYPE;
1927
1928 extern YYSTYPE yylval;
1929
1930 struct ClassDef
1931 {
1932 struct ClassDef * prev;
1933 struct ClassDef * next;
1934 struct Location loc;
1935 int type;
1936 union
1937 {
1938 struct Declaration * decl;
1939 struct ClassFunction * function;
1940 struct __ecereNameSpace__ecere__sys__OldList *  defProperties;
1941 struct PropertyDef * propertyDef;
1942 struct PropertyWatch * propertyWatch;
1943 char *  designer;
1944 struct Identifier * defaultProperty;
1945 struct
1946 {
1947 struct Identifier * id;
1948 struct Initializer * initializer;
1949 } __attribute__ ((gcc_struct)) __anon1;
1950 } __attribute__ ((gcc_struct)) __anon1;
1951 int memberAccess;
1952 void *  object;
1953 } __attribute__ ((gcc_struct));
1954
1955 struct Declaration
1956 {
1957 struct Declaration * prev;
1958 struct Declaration * next;
1959 struct Location loc;
1960 int type;
1961 union
1962 {
1963 struct
1964 {
1965 struct __ecereNameSpace__ecere__sys__OldList *  specifiers;
1966 struct __ecereNameSpace__ecere__sys__OldList *  declarators;
1967 } __attribute__ ((gcc_struct)) __anon1;
1968 struct Instantiation * inst;
1969 struct
1970 {
1971 struct Identifier * id;
1972 struct Expression * exp;
1973 } __attribute__ ((gcc_struct)) __anon2;
1974 } __attribute__ ((gcc_struct)) __anon1;
1975 struct Specifier * extStorage;
1976 struct Symbol * symbol;
1977 int declMode;
1978 } __attribute__ ((gcc_struct));
1979
1980 struct External
1981 {
1982 struct External * prev;
1983 struct External * next;
1984 struct Location loc;
1985 int type;
1986 struct Symbol * symbol;
1987 union
1988 {
1989 struct FunctionDefinition * function;
1990 struct ClassDefinition * _class;
1991 struct Declaration * declaration;
1992 char *  importString;
1993 struct Identifier * id;
1994 struct DBTableDef * table;
1995 } __attribute__ ((gcc_struct)) __anon1;
1996 int importType;
1997 struct External * fwdDecl;
1998 struct __ecereNameSpace__ecere__com__Instance * outgoing;
1999 struct __ecereNameSpace__ecere__com__Instance * incoming;
2000 int nonBreakableIncoming;
2001 } __attribute__ ((gcc_struct));
2002
2003 static void AddDefinitions(struct ClassDefine * classDefine, struct DataMemberDefine * parentMemberDefine, struct __ecereNameSpace__ecere__com__Class * regClass, struct __ecereNameSpace__ecere__com__DataMember * member, struct __ecereNameSpace__ecere__sys__OldList * definitions)
2004 {
2005 if(definitions != (((void *)0)))
2006 {
2007 struct ClassDef * def;
2008
2009 for(def = definitions->first; def; def = def->next)
2010 {
2011 if(def->type == 2)
2012 {
2013 struct Declaration * decl = def->__anon1.decl;
2014 struct __ecereNameSpace__ecere__com__DataMember * dataMember;
2015 struct Type * dataType;
2016 struct DataMemberDefine * dataMemberDefine;
2017
2018 if(decl->type == 0)
2019 {
2020 struct Declarator * d;
2021
2022 if(decl->__anon1.__anon1.declarators)
2023 {
2024 for(d = (*decl->__anon1.__anon1.declarators).first; d; d = d->next)
2025 {
2026 struct Identifier * declId = GetDeclId(d);
2027
2028 if(declId)
2029 {
2030 dataMemberDefine = __extension__ ({
2031 struct DataMemberDefine * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_DataMemberDefine);
2032
2033 __ecereInstance1->isProperty = 3, __ecereInstance1->memberType = 0, __ecereInstance1->name = __ecereNameSpace__ecere__sys__CopyString(declId->string), __ecereInstance1;
2034 });
2035 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(&parentMemberDefine->dataMembers, dataMemberDefine);
2036 if(regClass && regClass->type == 2)
2037 {
2038 struct Expression * sizeExp = d->__anon1.structDecl.exp, * posExp = d->__anon1.structDecl.posExp;
2039 int bitSize = 0, bitPos = -1;
2040 char dataTypeString[1024];
2041
2042 dataTypeString[0] = '\0';
2043 if(sizeExp)
2044 {
2045 ProcessExpressionType(sizeExp);
2046 ComputeExpression(sizeExp);
2047 if(sizeExp->isConstant)
2048 bitSize = strtol(sizeExp->__anon1.__anon1.constant, (((void *)0)), 0);
2049 FreeExpression(sizeExp);
2050 }
2051 if(posExp)
2052 {
2053 ProcessExpressionType(posExp);
2054 ComputeExpression(posExp);
2055 if(posExp->isConstant)
2056 bitPos = strtol(posExp->__anon1.__anon1.constant, (((void *)0)), 0);
2057 FreeExpression(posExp);
2058 }
2059 d->__anon1.structDecl.exp = (((void *)0));
2060 d->__anon1.structDecl.posExp = (((void *)0));
2061 dataType = ProcessType(decl->__anon1.__anon1.specifiers, d);
2062 PrintType(dataType, dataTypeString, 0, 1);
2063 {
2064 struct __ecereNameSpace__ecere__com__BitMember * member = __ecereNameSpace__ecere__com__eClass_AddBitMember(regClass, declId->string, dataTypeString, 0, 0, def->memberAccess);
2065
2066 member->size = bitSize;
2067 member->pos = bitPos;
2068 dataMember = (struct __ecereNameSpace__ecere__com__DataMember *)member;
2069 }
2070 if(dataMember)
2071 dataMember->dataType = dataType;
2072 dataMemberDefine->size = bitSize;
2073 dataMemberDefine->bitPos = bitPos;
2074 dataMemberDefine->type = __ecereNameSpace__ecere__sys__CopyString(dataTypeString);
2075 }
2076 else
2077 {
2078 {
2079 char typeString[1024];
2080
2081 typeString[0] = '\0';
2082 dataType = ProcessType(decl->__anon1.__anon1.specifiers, d);
2083 PrintType(dataType, typeString, 0, 1);
2084 if(member)
2085 dataMember = __ecereNameSpace__ecere__com__eMember_AddDataMember(member, declId->string, typeString, 0, 0, def->memberAccess);
2086 else
2087 dataMember = __ecereNameSpace__ecere__com__eClass_AddDataMember(regClass, declId->string, typeString, 0, 0, def->memberAccess);
2088 if(dataMember)
2089 dataMember->dataType = dataType;
2090 dataMemberDefine->type = __ecereNameSpace__ecere__sys__CopyString(typeString);
2091 }
2092 }
2093 dataMemberDefine->memberAccess = def->memberAccess;
2094 }
2095 }
2096 }
2097 else if(decl->__anon1.__anon1.specifiers)
2098 {
2099 struct Specifier * spec;
2100
2101 for(spec = (*decl->__anon1.__anon1.specifiers).first; spec; spec = spec->next)
2102 {
2103 if(spec->type == 3 || spec->type == 4)
2104 {
2105 if(spec->__anon1.__anon2.definitions && !spec->__anon1.__anon2.id)
2106 {
2107 struct __ecereNameSpace__ecere__com__DataMember * dataMember = __ecereNameSpace__ecere__com__eMember_New((spec->type == 4) ? 1 : 2, def->memberAccess);
2108
2109 dataMemberDefine = __extension__ ({
2110 struct DataMemberDefine * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_DataMemberDefine);
2111
2112 __ecereInstance1->isProperty = 3, __ecereInstance1->memberType = (spec->type == 4) ? 1 : 2, __ecereInstance1;
2113 });
2114 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(&parentMemberDefine->dataMembers, dataMemberDefine);
2115 AddDefinitions((((void *)0)), dataMemberDefine, (((void *)0)), dataMember, spec->__anon1.__anon2.definitions);
2116 if(member)
2117 __ecereNameSpace__ecere__com__eMember_AddMember(member, dataMember);
2118 else
2119 __ecereNameSpace__ecere__com__eClass_AddMember(regClass, dataMember);
2120 }
2121 else if(spec->__anon1.__anon2.definitions && spec->__anon1.__anon2.id && (*spec->__anon1.__anon2.definitions).count)
2122 {
2123 {
2124 struct Identifier * id = spec->__anon1.__anon2.id;
2125 char typeString[1024];
2126
2127 typeString[0] = '\0';
2128 spec->__anon1.__anon2.id = (((void *)0));
2129 decl->__anon1.__anon1.declarators = MkListOne(MkDeclaratorIdentifier(id));
2130 dataType = ProcessType(decl->__anon1.__anon1.specifiers, (((void *)0)));
2131 PrintType(dataType, typeString, 0, 1);
2132 if(member)
2133 dataMember = __ecereNameSpace__ecere__com__eMember_AddDataMember(member, id->string, typeString, 0, 0, def->memberAccess);
2134 else
2135 dataMember = __ecereNameSpace__ecere__com__eClass_AddDataMember(regClass, id->string, typeString, 0, 0, def->memberAccess);
2136 if(dataMember)
2137 dataMember->dataType = dataType;
2138 }
2139 }
2140 }
2141 }
2142 }
2143 }
2144 else if(decl->type == 2)
2145 {
2146 struct Instantiation * inst = decl->__anon1.inst;
2147 struct Expression * exp = inst->exp;
2148
2149 if(exp)
2150 {
2151 {
2152 char * string = exp->__anon1.__anon1.identifier->string;
2153
2154 {
2155 struct Type * dataType = (dataType = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type), dataType->kind = 8, dataType->__anon1._class = inst->_class->__anon1.__anon1.symbol, dataType->refCount = 1, dataType);
2156
2157 if(member)
2158 dataMember = __ecereNameSpace__ecere__com__eMember_AddDataMember(member, string, inst->_class->__anon1.__anon1.name, 0, 0, def->memberAccess);
2159 else
2160 dataMember = __ecereNameSpace__ecere__com__eClass_AddDataMember(regClass, string, inst->_class->__anon1.__anon1.name, 0, 0, def->memberAccess);
2161 if(dataMember)
2162 dataMember->dataType = dataType;
2163 }
2164 dataMemberDefine = __extension__ ({
2165 struct DataMemberDefine * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_DataMemberDefine);
2166
2167 __ecereInstance1->isProperty = 3, __ecereInstance1->memberType = 0, __ecereInstance1->name = __ecereNameSpace__ecere__sys__CopyString(string), __ecereInstance1->type = __ecereNameSpace__ecere__sys__CopyString(inst->_class->__anon1.__anon1.name), __ecereInstance1;
2168 });
2169 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(&parentMemberDefine->dataMembers, dataMemberDefine);
2170 }
2171 }
2172 }
2173 }
2174 else if(def->type == 3 && def->__anon1.propertyDef)
2175 {
2176 struct PropertyDef * propertyDef = def->__anon1.propertyDef;
2177
2178 {
2179 struct __ecereNameSpace__ecere__com__Property * prop;
2180 struct PropertyDefine * propDefine;
2181
2182 {
2183 char * dataTypeString = StringFromSpecDecl(propertyDef->specifiers, propertyDef->declarator);
2184
2185 prop = __ecereNameSpace__ecere__com__eClass_AddProperty(regClass, propertyDef->__anon1.conversion ? (((void *)0)) : propertyDef->id->string, dataTypeString, propertyDef->setStmt, propertyDef->getStmt, def->memberAccess);
2186 if(prop)
2187 {
2188 prop->IsSet = (void *)propertyDef->issetStmt;
2189 prop->compiled = 0;
2190 }
2191 (__ecereNameSpace__ecere__com__eSystem_Delete(dataTypeString), dataTypeString = 0);
2192 }
2193 if(prop)
2194 {
2195 prop->symbol = __extension__ ({
2196 struct Symbol * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol);
2197
2198 __ecereInstance1->string = __ecereNameSpace__ecere__sys__CopyString(propertyDef->symbol->string), __ecereInstance1->type = propertyDef->symbol->type, __ecereInstance1;
2199 });
2200 if(propertyDef->symbol->type)
2201 propertyDef->symbol->type->refCount++;
2202 propDefine = __extension__ ({
2203 struct PropertyDefine * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_PropertyDefine);
2204
2205 __ecereInstance1->isProperty = 1, __ecereInstance1->name = prop->conversion ? (((void *)0)) : __ecereNameSpace__ecere__sys__CopyString(prop->name), __ecereInstance1->type = __ecereNameSpace__ecere__sys__CopyString(prop->dataTypeString), __ecereInstance1->isVirtual = 0, __ecereInstance1->memberAccess = def->memberAccess, __ecereInstance1->hasSet = propertyDef->setStmt ? 1 : 0, __ecereInstance1->hasGet = propertyDef->getStmt ? 1 : 0, __ecereInstance1->isWatchable = propertyDef->__anon1.isWatchable, __ecereInstance1;
2206 });
2207 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(&classDefine->propertiesAndMembers, propDefine);
2208 }
2209 }
2210 }
2211 else if(def->type == 10 && def->__anon1.propertyDef)
2212 {
2213 struct PropertyDef * propertyDef = def->__anon1.propertyDef;
2214
2215 {
2216 struct __ecereNameSpace__ecere__com__ClassProperty * prop;
2217 struct PropertyDefine * propDefine;
2218
2219 {
2220 char * dataTypeString = StringFromSpecDecl(propertyDef->specifiers, propertyDef->declarator);
2221
2222 prop = __ecereNameSpace__ecere__com__eClass_AddClassProperty(regClass, propertyDef->id->string, dataTypeString, propertyDef->setStmt, propertyDef->getStmt);
2223 (__ecereNameSpace__ecere__com__eSystem_Delete(dataTypeString), dataTypeString = 0);
2224 }
2225 if(prop)
2226 {
2227 propDefine = __extension__ ({
2228 struct PropertyDefine * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_PropertyDefine);
2229
2230 __ecereInstance1->name = __ecereNameSpace__ecere__sys__CopyString(prop->name), __ecereInstance1->type = __ecereNameSpace__ecere__sys__CopyString(prop->dataTypeString), __ecereInstance1->hasSet = propertyDef->setStmt ? 1 : 0, __ecereInstance1->hasGet = propertyDef->getStmt ? 1 : 0, __ecereInstance1;
2231 });
2232 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(&classDefine->classProperties, propDefine);
2233 }
2234 }
2235 }
2236 else if(def->type == 7)
2237 {
2238 if(classDefine)
2239 classDefine->fixed = 1;
2240 }
2241 else if(def->type == 6)
2242 {
2243 if(classDefine)
2244 classDefine->noExpansion = 1;
2245 }
2246 else if(def->type == 13)
2247 {
2248 struct __ecereNameSpace__ecere__com__DataMember * member;
2249 struct __ecereNameSpace__ecere__com__Property * prop;
2250
2251 if((prop = __ecereNameSpace__ecere__com__eClass_FindProperty(regClass, def->__anon1.__anon1.id->string, privateModule)))
2252 {
2253 struct PropertyDefine * propDefine;
2254
2255 prop = __ecereNameSpace__ecere__com__eClass_AddProperty(regClass, def->__anon1.__anon1.id->string, (((void *)0)), (((void *)0)), (((void *)0)), def->memberAccess);
2256 if(prop)
2257 {
2258 propDefine = __extension__ ({
2259 struct PropertyDefine * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_PropertyDefine);
2260
2261 __ecereInstance1->isProperty = 1, __ecereInstance1->name = __ecereNameSpace__ecere__sys__CopyString(prop->name), __ecereInstance1->memberAccess = def->memberAccess, __ecereInstance1;
2262 });
2263 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(&classDefine->propertiesAndMembers, propDefine);
2264 }
2265 }
2266 else if((member = __ecereNameSpace__ecere__com__eClass_FindDataMember(regClass, def->__anon1.__anon1.id->string, privateModule, (((void *)0)), (((void *)0)))))
2267 {
2268 struct DataMemberDefine * dataMemberDefine;
2269
2270 member = __ecereNameSpace__ecere__com__eClass_AddDataMember(regClass, def->__anon1.__anon1.id->string, (((void *)0)), 0, 0, def->memberAccess);
2271 dataMemberDefine = __extension__ ({
2272 struct DataMemberDefine * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_DataMemberDefine);
2273
2274 __ecereInstance1->isProperty = 3, __ecereInstance1->memberType = 0, __ecereInstance1->name = __ecereNameSpace__ecere__sys__CopyString(def->__anon1.__anon1.id->string), __ecereInstance1->memberAccess = def->memberAccess, __ecereInstance1;
2275 });
2276 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(&parentMemberDefine->dataMembers, dataMemberDefine);
2277 }
2278 }
2279 }
2280 }
2281 }
2282
2283 static void ProcessClass(int classType, struct __ecereNameSpace__ecere__sys__OldList * definitions, struct Symbol * symbol, struct __ecereNameSpace__ecere__sys__OldList * baseSpecs, struct __ecereNameSpace__ecere__sys__OldList * enumValues, unsigned int isWatchable, int declMode)
2284 {
2285 struct __ecereNameSpace__ecere__com__Class * regClass;
2286 struct ClassDef * def;
2287 struct ClassDefine * classDefine;
2288 char baseName[1024];
2289 unsigned int unitType = 0;
2290 unsigned int wouldBeEnum = 0;
2291 int inheritanceAccess = 1;
2292
2293 baseName[0] = '\0';
2294 if(baseSpecs != (((void *)0)))
2295 {
2296 struct Type * baseType = ProcessType(baseSpecs, (((void *)0)));
2297
2298 PrintType(baseType, baseName, 0, 1);
2299 if(baseType->kind == 8)
2300 {
2301 if(baseType->__anon1._class->__anon1.registered && classType == 0)
2302 {
2303 if(baseType->__anon1._class->__anon1.registered->type == 3)
2304 classType = 3;
2305 else if(baseType->__anon1._class->__anon1.registered->type == 2)
2306 classType = 2;
2307 else if(baseType->__anon1._class->__anon1.registered->type == 5)
2308 classType = 5;
2309 else if(baseType->__anon1._class->__anon1.registered->type == 4)
2310 {
2311 wouldBeEnum = 1;
2312 }
2313 }
2314 }
2315 else if(baseType->kind == 9 || baseType->kind == 10)
2316 {
2317 classType = 5;
2318 baseName[0] = '\0';
2319 }
2320 else
2321 unitType = 1;
2322 FreeType(baseType);
2323 if(((struct Specifier *)baseSpecs->first)->type == 0 && ((struct Specifier *)baseSpecs->first)->__anon1.specifier == PRIVATE)
2324 inheritanceAccess = 2;
2325 }
2326 if(classType == 0)
2327 {
2328 if(unitType)
2329 classType = 3;
2330 if(definitions != (((void *)0)))
2331 {
2332 for(def = definitions->first; def; def = def->next)
2333 {
2334 if(def->type == 2)
2335 {
2336 struct Declaration * decl = def->__anon1.decl;
2337
2338 if(decl->type == 0)
2339 {
2340 if(unitType)
2341 {
2342 classType = 2;
2343 break;
2344 }
2345 if(decl->__anon1.__anon1.declarators)
2346 {
2347 struct Declarator * d;
2348
2349 for(d = (*decl->__anon1.__anon1.declarators).first; d; d = d->next)
2350 {
2351 if(d->__anon1.structDecl.exp)
2352 {
2353 classType = 2;
2354 break;
2355 }
2356 }
2357 if(d)
2358 break;
2359 }
2360 }
2361 }
2362 }
2363 }
2364 }
2365 if(classType == 0 && wouldBeEnum)
2366 classType = 4;
2367 regClass = symbol->__anon1.registered = __ecereNameSpace__ecere__com__eSystem_RegisterClass((classType == 6) ? 1 : classType, symbol->string, baseName[0] ? baseName : (((void *)0)), 0, 0, (((void *)0)), (((void *)0)), privateModule, 1, inheritanceAccess);
2368 if(regClass)
2369 regClass->symbol = symbol;
2370 classDefine = __extension__ ({
2371 struct ClassDefine * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_ClassDefine);
2372
2373 __ecereInstance1->type = 1, __ecereInstance1->name = __ecereNameSpace__ecere__sys__CopyString(symbol->string), __ecereInstance1->base = baseName[0] ? __ecereNameSpace__ecere__sys__CopyString(baseName) : (((void *)0)), __ecereInstance1->isStatic = declMode == 3, __ecereInstance1->isRemote = symbol->isRemote, __ecereInstance1->isWatchable = isWatchable, __ecereInstance1;
2374 });
2375 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(&precompDefines, classDefine);
2376 if(classType == 6)
2377 {
2378 struct __ecereNameSpace__ecere__com__DataMember * unionMember = __ecereNameSpace__ecere__com__eMember_New(1, 1);
2379 struct DataMemberDefine * unionDefine;
2380
2381 unionDefine = __extension__ ({
2382 struct DataMemberDefine * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_DataMemberDefine);
2383
2384 __ecereInstance1->isProperty = 3, __ecereInstance1->memberType = 1, __ecereInstance1;
2385 });
2386 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(&classDefine->propertiesAndMembers, unionDefine);
2387 AddDefinitions(classDefine, unionDefine, regClass, unionMember, definitions);
2388 __ecereNameSpace__ecere__com__eClass_AddMember(regClass, unionMember);
2389 }
2390 else if(regClass)
2391 AddDefinitions(classDefine, (struct DataMemberDefine *)classDefine, regClass, (((void *)0)), definitions);
2392 if(definitions != (((void *)0)))
2393 {
2394 for(def = definitions->first; def; def = def->next)
2395 {
2396 if(def->type == 0)
2397 {
2398 struct ClassFunction * func = def->__anon1.function;
2399
2400 if(!func->dontMangle && func->declarator)
2401 {
2402 struct Identifier * id = GetDeclId(func->declarator);
2403 struct __ecereNameSpace__ecere__com__Method * method;
2404 struct MethodDefine * methodDefine;
2405
2406 {
2407 char * dataTypeString = StringFromSpecDecl(func->specifiers, func->declarator);
2408
2409 if(func->isVirtual)
2410 method = __ecereNameSpace__ecere__com__eClass_AddVirtualMethod(regClass, id->string, dataTypeString, func->declarator->symbol, def->memberAccess);
2411 else
2412 method = __ecereNameSpace__ecere__com__eClass_AddMethod(regClass, id->string, dataTypeString, func->declarator->symbol, def->memberAccess);
2413 (__ecereNameSpace__ecere__com__eSystem_Delete(dataTypeString), dataTypeString = 0);
2414 }
2415 if(method)
2416 {
2417 method->symbol = __extension__ ({
2418 struct Symbol * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol);
2419
2420 __ecereInstance1->string = __ecereNameSpace__ecere__sys__CopyString(func->declarator->symbol->string), __ecereInstance1->type = func->declarator->symbol->type, __ecereInstance1;
2421 });
2422 if(func->declarator->symbol->type)
2423 func->declarator->symbol->type->refCount++;
2424 ((struct Symbol *)method->symbol)->__anon1.method = method;
2425 func->declarator->symbol = (((void *)0));
2426 if(method->type != 1 || method->_class == regClass)
2427 {
2428 methodDefine = __extension__ ({
2429 struct MethodDefine * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_MethodDefine);
2430
2431 __ecereInstance1->name = __ecereNameSpace__ecere__sys__CopyString(method->name), __ecereInstance1->type = __ecereNameSpace__ecere__sys__CopyString(method->dataTypeString), __ecereInstance1->memberAccess = def->memberAccess, __ecereInstance1->isVirtual = method->type == 1, __ecereInstance1;
2432 });
2433 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(&classDefine->methods, methodDefine);
2434 }
2435 }
2436 }
2437 }
2438 else if(def->type == 13)
2439 {
2440 struct __ecereNameSpace__ecere__com__Method * method;
2441
2442 if((method = __ecereNameSpace__ecere__com__eClass_FindMethod(regClass, def->__anon1.__anon1.id->string, privateModule)))
2443 {
2444 struct MethodDefine * methodDefine;
2445
2446 method = __ecereNameSpace__ecere__com__eClass_AddMethod(regClass, def->__anon1.__anon1.id->string, (((void *)0)), (((void *)0)), def->memberAccess);
2447 methodDefine = __extension__ ({
2448 struct MethodDefine * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_MethodDefine);
2449
2450 __ecereInstance1->name = __ecereNameSpace__ecere__sys__CopyString(method->name), __ecereInstance1->memberAccess = def->memberAccess, __ecereInstance1;
2451 });
2452 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(&classDefine->methods, methodDefine);
2453 }
2454 }
2455 }
2456 }
2457 if(regClass && symbol->templateParams)
2458 {
2459 struct TemplateParameter * param;
2460
2461 for(param = (*symbol->templateParams).first; param; param = param->next)
2462 {
2463 struct __ecereNameSpace__ecere__com__ClassTemplateArgument defaultArg =
2464 {
2465
2466 .__anon1 = {
2467
2468 .__anon1 = {
2469 .dataTypeString = 0
2470 }
2471 }
2472 };
2473
2474 if(param->defaultArgument)
2475 {
2476 switch(param->type)
2477 {
2478 case 0:
2479 defaultArg.__anon1.__anon1.dataTypeString = StringFromSpecDecl(param->defaultArgument->__anon1.templateDatatype->specifiers, param->defaultArgument->__anon1.templateDatatype->decl);
2480 break;
2481 case 1:
2482 {
2483 char memberString[1024];
2484
2485 memberString[0] = '\0';
2486 if(param->defaultArgument->__anon1.identifier->_class && param->defaultArgument->__anon1.identifier->_class->__anon1.__anon1.name)
2487 {
2488 if(param->defaultArgument->__anon1.identifier->_class->type == 8)
2489 strcpy(memberString, param->defaultArgument->__anon1.identifier->_class->__anon1.templateParameter->identifier->string);
2490 else
2491 strcpy(memberString, param->defaultArgument->__anon1.identifier->_class->__anon1.__anon1.name);
2492 }
2493 if(memberString[0])
2494 {
2495 strcat(memberString, "::");
2496 }
2497 strcat(memberString, param->defaultArgument->__anon1.identifier->string);
2498 defaultArg.__anon1.__anon2.memberString = __ecereNameSpace__ecere__sys__CopyString(memberString);
2499 break;
2500 }
2501 case 2:
2502 {
2503 struct Operand op;
2504
2505 ProcessExpressionType(param->defaultArgument->__anon1.expression);
2506 ComputeExpression(param->defaultArgument->__anon1.expression);
2507 op = GetOperand(param->defaultArgument->__anon1.expression);
2508 defaultArg.__anon1.expression.__anon1.ui64 = op.__anon1.ui64;
2509 break;
2510 }
2511 }
2512 }
2513 if(param->type == 1)
2514 {
2515 __ecereNameSpace__ecere__com__eClass_AddTemplateParameter(regClass, param->identifier->string, param->type, (void *)(uintptr_t)param->__anon1.memberType, &defaultArg);
2516 }
2517 else
2518 {
2519 char * typeString = param->__anon1.dataType ? StringFromSpecDecl(param->__anon1.dataType->specifiers, param->__anon1.dataType->decl) : (((void *)0));
2520
2521 __ecereNameSpace__ecere__com__eClass_AddTemplateParameter(regClass, param->identifier->string, param->type, typeString, &defaultArg);
2522 }
2523 }
2524 }
2525 }
2526
2527 void PreCompPreProcessClassDefinitions()
2528 {
2529 struct __ecereNameSpace__ecere__sys__OldList * ast = GetAST();
2530 struct External * external, * next;
2531
2532 for(external = (*ast).first; external; external = next)
2533 {
2534 next = external->next;
2535 if(external->type == 2)
2536 {
2537 struct ClassDefinition * _class = external->__anon1._class;
2538
2539 if(_class->declMode == 1 || _class->declMode == 2 || _class->declMode == 3)
2540 {
2541 if(_class->definitions)
2542 {
2543 ProcessClass(0, _class->definitions, _class->symbol, _class->baseSpecs, (((void *)0)), _class->deleteWatchable, _class->declMode);
2544 }
2545 }
2546 }
2547 else if(external->type == 1)
2548 {
2549 struct Declaration * declaration = external->__anon1.declaration;
2550
2551 if(declaration->type == 1)
2552 {
2553 if(external->__anon1.declaration->declMode == 1 || external->__anon1.declaration->declMode == 2 || external->__anon1.declaration->declMode == 3)
2554 {
2555 if(declaration->__anon1.__anon1.specifiers)
2556 {
2557 struct Specifier * specifier;
2558
2559 for(specifier = (*declaration->__anon1.__anon1.specifiers).first; specifier; specifier = specifier->next)
2560 {
2561 if((specifier->type == 2 || specifier->type == 3 || specifier->type == 4) && specifier->__anon1.__anon2.id && specifier->__anon1.__anon2.id->string && (declaration->declMode || specifier->__anon1.__anon2.baseSpecs || (specifier->type == 2 && specifier->__anon1.__anon2.definitions)))
2562 {
2563 struct Symbol * symbol = FindClass(specifier->__anon1.__anon2.id->string);
2564
2565 if(symbol)
2566 {
2567 int classType;
2568
2569 if(specifier->type == 2)
2570 classType = 4;
2571 else if(specifier->type == 4)
2572 classType = 6;
2573 else
2574 classType = 1;
2575 ProcessClass(classType, specifier->__anon1.__anon2.definitions, symbol, specifier->__anon1.__anon2.baseSpecs, specifier->__anon1.__anon2.list, 0, external->__anon1.declaration->declMode);
2576 }
2577 }
2578 }
2579 }
2580 if(external->__anon1.declaration->declMode == 1 || external->__anon1.declaration->declMode == 2)
2581 {
2582 if(declaration->__anon1.__anon1.declarators)
2583 {
2584 struct InitDeclarator * d;
2585
2586 for(d = (*declaration->__anon1.__anon1.declarators).first; d; d = d->next)
2587 {
2588 if(d->declarator)
2589 {
2590 struct Symbol * symbol = d->declarator->symbol;
2591
2592 if(symbol)
2593 {
2594 struct DataDefine * dataDefine;
2595 char typeString[1024];
2596
2597 typeString[0] = '\0';
2598 PrintType(symbol->type, typeString, 0, 1);
2599 dataDefine = __extension__ ({
2600 struct DataDefine * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_DataDefine);
2601
2602 __ecereInstance1->type = 4, __ecereInstance1->name = __ecereNameSpace__ecere__sys__CopyString(symbol->string), __ecereInstance1->dataType = __ecereNameSpace__ecere__sys__CopyString(typeString), __ecereInstance1;
2603 });
2604 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(&precompDefines, dataDefine);
2605 }
2606 }
2607 }
2608 }
2609 }
2610 }
2611 }
2612 else if(declaration->type == 2)
2613 {
2614 if(external->__anon1.declaration->declMode == 1 || external->__anon1.declaration->declMode == 2)
2615 {
2616 struct Symbol * symbol = declaration->__anon1.inst->symbol;
2617
2618 if(symbol)
2619 {
2620 struct DataDefine * dataDefine;
2621 char typeString[1024];
2622
2623 typeString[0] = '\0';
2624 PrintType(symbol->type, typeString, 0, 1);
2625 dataDefine = __extension__ ({
2626 struct DataDefine * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_DataDefine);
2627
2628 __ecereInstance1->type = 4, __ecereInstance1->name = __ecereNameSpace__ecere__sys__CopyString(symbol->string), __ecereInstance1->dataType = __ecereNameSpace__ecere__sys__CopyString(typeString), __ecereInstance1;
2629 });
2630 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(&precompDefines, dataDefine);
2631 }
2632 }
2633 globalInstance = 1;
2634 }
2635 else if(declaration->type == 3)
2636 {
2637 if(external->__anon1.declaration->declMode == 1 || external->__anon1.declaration->declMode == 2)
2638 {
2639 struct Define * definition = (definition = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Define), definition->type = 2, definition->name = __ecereNameSpace__ecere__sys__CopyString(declaration->__anon1.__anon2.id->string), definition->exp = declaration->__anon1.__anon2.exp, definition);
2640
2641 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(&precompDefines, definition);
2642 }
2643 }
2644 }
2645 else if(external->type == 0 && (external->__anon1.function->declMode == 1 || external->__anon1.function->declMode == 2))
2646 {
2647 struct FunctionDefinition * function = external->__anon1.function;
2648 struct FunctionDefine * functionDefine;
2649 char typeString[1024];
2650
2651 typeString[0] = '\0';
2652 PrintType(function->declarator->symbol->type, typeString, 1, 1);
2653 functionDefine = __extension__ ({
2654 struct FunctionDefine * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_FunctionDefine);
2655
2656 __ecereInstance1->type = 3, __ecereInstance1->name = __ecereNameSpace__ecere__sys__CopyString(function->declarator->symbol->string), __ecereInstance1->dataType = __ecereNameSpace__ecere__sys__CopyString(typeString), __ecereInstance1;
2657 });
2658 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(&precompDefines, functionDefine);
2659 }
2660 else if(external->type == 4)
2661 {
2662 SetCurrentNameSpace(external->__anon1.id->string);
2663 }
2664 }
2665 ComputeModuleClasses(privateModule);
2666 for(external = (*ast).first; external; external = next)
2667 {
2668 next = external->next;
2669 if(external->type == 1 && (external->__anon1.declaration->declMode == 1 || external->__anon1.declaration->declMode == 2))
2670 {
2671 struct Declaration * declaration = external->__anon1.declaration;
2672
2673 if(declaration->type == 1)
2674 {
2675 if(declaration->__anon1.__anon1.specifiers)
2676 {
2677 struct Specifier * specifier;
2678
2679 for(specifier = (*declaration->__anon1.__anon1.specifiers).first; specifier; specifier = specifier->next)
2680 {
2681 if((specifier->type == 2) && specifier->__anon1.__anon2.id && specifier->__anon1.__anon2.id->string && (declaration->declMode || specifier->__anon1.__anon2.baseSpecs || (specifier->type == 2 && specifier->__anon1.__anon2.definitions)))
2682 {
2683 struct Symbol * symbol = FindClass(specifier->__anon1.__anon2.id->string);
2684
2685 if(symbol)
2686 {
2687 ProcessClassEnumValues(4, specifier->__anon1.__anon2.definitions, symbol, specifier->__anon1.__anon2.baseSpecs, specifier->__anon1.__anon2.list);
2688 }
2689 }
2690 }
2691 }
2692 }
2693 }
2694 }
2695 }
2696
2697 void __ecereMethod_PrecompApp_Main(struct __ecereNameSpace__ecere__com__Instance * this)
2698 {
2699 int c;
2700 unsigned int valid = 1;
2701 char defaultSymFile[797];
2702 char * cppCommand = (((void *)0));
2703 char * cppOptions = (((void *)0));
2704 int cppOptionsLen = 0;
2705 int targetPlatform = __runtimePlatform;
2706 int targetBits = GetHostBits();
2707
2708 for(c = 1; c < ((struct __ecereNameSpace__ecere__com__Application *)(((char *)this + sizeof(struct __ecereNameSpace__ecere__com__Module) + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->argc; c++)
2709 {
2710 const char * arg = ((struct __ecereNameSpace__ecere__com__Application *)(((char *)this + sizeof(struct __ecereNameSpace__ecere__com__Module) + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->argv[c];
2711
2712 if(arg[0] == '-')
2713 {
2714 if(!strcmp(arg + 1, "m32") || !strcmp(arg + 1, "m64"))
2715 {
2716 int newLen = cppOptionsLen + 1 + strlen(arg);
2717
2718 cppOptions = __ecereNameSpace__ecere__com__eSystem_Renew(cppOptions, sizeof(char) * (newLen + 1));
2719 cppOptions[cppOptionsLen] = ' ';
2720 strcpy(cppOptions + cppOptionsLen + 1, arg);
2721 cppOptionsLen = newLen;
2722 targetBits = !strcmp(arg + 1, "m32") ? 32 : 64;
2723 }
2724 else if(!strcmp(arg + 1, "t32") || !strcmp(arg + 1, "t64"))
2725 {
2726 targetBits = !strcmp(arg + 1, "t32") ? 32 : 64;
2727 }
2728 else if(arg[1] == 'D' || arg[1] == 'I')
2729 {
2730 char * buf;
2731 int size = cppOptionsLen + 1 + strlen(arg) * 2 + 1;
2732
2733 cppOptions = __ecereNameSpace__ecere__com__eSystem_Renew(cppOptions, sizeof(char) * (size));
2734 buf = cppOptions + cppOptionsLen;
2735 *buf++ = ' ';
2736 PassArg(buf, arg);
2737 cppOptionsLen = cppOptionsLen + 1 + strlen(buf);
2738 }
2739 else if(!strcmp(arg + 1, "t"))
2740 {
2741 if(++c < ((struct __ecereNameSpace__ecere__com__Application *)(((char *)this + sizeof(struct __ecereNameSpace__ecere__com__Module) + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->argc)
2742 targetPlatform = __ecereProp___ecereNameSpace__ecere__com__Platform_Set_char__PTR_(((struct __ecereNameSpace__ecere__com__Application *)(((char *)this + sizeof(struct __ecereNameSpace__ecere__com__Module) + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->argv[c]);
2743 else
2744 valid = 0;
2745 }
2746 else if(!strcmp(arg + 1, "cpp"))
2747 {
2748 if(++c < ((struct __ecereNameSpace__ecere__com__Application *)(((char *)this + sizeof(struct __ecereNameSpace__ecere__com__Module) + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->argc)
2749 cppCommand = __ecereNameSpace__ecere__sys__CopyString(((struct __ecereNameSpace__ecere__com__Application *)(((char *)this + sizeof(struct __ecereNameSpace__ecere__com__Module) + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->argv[c]);
2750 else
2751 valid = 0;
2752 }
2753 else if(!strcmp(arg + 1, "o"))
2754 {
2755 if(!GetOutputFile() && c + 1 < ((struct __ecereNameSpace__ecere__com__Application *)(((char *)this + sizeof(struct __ecereNameSpace__ecere__com__Module) + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->argc)
2756 {
2757 SetOutputFile(((struct __ecereNameSpace__ecere__com__Application *)(((char *)this + sizeof(struct __ecereNameSpace__ecere__com__Module) + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->argv[c + 1]);
2758 c++;
2759 }
2760 else
2761 valid = 0;
2762 }
2763 else if(!strcmp(arg + 1, "c"))
2764 {
2765 if(!GetSourceFile() && c + 1 < ((struct __ecereNameSpace__ecere__com__Application *)(((char *)this + sizeof(struct __ecereNameSpace__ecere__com__Module) + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->argc)
2766 {
2767 SetSourceFile(((struct __ecereNameSpace__ecere__com__Application *)(((char *)this + sizeof(struct __ecereNameSpace__ecere__com__Module) + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->argv[c + 1]);
2768 c++;
2769 }
2770 else
2771 valid = 0;
2772 }
2773 else if(!strcmp(arg + 1, "isystem") || !strcmp(arg + 1, "isysroot"))
2774 {
2775 if(c + 1 < ((struct __ecereNameSpace__ecere__com__Application *)(((char *)this + sizeof(struct __ecereNameSpace__ecere__com__Module) + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->argc)
2776 {
2777 char * buf;
2778 const char * arg1 = ((struct __ecereNameSpace__ecere__com__Application *)(((char *)this + sizeof(struct __ecereNameSpace__ecere__com__Module) + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->argv[++c];
2779 int size = cppOptionsLen + 1 + strlen(arg) * 2 + strlen(arg1) * 2 + 1;
2780
2781 cppOptions = __ecereNameSpace__ecere__com__eSystem_Renew(cppOptions, sizeof(char) * (size));
2782 buf = cppOptions + cppOptionsLen;
2783 *buf++ = ' ';
2784 buf = PassArg(buf, arg);
2785 *buf++ = ' ';
2786 buf = PassArg(buf, arg1);
2787 cppOptionsLen = buf - cppOptions;
2788 }
2789 else
2790 valid = 0;
2791 }
2792 else if(!strcmp(arg + 1, "fno-diagnostics-show-caret"))
2793 {
2794 char * buf;
2795 int size = cppOptionsLen + 1 + strlen(arg) * 2 + 1;
2796
2797 cppOptions = __ecereNameSpace__ecere__com__eSystem_Renew(cppOptions, sizeof(char) * (size));
2798 buf = cppOptions + cppOptionsLen;
2799 *buf++ = ' ';
2800 PassArg(buf, arg);
2801 cppOptionsLen = cppOptionsLen + 1 + strlen(buf);
2802 }
2803 else if(!strcmp(arg + 1, "symbols"))
2804 {
2805 if(c + 1 < ((struct __ecereNameSpace__ecere__com__Application *)(((char *)this + sizeof(struct __ecereNameSpace__ecere__com__Module) + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->argc)
2806 {
2807 SetSymbolsDir(((struct __ecereNameSpace__ecere__com__Application *)(((char *)this + sizeof(struct __ecereNameSpace__ecere__com__Module) + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->argv[c + 1]);
2808 c++;
2809 }
2810 else
2811 valid = 0;
2812 }
2813 else if(!strcmp(arg + 1, "defaultns"))
2814 {
2815 if(c + 1 < ((struct __ecereNameSpace__ecere__com__Application *)(((char *)this + sizeof(struct __ecereNameSpace__ecere__com__Module) + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->argc)
2816 {
2817 SetDefaultNameSpace(((struct __ecereNameSpace__ecere__com__Application *)(((char *)this + sizeof(struct __ecereNameSpace__ecere__com__Module) + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->argv[c + 1]);
2818 c++;
2819 }
2820 else
2821 valid = 0;
2822 }
2823 else if(!strcmp(arg + 1, "strictns"))
2824 {
2825 SetStrictNameSpaces(1);
2826 }
2827 else if(!strcmp(arg + 1, "module"))
2828 {
2829 if(c + 1 < ((struct __ecereNameSpace__ecere__com__Application *)(((char *)this + sizeof(struct __ecereNameSpace__ecere__com__Module) + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->argc)
2830 {
2831 SetI18nModuleName(((struct __ecereNameSpace__ecere__com__Application *)(((char *)this + sizeof(struct __ecereNameSpace__ecere__com__Module) + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->argv[c + 1]);
2832 c++;
2833 }
2834 else
2835 valid = 0;
2836 }
2837 }
2838 else
2839 valid = 0;
2840 }
2841 if(valid)
2842 {
2843 if(!cppCommand)
2844 cppCommand = __ecereNameSpace__ecere__sys__CopyString("gcc");
2845 if(!GetSourceFile())
2846 valid = 0;
2847 else if(!GetOutputFile())
2848 {
2849 strcpy(defaultSymFile, GetSymbolsDir());
2850 __ecereNameSpace__ecere__sys__PathCat(defaultSymFile, GetSourceFile());
2851 __ecereNameSpace__ecere__sys__ChangeExtension(defaultSymFile, "sym", defaultSymFile);
2852 SetOutputFile(defaultSymFile);
2853 }
2854 }
2855 if(!valid)
2856 {
2857 printf("%s", __ecereNameSpace__ecere__GetTranslatedString("ecp", "Syntax:\n   ecp [-t <target platform>] [-cpp <c preprocessor>] [-o <output>] [-symbols <outputdir>] [-I<includedir>]* [-isystem <sysincludedir>]* [-D<definition>]* -c <input>\n", (((void *)0))));
2858 }
2859 else
2860 {
2861 struct __ecereNameSpace__ecere__com__Instance * cppOutput;
2862 char command[3075];
2863
2864 SetGlobalData(&globalData);
2865 SetExcludedSymbols(&_excludedSymbols);
2866 SetGlobalContext(globalContext);
2867 SetCurrentContext(globalContext);
2868 SetTopContext(globalContext);
2869 SetDefines(&defines);
2870 SetImports(&imports);
2871 SetInPreCompiler(1);
2872 SetPrecompDefines(&precompDefines);
2873 SetTargetPlatform(targetPlatform);
2874 SetTargetBits(targetBits);
2875 SetEchoOn(0);
2876 privateModule = (struct __ecereNameSpace__ecere__com__Instance *)__ecereNameSpace__ecere__com____ecere_COM_Initialize((unsigned int)(1 | (targetBits == sizeof(uintptr_t) * 8 ? (unsigned int)0 : targetBits == 64 ? 2 : targetBits == 32 ? 4 : (unsigned int)0) | 8), 1, (((void *)0)));
2877 SetPrivateModule(privateModule);
2878 __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Add(&globalContext->types, (struct __ecereNameSpace__ecere__sys__BTNode *)__extension__ ({
2879 struct Symbol * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol);
2880
2881 __ecereInstance1->string = __ecereNameSpace__ecere__sys__CopyString("uint"), __ecereInstance1->type = ProcessTypeString("unsigned int", 0), __ecereInstance1;
2882 }));
2883 __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Add(&globalContext->types, (struct __ecereNameSpace__ecere__sys__BTNode *)__extension__ ({
2884 struct Symbol * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol);
2885
2886 __ecereInstance1->string = __ecereNameSpace__ecere__sys__CopyString("uint64"), __ecereInstance1->type = ProcessTypeString("unsigned int64", 0), __ecereInstance1;
2887 }));
2888 __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Add(&globalContext->types, (struct __ecereNameSpace__ecere__sys__BTNode *)__extension__ ({
2889 struct Symbol * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol);
2890
2891 __ecereInstance1->string = __ecereNameSpace__ecere__sys__CopyString("uint32"), __ecereInstance1->type = ProcessTypeString("unsigned int", 0), __ecereInstance1;
2892 }));
2893 __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Add(&globalContext->types, (struct __ecereNameSpace__ecere__sys__BTNode *)__extension__ ({
2894 struct Symbol * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol);
2895
2896 __ecereInstance1->string = __ecereNameSpace__ecere__sys__CopyString("uint16"), __ecereInstance1->type = ProcessTypeString("unsigned short", 0), __ecereInstance1;
2897 }));
2898 __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Add(&globalContext->types, (struct __ecereNameSpace__ecere__sys__BTNode *)__extension__ ({
2899 struct Symbol * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol);
2900
2901 __ecereInstance1->string = __ecereNameSpace__ecere__sys__CopyString("byte"), __ecereInstance1->type = ProcessTypeString("unsigned char", 0), __ecereInstance1;
2902 }));
2903 __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Add(&globalContext->types, (struct __ecereNameSpace__ecere__sys__BTNode *)__extension__ ({
2904 struct Symbol * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol);
2905
2906 __ecereInstance1->string = __ecereNameSpace__ecere__sys__CopyString("intptr_t"), __ecereInstance1->type = ProcessTypeString("intptr", 0), __ecereInstance1;
2907 }));
2908 __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Add(&globalContext->types, (struct __ecereNameSpace__ecere__sys__BTNode *)__extension__ ({
2909 struct Symbol * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol);
2910
2911 __ecereInstance1->string = __ecereNameSpace__ecere__sys__CopyString("uintptr_t"), __ecereInstance1->type = ProcessTypeString("uintptr", 0), __ecereInstance1;
2912 }));
2913 __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Add(&globalContext->types, (struct __ecereNameSpace__ecere__sys__BTNode *)__extension__ ({
2914 struct Symbol * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol);
2915
2916 __ecereInstance1->string = __ecereNameSpace__ecere__sys__CopyString("ssize_t"), __ecereInstance1->type = ProcessTypeString("intsize", 0), __ecereInstance1;
2917 }));
2918 __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Add(&globalContext->types, (struct __ecereNameSpace__ecere__sys__BTNode *)__extension__ ({
2919 struct Symbol * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol);
2920
2921 __ecereInstance1->string = __ecereNameSpace__ecere__sys__CopyString("size_t"), __ecereInstance1->type = ProcessTypeString("uintsize", 0), __ecereInstance1;
2922 }));
2923 {
2924 const char * outputFilePath = GetOutputFile();
2925
2926 if(__ecereNameSpace__ecere__sys__FileExists(outputFilePath))
2927 __ecereNameSpace__ecere__sys__DeleteFile(outputFilePath);
2928 }
2929 snprintf(command, sizeof (command), "%s%s -x c -E \"%s\"", cppCommand, cppOptions ? cppOptions : "", GetSourceFile());
2930 command[sizeof (command) - 1] = (char)0;
2931 if((cppOutput = __ecereNameSpace__ecere__sys__DualPipeOpen((((unsigned int)(1))), command)))
2932 {
2933 int exitCode;
2934 struct __ecereNameSpace__ecere__sys__OldList * ast;
2935 struct __ecereNameSpace__ecere__com__Instance * fileInput = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass___ecereNameSpace__ecere__sys__TempFile);
2936 struct ModuleImport * mainModule = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_ModuleImport);
2937
2938 SetFileInput(fileInput);
2939 SetMainModule(mainModule);
2940 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(&imports, mainModule);
2941 resetScanner();
2942 for(; !((unsigned int (*)(struct __ecereNameSpace__ecere__com__Instance *))__extension__ ({
2943 struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = cppOutput;
2944
2945 __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__sys__DualPipe->_vTbl;
2946 })[__ecereVMethodID___ecereNameSpace__ecere__sys__File_Eof])(cppOutput); )
2947 {
2948 char junk[4096];
2949 int count = ((int (*)(struct __ecereNameSpace__ecere__com__Instance *, void *  buffer, unsigned int size, unsigned int count))__extension__ ({
2950 struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = cppOutput;
2951
2952 __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__sys__DualPipe->_vTbl;
2953 })[__ecereVMethodID___ecereNameSpace__ecere__sys__File_Read])(cppOutput, junk, 1, 4096);
2954
2955 ((int (*)(struct __ecereNameSpace__ecere__com__Instance *, const void *  buffer, unsigned int size, unsigned int count))__extension__ ({
2956 struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = fileInput;
2957
2958 __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__sys__TempFile->_vTbl;
2959 })[__ecereVMethodID___ecereNameSpace__ecere__sys__File_Write])(fileInput, junk, 1, count);
2960 }
2961 exitCode = __ecereMethod___ecereNameSpace__ecere__sys__DualPipe_GetExitCode(cppOutput);
2962 (__ecereNameSpace__ecere__com__eInstance_DecRef(cppOutput), cppOutput = 0);
2963 ((unsigned int (*)(struct __ecereNameSpace__ecere__com__Instance *, int pos, int mode))__extension__ ({
2964 struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = fileInput;
2965
2966 __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__sys__TempFile->_vTbl;
2967 })[__ecereVMethodID___ecereNameSpace__ecere__sys__File_Seek])(fileInput, 0, 0);
2968 ParseEc();
2969 SetCurrentNameSpace((((void *)0)));
2970 SetYydebug(0);
2971 (__ecereNameSpace__ecere__com__eInstance_DecRef(fileInput), fileInput = 0);
2972 SetFileInput((((void *)0)));
2973 ast = GetAST();
2974 if(!exitCode)
2975 {
2976 if(ast)
2977 {
2978 ProcessDBTableDefinitions();
2979 PreCompPreProcessClassDefinitions();
2980 }
2981 if(!((struct __ecereNameSpace__ecere__com__Application *)(((char *)this + sizeof(struct __ecereNameSpace__ecere__com__Module) + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->exitCode)
2982 OutputSymbols(GetOutputFile());
2983 }
2984 else
2985 ((struct __ecereNameSpace__ecere__com__Application *)(((char *)this + sizeof(struct __ecereNameSpace__ecere__com__Module) + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->exitCode = exitCode;
2986 if(ast)
2987 {
2988 FreeASTTree(ast);
2989 }
2990 }
2991 FreeContext(globalContext);
2992 FreeExcludedSymbols(&_excludedSymbols);
2993 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Free(&defines, (void *)(FreeModuleDefine));
2994 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Free(&imports, (void *)(FreeModuleImport));
2995 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Free(&precompDefines, (void *)(FreeDefinition));
2996 FreeTypeData(privateModule);
2997 FreeIncludeFiles();
2998 FreeGlobalData(&globalData);
2999 (__ecereNameSpace__ecere__com__eInstance_DecRef(privateModule), privateModule = 0);
3000 }
3001 (__ecereNameSpace__ecere__com__eSystem_Delete(cppCommand), cppCommand = 0);
3002 (__ecereNameSpace__ecere__com__eSystem_Delete(cppOptions), cppOptions = 0);
3003 SetSymbolsDir((((void *)0)));
3004 }
3005
3006 void __ecereRegisterModule_ecp(struct __ecereNameSpace__ecere__com__Instance * module)
3007 {
3008 struct __ecereNameSpace__ecere__com__Class __attribute__((unused)) * class;
3009
3010 class = __ecereNameSpace__ecere__com__eSystem_RegisterClass(5, "ClassDefine", "Definition", sizeof(struct ClassDefine), 0, (void *)0, (void *)0, module, 2, 1);
3011 if(((struct __ecereNameSpace__ecere__com__Module *)(((char *)module + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->application == ((struct __ecereNameSpace__ecere__com__Module *)(((char *)__thisModule + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->application && class)
3012 __ecereClass_ClassDefine = class;
3013 __ecereNameSpace__ecere__com__eClass_AddDataMember(class, "base", "char *", sizeof(void *), 0xF000F000, 1);
3014 __ecereNameSpace__ecere__com__eClass_AddDataMember(class, "propertiesAndMembers", "ecere::sys::OldList", sizeof(struct __ecereNameSpace__ecere__sys__OldList), 0xF000F000, 1);
3015 __ecereNameSpace__ecere__com__eClass_AddDataMember(class, "classProperties", "ecere::sys::OldList", sizeof(struct __ecereNameSpace__ecere__sys__OldList), 0xF000F000, 1);
3016 __ecereNameSpace__ecere__com__eClass_AddDataMember(class, "methods", "ecere::sys::OldList", sizeof(struct __ecereNameSpace__ecere__sys__OldList), 0xF000F000, 1);
3017 __ecereNameSpace__ecere__com__eClass_AddDataMember(class, "isRemote", "bool", 4, 4, 1);
3018 __ecereNameSpace__ecere__com__eClass_AddDataMember(class, "isWatchable", "bool", 4, 4, 1);
3019 __ecereNameSpace__ecere__com__eClass_AddDataMember(class, "fixed", "bool", 4, 4, 1);
3020 __ecereNameSpace__ecere__com__eClass_AddDataMember(class, "isStatic", "bool", 4, 4, 1);
3021 __ecereNameSpace__ecere__com__eClass_AddDataMember(class, "noExpansion", "bool", 4, 4, 1);
3022 class = __ecereNameSpace__ecere__com__eSystem_RegisterClass(5, "Define", "Definition", sizeof(struct Define), 0, (void *)0, (void *)0, module, 2, 1);
3023 if(((struct __ecereNameSpace__ecere__com__Module *)(((char *)module + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->application == ((struct __ecereNameSpace__ecere__com__Module *)(((char *)__thisModule + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->application && class)
3024 __ecereClass_Define = class;
3025 __ecereNameSpace__ecere__com__eClass_AddDataMember(class, "exp", "Expression", sizeof(void *), 0xF000F000, 1);
3026 class = __ecereNameSpace__ecere__com__eSystem_RegisterClass(5, "FunctionDefine", "Definition", sizeof(struct FunctionDefine), 0, (void *)0, (void *)0, module, 2, 1);
3027 if(((struct __ecereNameSpace__ecere__com__Module *)(((char *)module + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->application == ((struct __ecereNameSpace__ecere__com__Module *)(((char *)__thisModule + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->application && class)
3028 __ecereClass_FunctionDefine = class;
3029 __ecereNameSpace__ecere__com__eClass_AddDataMember(class, "dataType", "char *", sizeof(void *), 0xF000F000, 1);
3030 class = __ecereNameSpace__ecere__com__eSystem_RegisterClass(5, "DataDefine", "Definition", sizeof(struct DataDefine), 0, (void *)0, (void *)0, module, 2, 1);
3031 if(((struct __ecereNameSpace__ecere__com__Module *)(((char *)module + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->application == ((struct __ecereNameSpace__ecere__com__Module *)(((char *)__thisModule + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->application && class)
3032 __ecereClass_DataDefine = class;
3033 __ecereNameSpace__ecere__com__eClass_AddDataMember(class, "dataType", "char *", sizeof(void *), 0xF000F000, 1);
3034 class = __ecereNameSpace__ecere__com__eSystem_RegisterClass(5, "MethodDefine", 0, sizeof(struct MethodDefine), 0, (void *)0, (void *)0, module, 2, 1);
3035 if(((struct __ecereNameSpace__ecere__com__Module *)(((char *)module + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->application == ((struct __ecereNameSpace__ecere__com__Module *)(((char *)__thisModule + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->application && class)
3036 __ecereClass_MethodDefine = class;
3037 class = __ecereNameSpace__ecere__com__eSystem_RegisterClass(5, "PropertyDefine", 0, sizeof(struct PropertyDefine), 0, (void *)0, (void *)0, module, 2, 1);
3038 if(((struct __ecereNameSpace__ecere__com__Module *)(((char *)module + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->application == ((struct __ecereNameSpace__ecere__com__Module *)(((char *)__thisModule + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->application && class)
3039 __ecereClass_PropertyDefine = class;
3040 class = __ecereNameSpace__ecere__com__eSystem_RegisterClass(5, "DataMemberDefine", 0, sizeof(struct DataMemberDefine), 0, (void *)0, (void *)0, module, 2, 1);
3041 if(((struct __ecereNameSpace__ecere__com__Module *)(((char *)module + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->application == ((struct __ecereNameSpace__ecere__com__Module *)(((char *)__thisModule + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->application && class)
3042 __ecereClass_DataMemberDefine = class;
3043 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("FreeMethodDefine", "void FreeMethodDefine(MethodDefine method)", FreeMethodDefine, module, 2);
3044 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("FreeDataMemberDefine", "void FreeDataMemberDefine(DataMemberDefine dataMember)", FreeDataMemberDefine, module, 2);
3045 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("FreeDataDefine", "void FreeDataDefine(DataDefine data)", FreeDataDefine, module, 2);
3046 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("FreeDefinition", "void FreeDefinition(Definition definition)", FreeDefinition, module, 2);
3047 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("PreCompPreProcessClassDefinitions", "void PreCompPreProcessClassDefinitions(void)", PreCompPreProcessClassDefinitions, module, 2);
3048 class = __ecereNameSpace__ecere__com__eSystem_RegisterClass(0, "PrecompApp", "ecere::com::Application", 0, 0, (void *)0, (void *)0, module, 2, 1);
3049 if(((struct __ecereNameSpace__ecere__com__Module *)(((char *)module + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->application == ((struct __ecereNameSpace__ecere__com__Module *)(((char *)__thisModule + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->application && class)
3050 __ecereClass_PrecompApp = class;
3051 __ecereNameSpace__ecere__com__eClass_AddMethod(class, "Main", 0, __ecereMethod_PrecompApp_Main, 1);
3052 }
3053