2 Copyright © 1995-2013, The AROS Development Team. All rights reserved.
5 Print the library magic and init code in the file modname_start.c.
6 This code is partly based on code in CLib37x.lha from Andreas R. Kleinert
9 #include "oopsupport.h"
10 #include "muisupport.h"
11 #include "dtsupport.h"
12 #include "boopsisupport.h"
14 static void writedecl(FILE *, struct config
*);
15 static void writedeclsets(FILE *, struct config
*);
16 static void writeresident(FILE *, struct config
*);
17 static void writeinitlib(FILE *, struct config
*);
18 static void writehandler(FILE *, struct config
*);
19 static void writeopenlib(FILE *, struct config
*);
20 static void writecloselib(FILE *, struct config
*);
21 static void writeexpungelib(FILE *, struct config
*);
22 static void writeextfunclib(FILE *, struct config
*);
23 static void writefunctable(FILE *, struct config
*);
24 static void writesets(FILE *, struct config
*);
26 static inline const char *upname(const char *s
)
28 static char name
[512];
31 while (s
&& i
< (sizeof(name
)-1))
32 name
[i
++] = toupper(*(s
++));
39 /* Some general info on the function of the generated code and how they work
40 for .library modules (TODO: add docs for other module types):
42 The code in this file will write out the inittable, the function table,
43 the InitLib, OpenLib, CloseLib and ExpungeLib function.
44 InitLib will call the functions in the ADD2INIT symbolset.
45 OpenLib will call the functions in the ADD2OPENLIB symbolset.
46 CloseLib will call the functions in the ADD2CLOSELIB symbolset.
47 ExpungeLib will call the fucntions in the ADD2EXIT symbolset.
49 Currently 3 types of libraries are supported: 1 libbase, a per-opener
50 libbase and a per-task libbase.
51 * For 1 libbase the libbase is initialized once in InitLib and
52 then returned for each call to OpenLib. OpenLib and CloseLib keep track
53 of the times the libraries is still open; if it is 0 the library may be
55 * The per-opener libbase will create a new libbase for each call to OpenLib
56 After InitLib has called the ADD2INIT functions the fields in the root
57 libbase may have been initialized to a certain value. These value are
58 copied in the newly generated libbase and then the ADD2OPENLIB functions
59 are called with the new libbase.
60 A per-opener libbase is indicated by the OPTION_DUPBASE flag in cfg->options.
61 Currently, a task memory slot is used to store the libbase when a function
62 of the library is entered. With proper support from the compiler this could
63 be changed to use a reserved register - probably increasing speed. This
64 could be implemented later on without breaking backwards compatibility.
65 Special provision has been taken to restore the state of the memory slot
66 after CloseLib to what it was when OpenLib is called. This is to handle the
67 case properly where the library is used both in the parent and child
68 of a Task run with RunCommand().
69 * The per-task libbase will create a new libbase for a call to OpenLib when
70 there does not exist a libbase yet for this task. This is handled by reserving
71 an additional task memory slot. In OpenLib the contents of this memory slot
72 is checked and only a new libbase will be generated when the libbase stored
73 there is not for the current Task. Also on then the ADD2OPENLIB
74 A separate counter is added to count the number of times the libbase is opened
75 in the same task. The libbase will also only be closed and removed if this
76 counter reaches 0 and only then the ADD2CLOSELIB functions are called.
77 A per-task libbase is indicated by both flags OPTION_DUPBASE and
78 OPTION_PERTASKBASE in cfg->options.
79 It was decided to use an extra slot for storing the per-task libbase to check
80 in OpenLib if a new libbase has to created. This is to increase flexibility
81 during calling of the library functions. If the library supports this the
82 library can still be called with another libbase then the libbase stored in the
83 per-task slot, or the library function can be called from another task then the
84 one that opened the libbase.
85 Also here special provision has been taken to restore the state of the memory
86 slot after CloseLib to what it was when OpenLib is called.
88 void writestart(struct config
*cfg
)
91 char line
[256], *banner
;
94 snprintf(line
, 255, "%s/%s_start.c", cfg
->gendir
, cfg
->modulename
);
95 out
= fopen(line
, "w");
103 banner
= getBanner(cfg
);
104 fprintf(out
, "%s", banner
);
108 "/* For comments and explanation of generated code look in writestart.c source code\n"
109 " of the genmodule program */\n"
113 if (!(cfg
->options
& OPTION_NORESIDENT
))
115 writeresident(out
, cfg
);
116 writedeclsets(out
, cfg
);
117 writeinitlib(out
, cfg
);
118 if (cfg
->modtype
!= RESOURCE
&& cfg
->modtype
!= HANDLER
)
120 writeopenlib(out
, cfg
);
121 writecloselib(out
, cfg
);
122 writeexpungelib(out
, cfg
);
123 writeextfunclib(out
, cfg
);
124 if (cfg
->modtype
== MCC
|| cfg
->modtype
== MUI
|| cfg
->modtype
== MCP
)
125 writemccquery(out
, cfg
);
126 else if (cfg
->modtype
== DATATYPE
)
127 writeobtainengine(out
, cfg
);
132 if (cfg
->modtype
!= HANDLER
)
133 writefunctable(out
, cfg
);
135 for (cl
= cfg
->classlist
; cl
!= NULL
; cl
= cl
->next
)
137 switch (cl
->classtype
)
142 /* Second argument to next call: the class is not the main class if it is not
143 * the first class or the modtype is not a MUI class
145 writemccinit(cfg
, out
, cl
!= cfg
->classlist
|| cfg
->modtype
!= cl
->classtype
, cl
);
151 writeclassinit(cfg
, out
, cl
);
154 writeoopinit(out
, cl
);
157 fprintf(stdout
, "Internal error: unsupported classtype in writestart\n");
166 static void writedecl(FILE *out
, struct config
*cfg
)
168 struct stringlist
*linelistit
, *s
;
169 int boopsiinc
=0, muiinc
=0, oopinc
=0;
170 struct functionhead
*funclistit
;
171 struct functionarg
*arglistit
;
172 struct classinfo
*classlistit
;
175 if (cfg
->modtype
== DEVICE
)
178 "#include <exec/io.h>\n"
179 "#include <exec/errors.h>\n"
183 "#include <exec/types.h>\n"
184 "#include <exec/libraries.h>\n"
185 "#include <exec/resident.h>\n"
186 "#include <aros/libcall.h>\n"
187 "#include <aros/asmcall.h>\n"
188 "#include <aros/symbolsets.h>\n"
189 "#include <aros/genmodule.h>\n"
190 "#include <dos/dos.h>\n"
192 "#include \"%s_libdefs.h\"\n"
196 for (s
= cfg
->rellibs
; s
; s
= s
->next
)
198 "#include <proto/%s.h>\n"
205 "#undef UtilityBase\n"
207 "#include <proto/exec.h>\n"
208 "#include <proto/alib.h>\n"
212 /* Write out declaration section provided in the config file */
213 for (linelistit
= cfg
->cdeflines
; linelistit
!= NULL
; linelistit
= linelistit
->next
)
215 fprintf(out
, "%s\n", linelistit
->s
);
218 /* Is there a variable for storing the segList ? */
219 if (!(cfg
->options
& OPTION_NOEXPUNGE
) && cfg
->modtype
!=RESOURCE
&& cfg
->modtype
!= HANDLER
)
222 "#ifndef GM_SEGLIST_FIELD\n"
223 "static BPTR __attribute__((unused)) GM_UNIQUENAME(seglist);\n"
224 "#define GM_SEGLIST_FIELD(LIBBASE) (GM_UNIQUENAME(seglist))\n"
228 if (cfg
->options
& OPTION_DUPBASE
)
230 "/* Required for TaskStorage manipulation */\n"
231 "extern struct ExecBase *SysBase;\n"
233 if (cfg
->options
& OPTION_DUPBASE
)
236 "#ifndef GM_ROOTBASE_FIELD\n"
237 "static LIBBASETYPEPTR GM_UNIQUENAME(rootbase);\n"
238 "#define GM_ROOTBASE_FIELD(LIBBASE) (GM_UNIQUENAME(rootbase))\n"
240 "struct __GM_DupBase {\n"
241 " LIBBASETYPE base;\n"
242 " LIBBASETYPEPTR oldbase;\n"
244 if (cfg
->options
& OPTION_PERTASKBASE
)
247 " ULONG taskopencount;\n"
248 " struct Task *task;\n"
250 " LIBBASETYPEPTR oldpertaskbase;\n"
256 if (cfg
->options
& OPTION_PERTASKBASE
)
259 "static LONG __pertaskslot;\n"
260 "LIBBASETYPEPTR __GM_GetBaseParent(LIBBASETYPEPTR base)\n"
262 " return ((struct __GM_DupBase *)base)->oldpertaskbase;\n"
264 "static inline LIBBASETYPEPTR __GM_GetPerTaskBase(void)\n"
266 " return (LIBBASETYPEPTR)GetTaskStorageSlot(__pertaskslot);\n"
268 "static inline LIBBASETYPEPTR __GM_GetParentPerTaskBase(void)\n"
270 " return (LIBBASETYPEPTR)GetParentTaskStorageSlot(__pertaskslot);\n"
272 "static inline void __GM_SetPerTaskBase(LIBBASETYPEPTR base)\n"
274 " SetTaskStorageSlot(__pertaskslot, (IPTR)base);\n"
280 /* Set the size of the library base to accomodate the relbases */
281 if (cfg
->options
& OPTION_DUPBASE
)
284 "#define LIBBASESIZE (sizeof(struct __GM_DupBase) + sizeof(struct Library *)*%d)\n"
285 , slist_length(cfg
->rellibs
)
290 "#define LIBBASESIZE (sizeof(LIBBASETYPE) + sizeof(struct Library *)*%d)\n"
291 , slist_length(cfg
->rellibs
)
296 struct stringlist
*sl
;
297 int i
, n
= slist_length(cfg
->rellibs
);
299 for (sl
=cfg
->rellibs
; sl
; sl
=sl
->next
, n
--) {
301 "#ifndef AROS_RELLIB_OFFSET_%s\n"
302 "# error '%s' is not a relative library\n"
304 "const IPTR AROS_RELLIB_OFFSET_%s = LIBBASESIZE-sizeof(struct Library *)*%d;\n"
313 if (cfg
->options
& OPTION_DUPBASE
) {
316 "static LONG __GM_BaseSlot;\n"
317 "char *__aros_getoffsettable(void)\n"
319 " return (char *)GetTaskStorageSlot(__GM_BaseSlot);\n"
321 "void __aros_setoffsettable(void *base)\n"
323 " SetTaskStorageSlot(__GM_BaseSlot, (IPTR)base);\n"
325 "%s__aros_getbase_%s(void)\n"
327 " return (%s)__aros_getoffsettable();\n"
329 cfg
->libbasetypeptrextern
, cfg
->libbase
,
330 cfg
->libbasetypeptrextern
332 } else if (cfg
->rellibs
|| (cfg
->options
& OPTION_STACKCALL
)) {
334 "#ifdef __aros_getoffsettable\n"
336 if ((cfg
->options
& OPTION_STACKCALL
))
338 "#error Redefining __aros_setoffsettable is not permitted with stackcall APIs\n"
342 "#define __aros_getbase_%s() __aros_getoffsettable()\n",
346 "#else /* !__aros_getoffsettable */\n"
347 "static char *__GM_OffsetTable;\n"
348 "char *__aros_getoffsettable(void)\n"
350 " return __GM_OffsetTable;\n"
352 "BOOL __aros_setoffsettable(char *base)\n"
354 " __GM_OffsetTable = base;\n"
357 "%s__aros_getbase_%s(void)\n"
359 " return (%s)__aros_getoffsettable();\n"
361 "#endif /* __aros_getoffsettable */\n"
363 cfg
->libbasetypeptrextern
, cfg
->libbase
,
364 cfg
->libbasetypeptrextern
370 struct stringlist
*sl
;
372 for (sl
= cfg
->rellibs
; sl
; sl
= sl
->next
)
375 "AROS_IMPORT_ASM_SYM(void *,__GM_rellib_base_%s,AROS_RELLIB_BASE_%s);\n"
382 for (classlistit
= cfg
->classlist
; classlistit
!= NULL
; classlistit
= classlistit
->next
)
384 /* For the main class basename is the same as the module basename */
385 if (strcmp(classlistit
->basename
, cfg
->basename
) == 0)
387 if (classlistit
->classptr_var
== NULL
)
390 "#if !defined(GM_CLASSPTR_FIELD) && !defined(%s_CLASSPTR_FIELD)\n"
391 "static APTR GM_UNIQUENAME(%sClass);\n"
392 "#define GM_CLASSPTR_FIELD(LIBBASE) (GM_UNIQUENAME(%sClass))\n"
393 "#define %s_CLASSPTR_FIELD(LIBBASE) (GM_UNIQUENAME(%sClass))\n"
394 "#define %s_STORE_CLASSPTR 1\n"
395 "#elif defined(GM_CLASSPTR_FIELD) && !defined(%s_CLASSPTR_FIELD)\n"
396 "#define %s_CLASSPTR_FIELD(LIBBASE) (GM_CLASSPTR_FIELD(LIBBASE))\n"
397 "#elif !defined(GM_CLASSPTR_FIELD) && defined(%s_CLASSPTR_FIELD)\n"
398 "#define GM_CLASSPTR_FIELD(LIBBASE) (%s_CLASSPTR_FIELD(LIBBASE))\n"
400 classlistit
->basename
,
401 classlistit
->basename
,
402 classlistit
->basename
,
403 classlistit
->basename
, classlistit
->basename
,
404 classlistit
->basename
,
405 classlistit
->basename
,
406 classlistit
->basename
,
407 classlistit
->basename
,
408 classlistit
->basename
414 "#define GM_CLASSPTR_FIELD(LIBBASE) (%s)\n"
415 "#define %s_CLASSPTR_FIELD(LIBBASE) (%s)\n"
416 "#define %s_STORE_CLASSPTR 1\n",
417 classlistit
->classptr_var
,
418 classlistit
->basename
, classlistit
->classptr_var
,
419 classlistit
->basename
425 if (classlistit
->classptr_var
== NULL
)
428 "#if !defined(%s_CLASSPTR_FIELD)\n"
429 "static APTR GM_UNIQUENAME(%sClass);\n"
430 "#define %s_CLASSPTR_FIELD(LIBBASE) (GM_UNIQUENAME(%sClass))\n"
431 "#define %s_STORE_CLASSPTR 1\n"
433 classlistit
->basename
,
434 classlistit
->basename
,
435 classlistit
->basename
, classlistit
->basename
,
436 classlistit
->basename
442 "#define %s_CLASSPTR_FIELD(LIBBASE) (%s)\n"
443 "#define %s_STORE_CLASSPTR 1\n",
444 classlistit
->basename
, classlistit
->classptr_var
,
445 classlistit
->basename
451 /* Write out the defines for the functions of the function table */
452 writefuncdefs(out
, cfg
, cfg
->funclist
);
453 /* Write internal stubs */
454 writefuncinternalstubs(out
, cfg
, cfg
->funclist
);
458 /* Write out the includes needed for the classes */
459 if (cfg
->classlist
!= NULL
)
460 writeboopsiincludes(out
);
462 for (classlistit
= cfg
->classlist
; classlistit
!= NULL
; classlistit
= classlistit
->next
)
464 switch (classlistit
->classtype
)
471 writemuiincludes(out
);
474 /* Fall through: also write boopsi includes */
481 writeboopsiincludes(out
);
488 writeoopincludes(out
);
493 fprintf(stderr
, "Internal error: unhandled classtype in writedecl\n");
500 static void writedeclsets(FILE *out
, struct config
*cfg
)
502 /* PROGRAM_ENTRIES is marked as handled but are just ignored in modules */
504 "THIS_PROGRAM_HANDLES_SYMBOLSET(INIT)\n"
505 "THIS_PROGRAM_HANDLES_SYMBOLSET(EXIT)\n"
508 "THIS_PROGRAM_HANDLES_SYMBOLSET(PROGRAM_ENTRIES)\n"
509 "DECLARESET(PROGRAM_ENTRIES)\n"
511 if (cfg
->modtype
!= HANDLER
)
513 "THIS_PROGRAM_HANDLES_SYMBOLSET(CTORS)\n"
514 "THIS_PROGRAM_HANDLES_SYMBOLSET(DTORS)\n"
515 "DECLARESET(CTORS)\n"
516 "DECLARESET(DTORS)\n"
517 "THIS_PROGRAM_HANDLES_SYMBOLSET(INIT_ARRAY)\n"
518 "THIS_PROGRAM_HANDLES_SYMBOLSET(FINI_ARRAY)\n"
519 "DECLARESET(INIT_ARRAY)\n"
520 "DECLARESET(FINI_ARRAY)\n"
521 "THIS_PROGRAM_HANDLES_SYMBOLSET(INITLIB)\n"
522 "THIS_PROGRAM_HANDLES_SYMBOLSET(EXPUNGELIB)\n"
523 "DECLARESET(INITLIB)\n"
524 "DECLARESET(EXPUNGELIB)\n"
526 if (!(cfg
->options
& OPTION_NOAUTOLIB
))
529 "THIS_PROGRAM_HANDLES_SYMBOLSET(LIBS)\n"
534 "THIS_PROGRAM_HANDLES_SYMBOLSET(RELLIBS)\n"
535 "DECLARESET(RELLIBS)\n"
538 if (!(cfg
->options
& OPTION_NOOPENCLOSE
))
540 "THIS_PROGRAM_HANDLES_SYMBOLSET(OPENLIB)\n"
541 "THIS_PROGRAM_HANDLES_SYMBOLSET(CLOSELIB)\n"
542 "DECLARESET(OPENLIB)\n"
543 "DECLARESET(CLOSELIB)\n"
545 if (cfg
->modtype
== DEVICE
)
547 "THIS_PROGRAM_HANDLES_SYMBOLSET(OPENDEV)\n"
548 "THIS_PROGRAM_HANDLES_SYMBOLSET(CLOSEDEV)\n"
549 "DECLARESET(OPENDEV)\n"
550 "DECLARESET(CLOSEDEV)\n"
552 if (cfg
->classlist
!= NULL
)
554 "THIS_PROGRAM_HANDLES_SYMBOLSET(CLASSESINIT)\n"
555 "THIS_PROGRAM_HANDLES_SYMBOLSET(CLASSESEXPUNGE)\n"
556 "DECLARESET(CLASSESINIT)\n"
557 "DECLARESET(CLASSESEXPUNGE)\n"
558 "#define ADD2INITCLASSES(symbol, pri) ADD2SET(symbol, CLASSESINIT, pri)\n"
559 "#define ADD2EXPUNGECLASSES(symbol, pri) ADD2SET(symbol, CLASSESEXPUNGE, pri)\n"
565 static void writeresident(FILE *out
, struct config
*cfg
)
567 char *rt_skip
= cfg
->addromtag
;
570 fprintf(out
, "extern const struct Resident %s;\n", rt_skip
);
573 rt_skip
= "GM_UNIQUENAME(End)";
574 fprintf(out
, "extern const int %s;\n", rt_skip
);
577 "extern const APTR GM_UNIQUENAME(FuncTable)[];\n"
579 if (cfg
->options
& OPTION_RESAUTOINIT
)
580 fprintf(out
, "static const struct InitTable GM_UNIQUENAME(InitTable);\n");
583 "extern const char GM_UNIQUENAME(LibName)[];\n"
584 "extern const char GM_UNIQUENAME(LibID)[];\n"
585 "extern const char GM_UNIQUENAME(Copyright)[];\n"
589 if (cfg
->options
& OPTION_RESAUTOINIT
)
592 "#define __freebase(LIBBASE)\\\n"
594 " UWORD negsize, possize;\\\n"
595 " UBYTE *negptr = (UBYTE *)LIBBASE;\\\n"
596 " negsize = ((struct Library *)LIBBASE)->lib_NegSize;\\\n"
597 " negptr -= negsize;\\\n"
598 " possize = ((struct Library *)LIBBASE)->lib_PosSize;\\\n"
599 " FreeMem (negptr, negsize+possize);\\\n"
605 "AROS_UFP3 (LIBBASETYPEPTR, GM_UNIQUENAME(InitLib),\n"
606 " AROS_UFPA(LIBBASETYPEPTR, LIBBASE, D0),\n"
607 " AROS_UFPA(BPTR, segList, A0),\n"
608 " AROS_UFPA(struct ExecBase *, sysBase, A6)\n"
611 if (cfg
->modtype
!= RESOURCE
&& cfg
->modtype
!= HANDLER
)
614 "AROS_LD1(BPTR, GM_UNIQUENAME(ExpungeLib),\n"
615 " AROS_LDA(LIBBASETYPEPTR, extralh, D0),\n"
616 " LIBBASETYPEPTR, LIBBASE, 3, %s\n"
623 "struct Resident const GM_UNIQUENAME(ROMTag) =\n"
626 " (struct Resident *)&GM_UNIQUENAME(ROMTag),\n"
629 " VERSION_NUMBER,\n",
632 switch (cfg
->modtype
)
642 fprintf(out
, " NT_LIBRARY,\n");
645 fprintf(out
, " NT_DEVICE,\n");
649 fprintf(out
, " NT_RESOURCE,\n");
652 fprintf(stderr
, "Internal error: unsupported modtype for NT_...\n");
658 " (CONST_STRPTR)&GM_UNIQUENAME(LibName)[0],\n"
659 " (CONST_STRPTR)&GM_UNIQUENAME(LibID)[6],\n"
661 if (cfg
->options
& OPTION_RESAUTOINIT
)
664 " (APTR)&GM_UNIQUENAME(InitTable)\n"
667 "static struct InitTable\n"
670 " const APTR *FuncTable;\n"
671 " struct DataTable *DataTable;\n"
672 " APTR InitLibTable;\n"
674 "const GM_UNIQUENAME(InitTable) =\n"
677 " &GM_UNIQUENAME(FuncTable)[0],\n"
679 " (APTR)GM_UNIQUENAME(InitLib)\n"
684 fprintf(out
, " (APTR)GM_UNIQUENAME(InitLib)\n};\n");
688 "const char GM_UNIQUENAME(LibName)[] = MOD_NAME_STRING;\n"
689 "const char GM_UNIQUENAME(LibID)[] = VERSION_STRING;\n"
690 "const char GM_UNIQUENAME(Copyright)[] = COPYRIGHT_STRING;\n"
695 static void writehandler(FILE *out
, struct config
*cfg
)
698 struct handlerinfo
*hl
;
699 int need_fse
= 0, need_dos
= 0;
703 "#include <resources/filesysres.h>\n"
704 "#include <aros/system.h>\n"
705 "#include <proto/arossupport.h>\n"
706 "#include <proto/expansion.h>\n"
710 for (hl
= cfg
->handlerlist
; hl
!= NULL
; hl
= hl
->next
) {
711 if (hl
->type
== HANDLER_DOSNODE
)
720 "LONG %s(struct ExecBase *sysBase);\n"
721 "extern const LONG const __aros_libreq_SysBase __attribute__((weak));\n"
723 "__startup AROS_PROCH(GM_UNIQUENAME(Handler), argptr, argsize, SysBase)\n"
725 " AROS_PROCFUNC_INIT\n"
727 " LONG ret = RETURN_FAIL;\n"
729 " if (!SysBase || SysBase->LibNode.lib_Version < __aros_libreq_SysBase)\n"
730 " return ERROR_INVALID_RESIDENT_LIBRARY;\n"
731 " if (set_call_funcs(SETNAME(INIT), 1, 1)) {\n"
732 " ret = %s(SysBase);\n"
733 " set_call_funcs(SETNAME(EXIT), -1, 0);\n"
738 " AROS_PROCFUNC_EXIT\n"
746 "static inline BOOL GM_UNIQUENAME(InitHandler)(struct ExecBase *SysBase)\n"
750 if (!need_dos
&& !need_fse
) {
764 " struct Library *ExpansionBase;\n"
769 " struct FileSysResource *fsr;\n"
770 " struct FileSysEntry *fse;\n"
775 " fsr = (struct FileSysResource *)OpenResource(\"FileSystem.resource\");\n"
776 " if (fsr == NULL)\n"
782 " ExpansionBase = OpenLibrary(\"expansion.library\", 36);\n"
783 " if (ExpansionBase == NULL)\n"
788 " seg = CreateSegList(GM_UNIQUENAME(Handler));\n"
789 " if (seg != BNULL) {\n"
791 for (hl
= cfg
->handlerlist
; hl
!= NULL
; hl
= hl
->next
)
795 case HANDLER_DOSNODE
:
799 " struct DeviceNode *node;\n"
807 " node = MakeDosNode((APTR)pp);\n"
809 " node->dn_StackSize = %u;\n"
810 " node->dn_SegList = seg;\n"
811 " node->dn_Startup = (BPTR)%d;\n"
812 " node->dn_Priority = %d;\n"
813 " node->dn_GlobalVec = (BPTR)(SIPTR)-1;\n"
814 " AddBootNode(%d, 0, node, NULL);\n"
825 case HANDLER_RESIDENT
:
826 case HANDLER_DOSTYPE
:
829 " /* Check to see if we can allocate the memory for the fse */\n"
830 " fse = AllocMem(sizeof(*fse), MEMF_CLEAR);\n"
832 " fse->fse_Node.ln_Name = VERSION_STRING;\n"
833 " fse->fse_Node.ln_Pri = %d;\n"
834 " fse->fse_DosType = 0x%08x;\n"
835 " fse->fse_Version = (MAJOR_VERSION << 16) | MINOR_VERSION;\n"
836 " fse->fse_PatchFlags = FSEF_SEGLIST | FSEF_GLOBALVEC | FSEF_PRIORITY;\n"
843 " fse->fse_PatchFlags |= FSEF_STACKSIZE;\n"
844 " fse->fse_StackSize = %d;\n"
850 " fse->fse_PatchFlags |= FSEF_HANDLER;\n"
851 " fse->fse_Handler = AROS_CONST_BSTR(\"%s\");\n"
854 " fse->fse_Priority = %d;\n"
855 " fse->fse_SegList = seg;\n"
856 " fse->fse_GlobalVec = (BPTR)(SIPTR)-1;\n"
857 " fse->fse_Startup = (BPTR)%d;\n"
859 " /* Add to the list. I know forbid and permit are\n"
860 " * a little unnecessary for the pre-multitasking state\n"
861 " * we should be in at this point, but you never know\n"
862 " * who's going to blindly copy this code as an example.\n"
865 " Enqueue(&fsr->fsr_FileSysEntries, (struct Node *)fse);\n"
879 " CloseLibrary(ExpansionBase);\n"
889 static void writeinitlib(FILE *out
, struct config
*cfg
)
891 if (cfg
->handlerlist
)
892 writehandler(out
, cfg
);
895 "extern const LONG const __aros_libreq_SysBase __attribute__((weak));\n"
897 "AROS_UFH3 (LIBBASETYPEPTR, GM_UNIQUENAME(InitLib),\n"
898 " AROS_UFHA(LIBBASETYPEPTR, LIBBASE, D0),\n"
899 " AROS_UFHA(BPTR, segList, A0),\n"
900 " AROS_UFHA(struct ExecBase *, sysBase, A6)\n"
903 " AROS_USERFUNC_INIT\n"
906 if (cfg
->modtype
== HANDLER
) {
909 " GM_UNIQUENAME(InitHandler)(sysBase);\n"
912 " AROS_USERFUNC_EXIT\n"
922 " int initcalled = 0;\n"
924 /* Set the global SysBase, needed for __aros_setoffsettable()/__aros_getoffsettable() */
925 if (cfg
->options
& OPTION_DUPBASE
)
927 " SysBase = sysBase;\n"
931 " struct ExecBase *SysBase = sysBase;\n"
935 "#ifdef GM_SYSBASE_FIELD\n"
936 " GM_SYSBASE_FIELD(LIBBASE) = (APTR)SysBase;\n"
938 " if (!SysBase || SysBase->LibNode.lib_Version < __aros_libreq_SysBase)\n"
943 if (cfg
->options
& OPTION_RESAUTOINIT
) {
945 "#ifdef GM_OOPBASE_FIELD\n"
946 " GM_OOPBASE_FIELD(LIBBASE) = OpenLibrary(\"oop.library\",0);\n"
947 " if (GM_OOPBASE_FIELD(LIBBASE) == NULL)\n"
953 if (!(cfg
->options
& OPTION_RESAUTOINIT
))
960 " vecsize = FUNCTIONS_COUNT * LIB_VECTSIZE;\n"
961 " if (vecsize > 0)\n"
962 " vecsize = ((vecsize-1)/sizeof(IPTR) + 1)*sizeof(IPTR);\n"
963 " mem = AllocMem(vecsize+sizeof(LIBBASETYPE), MEMF_PUBLIC|MEMF_CLEAR);\n"
964 " if (mem == NULL)\n"
966 " LIBBASE = (LIBBASETYPEPTR)(mem + vecsize);\n"
967 " n = (struct Node *)LIBBASE;\n"
968 " n->ln_Type = NT_RESOURCE;\n"
969 " n->ln_Pri = RESIDENTPRI;\n"
970 " n->ln_Name = (char *)GM_UNIQUENAME(LibName);\n"
971 " MakeFunctions(LIBBASE, (APTR)GM_UNIQUENAME(FuncTable), NULL);\n"
973 if ((cfg
->modtype
!= RESOURCE
) && (cfg
->options
& OPTION_SELFINIT
))
976 " ((struct Library*)LIBBASE)->lib_NegSize = vecsize;\n"
977 " ((struct Library*)LIBBASE)->lib_PosSize = sizeof(LIBBASETYPE);\n"
985 " ((struct Library *)LIBBASE)->lib_Revision = REVISION_NUMBER;\n"
989 if (cfg
->options
& OPTION_DUPBASE
)
991 " __GM_BaseSlot = AllocTaskStorageSlot();\n"
992 " if (!SetTaskStorageSlot(__GM_BaseSlot, (IPTR)LIBBASE)) {\n"
993 " FreeTaskStorageSlot(__GM_BaseSlot);\n"
997 else if (cfg
->rellibs
|| (cfg
->options
& OPTION_STACKCALL
))
999 " __aros_setoffsettable((char *)LIBBASE);\n"
1001 if (cfg
->options
& OPTION_PERTASKBASE
)
1003 " __pertaskslot = AllocTaskStorageSlot();\n"
1006 if (!(cfg
->options
& OPTION_NOEXPUNGE
) && cfg
->modtype
!=RESOURCE
)
1007 fprintf(out
, " GM_SEGLIST_FIELD(LIBBASE) = segList;\n");
1008 if (cfg
->options
& OPTION_DUPBASE
)
1009 fprintf(out
, " GM_ROOTBASE_FIELD(LIBBASE) = (LIBBASETYPEPTR)LIBBASE;\n");
1010 fprintf(out
, " if (");
1011 if (!(cfg
->options
& OPTION_NOAUTOLIB
))
1012 fprintf(out
, "set_open_libraries() && ");
1014 fprintf(out
, "set_open_rellibraries(LIBBASE) && ");
1016 "set_call_funcs(SETNAME(INIT), 1, 1) &&"
1018 if (cfg
->classlist
!= NULL
)
1019 fprintf(out
, "set_call_libfuncs(SETNAME(CLASSESINIT), 1, 1, LIBBASE) && ");
1023 " set_call_funcs(SETNAME(CTORS), -1, 0);\n"
1024 " set_call_funcs(SETNAME(INIT_ARRAY), 1, 0);\n"
1029 " initcalled = 1;\n"
1030 " ok = set_call_libfuncs(SETNAME(INITLIB), 1, 1, LIBBASE);\n"
1037 " if (initcalled)\n"
1038 " set_call_libfuncs(SETNAME(EXPUNGELIB), -1, 0, LIBBASE);\n"
1039 " set_call_funcs(SETNAME(FINI_ARRAY), -1, 0);\n"
1040 " set_call_funcs(SETNAME(DTORS), 1, 0);\n"
1041 " set_call_funcs(SETNAME(EXIT), -1, 0);\n"
1043 if (cfg
->classlist
!= NULL
)
1044 fprintf(out
, " set_call_libfuncs(SETNAME(CLASSESEXPUNGE), -1, 0, LIBBASE);\n");
1046 fprintf(out
, " set_close_rellibraries(LIBBASE);\n");
1047 if (!(cfg
->options
& OPTION_NOAUTOLIB
))
1048 fprintf(out
, " set_close_libraries();\n");
1050 if (cfg
->options
& OPTION_RESAUTOINIT
)
1054 " __freebase(LIBBASE);\n"
1061 " FreeMem(mem, vecsize+LIBBASESIZE);\n"
1071 if (!(cfg
->options
& OPTION_RESAUTOINIT
) && !(cfg
->options
& OPTION_SELFINIT
))
1073 switch (cfg
->modtype
)
1076 fprintf(out
, " AddResource(LIBBASE);\n");
1080 fprintf(out
, " AddDevice(LIBBASE);\n");
1083 /* Everything else is library */
1084 fprintf(out
, " AddLibrary(LIBBASE);\n");
1090 " return LIBBASE;\n"
1093 " AROS_USERFUNC_EXIT\n"
1099 static void writeopenlib(FILE *out
, struct config
*cfg
)
1101 switch (cfg
->modtype
)
1104 fprintf(stderr
, "Internal error: writeopenlib called for a resource\n");
1107 fprintf(stderr
, "Internal error: writeopenlib called for a handler\n");
1110 if (cfg
->options
& OPTION_NOOPENCLOSE
)
1112 "AROS_LD3 (void, GM_UNIQUENAME(OpenLib),\n"
1113 " AROS_LDA(struct IORequest *, ioreq, A1),\n"
1114 " AROS_LDA(ULONG, unitnum, D0),\n"
1115 " AROS_LDA(ULONG, flags, D1),\n"
1116 " LIBBASETYPEPTR, LIBBASE, 1, %s\n"
1123 "AROS_LH3 (void, GM_UNIQUENAME(OpenLib),\n"
1124 " AROS_LHA(struct IORequest *, ioreq, A1),\n"
1125 " AROS_LHA(IPTR, unitnum, D0),\n"
1126 " AROS_LHA(ULONG, flags, D1),\n"
1127 " LIBBASETYPEPTR, LIBBASE, 1, %s\n"
1133 " AROS_LIBFUNC_INIT\n"
1135 " if ( set_call_libfuncs(SETNAME(OPENLIB), 1, 1, LIBBASE)\n"
1136 " && set_call_devfuncs(SETNAME(OPENDEV), 1, 1, LIBBASE, ioreq, unitnum, flags)\n"
1139 " ((struct Library *)LIBBASE)->lib_OpenCnt++;\n"
1140 " ((struct Library *)LIBBASE)->lib_Flags &= ~LIBF_DELEXP;\n"
1142 " ioreq->io_Message.mn_Node.ln_Type = NT_REPLYMSG;\n"
1146 " if (ioreq->io_Error >= 0)\n"
1147 " ioreq->io_Error = IOERR_OPENFAIL;\n"
1152 " AROS_LIBFUNC_EXIT\n"
1159 if (cfg
->options
& OPTION_NOOPENCLOSE
)
1162 "AROS_LD1 (LIBBASETYPEPTR, GM_UNIQUENAME(OpenLib),\n"
1163 " AROS_LDA (ULONG, version, D0),\n"
1164 " LIBBASETYPEPTR, LIBBASE, 1, %s\n"
1171 "AROS_LH1 (LIBBASETYPEPTR, GM_UNIQUENAME(OpenLib),\n"
1172 " AROS_LHA (ULONG, version, D0),\n"
1173 " LIBBASETYPEPTR, LIBBASE, 1, %s\n"
1176 " AROS_LIBFUNC_INIT\n"
1180 if (!(cfg
->options
& OPTION_DUPBASE
))
1183 " if ( set_call_libfuncs(SETNAME(OPENLIB), 1, 1, LIBBASE) )\n"
1185 " ((struct Library *)LIBBASE)->lib_OpenCnt++;\n"
1186 " ((struct Library *)LIBBASE)->lib_Flags &= ~LIBF_DELEXP;\n"
1187 " return LIBBASE;\n"
1192 " AROS_LIBFUNC_EXIT\n"
1197 else /* OPTION_DUPBASE */
1200 " struct Library *newlib = NULL;\n"
1201 " UWORD possize = ((struct Library *)LIBBASE)->lib_PosSize;\n"
1202 " LIBBASETYPEPTR oldbase = (LIBBASETYPEPTR)__aros_getbase_%s();\n",
1205 if (cfg
->options
& OPTION_PERTASKBASE
)
1207 " struct Task *thistask = FindTask(NULL);\n"
1208 " LIBBASETYPEPTR oldpertaskbase = __GM_GetPerTaskBase();\n"
1209 " if (!oldpertaskbase)\n"
1210 " oldpertaskbase = __GM_GetParentPerTaskBase();\n"
1211 " newlib = (struct Library *)oldpertaskbase;\n"
1214 " struct __GM_DupBase *dupbase = (struct __GM_DupBase *)newlib;\n"
1215 " if (dupbase->task != thistask)\n"
1217 " else if (thistask->tc_Node.ln_Type == NT_PROCESS\n"
1218 " && dupbase->retaddr != ((struct Process *)thistask)->pr_ReturnAddr\n"
1222 " dupbase->taskopencount++;\n"
1228 " if (newlib == NULL)\n"
1230 " newlib = MakeLibrary(GM_UNIQUENAME(InitTable).FuncTable,\n"
1231 " GM_UNIQUENAME(InitTable).DataTable,\n"
1233 " GM_UNIQUENAME(InitTable).Size,\n"
1236 " if (newlib == NULL)\n"
1239 " CopyMem(LIBBASE, newlib, possize);\n"
1240 " struct __GM_DupBase *dupbase = (struct __GM_DupBase *)newlib;\n"
1241 " dupbase->oldbase = oldbase;\n"
1242 " __aros_setoffsettable((char *)newlib);\n"
1244 if (cfg
->options
& OPTION_PERTASKBASE
)
1246 " dupbase->task = thistask;\n"
1247 " if (thistask->tc_Node.ln_Type == NT_PROCESS)\n"
1248 " dupbase->retaddr = ((struct Process *)thistask)->pr_ReturnAddr;\n"
1249 " dupbase->oldpertaskbase = oldpertaskbase;\n"
1250 " dupbase->taskopencount = 1;\n"
1251 " __GM_SetPerTaskBase((LIBBASETYPEPTR)newlib);\n"
1255 " if (!(set_open_rellibraries(newlib)\n"
1256 " && set_call_libfuncs(SETNAME(OPENLIB), 1, 1, newlib)\n"
1260 if (cfg
->options
& OPTION_PERTASKBASE
)
1262 " __GM_SetPerTaskBase(oldpertaskbase);\n");
1264 " __freebase(newlib);\n"
1268 " ((struct Library *)LIBBASE)->lib_OpenCnt++;\n"
1269 " ((struct Library *)LIBBASE)->lib_Flags &= ~LIBF_DELEXP;\n"
1272 " return (LIBBASETYPEPTR)newlib;\n"
1274 " AROS_LIBFUNC_EXIT\n"
1283 static void writecloselib(FILE *out
, struct config
*cfg
)
1285 if (cfg
->options
& OPTION_NOOPENCLOSE
)
1287 if (cfg
->modtype
!= DEVICE
)
1289 "AROS_LD0 (BPTR, GM_UNIQUENAME(CloseLib),\n"
1290 " LIBBASETYPEPTR, LIBBASE, 2, %s\n"
1296 "AROS_LD1(BPTR, GM_UNIQUENAME(CloseLib),\n"
1297 " AROS_LDA(struct IORequest *, ioreq, A1),\n"
1298 " LIBBASETYPEPTR, LIBBASE, 2, %s\n"
1304 if (cfg
->modtype
!= DEVICE
)
1306 "AROS_LH0 (BPTR, GM_UNIQUENAME(CloseLib),\n"
1307 " LIBBASETYPEPTR, LIBBASE, 2, %s\n"
1313 "AROS_LH1(BPTR, GM_UNIQUENAME(CloseLib),\n"
1314 " AROS_LHA(struct IORequest *, ioreq, A1),\n"
1315 " LIBBASETYPEPTR, LIBBASE, 2, %s\n"
1322 " AROS_LIBFUNC_INIT\n"
1325 if (cfg
->modtype
== DEVICE
)
1327 " if (!set_call_devfuncs(SETNAME(CLOSEDEV), -1, 1, LIBBASE, ioreq, 0, 0))\n"
1332 if (!(cfg
->options
& OPTION_DUPBASE
))
1335 " ((struct Library *)LIBBASE)->lib_OpenCnt--;\n"
1336 " set_call_libfuncs(SETNAME(CLOSELIB), -1, 0, LIBBASE);\n"
1339 else /* OPTION_DUPBASE */
1342 " LIBBASETYPEPTR rootbase = GM_ROOTBASE_FIELD(LIBBASE);\n"
1343 " struct __GM_DupBase *dupbase = (struct __GM_DupBase *)LIBBASE;\n"
1344 " __aros_setoffsettable(LIBBASE);\n"
1346 if (cfg
->options
& OPTION_PERTASKBASE
)
1348 " dupbase->taskopencount--;\n"
1349 " if (dupbase->taskopencount != 0)\n"
1354 " set_call_libfuncs(SETNAME(CLOSELIB), -1, 0, LIBBASE);\n"
1355 " set_close_rellibraries(LIBBASE);\n"
1356 " __aros_setoffsettable((char *)dupbase->oldbase);\n"
1358 if (cfg
->options
& OPTION_PERTASKBASE
)
1360 " __GM_SetPerTaskBase(((struct __GM_DupBase *)LIBBASE)->oldpertaskbase);\n"
1363 " __freebase(LIBBASE);\n"
1364 " LIBBASE = rootbase;\n"
1365 " ((struct Library *)LIBBASE)->lib_OpenCnt--;\n"
1369 if (!(cfg
->options
& OPTION_NOEXPUNGE
))
1373 " (((struct Library *)LIBBASE)->lib_OpenCnt == 0)\n"
1374 " && (((struct Library *)LIBBASE)->lib_Flags & LIBF_DELEXP)\n"
1377 " return AROS_LC1(BPTR, GM_UNIQUENAME(ExpungeLib),\n"
1378 " AROS_LCA(LIBBASETYPEPTR, LIBBASE, D0),\n"
1379 " LIBBASETYPEPTR, LIBBASE, 3, %s\n"
1388 " AROS_LIBFUNC_EXIT\n"
1395 static void writeexpungelib(FILE *out
, struct config
*cfg
)
1398 "AROS_LH1 (BPTR, GM_UNIQUENAME(ExpungeLib),\n"
1399 " AROS_LHA(LIBBASETYPEPTR, extralh, D0),\n"
1400 " LIBBASETYPEPTR, LIBBASE, 3, %s\n"
1406 " AROS_LIBFUNC_INIT\n"
1409 if (!(cfg
->options
& OPTION_NOEXPUNGE
))
1411 if (cfg
->options
& OPTION_RESAUTOINIT
) {
1413 "#ifdef GM_SYSBASE_FIELD\n"
1414 " struct ExecBase *SysBase = (struct ExecBase *)GM_SYSBASE_FIELD(LIBBASE);\n"
1418 if (cfg
->options
& OPTION_DUPBASE
)
1419 fprintf(out
, " __aros_setoffsettable(LIBBASE);\n");
1422 " if ( ((struct Library *)LIBBASE)->lib_OpenCnt == 0 )\n"
1424 " BPTR seglist = GM_SEGLIST_FIELD(LIBBASE);\n"
1426 " if(!set_call_libfuncs(SETNAME(EXPUNGELIB), -1, 1, LIBBASE))\n"
1428 " ((struct Library *)LIBBASE)->lib_Flags |= LIBF_DELEXP;\n"
1432 " Remove((struct Node *)LIBBASE);\n"
1434 " set_call_funcs(SETNAME(FINI_ARRAY), -1, 0);\n"
1435 " set_call_funcs(SETNAME(DTORS), 1, 0);\n"
1436 " set_call_funcs(SETNAME(EXIT), -1, 0);\n"
1438 if (cfg
->classlist
!= NULL
)
1439 fprintf(out
, " set_call_libfuncs(SETNAME(CLASSESEXPUNGE), -1, 0, LIBBASE);\n");
1441 fprintf(out
, " set_close_rellibraries(LIBBASE);\n");
1442 if (!(cfg
->options
& OPTION_NOAUTOLIB
))
1443 fprintf(out
, " set_close_libraries();\n"
1444 "#ifdef GM_OOPBASE_FIELD\n"
1445 " CloseLibrary((struct Library *)GM_OOPBASE_FIELD(LIBBASE));\n"
1448 if (cfg
->options
& OPTION_PERTASKBASE
)
1450 " FreeTaskStorageSlot(__pertaskslot);\n"
1451 " __pertaskslot = 0;\n"
1455 " __freebase(LIBBASE);\n"
1457 " return seglist;\n"
1460 " ((struct Library *)LIBBASE)->lib_Flags |= LIBF_DELEXP;\n"
1467 " AROS_LIBFUNC_EXIT\n"
1474 static void writeextfunclib(FILE *out
, struct config
*cfg
)
1477 "AROS_LH0 (LIBBASETYPEPTR, GM_UNIQUENAME(ExtFuncLib),\n"
1478 " LIBBASETYPEPTR, LIBBASE, 4, %s\n"
1481 " AROS_LIBFUNC_INIT\n"
1483 " AROS_LIBFUNC_EXIT\n"
1492 writefunctable(FILE *out
,
1496 struct functionhead
*funclistit
= cfg
->funclist
;
1497 struct functionarg
*arglistit
;
1501 int lastversion
= 0;
1503 /* lvo contains the number of functions already printed in the functable */
1506 if (!(cfg
->options
& OPTION_NORESIDENT
))
1510 "const APTR GM_UNIQUENAME(FuncTable)[]=\n"
1513 if (cfg
->modtype
!= RESOURCE
&& cfg
->modtype
!= HANDLER
)
1516 " &AROS_SLIB_ENTRY(GM_UNIQUENAME(OpenLib),%s,1),\n"
1517 " &AROS_SLIB_ENTRY(GM_UNIQUENAME(CloseLib),%s,2),\n"
1518 " &AROS_SLIB_ENTRY(GM_UNIQUENAME(ExpungeLib),%s,3),\n"
1519 " &AROS_SLIB_ENTRY(GM_UNIQUENAME(ExtFuncLib),%s,4),\n",
1520 cfg
->basename
, cfg
->basename
, cfg
->basename
, cfg
->basename
1524 if (cfg
->modtype
== MCC
|| cfg
->modtype
== MUI
|| cfg
->modtype
== MCP
)
1528 " &AROS_SLIB_ENTRY(MCC_Query,%s,%d),\n",
1532 else if (cfg
->modtype
== DATATYPE
)
1536 " &AROS_SLIB_ENTRY(ObtainEngine,%s,%d),\n",
1541 else /* NORESIDENT */
1543 if (cfg
->modtype
!= RESOURCE
&& cfg
->modtype
!= HANDLER
)
1546 struct functionhead
*funclistit2
;
1548 if (funclistit
->lvo
!= 1)
1550 fprintf(stderr
, "Module without a generated resident structure has to provide the Open function (LVO==1)\n");
1554 funclistit
= funclistit
->next
;
1556 if (funclistit
->lvo
!= 2)
1558 fprintf(stderr
, "Module without a generated resident structure has to provide the Close function (LVO==2)\n");
1562 funclistit
= funclistit
->next
;
1564 if (funclistit
->lvo
== 3)
1565 funclistit
= funclistit
->next
;
1569 if (funclistit
->lvo
== 4)
1570 funclistit
= funclistit
->next
;
1577 "AROS_UFH1S(int, %s_null,\n"
1578 " AROS_UFHA(struct Library *, libbase, A6)\n"
1581 " AROS_USERFUNC_INIT\n"
1583 " AROS_USERFUNC_EXIT\n"
1588 funclistit
= cfg
->funclist
;
1589 funclistit2
= funclistit
->next
;
1592 "const APTR GM_UNIQUENAME(FuncTable)[]=\n"
1594 " &AROS_SLIB_ENTRY(%s,%s,%d),\n"
1595 " &AROS_SLIB_ENTRY(%s,%s,%d),\n",
1596 funclistit
->internalname
, cfg
->basename
, lvo
+1,
1597 funclistit2
->internalname
, cfg
->basename
, lvo
+2
1600 funclistit
= funclistit2
->next
;
1602 if (funclistit
->lvo
== 3)
1604 fprintf(out
, " &AROS_SLIB_ENTRY(%s,%s,%d),\n",
1605 funclistit
->internalname
, cfg
->basename
, lvo
+1
1607 funclistit
= funclistit
->next
;
1610 fprintf(out
, " &%s_null,\n", cfg
->modulename
);
1613 if (funclistit
->lvo
== 4)
1615 fprintf(out
, " &AROS_SLIB_ENTRY(%s,%s,%d),\n",
1616 funclistit
->internalname
, cfg
->basename
, lvo
+1
1618 funclistit
= funclistit
->next
;
1621 fprintf(out
, " &%s_null,\n", cfg
->modulename
);
1628 "const APTR GM_UNIQUENAME(FuncTable)[]=\n"
1633 while (funclistit
!= NULL
)
1635 for (i
= lvo
+1; i
<funclistit
->lvo
; i
++)
1636 fprintf(out
, " NULL,\n");
1637 lvo
= funclistit
->lvo
;
1639 switch (funclistit
->libcall
)
1644 if (funclistit
->version
!= lastversion
) {
1645 lastversion
= funclistit
->version
;
1646 fprintf(out
, " /* Version %d */\n", lastversion
);
1648 fprintf(out
, " &AROS_SLIB_ENTRY(%s,%s,%d),\n", funclistit
->internalname
, cfg
->basename
, lvo
);
1652 fprintf(stderr
, "Internal error: unhandled libcall type in writestart\n");
1657 funclistit
= funclistit
->next
;
1660 fprintf(out
, " (void *)-1\n};\n");
1664 static void writesets(FILE *out
, struct config
*cfg
)
1670 if (cfg
->modtype
!= HANDLER
)
1672 "DEFINESET(CTORS)\n"
1673 "DEFINESET(DTORS)\n"
1674 "DEFINESET(INIT_ARRAY)\n"
1675 "DEFINESET(FINI_ARRAY)\n"
1676 "DEFINESET(INITLIB)\n"
1677 "DEFINESET(EXPUNGELIB)\n"
1679 if (!(cfg
->options
& OPTION_NOOPENCLOSE
))
1681 "DEFINESET(OPENLIB)\n"
1682 "DEFINESET(CLOSELIB)\n"
1684 if (cfg
->modtype
== DEVICE
)
1686 "DEFINESET(OPENDEV)\n"
1687 "DEFINESET(CLOSEDEV)\n"
1689 if (cfg
->classlist
!= NULL
)
1691 "DEFINESET(CLASSESINIT)\n"
1692 "DEFINESET(CLASSESEXPUNGE)\n"