compiler/libec: (#307, #70) Warning on undeclared class; Overriding namespaces
[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 } __attribute__ ((gcc_struct));
1257
1258 struct __ecereNameSpace__ecere__com__ClassTemplateParameter;
1259
1260 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);
1261
1262 struct __ecereNameSpace__ecere__com__ClassTemplateParameter
1263 {
1264 struct __ecereNameSpace__ecere__com__ClassTemplateParameter * prev;
1265 struct __ecereNameSpace__ecere__com__ClassTemplateParameter * next;
1266 const char *  name;
1267 int type;
1268 union
1269 {
1270 const char *  dataTypeString;
1271 int memberType;
1272 } __attribute__ ((gcc_struct)) __anon1;
1273 struct __ecereNameSpace__ecere__com__ClassTemplateArgument defaultArg;
1274 void *  param;
1275 } __attribute__ ((gcc_struct));
1276
1277 void __ecereMethod_PrecompApp_Main(struct __ecereNameSpace__ecere__com__Instance *  this);
1278
1279 struct Specifier;
1280
1281 struct Declarator
1282 {
1283 struct Declarator * prev;
1284 struct Declarator * next;
1285 struct Location loc;
1286 int type;
1287 struct Symbol * symbol;
1288 struct Declarator * declarator;
1289 union
1290 {
1291 struct Identifier * identifier;
1292 struct
1293 {
1294 struct Expression * exp;
1295 struct Expression * posExp;
1296 struct Attrib * attrib;
1297 } __attribute__ ((gcc_struct)) structDecl;
1298 struct
1299 {
1300 struct Expression * exp;
1301 struct Specifier * enumClass;
1302 } __attribute__ ((gcc_struct)) array;
1303 struct
1304 {
1305 struct __ecereNameSpace__ecere__sys__OldList * parameters;
1306 } __attribute__ ((gcc_struct)) function;
1307 struct
1308 {
1309 struct __ecereNameSpace__ecere__com__Instance * pointer;
1310 } __attribute__ ((gcc_struct)) pointer;
1311 struct
1312 {
1313 struct ExtDecl * extended;
1314 } __attribute__ ((gcc_struct)) extended;
1315 } __attribute__ ((gcc_struct)) __anon1;
1316 } __attribute__ ((gcc_struct));
1317
1318 struct Identifier
1319 {
1320 struct Identifier * prev;
1321 struct Identifier * next;
1322 struct Location loc;
1323 struct Symbol * classSym;
1324 struct Specifier * _class;
1325 char *  string;
1326 struct Identifier * badID;
1327 } __attribute__ ((gcc_struct));
1328
1329 struct Expression
1330 {
1331 struct Expression * prev;
1332 struct Expression * next;
1333 struct Location loc;
1334 int type;
1335 union
1336 {
1337 struct
1338 {
1339 char *  constant;
1340 struct Identifier * identifier;
1341 } __attribute__ ((gcc_struct)) __anon1;
1342 struct Statement * compound;
1343 struct Instantiation * instance;
1344 struct
1345 {
1346 char *  string;
1347 unsigned int intlString;
1348 unsigned int wideString;
1349 } __attribute__ ((gcc_struct)) __anon2;
1350 struct __ecereNameSpace__ecere__sys__OldList *  list;
1351 struct
1352 {
1353 struct __ecereNameSpace__ecere__sys__OldList * specifiers;
1354 struct Declarator * decl;
1355 } __attribute__ ((gcc_struct)) _classExp;
1356 struct
1357 {
1358 struct Identifier * id;
1359 } __attribute__ ((gcc_struct)) classData;
1360 struct
1361 {
1362 struct Expression * exp;
1363 struct __ecereNameSpace__ecere__sys__OldList * arguments;
1364 struct Location argLoc;
1365 } __attribute__ ((gcc_struct)) call;
1366 struct
1367 {
1368 struct Expression * exp;
1369 struct __ecereNameSpace__ecere__sys__OldList * index;
1370 } __attribute__ ((gcc_struct)) index;
1371 struct
1372 {
1373 struct Expression * exp;
1374 struct Identifier * member;
1375 int memberType;
1376 unsigned int thisPtr;
1377 } __attribute__ ((gcc_struct)) member;
1378 struct
1379 {
1380 int op;
1381 struct Expression * exp1;
1382 struct Expression * exp2;
1383 } __attribute__ ((gcc_struct)) op;
1384 struct TypeName * typeName;
1385 struct Specifier * _class;
1386 struct
1387 {
1388 struct TypeName * typeName;
1389 struct Expression * exp;
1390 } __attribute__ ((gcc_struct)) cast;
1391 struct
1392 {
1393 struct Expression * cond;
1394 struct __ecereNameSpace__ecere__sys__OldList * exp;
1395 struct Expression * elseExp;
1396 } __attribute__ ((gcc_struct)) cond;
1397 struct
1398 {
1399 struct TypeName * typeName;
1400 struct Expression * size;
1401 } __attribute__ ((gcc_struct)) _new;
1402 struct
1403 {
1404 struct TypeName * typeName;
1405 struct Expression * size;
1406 struct Expression * exp;
1407 } __attribute__ ((gcc_struct)) _renew;
1408 struct
1409 {
1410 char * table;
1411 struct Identifier * id;
1412 } __attribute__ ((gcc_struct)) db;
1413 struct
1414 {
1415 struct Expression * ds;
1416 struct Expression * name;
1417 } __attribute__ ((gcc_struct)) dbopen;
1418 struct
1419 {
1420 struct TypeName * typeName;
1421 struct Initializer * initializer;
1422 } __attribute__ ((gcc_struct)) initializer;
1423 struct
1424 {
1425 struct Expression * exp;
1426 struct TypeName * typeName;
1427 } __attribute__ ((gcc_struct)) vaArg;
1428 } __attribute__ ((gcc_struct)) __anon1;
1429 unsigned int debugValue;
1430 struct __ecereNameSpace__ecere__com__DataValue val;
1431 uint64 address;
1432 unsigned int hasAddress;
1433 struct Type * expType;
1434 struct Type * destType;
1435 unsigned int usage;
1436 int tempCount;
1437 unsigned int byReference;
1438 unsigned int isConstant;
1439 unsigned int addedThis;
1440 unsigned int needCast;
1441 unsigned int thisPtr;
1442 unsigned int opDestType;
1443 unsigned int needTemplateCast;
1444 } __attribute__ ((gcc_struct));
1445
1446 struct Specifier
1447 {
1448 struct Specifier * prev;
1449 struct Specifier * next;
1450 struct Location loc;
1451 int type;
1452 union
1453 {
1454 int specifier;
1455 struct
1456 {
1457 struct ExtDecl * extDecl;
1458 char *  name;
1459 struct Symbol * symbol;
1460 struct __ecereNameSpace__ecere__sys__OldList *  templateArgs;
1461 struct Specifier * nsSpec;
1462 } __attribute__ ((gcc_struct)) __anon1;
1463 struct
1464 {
1465 struct Identifier * id;
1466 struct __ecereNameSpace__ecere__sys__OldList *  list;
1467 struct __ecereNameSpace__ecere__sys__OldList *  baseSpecs;
1468 struct __ecereNameSpace__ecere__sys__OldList *  definitions;
1469 unsigned int addNameSpace;
1470 struct Context * ctx;
1471 struct ExtDecl * extDeclStruct;
1472 } __attribute__ ((gcc_struct)) __anon2;
1473 struct Expression * expression;
1474 struct Specifier * _class;
1475 struct TemplateParameter * templateParameter;
1476 } __attribute__ ((gcc_struct)) __anon1;
1477 } __attribute__ ((gcc_struct));
1478
1479 struct Instantiation
1480 {
1481 struct Instantiation * prev;
1482 struct Instantiation * next;
1483 struct Location loc;
1484 struct Specifier * _class;
1485 struct Expression * exp;
1486 struct __ecereNameSpace__ecere__sys__OldList *  members;
1487 struct Symbol * symbol;
1488 unsigned int fullSet;
1489 unsigned int isConstant;
1490 unsigned char *  data;
1491 struct Location nameLoc;
1492 struct Location insideLoc;
1493 unsigned int built;
1494 } __attribute__ ((gcc_struct));
1495
1496 struct ClassDefinition
1497 {
1498 struct ClassDefinition * prev;
1499 struct ClassDefinition * next;
1500 struct Location loc;
1501 struct Specifier * _class;
1502 struct __ecereNameSpace__ecere__sys__OldList *  baseSpecs;
1503 struct __ecereNameSpace__ecere__sys__OldList *  definitions;
1504 struct Symbol * symbol;
1505 struct Location blockStart;
1506 struct Location nameLoc;
1507 int declMode;
1508 unsigned int deleteWatchable;
1509 } __attribute__ ((gcc_struct));
1510
1511 struct PropertyDef;
1512
1513 struct PropertyDef
1514 {
1515 struct PropertyDef * prev;
1516 struct PropertyDef * next;
1517 struct Location loc;
1518 struct __ecereNameSpace__ecere__sys__OldList *  specifiers;
1519 struct Declarator * declarator;
1520 struct Identifier * id;
1521 struct Statement * getStmt;
1522 struct Statement * setStmt;
1523 struct Statement * issetStmt;
1524 struct Symbol * symbol;
1525 struct Expression * category;
1526 struct
1527 {
1528 unsigned int conversion : 1;
1529 unsigned int isWatchable : 1;
1530 unsigned int isDBProp : 1;
1531 } __attribute__ ((gcc_struct)) __anon1;
1532 } __attribute__ ((gcc_struct));
1533
1534 struct TemplateArgument;
1535
1536 struct TemplateParameter
1537 {
1538 struct TemplateParameter * prev;
1539 struct TemplateParameter * next;
1540 struct Location loc;
1541 int type;
1542 struct Identifier * identifier;
1543 union
1544 {
1545 struct TemplateDatatype * dataType;
1546 int memberType;
1547 } __attribute__ ((gcc_struct)) __anon1;
1548 struct TemplateArgument * defaultArgument;
1549 const char *  dataTypeString;
1550 struct Type * baseType;
1551 } __attribute__ ((gcc_struct));
1552
1553 struct TemplateArgument
1554 {
1555 struct TemplateArgument * prev;
1556 struct TemplateArgument * next;
1557 struct Location loc;
1558 struct Identifier * name;
1559 int type;
1560 union
1561 {
1562 struct Expression * expression;
1563 struct Identifier * identifier;
1564 struct TemplateDatatype * templateDatatype;
1565 } __attribute__ ((gcc_struct)) __anon1;
1566 } __attribute__ ((gcc_struct));
1567
1568 static void OutputSymbols(const char * fileName)
1569 {
1570 struct __ecereNameSpace__ecere__com__Instance * f = __ecereNameSpace__ecere__sys__FileOpen(fileName, 2);
1571
1572 if(f)
1573 {
1574 int lastType = (int)-1;
1575 struct Definition * definition;
1576
1577 if(globalInstance)
1578 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "[Global Instance]\n");
1579 for(definition = precompDefines.first; definition; definition = definition->next)
1580 {
1581 if(definition->type != lastType)
1582 {
1583 if(lastType != (int)-1)
1584 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "   .\n");
1585 if(definition->type == 0)
1586 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "[Imported Modules]\n");
1587 else if(definition->type == 1)
1588 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "[Defined Classes]\n");
1589 else if(definition->type == 2)
1590 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "[Defined Expressions]\n");
1591 else if(definition->type == 3)
1592 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "[Defined Functions]\n");
1593 else if(definition->type == 4)
1594 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "[Defined Data]\n");
1595 lastType = definition->type;
1596 }
1597 if(definition->type == 0)
1598 {
1599 struct ImportedModule * module = (struct ImportedModule *)definition;
1600
1601 if(module->importType == 1)
1602 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "   [Static]\n");
1603 else if(module->importType == 2)
1604 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "   [Remote]\n");
1605 if(module->importAccess == 2)
1606 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "   [Private]\n");
1607 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "   %s\n", module->name);
1608 }
1609 else if(definition->type == 1)
1610 {
1611 struct __ecereNameSpace__ecere__com__Class * _class = __ecereNameSpace__ecere__com__eSystem_FindClass(privateModule, definition->name);
1612 struct ClassDefine * classDefine = (struct ClassDefine *)definition;
1613
1614 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "   %s\n", definition->name);
1615 if(classDefine->isStatic)
1616 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "      [Static]\n");
1617 if(classDefine->fixed)
1618 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "      [Fixed]\n");
1619 if(classDefine->noExpansion)
1620 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "      [No Expansion]\n");
1621 if(classDefine->isRemote)
1622 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "      [Remote]\n");
1623 if(classDefine->isWatchable)
1624 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "      [Watchable]\n");
1625 if(_class->type == 4)
1626 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "      [Enum]\n");
1627 else if(_class->type == 2)
1628 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "      [Bit]\n");
1629 else if(_class->type == 1)
1630 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "      [Struct]\n");
1631 else if(_class->type == 3)
1632 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "      [Unit]\n");
1633 else if(_class->type == 5)
1634 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "      [NoHead]\n");
1635 if(_class->inheritanceAccess == 2)
1636 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "      [Private Base]\n");
1637 else
1638 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "      [Base]\n");
1639 if(classDefine->base)
1640 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "         %s\n", classDefine->base);
1641 else
1642 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "         [None]\n");
1643 if(_class->templateParams.count)
1644 {
1645 struct __ecereNameSpace__ecere__com__ClassTemplateParameter * param;
1646 struct TemplateParameter * tp;
1647
1648 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "         [Template Parameters]\n");
1649 for(tp = (*((struct Symbol *)_class->symbol)->templateParams).first, param = _class->templateParams.first; param && tp; param = param->next, tp = tp->next)
1650 {
1651 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "               %s\n", param->name);
1652 switch(param->type)
1653 {
1654 case 0:
1655 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "               [Type]\n");
1656 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "               %s\n", param->__anon1.dataTypeString ? param->__anon1.dataTypeString : "[None]");
1657 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "               %s\n", param->defaultArg.__anon1.__anon1.dataTypeString ? param->defaultArg.__anon1.__anon1.dataTypeString : "[None]");
1658 break;
1659 case 2:
1660 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "               [Expression]\n");
1661 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "               %s\n", param->__anon1.dataTypeString ? param->__anon1.dataTypeString : "[None]");
1662 if(tp->defaultArgument && tp->defaultArgument->__anon1.expression)
1663 {
1664 char temp[8192];
1665
1666 temp[0] = (char)0;
1667 PrintExpression(tp->defaultArgument->__anon1.expression, temp);
1668 __ecereNameSpace__ecere__sys__ChangeCh(temp, '\n', ' ');
1669 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "               ");
1670 ((unsigned int (*)(struct __ecereNameSpace__ecere__com__Instance *, const char *  string))__extension__ ({
1671 struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = f;
1672
1673 __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__sys__File->_vTbl;
1674 })[__ecereVMethodID___ecereNameSpace__ecere__sys__File_Puts])(f, temp);
1675 ((unsigned int (*)(struct __ecereNameSpace__ecere__com__Instance *, const char *  string))__extension__ ({
1676 struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = f;
1677
1678 __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__sys__File->_vTbl;
1679 })[__ecereVMethodID___ecereNameSpace__ecere__sys__File_Puts])(f, "\n");
1680 }
1681 else
1682 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "               [None]\n");
1683 break;
1684 case 1:
1685 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "               [Identifier]\n");
1686 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "               %s\n", (param->__anon1.memberType == 0) ? "[Data member]" : ((param->__anon1.memberType == 1) ? "[Method]" : "[Property]"));
1687 if(tp->defaultArgument && tp->defaultArgument->__anon1.identifier)
1688 {
1689 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "               ");
1690 if(tp->defaultArgument->__anon1.identifier->_class && tp->defaultArgument->__anon1.identifier->_class->type == 1 && tp->defaultArgument->__anon1.identifier->_class->__anon1.__anon1.name)
1691 {
1692 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "%s::", tp->defaultArgument->__anon1.identifier->_class->__anon1.__anon1.name);
1693 }
1694 else if(tp->defaultArgument->__anon1.identifier->_class && tp->defaultArgument->__anon1.identifier->_class->type == 8 && tp->defaultArgument->__anon1.identifier->_class->__anon1.templateParameter->identifier)
1695 {
1696 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "%s::", tp->defaultArgument->__anon1.identifier->_class->__anon1.templateParameter->identifier->string);
1697 }
1698 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "%s\n", tp->defaultArgument->__anon1.identifier->string);
1699 }
1700 else
1701 {
1702 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "               [None]\n");
1703 }
1704 break;
1705 }
1706 }
1707 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "         .\n");
1708 }
1709 if(!classDefine->isStatic)
1710 {
1711 if(classDefine->methods.first)
1712 {
1713 struct MethodDefine * method;
1714
1715 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "      [Defined Methods]\n");
1716 for(method = classDefine->methods.first; method; method = method->next)
1717 {
1718 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "         %s\n", method->name);
1719 if(method->memberAccess == 1)
1720 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "            [Public]\n");
1721 else
1722 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "            [Private]\n");
1723 if(method->isVirtual)
1724 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "            [Virtual]\n");
1725 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "            [Type]\n");
1726 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "               %s\n", method->type ? method->type : "");
1727 }
1728 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "         .\n");
1729 }
1730 OutputDataMembers(classDefine, _class, f);
1731 if(_class->type == 4)
1732 {
1733 struct __ecereNameSpace__ecere__sys__NamedLink64 * value;
1734 struct __ecereNameSpace__ecere__com__Class * enumClass = __ecereNameSpace__ecere__com__eSystem_FindClass(privateModule, "enum");
1735 struct __ecereNameSpace__ecere__com__EnumClassData * e = (_class ? ((void *)(((char *)_class->data) + enumClass->offsetClass)) : (((void *)0)));
1736
1737 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "      [Enum Values]\n");
1738 for(value = e->values.first; value; value = value->next)
1739 {
1740 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "         %s = ", value->name);
1741 if(_class->dataTypeString && !strcmp(_class->dataTypeString, "uint64") && *(uint64 *)&value->data > (((long long)0x7fffffffffffffffLL)))
1742 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, ((__runtimePlatform == 1) ? "0x%I64X" : "0x%llX"), *(uint64 *)&value->data);
1743 else
1744 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, ((__runtimePlatform == 1) ? "%I64d" : "%lld"), value->data);
1745 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "\n");
1746 }
1747 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "         .\n");
1748 }
1749 }
1750 }
1751 else if(definition->type == 2)
1752 {
1753 struct Define * defineDefine = (struct Define *)definition;
1754
1755 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "   %s\n", definition->name);
1756 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "      [Value]\n");
1757 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "         ");
1758 OutputExpression(defineDefine->exp, f);
1759 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "\n");
1760 }
1761 else if(definition->type == 3)
1762 {
1763 struct FunctionDefine * functionDefine = (struct FunctionDefine *)definition;
1764
1765 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "   %s\n", functionDefine->name);
1766 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "      [Type]\n");
1767 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "         %s\n", functionDefine->dataType);
1768 }
1769 else if(definition->type == 4)
1770 {
1771 struct DataDefine * dataDefine = (struct DataDefine *)definition;
1772
1773 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "   %s\n", dataDefine->name);
1774 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "      [Type]\n");
1775 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "         %s\n", dataDefine->dataType);
1776 }
1777 }
1778 __ecereMethod___ecereNameSpace__ecere__sys__File_Printf(f, "   .\n");
1779 (__ecereNameSpace__ecere__com__eInstance_DecRef(f), f = 0);
1780 }
1781 }
1782
1783 struct Enumerator;
1784
1785 struct Enumerator
1786 {
1787 struct Enumerator * prev;
1788 struct Enumerator * next;
1789 struct Location loc;
1790 struct Identifier * id;
1791 struct Expression * exp;
1792 } __attribute__ ((gcc_struct));
1793
1794 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)
1795 {
1796 struct __ecereNameSpace__ecere__com__Class * regClass = symbol->__anon1.registered;
1797
1798 if(regClass && enumValues)
1799 {
1800 struct Enumerator * e;
1801
1802 for(e = enumValues->first; e; e = e->next)
1803 {
1804 if(e->exp)
1805 {
1806 struct Type * destType = (destType = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Type), destType->kind = 4, destType->refCount = 1, destType);
1807
1808 e->exp->destType = destType;
1809 SetParsingType(1);
1810 ProcessExpressionType(e->exp);
1811 SetParsingType(0);
1812 if(!e->exp->expType)
1813 {
1814 destType->kind = 8;
1815 destType->__anon1._class = symbol;
1816 ProcessExpressionType(e->exp);
1817 }
1818 if(e->exp->isConstant)
1819 {
1820 if(e->exp->type == 0 && e->exp->expType && e->exp->__anon1.__anon1.identifier && e->exp->__anon1.__anon1.identifier->string && e->exp->expType->kind == 15)
1821 {
1822 struct __ecereNameSpace__ecere__sys__NamedLink64 * l;
1823 char * string = e->exp->__anon1.__anon1.identifier->string;
1824
1825 for(l = e->exp->expType->__anon1.__anon1.members.first; l; l = l->next)
1826 {
1827 if(!strcmp(l->name, string))
1828 {
1829 if(l->data)
1830 {
1831 FreeExpContents(e->exp);
1832 e->exp->type = 2;
1833 e->exp->__anon1.__anon1.constant = PrintInt64(l->data);
1834 FreeType(e->exp->expType);
1835 e->exp->expType = ProcessTypeString("int64", 0);
1836 }
1837 break;
1838 }
1839 }
1840 }
1841 else
1842 ComputeExpression(e->exp);
1843 }
1844 if(e->exp->isConstant && e->exp->type == 2)
1845 {
1846 struct Operand op = GetOperand(e->exp);
1847 long long value;
1848
1849 switch(op.kind)
1850 {
1851 case 1:
1852 value = op.type->isSigned ? (long long)op.__anon1.c : (long long)op.__anon1.uc;
1853 break;
1854 case 2:
1855 value = op.type->isSigned ? (long long)op.__anon1.s : (long long)op.__anon1.us;
1856 break;
1857 case 4:
1858 value = op.type->isSigned ? op.__anon1.i64 : (long long)op.__anon1.ui64;
1859 break;
1860 case 3:
1861 default:
1862 value = op.type->isSigned ? (long long)op.__anon1.i : (int)op.__anon1.ui;
1863 }
1864 __ecereNameSpace__ecere__com__eEnum_AddFixedValue(regClass, e->id->string, value);
1865 }
1866 else
1867 {
1868 char expString[8192];
1869
1870 expString[0] = (char)0;
1871 PrintExpression(e->exp, expString);
1872 printf(__ecereNameSpace__ecere__GetTranslatedString("ecp", "error: could not resolve value %s for enum %s in precompiler\n", (((void *)0))), expString, regClass->name);
1873 ((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;
1874 __ecereNameSpace__ecere__com__eEnum_AddValue(regClass, e->id->string);
1875 }
1876 }
1877 else
1878 __ecereNameSpace__ecere__com__eEnum_AddValue(regClass, e->id->string);
1879 }
1880 }
1881 }
1882
1883 struct Declaration;
1884
1885 typedef union YYSTYPE
1886 {
1887 int specifierType;
1888 int i;
1889 int declMode;
1890 struct Identifier * id;
1891 struct Expression * exp;
1892 struct Specifier * specifier;
1893 struct __ecereNameSpace__ecere__sys__OldList * list;
1894 struct Enumerator * enumerator;
1895 struct Declarator * declarator;
1896 struct __ecereNameSpace__ecere__com__Instance * pointer;
1897 struct Initializer * initializer;
1898 struct InitDeclarator * initDeclarator;
1899 struct TypeName * typeName;
1900 struct Declaration * declaration;
1901 struct Statement * stmt;
1902 struct FunctionDefinition * function;
1903 struct External * external;
1904 struct Context * context;
1905 struct __ecereNameSpace__ecere__com__Instance * asmField;
1906 struct Attrib * attrib;
1907 struct ExtDecl * extDecl;
1908 struct Attribute * attribute;
1909 struct Instantiation * instance;
1910 struct MembersInit * membersInit;
1911 struct MemberInit * memberInit;
1912 struct ClassFunction * classFunction;
1913 struct ClassDefinition * _class;
1914 struct ClassDef * classDef;
1915 struct PropertyDef * prop;
1916 char * string;
1917 struct Symbol * symbol;
1918 struct PropertyWatch * propertyWatch;
1919 struct TemplateParameter * templateParameter;
1920 struct TemplateArgument * templateArgument;
1921 struct TemplateDatatype * templateDatatype;
1922 struct __ecereNameSpace__ecere__com__Instance * dbtableEntry;
1923 struct __ecereNameSpace__ecere__com__Instance * dbindexItem;
1924 struct DBTableDef * dbtableDef;
1925 } __attribute__ ((gcc_struct)) YYSTYPE;
1926
1927 extern YYSTYPE yylval;
1928
1929 struct ClassDef
1930 {
1931 struct ClassDef * prev;
1932 struct ClassDef * next;
1933 struct Location loc;
1934 int type;
1935 union
1936 {
1937 struct Declaration * decl;
1938 struct ClassFunction * function;
1939 struct __ecereNameSpace__ecere__sys__OldList *  defProperties;
1940 struct PropertyDef * propertyDef;
1941 struct PropertyWatch * propertyWatch;
1942 char *  designer;
1943 struct Identifier * defaultProperty;
1944 struct
1945 {
1946 struct Identifier * id;
1947 struct Initializer * initializer;
1948 } __attribute__ ((gcc_struct)) __anon1;
1949 } __attribute__ ((gcc_struct)) __anon1;
1950 int memberAccess;
1951 void *  object;
1952 } __attribute__ ((gcc_struct));
1953
1954 struct Declaration
1955 {
1956 struct Declaration * prev;
1957 struct Declaration * next;
1958 struct Location loc;
1959 int type;
1960 union
1961 {
1962 struct
1963 {
1964 struct __ecereNameSpace__ecere__sys__OldList *  specifiers;
1965 struct __ecereNameSpace__ecere__sys__OldList *  declarators;
1966 } __attribute__ ((gcc_struct)) __anon1;
1967 struct Instantiation * inst;
1968 struct
1969 {
1970 struct Identifier * id;
1971 struct Expression * exp;
1972 } __attribute__ ((gcc_struct)) __anon2;
1973 } __attribute__ ((gcc_struct)) __anon1;
1974 struct Specifier * extStorage;
1975 struct Symbol * symbol;
1976 int declMode;
1977 } __attribute__ ((gcc_struct));
1978
1979 struct External
1980 {
1981 struct External * prev;
1982 struct External * next;
1983 struct Location loc;
1984 int type;
1985 struct Symbol * symbol;
1986 union
1987 {
1988 struct FunctionDefinition * function;
1989 struct ClassDefinition * _class;
1990 struct Declaration * declaration;
1991 char *  importString;
1992 struct Identifier * id;
1993 struct DBTableDef * table;
1994 } __attribute__ ((gcc_struct)) __anon1;
1995 int importType;
1996 struct External * fwdDecl;
1997 struct __ecereNameSpace__ecere__com__Instance * outgoing;
1998 struct __ecereNameSpace__ecere__com__Instance * incoming;
1999 int nonBreakableIncoming;
2000 } __attribute__ ((gcc_struct));
2001
2002 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)
2003 {
2004 if(definitions != (((void *)0)))
2005 {
2006 struct ClassDef * def;
2007
2008 for(def = definitions->first; def; def = def->next)
2009 {
2010 if(def->type == 2)
2011 {
2012 struct Declaration * decl = def->__anon1.decl;
2013 struct __ecereNameSpace__ecere__com__DataMember * dataMember;
2014 struct Type * dataType;
2015 struct DataMemberDefine * dataMemberDefine;
2016
2017 if(decl->type == 0)
2018 {
2019 struct Declarator * d;
2020
2021 if(decl->__anon1.__anon1.declarators)
2022 {
2023 for(d = (*decl->__anon1.__anon1.declarators).first; d; d = d->next)
2024 {
2025 struct Identifier * declId = GetDeclId(d);
2026
2027 if(declId)
2028 {
2029 dataMemberDefine = __extension__ ({
2030 struct DataMemberDefine * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_DataMemberDefine);
2031
2032 __ecereInstance1->isProperty = 3, __ecereInstance1->memberType = 0, __ecereInstance1->name = __ecereNameSpace__ecere__sys__CopyString(declId->string), __ecereInstance1;
2033 });
2034 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(&parentMemberDefine->dataMembers, dataMemberDefine);
2035 if(regClass && regClass->type == 2)
2036 {
2037 struct Expression * sizeExp = d->__anon1.structDecl.exp, * posExp = d->__anon1.structDecl.posExp;
2038 int bitSize = 0, bitPos = -1;
2039 char dataTypeString[1024];
2040
2041 dataTypeString[0] = '\0';
2042 if(sizeExp)
2043 {
2044 ProcessExpressionType(sizeExp);
2045 ComputeExpression(sizeExp);
2046 if(sizeExp->isConstant)
2047 bitSize = strtol(sizeExp->__anon1.__anon1.constant, (((void *)0)), 0);
2048 FreeExpression(sizeExp);
2049 }
2050 if(posExp)
2051 {
2052 ProcessExpressionType(posExp);
2053 ComputeExpression(posExp);
2054 if(posExp->isConstant)
2055 bitPos = strtol(posExp->__anon1.__anon1.constant, (((void *)0)), 0);
2056 FreeExpression(posExp);
2057 }
2058 d->__anon1.structDecl.exp = (((void *)0));
2059 d->__anon1.structDecl.posExp = (((void *)0));
2060 dataType = ProcessType(decl->__anon1.__anon1.specifiers, d);
2061 PrintType(dataType, dataTypeString, 0, 1);
2062 {
2063 struct __ecereNameSpace__ecere__com__BitMember * member = __ecereNameSpace__ecere__com__eClass_AddBitMember(regClass, declId->string, dataTypeString, 0, 0, def->memberAccess);
2064
2065 member->size = bitSize;
2066 member->pos = bitPos;
2067 dataMember = (struct __ecereNameSpace__ecere__com__DataMember *)member;
2068 }
2069 if(dataMember)
2070 dataMember->dataType = dataType;
2071 dataMemberDefine->size = bitSize;
2072 dataMemberDefine->bitPos = bitPos;
2073 dataMemberDefine->type = __ecereNameSpace__ecere__sys__CopyString(dataTypeString);
2074 }
2075 else
2076 {
2077 {
2078 char typeString[1024];
2079
2080 typeString[0] = '\0';
2081 dataType = ProcessType(decl->__anon1.__anon1.specifiers, d);
2082 PrintType(dataType, typeString, 0, 1);
2083 if(member)
2084 dataMember = __ecereNameSpace__ecere__com__eMember_AddDataMember(member, declId->string, typeString, 0, 0, def->memberAccess);
2085 else
2086 dataMember = __ecereNameSpace__ecere__com__eClass_AddDataMember(regClass, declId->string, typeString, 0, 0, def->memberAccess);
2087 if(dataMember)
2088 dataMember->dataType = dataType;
2089 dataMemberDefine->type = __ecereNameSpace__ecere__sys__CopyString(typeString);
2090 }
2091 }
2092 dataMemberDefine->memberAccess = def->memberAccess;
2093 }
2094 }
2095 }
2096 else if(decl->__anon1.__anon1.specifiers)
2097 {
2098 struct Specifier * spec;
2099
2100 for(spec = (*decl->__anon1.__anon1.specifiers).first; spec; spec = spec->next)
2101 {
2102 if(spec->type == 3 || spec->type == 4)
2103 {
2104 if(spec->__anon1.__anon2.definitions && !spec->__anon1.__anon2.id)
2105 {
2106 struct __ecereNameSpace__ecere__com__DataMember * dataMember = __ecereNameSpace__ecere__com__eMember_New((spec->type == 4) ? 1 : 2, def->memberAccess);
2107
2108 dataMemberDefine = __extension__ ({
2109 struct DataMemberDefine * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_DataMemberDefine);
2110
2111 __ecereInstance1->isProperty = 3, __ecereInstance1->memberType = (spec->type == 4) ? 1 : 2, __ecereInstance1;
2112 });
2113 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(&parentMemberDefine->dataMembers, dataMemberDefine);
2114 AddDefinitions((((void *)0)), dataMemberDefine, (((void *)0)), dataMember, spec->__anon1.__anon2.definitions);
2115 if(member)
2116 __ecereNameSpace__ecere__com__eMember_AddMember(member, dataMember);
2117 else
2118 __ecereNameSpace__ecere__com__eClass_AddMember(regClass, dataMember);
2119 }
2120 else if(spec->__anon1.__anon2.definitions && spec->__anon1.__anon2.id && (*spec->__anon1.__anon2.definitions).count)
2121 {
2122 {
2123 struct Identifier * id = spec->__anon1.__anon2.id;
2124 char typeString[1024];
2125
2126 typeString[0] = '\0';
2127 spec->__anon1.__anon2.id = (((void *)0));
2128 decl->__anon1.__anon1.declarators = MkListOne(MkDeclaratorIdentifier(id));
2129 dataType = ProcessType(decl->__anon1.__anon1.specifiers, (((void *)0)));
2130 PrintType(dataType, typeString, 0, 1);
2131 if(member)
2132 dataMember = __ecereNameSpace__ecere__com__eMember_AddDataMember(member, id->string, typeString, 0, 0, def->memberAccess);
2133 else
2134 dataMember = __ecereNameSpace__ecere__com__eClass_AddDataMember(regClass, id->string, typeString, 0, 0, def->memberAccess);
2135 if(dataMember)
2136 dataMember->dataType = dataType;
2137 }
2138 }
2139 }
2140 }
2141 }
2142 }
2143 else if(decl->type == 2)
2144 {
2145 struct Instantiation * inst = decl->__anon1.inst;
2146 struct Expression * exp = inst->exp;
2147
2148 if(exp)
2149 {
2150 {
2151 char * string = exp->__anon1.__anon1.identifier->string;
2152
2153 {
2154 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);
2155
2156 if(member)
2157 dataMember = __ecereNameSpace__ecere__com__eMember_AddDataMember(member, string, inst->_class->__anon1.__anon1.name, 0, 0, def->memberAccess);
2158 else
2159 dataMember = __ecereNameSpace__ecere__com__eClass_AddDataMember(regClass, string, inst->_class->__anon1.__anon1.name, 0, 0, def->memberAccess);
2160 if(dataMember)
2161 dataMember->dataType = dataType;
2162 }
2163 dataMemberDefine = __extension__ ({
2164 struct DataMemberDefine * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_DataMemberDefine);
2165
2166 __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;
2167 });
2168 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(&parentMemberDefine->dataMembers, dataMemberDefine);
2169 }
2170 }
2171 }
2172 }
2173 else if(def->type == 3 && def->__anon1.propertyDef)
2174 {
2175 struct PropertyDef * propertyDef = def->__anon1.propertyDef;
2176
2177 {
2178 struct __ecereNameSpace__ecere__com__Property * prop;
2179 struct PropertyDefine * propDefine;
2180
2181 {
2182 char * dataTypeString = StringFromSpecDecl(propertyDef->specifiers, propertyDef->declarator);
2183
2184 prop = __ecereNameSpace__ecere__com__eClass_AddProperty(regClass, propertyDef->__anon1.conversion ? (((void *)0)) : propertyDef->id->string, dataTypeString, propertyDef->setStmt, propertyDef->getStmt, def->memberAccess);
2185 if(prop)
2186 {
2187 prop->IsSet = (void *)propertyDef->issetStmt;
2188 prop->compiled = 0;
2189 }
2190 (__ecereNameSpace__ecere__com__eSystem_Delete(dataTypeString), dataTypeString = 0);
2191 }
2192 if(prop)
2193 {
2194 prop->symbol = __extension__ ({
2195 struct Symbol * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol);
2196
2197 __ecereInstance1->string = __ecereNameSpace__ecere__sys__CopyString(propertyDef->symbol->string), __ecereInstance1->type = propertyDef->symbol->type, __ecereInstance1;
2198 });
2199 if(propertyDef->symbol->type)
2200 propertyDef->symbol->type->refCount++;
2201 propDefine = __extension__ ({
2202 struct PropertyDefine * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_PropertyDefine);
2203
2204 __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;
2205 });
2206 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(&classDefine->propertiesAndMembers, propDefine);
2207 }
2208 }
2209 }
2210 else if(def->type == 10 && def->__anon1.propertyDef)
2211 {
2212 struct PropertyDef * propertyDef = def->__anon1.propertyDef;
2213
2214 {
2215 struct __ecereNameSpace__ecere__com__ClassProperty * prop;
2216 struct PropertyDefine * propDefine;
2217
2218 {
2219 char * dataTypeString = StringFromSpecDecl(propertyDef->specifiers, propertyDef->declarator);
2220
2221 prop = __ecereNameSpace__ecere__com__eClass_AddClassProperty(regClass, propertyDef->id->string, dataTypeString, propertyDef->setStmt, propertyDef->getStmt);
2222 (__ecereNameSpace__ecere__com__eSystem_Delete(dataTypeString), dataTypeString = 0);
2223 }
2224 if(prop)
2225 {
2226 propDefine = __extension__ ({
2227 struct PropertyDefine * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_PropertyDefine);
2228
2229 __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;
2230 });
2231 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(&classDefine->classProperties, propDefine);
2232 }
2233 }
2234 }
2235 else if(def->type == 7)
2236 {
2237 if(classDefine)
2238 classDefine->fixed = 1;
2239 }
2240 else if(def->type == 6)
2241 {
2242 if(classDefine)
2243 classDefine->noExpansion = 1;
2244 }
2245 else if(def->type == 13)
2246 {
2247 struct __ecereNameSpace__ecere__com__DataMember * member;
2248 struct __ecereNameSpace__ecere__com__Property * prop;
2249
2250 if((prop = __ecereNameSpace__ecere__com__eClass_FindProperty(regClass, def->__anon1.__anon1.id->string, privateModule)))
2251 {
2252 struct PropertyDefine * propDefine;
2253
2254 prop = __ecereNameSpace__ecere__com__eClass_AddProperty(regClass, def->__anon1.__anon1.id->string, (((void *)0)), (((void *)0)), (((void *)0)), def->memberAccess);
2255 if(prop)
2256 {
2257 propDefine = __extension__ ({
2258 struct PropertyDefine * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_PropertyDefine);
2259
2260 __ecereInstance1->isProperty = 1, __ecereInstance1->name = __ecereNameSpace__ecere__sys__CopyString(prop->name), __ecereInstance1->memberAccess = def->memberAccess, __ecereInstance1;
2261 });
2262 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(&classDefine->propertiesAndMembers, propDefine);
2263 }
2264 }
2265 else if((member = __ecereNameSpace__ecere__com__eClass_FindDataMember(regClass, def->__anon1.__anon1.id->string, privateModule, (((void *)0)), (((void *)0)))))
2266 {
2267 struct DataMemberDefine * dataMemberDefine;
2268
2269 member = __ecereNameSpace__ecere__com__eClass_AddDataMember(regClass, def->__anon1.__anon1.id->string, (((void *)0)), 0, 0, def->memberAccess);
2270 dataMemberDefine = __extension__ ({
2271 struct DataMemberDefine * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_DataMemberDefine);
2272
2273 __ecereInstance1->isProperty = 3, __ecereInstance1->memberType = 0, __ecereInstance1->name = __ecereNameSpace__ecere__sys__CopyString(def->__anon1.__anon1.id->string), __ecereInstance1->memberAccess = def->memberAccess, __ecereInstance1;
2274 });
2275 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(&parentMemberDefine->dataMembers, dataMemberDefine);
2276 }
2277 }
2278 }
2279 }
2280 }
2281
2282 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)
2283 {
2284 struct __ecereNameSpace__ecere__com__Class * regClass;
2285 struct ClassDef * def;
2286 struct ClassDefine * classDefine;
2287 char baseName[1024];
2288 unsigned int unitType = 0;
2289 unsigned int wouldBeEnum = 0;
2290 int inheritanceAccess = 1;
2291
2292 baseName[0] = '\0';
2293 if(baseSpecs != (((void *)0)))
2294 {
2295 struct Type * baseType = ProcessType(baseSpecs, (((void *)0)));
2296
2297 PrintType(baseType, baseName, 0, 1);
2298 if(baseType->kind == 8)
2299 {
2300 if(baseType->__anon1._class->__anon1.registered && classType == 0)
2301 {
2302 if(baseType->__anon1._class->__anon1.registered->type == 3)
2303 classType = 3;
2304 else if(baseType->__anon1._class->__anon1.registered->type == 2)
2305 classType = 2;
2306 else if(baseType->__anon1._class->__anon1.registered->type == 5)
2307 classType = 5;
2308 else if(baseType->__anon1._class->__anon1.registered->type == 4)
2309 {
2310 wouldBeEnum = 1;
2311 }
2312 }
2313 }
2314 else if(baseType->kind == 9 || baseType->kind == 10)
2315 {
2316 classType = 5;
2317 baseName[0] = '\0';
2318 }
2319 else
2320 unitType = 1;
2321 FreeType(baseType);
2322 if(((struct Specifier *)baseSpecs->first)->type == 0 && ((struct Specifier *)baseSpecs->first)->__anon1.specifier == PRIVATE)
2323 inheritanceAccess = 2;
2324 }
2325 if(classType == 0)
2326 {
2327 if(unitType)
2328 classType = 3;
2329 if(definitions != (((void *)0)))
2330 {
2331 for(def = definitions->first; def; def = def->next)
2332 {
2333 if(def->type == 2)
2334 {
2335 struct Declaration * decl = def->__anon1.decl;
2336
2337 if(decl->type == 0)
2338 {
2339 if(unitType)
2340 {
2341 classType = 2;
2342 break;
2343 }
2344 if(decl->__anon1.__anon1.declarators)
2345 {
2346 struct Declarator * d;
2347
2348 for(d = (*decl->__anon1.__anon1.declarators).first; d; d = d->next)
2349 {
2350 if(d->__anon1.structDecl.exp)
2351 {
2352 classType = 2;
2353 break;
2354 }
2355 }
2356 if(d)
2357 break;
2358 }
2359 }
2360 }
2361 }
2362 }
2363 }
2364 if(classType == 0 && wouldBeEnum)
2365 classType = 4;
2366 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);
2367 if(regClass)
2368 regClass->symbol = symbol;
2369 classDefine = __extension__ ({
2370 struct ClassDefine * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_ClassDefine);
2371
2372 __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;
2373 });
2374 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(&precompDefines, classDefine);
2375 if(classType == 6)
2376 {
2377 struct __ecereNameSpace__ecere__com__DataMember * unionMember = __ecereNameSpace__ecere__com__eMember_New(1, 1);
2378 struct DataMemberDefine * unionDefine;
2379
2380 unionDefine = __extension__ ({
2381 struct DataMemberDefine * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_DataMemberDefine);
2382
2383 __ecereInstance1->isProperty = 3, __ecereInstance1->memberType = 1, __ecereInstance1;
2384 });
2385 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(&classDefine->propertiesAndMembers, unionDefine);
2386 AddDefinitions(classDefine, unionDefine, regClass, unionMember, definitions);
2387 __ecereNameSpace__ecere__com__eClass_AddMember(regClass, unionMember);
2388 }
2389 else if(regClass)
2390 AddDefinitions(classDefine, (struct DataMemberDefine *)classDefine, regClass, (((void *)0)), definitions);
2391 if(definitions != (((void *)0)))
2392 {
2393 for(def = definitions->first; def; def = def->next)
2394 {
2395 if(def->type == 0)
2396 {
2397 struct ClassFunction * func = def->__anon1.function;
2398
2399 if(!func->dontMangle && func->declarator)
2400 {
2401 struct Identifier * id = GetDeclId(func->declarator);
2402 struct __ecereNameSpace__ecere__com__Method * method;
2403 struct MethodDefine * methodDefine;
2404
2405 {
2406 char * dataTypeString = StringFromSpecDecl(func->specifiers, func->declarator);
2407
2408 if(func->isVirtual)
2409 method = __ecereNameSpace__ecere__com__eClass_AddVirtualMethod(regClass, id->string, dataTypeString, func->declarator->symbol, def->memberAccess);
2410 else
2411 method = __ecereNameSpace__ecere__com__eClass_AddMethod(regClass, id->string, dataTypeString, func->declarator->symbol, def->memberAccess);
2412 (__ecereNameSpace__ecere__com__eSystem_Delete(dataTypeString), dataTypeString = 0);
2413 }
2414 if(method)
2415 {
2416 method->symbol = __extension__ ({
2417 struct Symbol * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol);
2418
2419 __ecereInstance1->string = __ecereNameSpace__ecere__sys__CopyString(func->declarator->symbol->string), __ecereInstance1->type = func->declarator->symbol->type, __ecereInstance1;
2420 });
2421 if(func->declarator->symbol->type)
2422 func->declarator->symbol->type->refCount++;
2423 ((struct Symbol *)method->symbol)->__anon1.method = method;
2424 func->declarator->symbol = (((void *)0));
2425 if(method->type != 1 || method->_class == regClass)
2426 {
2427 methodDefine = __extension__ ({
2428 struct MethodDefine * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_MethodDefine);
2429
2430 __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;
2431 });
2432 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(&classDefine->methods, methodDefine);
2433 }
2434 }
2435 }
2436 }
2437 else if(def->type == 13)
2438 {
2439 struct __ecereNameSpace__ecere__com__Method * method;
2440
2441 if((method = __ecereNameSpace__ecere__com__eClass_FindMethod(regClass, def->__anon1.__anon1.id->string, privateModule)))
2442 {
2443 struct MethodDefine * methodDefine;
2444
2445 method = __ecereNameSpace__ecere__com__eClass_AddMethod(regClass, def->__anon1.__anon1.id->string, (((void *)0)), (((void *)0)), def->memberAccess);
2446 methodDefine = __extension__ ({
2447 struct MethodDefine * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_MethodDefine);
2448
2449 __ecereInstance1->name = __ecereNameSpace__ecere__sys__CopyString(method->name), __ecereInstance1->memberAccess = def->memberAccess, __ecereInstance1;
2450 });
2451 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(&classDefine->methods, methodDefine);
2452 }
2453 }
2454 }
2455 }
2456 if(regClass && symbol->templateParams)
2457 {
2458 struct TemplateParameter * param;
2459
2460 for(param = (*symbol->templateParams).first; param; param = param->next)
2461 {
2462 struct __ecereNameSpace__ecere__com__ClassTemplateArgument defaultArg =
2463 {
2464
2465 .__anon1 = {
2466
2467 .__anon1 = {
2468 .dataTypeString = 0
2469 }
2470 }
2471 };
2472
2473 if(param->defaultArgument)
2474 {
2475 switch(param->type)
2476 {
2477 case 0:
2478 defaultArg.__anon1.__anon1.dataTypeString = StringFromSpecDecl(param->defaultArgument->__anon1.templateDatatype->specifiers, param->defaultArgument->__anon1.templateDatatype->decl);
2479 break;
2480 case 1:
2481 {
2482 char memberString[1024];
2483
2484 memberString[0] = '\0';
2485 if(param->defaultArgument->__anon1.identifier->_class && param->defaultArgument->__anon1.identifier->_class->__anon1.__anon1.name)
2486 {
2487 if(param->defaultArgument->__anon1.identifier->_class->type == 8)
2488 strcpy(memberString, param->defaultArgument->__anon1.identifier->_class->__anon1.templateParameter->identifier->string);
2489 else
2490 strcpy(memberString, param->defaultArgument->__anon1.identifier->_class->__anon1.__anon1.name);
2491 }
2492 if(memberString[0])
2493 {
2494 strcat(memberString, "::");
2495 }
2496 strcat(memberString, param->defaultArgument->__anon1.identifier->string);
2497 defaultArg.__anon1.__anon2.memberString = __ecereNameSpace__ecere__sys__CopyString(memberString);
2498 break;
2499 }
2500 case 2:
2501 {
2502 struct Operand op;
2503
2504 ProcessExpressionType(param->defaultArgument->__anon1.expression);
2505 ComputeExpression(param->defaultArgument->__anon1.expression);
2506 op = GetOperand(param->defaultArgument->__anon1.expression);
2507 defaultArg.__anon1.expression.__anon1.ui64 = op.__anon1.ui64;
2508 break;
2509 }
2510 }
2511 }
2512 if(param->type == 1)
2513 {
2514 __ecereNameSpace__ecere__com__eClass_AddTemplateParameter(regClass, param->identifier->string, param->type, (void *)(uintptr_t)param->__anon1.memberType, &defaultArg);
2515 }
2516 else
2517 {
2518 char * typeString = param->__anon1.dataType ? StringFromSpecDecl(param->__anon1.dataType->specifiers, param->__anon1.dataType->decl) : (((void *)0));
2519
2520 __ecereNameSpace__ecere__com__eClass_AddTemplateParameter(regClass, param->identifier->string, param->type, typeString, &defaultArg);
2521 }
2522 }
2523 }
2524 }
2525
2526 void PreCompPreProcessClassDefinitions()
2527 {
2528 struct __ecereNameSpace__ecere__sys__OldList * ast = GetAST();
2529 struct External * external, * next;
2530
2531 for(external = (*ast).first; external; external = next)
2532 {
2533 next = external->next;
2534 if(external->type == 2)
2535 {
2536 struct ClassDefinition * _class = external->__anon1._class;
2537
2538 if(_class->declMode == 1 || _class->declMode == 2 || _class->declMode == 3)
2539 {
2540 if(_class->definitions)
2541 {
2542 ProcessClass(0, _class->definitions, _class->symbol, _class->baseSpecs, (((void *)0)), _class->deleteWatchable, _class->declMode);
2543 }
2544 }
2545 }
2546 else if(external->type == 1)
2547 {
2548 struct Declaration * declaration = external->__anon1.declaration;
2549
2550 if(declaration->type == 1)
2551 {
2552 if(external->__anon1.declaration->declMode == 1 || external->__anon1.declaration->declMode == 2 || external->__anon1.declaration->declMode == 3)
2553 {
2554 if(declaration->__anon1.__anon1.specifiers)
2555 {
2556 struct Specifier * specifier;
2557
2558 for(specifier = (*declaration->__anon1.__anon1.specifiers).first; specifier; specifier = specifier->next)
2559 {
2560 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)))
2561 {
2562 struct Symbol * symbol = FindClass(specifier->__anon1.__anon2.id->string);
2563
2564 if(symbol)
2565 {
2566 int classType;
2567
2568 if(specifier->type == 2)
2569 classType = 4;
2570 else if(specifier->type == 4)
2571 classType = 6;
2572 else
2573 classType = 1;
2574 ProcessClass(classType, specifier->__anon1.__anon2.definitions, symbol, specifier->__anon1.__anon2.baseSpecs, specifier->__anon1.__anon2.list, 0, external->__anon1.declaration->declMode);
2575 }
2576 }
2577 }
2578 }
2579 if(external->__anon1.declaration->declMode == 1 || external->__anon1.declaration->declMode == 2)
2580 {
2581 if(declaration->__anon1.__anon1.declarators)
2582 {
2583 struct InitDeclarator * d;
2584
2585 for(d = (*declaration->__anon1.__anon1.declarators).first; d; d = d->next)
2586 {
2587 if(d->declarator)
2588 {
2589 struct Symbol * symbol = d->declarator->symbol;
2590
2591 if(symbol)
2592 {
2593 struct DataDefine * dataDefine;
2594 char typeString[1024];
2595
2596 typeString[0] = '\0';
2597 PrintType(symbol->type, typeString, 0, 1);
2598 dataDefine = __extension__ ({
2599 struct DataDefine * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_DataDefine);
2600
2601 __ecereInstance1->type = 4, __ecereInstance1->name = __ecereNameSpace__ecere__sys__CopyString(symbol->string), __ecereInstance1->dataType = __ecereNameSpace__ecere__sys__CopyString(typeString), __ecereInstance1;
2602 });
2603 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(&precompDefines, dataDefine);
2604 }
2605 }
2606 }
2607 }
2608 }
2609 }
2610 }
2611 else if(declaration->type == 2)
2612 {
2613 if(external->__anon1.declaration->declMode == 1 || external->__anon1.declaration->declMode == 2)
2614 {
2615 struct Symbol * symbol = declaration->__anon1.inst->symbol;
2616
2617 if(symbol)
2618 {
2619 struct DataDefine * dataDefine;
2620 char typeString[1024];
2621
2622 typeString[0] = '\0';
2623 PrintType(symbol->type, typeString, 0, 1);
2624 dataDefine = __extension__ ({
2625 struct DataDefine * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_DataDefine);
2626
2627 __ecereInstance1->type = 4, __ecereInstance1->name = __ecereNameSpace__ecere__sys__CopyString(symbol->string), __ecereInstance1->dataType = __ecereNameSpace__ecere__sys__CopyString(typeString), __ecereInstance1;
2628 });
2629 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(&precompDefines, dataDefine);
2630 }
2631 }
2632 globalInstance = 1;
2633 }
2634 else if(declaration->type == 3)
2635 {
2636 if(external->__anon1.declaration->declMode == 1 || external->__anon1.declaration->declMode == 2)
2637 {
2638 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);
2639
2640 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(&precompDefines, definition);
2641 }
2642 }
2643 }
2644 else if(external->type == 0 && (external->__anon1.function->declMode == 1 || external->__anon1.function->declMode == 2))
2645 {
2646 struct FunctionDefinition * function = external->__anon1.function;
2647 struct FunctionDefine * functionDefine;
2648 char typeString[1024];
2649
2650 typeString[0] = '\0';
2651 PrintType(function->declarator->symbol->type, typeString, 1, 1);
2652 functionDefine = __extension__ ({
2653 struct FunctionDefine * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_FunctionDefine);
2654
2655 __ecereInstance1->type = 3, __ecereInstance1->name = __ecereNameSpace__ecere__sys__CopyString(function->declarator->symbol->string), __ecereInstance1->dataType = __ecereNameSpace__ecere__sys__CopyString(typeString), __ecereInstance1;
2656 });
2657 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(&precompDefines, functionDefine);
2658 }
2659 else if(external->type == 4)
2660 {
2661 SetCurrentNameSpace(external->__anon1.id->string);
2662 }
2663 }
2664 ComputeModuleClasses(privateModule);
2665 for(external = (*ast).first; external; external = next)
2666 {
2667 next = external->next;
2668 if(external->type == 1 && (external->__anon1.declaration->declMode == 1 || external->__anon1.declaration->declMode == 2))
2669 {
2670 struct Declaration * declaration = external->__anon1.declaration;
2671
2672 if(declaration->type == 1)
2673 {
2674 if(declaration->__anon1.__anon1.specifiers)
2675 {
2676 struct Specifier * specifier;
2677
2678 for(specifier = (*declaration->__anon1.__anon1.specifiers).first; specifier; specifier = specifier->next)
2679 {
2680 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)))
2681 {
2682 struct Symbol * symbol = FindClass(specifier->__anon1.__anon2.id->string);
2683
2684 if(symbol)
2685 {
2686 ProcessClassEnumValues(4, specifier->__anon1.__anon2.definitions, symbol, specifier->__anon1.__anon2.baseSpecs, specifier->__anon1.__anon2.list);
2687 }
2688 }
2689 }
2690 }
2691 }
2692 }
2693 }
2694 }
2695
2696 void __ecereMethod_PrecompApp_Main(struct __ecereNameSpace__ecere__com__Instance * this)
2697 {
2698 int c;
2699 unsigned int valid = 1;
2700 char defaultSymFile[797];
2701 char * cppCommand = (((void *)0));
2702 char * cppOptions = (((void *)0));
2703 int cppOptionsLen = 0;
2704 int targetPlatform = __runtimePlatform;
2705 int targetBits = GetHostBits();
2706
2707 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++)
2708 {
2709 const char * arg = ((struct __ecereNameSpace__ecere__com__Application *)(((char *)this + sizeof(struct __ecereNameSpace__ecere__com__Module) + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->argv[c];
2710
2711 if(arg[0] == '-')
2712 {
2713 if(!strcmp(arg + 1, "m32") || !strcmp(arg + 1, "m64"))
2714 {
2715 int newLen = cppOptionsLen + 1 + strlen(arg);
2716
2717 cppOptions = __ecereNameSpace__ecere__com__eSystem_Renew(cppOptions, sizeof(char) * (newLen + 1));
2718 cppOptions[cppOptionsLen] = ' ';
2719 strcpy(cppOptions + cppOptionsLen + 1, arg);
2720 cppOptionsLen = newLen;
2721 targetBits = !strcmp(arg + 1, "m32") ? 32 : 64;
2722 }
2723 else if(!strcmp(arg + 1, "t32") || !strcmp(arg + 1, "t64"))
2724 {
2725 targetBits = !strcmp(arg + 1, "t32") ? 32 : 64;
2726 }
2727 else if(arg[1] == 'D' || arg[1] == 'I')
2728 {
2729 char * buf;
2730 int size = cppOptionsLen + 1 + strlen(arg) * 2 + 1;
2731
2732 cppOptions = __ecereNameSpace__ecere__com__eSystem_Renew(cppOptions, sizeof(char) * (size));
2733 buf = cppOptions + cppOptionsLen;
2734 *buf++ = ' ';
2735 PassArg(buf, arg);
2736 cppOptionsLen = cppOptionsLen + 1 + strlen(buf);
2737 }
2738 else if(!strcmp(arg + 1, "t"))
2739 {
2740 if(++c < ((struct __ecereNameSpace__ecere__com__Application *)(((char *)this + sizeof(struct __ecereNameSpace__ecere__com__Module) + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->argc)
2741 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]);
2742 else
2743 valid = 0;
2744 }
2745 else if(!strcmp(arg + 1, "cpp"))
2746 {
2747 if(++c < ((struct __ecereNameSpace__ecere__com__Application *)(((char *)this + sizeof(struct __ecereNameSpace__ecere__com__Module) + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->argc)
2748 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]);
2749 else
2750 valid = 0;
2751 }
2752 else if(!strcmp(arg + 1, "o"))
2753 {
2754 if(!GetOutputFile() && c + 1 < ((struct __ecereNameSpace__ecere__com__Application *)(((char *)this + sizeof(struct __ecereNameSpace__ecere__com__Module) + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->argc)
2755 {
2756 SetOutputFile(((struct __ecereNameSpace__ecere__com__Application *)(((char *)this + sizeof(struct __ecereNameSpace__ecere__com__Module) + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->argv[c + 1]);
2757 c++;
2758 }
2759 else
2760 valid = 0;
2761 }
2762 else if(!strcmp(arg + 1, "c"))
2763 {
2764 if(!GetSourceFile() && c + 1 < ((struct __ecereNameSpace__ecere__com__Application *)(((char *)this + sizeof(struct __ecereNameSpace__ecere__com__Module) + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->argc)
2765 {
2766 SetSourceFile(((struct __ecereNameSpace__ecere__com__Application *)(((char *)this + sizeof(struct __ecereNameSpace__ecere__com__Module) + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->argv[c + 1]);
2767 c++;
2768 }
2769 else
2770 valid = 0;
2771 }
2772 else if(!strcmp(arg + 1, "isystem") || !strcmp(arg + 1, "isysroot"))
2773 {
2774 if(c + 1 < ((struct __ecereNameSpace__ecere__com__Application *)(((char *)this + sizeof(struct __ecereNameSpace__ecere__com__Module) + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->argc)
2775 {
2776 char * buf;
2777 const char * arg1 = ((struct __ecereNameSpace__ecere__com__Application *)(((char *)this + sizeof(struct __ecereNameSpace__ecere__com__Module) + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->argv[++c];
2778 int size = cppOptionsLen + 1 + strlen(arg) * 2 + strlen(arg1) * 2 + 1;
2779
2780 cppOptions = __ecereNameSpace__ecere__com__eSystem_Renew(cppOptions, sizeof(char) * (size));
2781 buf = cppOptions + cppOptionsLen;
2782 *buf++ = ' ';
2783 buf = PassArg(buf, arg);
2784 *buf++ = ' ';
2785 buf = PassArg(buf, arg1);
2786 cppOptionsLen = buf - cppOptions;
2787 }
2788 else
2789 valid = 0;
2790 }
2791 else if(!strcmp(arg + 1, "fno-diagnostics-show-caret"))
2792 {
2793 char * buf;
2794 int size = cppOptionsLen + 1 + strlen(arg) * 2 + 1;
2795
2796 cppOptions = __ecereNameSpace__ecere__com__eSystem_Renew(cppOptions, sizeof(char) * (size));
2797 buf = cppOptions + cppOptionsLen;
2798 *buf++ = ' ';
2799 PassArg(buf, arg);
2800 cppOptionsLen = cppOptionsLen + 1 + strlen(buf);
2801 }
2802 else if(!strcmp(arg + 1, "symbols"))
2803 {
2804 if(c + 1 < ((struct __ecereNameSpace__ecere__com__Application *)(((char *)this + sizeof(struct __ecereNameSpace__ecere__com__Module) + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->argc)
2805 {
2806 SetSymbolsDir(((struct __ecereNameSpace__ecere__com__Application *)(((char *)this + sizeof(struct __ecereNameSpace__ecere__com__Module) + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->argv[c + 1]);
2807 c++;
2808 }
2809 else
2810 valid = 0;
2811 }
2812 else if(!strcmp(arg + 1, "defaultns"))
2813 {
2814 if(c + 1 < ((struct __ecereNameSpace__ecere__com__Application *)(((char *)this + sizeof(struct __ecereNameSpace__ecere__com__Module) + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->argc)
2815 {
2816 SetDefaultNameSpace(((struct __ecereNameSpace__ecere__com__Application *)(((char *)this + sizeof(struct __ecereNameSpace__ecere__com__Module) + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->argv[c + 1]);
2817 c++;
2818 }
2819 else
2820 valid = 0;
2821 }
2822 else if(!strcmp(arg + 1, "strictns"))
2823 {
2824 SetStrictNameSpaces(1);
2825 }
2826 else if(!strcmp(arg + 1, "module"))
2827 {
2828 if(c + 1 < ((struct __ecereNameSpace__ecere__com__Application *)(((char *)this + sizeof(struct __ecereNameSpace__ecere__com__Module) + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->argc)
2829 {
2830 SetI18nModuleName(((struct __ecereNameSpace__ecere__com__Application *)(((char *)this + sizeof(struct __ecereNameSpace__ecere__com__Module) + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->argv[c + 1]);
2831 c++;
2832 }
2833 else
2834 valid = 0;
2835 }
2836 }
2837 else
2838 valid = 0;
2839 }
2840 if(valid)
2841 {
2842 if(!cppCommand)
2843 cppCommand = __ecereNameSpace__ecere__sys__CopyString("gcc");
2844 if(!GetSourceFile())
2845 valid = 0;
2846 else if(!GetOutputFile())
2847 {
2848 strcpy(defaultSymFile, GetSymbolsDir());
2849 __ecereNameSpace__ecere__sys__PathCat(defaultSymFile, GetSourceFile());
2850 __ecereNameSpace__ecere__sys__ChangeExtension(defaultSymFile, "sym", defaultSymFile);
2851 SetOutputFile(defaultSymFile);
2852 }
2853 }
2854 if(!valid)
2855 {
2856 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))));
2857 }
2858 else
2859 {
2860 struct __ecereNameSpace__ecere__com__Instance * cppOutput;
2861 char command[3075];
2862
2863 SetGlobalData(&globalData);
2864 SetExcludedSymbols(&_excludedSymbols);
2865 SetGlobalContext(globalContext);
2866 SetCurrentContext(globalContext);
2867 SetTopContext(globalContext);
2868 SetDefines(&defines);
2869 SetImports(&imports);
2870 SetInPreCompiler(1);
2871 SetPrecompDefines(&precompDefines);
2872 SetTargetPlatform(targetPlatform);
2873 SetTargetBits(targetBits);
2874 SetEchoOn(0);
2875 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)));
2876 SetPrivateModule(privateModule);
2877 __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Add(&globalContext->types, (struct __ecereNameSpace__ecere__sys__BTNode *)__extension__ ({
2878 struct Symbol * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol);
2879
2880 __ecereInstance1->string = __ecereNameSpace__ecere__sys__CopyString("uint"), __ecereInstance1->type = ProcessTypeString("unsigned int", 0), __ecereInstance1;
2881 }));
2882 __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Add(&globalContext->types, (struct __ecereNameSpace__ecere__sys__BTNode *)__extension__ ({
2883 struct Symbol * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol);
2884
2885 __ecereInstance1->string = __ecereNameSpace__ecere__sys__CopyString("uint64"), __ecereInstance1->type = ProcessTypeString("unsigned int64", 0), __ecereInstance1;
2886 }));
2887 __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Add(&globalContext->types, (struct __ecereNameSpace__ecere__sys__BTNode *)__extension__ ({
2888 struct Symbol * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol);
2889
2890 __ecereInstance1->string = __ecereNameSpace__ecere__sys__CopyString("uint32"), __ecereInstance1->type = ProcessTypeString("unsigned int", 0), __ecereInstance1;
2891 }));
2892 __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Add(&globalContext->types, (struct __ecereNameSpace__ecere__sys__BTNode *)__extension__ ({
2893 struct Symbol * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol);
2894
2895 __ecereInstance1->string = __ecereNameSpace__ecere__sys__CopyString("uint16"), __ecereInstance1->type = ProcessTypeString("unsigned short", 0), __ecereInstance1;
2896 }));
2897 __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Add(&globalContext->types, (struct __ecereNameSpace__ecere__sys__BTNode *)__extension__ ({
2898 struct Symbol * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol);
2899
2900 __ecereInstance1->string = __ecereNameSpace__ecere__sys__CopyString("byte"), __ecereInstance1->type = ProcessTypeString("unsigned char", 0), __ecereInstance1;
2901 }));
2902 __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Add(&globalContext->types, (struct __ecereNameSpace__ecere__sys__BTNode *)__extension__ ({
2903 struct Symbol * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol);
2904
2905 __ecereInstance1->string = __ecereNameSpace__ecere__sys__CopyString("intptr_t"), __ecereInstance1->type = ProcessTypeString("intptr", 0), __ecereInstance1;
2906 }));
2907 __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Add(&globalContext->types, (struct __ecereNameSpace__ecere__sys__BTNode *)__extension__ ({
2908 struct Symbol * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol);
2909
2910 __ecereInstance1->string = __ecereNameSpace__ecere__sys__CopyString("uintptr_t"), __ecereInstance1->type = ProcessTypeString("uintptr", 0), __ecereInstance1;
2911 }));
2912 __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Add(&globalContext->types, (struct __ecereNameSpace__ecere__sys__BTNode *)__extension__ ({
2913 struct Symbol * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol);
2914
2915 __ecereInstance1->string = __ecereNameSpace__ecere__sys__CopyString("ssize_t"), __ecereInstance1->type = ProcessTypeString("intsize", 0), __ecereInstance1;
2916 }));
2917 __ecereMethod___ecereNameSpace__ecere__sys__BinaryTree_Add(&globalContext->types, (struct __ecereNameSpace__ecere__sys__BTNode *)__extension__ ({
2918 struct Symbol * __ecereInstance1 = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_Symbol);
2919
2920 __ecereInstance1->string = __ecereNameSpace__ecere__sys__CopyString("size_t"), __ecereInstance1->type = ProcessTypeString("uintsize", 0), __ecereInstance1;
2921 }));
2922 {
2923 const char * outputFilePath = GetOutputFile();
2924
2925 if(__ecereNameSpace__ecere__sys__FileExists(outputFilePath))
2926 __ecereNameSpace__ecere__sys__DeleteFile(outputFilePath);
2927 }
2928 snprintf(command, sizeof (command), "%s%s -x c -E \"%s\"", cppCommand, cppOptions ? cppOptions : "", GetSourceFile());
2929 command[sizeof (command) - 1] = (char)0;
2930 if((cppOutput = __ecereNameSpace__ecere__sys__DualPipeOpen((((unsigned int)(1))), command)))
2931 {
2932 int exitCode;
2933 struct __ecereNameSpace__ecere__sys__OldList * ast;
2934 struct __ecereNameSpace__ecere__com__Instance * fileInput = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass___ecereNameSpace__ecere__sys__TempFile);
2935 struct ModuleImport * mainModule = __ecereNameSpace__ecere__com__eInstance_New(__ecereClass_ModuleImport);
2936
2937 SetFileInput(fileInput);
2938 SetMainModule(mainModule);
2939 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Add(&imports, mainModule);
2940 resetScanner();
2941 for(; !((unsigned int (*)(struct __ecereNameSpace__ecere__com__Instance *))__extension__ ({
2942 struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = cppOutput;
2943
2944 __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__sys__DualPipe->_vTbl;
2945 })[__ecereVMethodID___ecereNameSpace__ecere__sys__File_Eof])(cppOutput); )
2946 {
2947 char junk[4096];
2948 int count = ((int (*)(struct __ecereNameSpace__ecere__com__Instance *, void *  buffer, unsigned int size, unsigned int count))__extension__ ({
2949 struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = cppOutput;
2950
2951 __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__sys__DualPipe->_vTbl;
2952 })[__ecereVMethodID___ecereNameSpace__ecere__sys__File_Read])(cppOutput, junk, 1, 4096);
2953
2954 ((int (*)(struct __ecereNameSpace__ecere__com__Instance *, const void *  buffer, unsigned int size, unsigned int count))__extension__ ({
2955 struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = fileInput;
2956
2957 __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__sys__TempFile->_vTbl;
2958 })[__ecereVMethodID___ecereNameSpace__ecere__sys__File_Write])(fileInput, junk, 1, count);
2959 }
2960 exitCode = __ecereMethod___ecereNameSpace__ecere__sys__DualPipe_GetExitCode(cppOutput);
2961 (__ecereNameSpace__ecere__com__eInstance_DecRef(cppOutput), cppOutput = 0);
2962 ((unsigned int (*)(struct __ecereNameSpace__ecere__com__Instance *, int pos, int mode))__extension__ ({
2963 struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = fileInput;
2964
2965 __internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__sys__TempFile->_vTbl;
2966 })[__ecereVMethodID___ecereNameSpace__ecere__sys__File_Seek])(fileInput, 0, 0);
2967 ParseEc();
2968 SetCurrentNameSpace((((void *)0)));
2969 SetYydebug(0);
2970 (__ecereNameSpace__ecere__com__eInstance_DecRef(fileInput), fileInput = 0);
2971 SetFileInput((((void *)0)));
2972 ast = GetAST();
2973 if(!exitCode)
2974 {
2975 if(ast)
2976 {
2977 ProcessDBTableDefinitions();
2978 PreCompPreProcessClassDefinitions();
2979 }
2980 if(!((struct __ecereNameSpace__ecere__com__Application *)(((char *)this + sizeof(struct __ecereNameSpace__ecere__com__Module) + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->exitCode)
2981 OutputSymbols(GetOutputFile());
2982 }
2983 else
2984 ((struct __ecereNameSpace__ecere__com__Application *)(((char *)this + sizeof(struct __ecereNameSpace__ecere__com__Module) + sizeof(struct __ecereNameSpace__ecere__com__Instance))))->exitCode = exitCode;
2985 if(ast)
2986 {
2987 FreeASTTree(ast);
2988 }
2989 }
2990 FreeContext(globalContext);
2991 FreeExcludedSymbols(&_excludedSymbols);
2992 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Free(&defines, (void *)(FreeModuleDefine));
2993 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Free(&imports, (void *)(FreeModuleImport));
2994 __ecereMethod___ecereNameSpace__ecere__sys__OldList_Free(&precompDefines, (void *)(FreeDefinition));
2995 FreeTypeData(privateModule);
2996 FreeIncludeFiles();
2997 FreeGlobalData(&globalData);
2998 (__ecereNameSpace__ecere__com__eInstance_DecRef(privateModule), privateModule = 0);
2999 }
3000 (__ecereNameSpace__ecere__com__eSystem_Delete(cppCommand), cppCommand = 0);
3001 (__ecereNameSpace__ecere__com__eSystem_Delete(cppOptions), cppOptions = 0);
3002 SetSymbolsDir((((void *)0)));
3003 }
3004
3005 void __ecereRegisterModule_ecp(struct __ecereNameSpace__ecere__com__Instance * module)
3006 {
3007 struct __ecereNameSpace__ecere__com__Class __attribute__((unused)) * class;
3008
3009 class = __ecereNameSpace__ecere__com__eSystem_RegisterClass(5, "ClassDefine", "Definition", sizeof(struct ClassDefine), 0, (void *)0, (void *)0, module, 2, 1);
3010 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)
3011 __ecereClass_ClassDefine = class;
3012 __ecereNameSpace__ecere__com__eClass_AddDataMember(class, "base", "char *", sizeof(void *), 0xF000F000, 1);
3013 __ecereNameSpace__ecere__com__eClass_AddDataMember(class, "propertiesAndMembers", "ecere::sys::OldList", sizeof(struct __ecereNameSpace__ecere__sys__OldList), 0xF000F000, 1);
3014 __ecereNameSpace__ecere__com__eClass_AddDataMember(class, "classProperties", "ecere::sys::OldList", sizeof(struct __ecereNameSpace__ecere__sys__OldList), 0xF000F000, 1);
3015 __ecereNameSpace__ecere__com__eClass_AddDataMember(class, "methods", "ecere::sys::OldList", sizeof(struct __ecereNameSpace__ecere__sys__OldList), 0xF000F000, 1);
3016 __ecereNameSpace__ecere__com__eClass_AddDataMember(class, "isRemote", "bool", 4, 4, 1);
3017 __ecereNameSpace__ecere__com__eClass_AddDataMember(class, "isWatchable", "bool", 4, 4, 1);
3018 __ecereNameSpace__ecere__com__eClass_AddDataMember(class, "fixed", "bool", 4, 4, 1);
3019 __ecereNameSpace__ecere__com__eClass_AddDataMember(class, "isStatic", "bool", 4, 4, 1);
3020 __ecereNameSpace__ecere__com__eClass_AddDataMember(class, "noExpansion", "bool", 4, 4, 1);
3021 class = __ecereNameSpace__ecere__com__eSystem_RegisterClass(5, "Define", "Definition", sizeof(struct Define), 0, (void *)0, (void *)0, module, 2, 1);
3022 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)
3023 __ecereClass_Define = class;
3024 __ecereNameSpace__ecere__com__eClass_AddDataMember(class, "exp", "Expression", sizeof(void *), 0xF000F000, 1);
3025 class = __ecereNameSpace__ecere__com__eSystem_RegisterClass(5, "FunctionDefine", "Definition", sizeof(struct FunctionDefine), 0, (void *)0, (void *)0, module, 2, 1);
3026 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)
3027 __ecereClass_FunctionDefine = class;
3028 __ecereNameSpace__ecere__com__eClass_AddDataMember(class, "dataType", "char *", sizeof(void *), 0xF000F000, 1);
3029 class = __ecereNameSpace__ecere__com__eSystem_RegisterClass(5, "DataDefine", "Definition", sizeof(struct DataDefine), 0, (void *)0, (void *)0, module, 2, 1);
3030 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)
3031 __ecereClass_DataDefine = class;
3032 __ecereNameSpace__ecere__com__eClass_AddDataMember(class, "dataType", "char *", sizeof(void *), 0xF000F000, 1);
3033 class = __ecereNameSpace__ecere__com__eSystem_RegisterClass(5, "MethodDefine", 0, sizeof(struct MethodDefine), 0, (void *)0, (void *)0, module, 2, 1);
3034 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)
3035 __ecereClass_MethodDefine = class;
3036 class = __ecereNameSpace__ecere__com__eSystem_RegisterClass(5, "PropertyDefine", 0, sizeof(struct PropertyDefine), 0, (void *)0, (void *)0, module, 2, 1);
3037 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)
3038 __ecereClass_PropertyDefine = class;
3039 class = __ecereNameSpace__ecere__com__eSystem_RegisterClass(5, "DataMemberDefine", 0, sizeof(struct DataMemberDefine), 0, (void *)0, (void *)0, module, 2, 1);
3040 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)
3041 __ecereClass_DataMemberDefine = class;
3042 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("FreeMethodDefine", "void FreeMethodDefine(MethodDefine method)", FreeMethodDefine, module, 2);
3043 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("FreeDataMemberDefine", "void FreeDataMemberDefine(DataMemberDefine dataMember)", FreeDataMemberDefine, module, 2);
3044 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("FreeDataDefine", "void FreeDataDefine(DataDefine data)", FreeDataDefine, module, 2);
3045 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("FreeDefinition", "void FreeDefinition(Definition definition)", FreeDefinition, module, 2);
3046 __ecereNameSpace__ecere__com__eSystem_RegisterFunction("PreCompPreProcessClassDefinitions", "void PreCompPreProcessClassDefinitions(void)", PreCompPreProcessClassDefinitions, module, 2);
3047 class = __ecereNameSpace__ecere__com__eSystem_RegisterClass(0, "PrecompApp", "ecere::com::Application", 0, 0, (void *)0, (void *)0, module, 2, 1);
3048 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)
3049 __ecereClass_PrecompApp = class;
3050 __ecereNameSpace__ecere__com__eClass_AddMethod(class, "Main", 0, __ecereMethod_PrecompApp_Main, 1);
3051 }
3052