2 Copyright © 1995-2019, 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"
197 "#include \"%s_libdefs.h\"\n"
205 "#include \"%s_%s_libdefs.h\"\n"
207 , cfg
->modulename
, cfg
->flavour
211 for (s
= cfg
->rellibs
; s
; s
= s
->next
)
213 "#include <proto/%s.h>\n"
220 "#undef UtilityBase\n"
222 "#include <proto/exec.h>\n"
223 "#include <proto/alib.h>\n"
227 /* Write out declaration section provided in the config file */
228 for (linelistit
= cfg
->cdeflines
; linelistit
!= NULL
; linelistit
= linelistit
->next
)
230 fprintf(out
, "%s\n", linelistit
->s
);
233 /* Is there a variable for storing the segList ? */
234 if (!(cfg
->options
& OPTION_NOEXPUNGE
) && cfg
->modtype
!=RESOURCE
&& cfg
->modtype
!= HANDLER
)
237 "#ifndef GM_SEGLIST_FIELD\n"
238 "static BPTR __attribute__((unused)) GM_UNIQUENAME(seglist);\n"
239 "#define GM_SEGLIST_FIELD(LIBBASE) (GM_UNIQUENAME(seglist))\n"
243 if (cfg
->options
& OPTION_DUPBASE
)
245 "/* Required for TaskStorage manipulation */\n"
246 "extern struct ExecBase *SysBase;\n"
248 if (cfg
->options
& OPTION_DUPBASE
)
251 "#ifndef GM_ROOTBASE_FIELD\n"
252 "static LIBBASETYPEPTR GM_UNIQUENAME(rootbase);\n"
253 "#define GM_ROOTBASE_FIELD(LIBBASE) (GM_UNIQUENAME(rootbase))\n"
255 "struct __GM_DupBase {\n"
256 " LIBBASETYPE base;\n"
257 " LIBBASETYPEPTR oldbase;\n"
259 if (cfg
->options
& OPTION_PERTASKBASE
)
262 " ULONG taskopencount;\n"
263 " struct Task *task;\n"
265 " LIBBASETYPEPTR oldpertaskbase;\n"
271 if (cfg
->options
& OPTION_PERTASKBASE
)
274 "static LONG __pertaskslot;\n"
275 "LIBBASETYPEPTR __GM_GetBaseParent(LIBBASETYPEPTR base)\n"
277 " return ((struct __GM_DupBase *)base)->oldpertaskbase;\n"
279 "static inline LIBBASETYPEPTR __GM_GetPerTaskBase(void)\n"
281 " return (LIBBASETYPEPTR)GetTaskStorageSlot(__pertaskslot);\n"
283 "static inline LIBBASETYPEPTR __GM_GetParentPerTaskBase(void)\n"
285 " return (LIBBASETYPEPTR)GetParentTaskStorageSlot(__pertaskslot);\n"
287 "static inline void __GM_SetPerTaskBase(LIBBASETYPEPTR base)\n"
289 " SetTaskStorageSlot(__pertaskslot, (IPTR)base);\n"
295 /* Set the size of the library base to accomodate the relbases */
296 if (cfg
->options
& OPTION_DUPBASE
)
299 "#define LIBBASESIZE (sizeof(struct __GM_DupBase) + sizeof(struct Library *)*%d)\n"
300 , slist_length(cfg
->rellibs
)
305 "#define LIBBASESIZE (sizeof(LIBBASETYPE) + sizeof(struct Library *)*%d)\n"
306 , slist_length(cfg
->rellibs
)
311 struct stringlist
*sl
;
312 int i
, n
= slist_length(cfg
->rellibs
);
314 for (sl
=cfg
->rellibs
; sl
; sl
=sl
->next
, n
--) {
316 "#ifndef AROS_RELLIB_OFFSET_%s\n"
317 "# error '%s' is not a relative library\n"
319 "const IPTR AROS_RELLIB_OFFSET_%s = LIBBASESIZE-sizeof(struct Library *)*%d;\n"
328 if (cfg
->options
& OPTION_DUPBASE
) {
331 "static LONG __GM_BaseSlot;\n"
332 "char *__aros_getoffsettable(void)\n"
334 " return (char *)GetTaskStorageSlot(__GM_BaseSlot);\n"
336 "void __aros_setoffsettable(void *base)\n"
338 " SetTaskStorageSlot(__GM_BaseSlot, (IPTR)base);\n"
340 "%s__aros_getbase_%s(void)\n"
342 " return (%s)__aros_getoffsettable();\n"
344 cfg
->libbasetypeptrextern
, cfg
->libbase
,
345 cfg
->libbasetypeptrextern
347 } else if (cfg
->rellibs
|| (cfg
->options
& OPTION_STACKCALL
)) {
349 "#ifdef __aros_getoffsettable\n"
351 if ((cfg
->options
& OPTION_STACKCALL
))
353 "#error Redefining __aros_setoffsettable is not permitted with stackcall APIs\n"
357 "#define __aros_getbase_%s() __aros_getoffsettable()\n",
361 "#else /* !__aros_getoffsettable */\n"
362 "static char *__GM_OffsetTable;\n"
363 "char *__aros_getoffsettable(void)\n"
365 " return __GM_OffsetTable;\n"
367 "BOOL __aros_setoffsettable(char *base)\n"
369 " __GM_OffsetTable = base;\n"
372 "%s__aros_getbase_%s(void)\n"
374 " return (%s)__aros_getoffsettable();\n"
376 "#endif /* __aros_getoffsettable */\n"
378 cfg
->libbasetypeptrextern
, cfg
->libbase
,
379 cfg
->libbasetypeptrextern
385 struct stringlist
*sl
;
387 for (sl
= cfg
->rellibs
; sl
; sl
= sl
->next
)
390 "AROS_IMPORT_ASM_SYM(void *,__GM_rellib_base_%s,AROS_RELLIB_BASE_%s);\n"
397 for (classlistit
= cfg
->classlist
; classlistit
!= NULL
; classlistit
= classlistit
->next
)
399 /* For the main class basename is the same as the module basename */
400 if (strcmp(classlistit
->basename
, cfg
->basename
) == 0)
402 if (classlistit
->classptr_var
== NULL
)
405 "#if !defined(GM_CLASSPTR_FIELD) && !defined(%s_CLASSPTR_FIELD)\n"
406 "static APTR GM_UNIQUENAME(%sClass);\n"
407 "#define GM_CLASSPTR_FIELD(LIBBASE) (GM_UNIQUENAME(%sClass))\n"
408 "#define %s_CLASSPTR_FIELD(LIBBASE) (GM_UNIQUENAME(%sClass))\n"
409 "#define %s_STORE_CLASSPTR 1\n"
410 "#elif defined(GM_CLASSPTR_FIELD) && !defined(%s_CLASSPTR_FIELD)\n"
411 "#define %s_CLASSPTR_FIELD(LIBBASE) (GM_CLASSPTR_FIELD(LIBBASE))\n"
412 "#elif !defined(GM_CLASSPTR_FIELD) && defined(%s_CLASSPTR_FIELD)\n"
413 "#define GM_CLASSPTR_FIELD(LIBBASE) (%s_CLASSPTR_FIELD(LIBBASE))\n"
415 classlistit
->basename
,
416 classlistit
->basename
,
417 classlistit
->basename
,
418 classlistit
->basename
, classlistit
->basename
,
419 classlistit
->basename
,
420 classlistit
->basename
,
421 classlistit
->basename
,
422 classlistit
->basename
,
423 classlistit
->basename
429 "#define GM_CLASSPTR_FIELD(LIBBASE) (%s)\n"
430 "#define %s_CLASSPTR_FIELD(LIBBASE) (%s)\n"
431 "#define %s_STORE_CLASSPTR 1\n",
432 classlistit
->classptr_var
,
433 classlistit
->basename
, classlistit
->classptr_var
,
434 classlistit
->basename
440 if (classlistit
->classptr_var
== NULL
)
443 "#if !defined(%s_CLASSPTR_FIELD)\n"
444 "static APTR GM_UNIQUENAME(%sClass);\n"
445 "#define %s_CLASSPTR_FIELD(LIBBASE) (GM_UNIQUENAME(%sClass))\n"
446 "#define %s_STORE_CLASSPTR 1\n"
448 classlistit
->basename
,
449 classlistit
->basename
,
450 classlistit
->basename
, classlistit
->basename
,
451 classlistit
->basename
457 "#define %s_CLASSPTR_FIELD(LIBBASE) (%s)\n"
458 "#define %s_STORE_CLASSPTR 1\n",
459 classlistit
->basename
, classlistit
->classptr_var
,
460 classlistit
->basename
466 /* Write out the defines for the functions of the function table */
467 writefuncdefs(out
, cfg
, cfg
->funclist
);
468 /* Write internal stubs */
469 writefuncinternalstubs(out
, cfg
, cfg
->funclist
);
473 /* Write out the includes needed for the classes */
474 if (cfg
->classlist
!= NULL
)
475 writeboopsiincludes(out
);
477 for (classlistit
= cfg
->classlist
; classlistit
!= NULL
; classlistit
= classlistit
->next
)
479 switch (classlistit
->classtype
)
486 writemuiincludes(out
);
489 /* Fall through: also write boopsi includes */
496 writeboopsiincludes(out
);
503 writeoopincludes(out
);
508 fprintf(stderr
, "Internal error: unhandled classtype in writedecl\n");
515 static void writedeclsets(FILE *out
, struct config
*cfg
)
517 /* PROGRAM_ENTRIES is marked as handled but are just ignored in modules */
519 "THIS_PROGRAM_HANDLES_SYMBOLSET(INIT)\n"
520 "THIS_PROGRAM_HANDLES_SYMBOLSET(EXIT)\n"
523 "THIS_PROGRAM_HANDLES_SYMBOLSET(PROGRAM_ENTRIES)\n"
524 "DECLARESET(PROGRAM_ENTRIES)\n"
526 if (cfg
->modtype
!= HANDLER
)
528 "THIS_PROGRAM_HANDLES_SYMBOLSET(CTORS)\n"
529 "THIS_PROGRAM_HANDLES_SYMBOLSET(DTORS)\n"
530 "DECLARESET(CTORS)\n"
531 "DECLARESET(DTORS)\n"
532 "THIS_PROGRAM_HANDLES_SYMBOLSET(INIT_ARRAY)\n"
533 "THIS_PROGRAM_HANDLES_SYMBOLSET(FINI_ARRAY)\n"
534 "DECLARESET(INIT_ARRAY)\n"
535 "DECLARESET(FINI_ARRAY)\n"
536 "THIS_PROGRAM_HANDLES_SYMBOLSET(INITLIB)\n"
537 "THIS_PROGRAM_HANDLES_SYMBOLSET(EXPUNGELIB)\n"
538 "DECLARESET(INITLIB)\n"
539 "DECLARESET(EXPUNGELIB)\n"
541 if (!(cfg
->options
& OPTION_NOAUTOLIB
))
544 "THIS_PROGRAM_HANDLES_SYMBOLSET(LIBS)\n"
549 "THIS_PROGRAM_HANDLES_SYMBOLSET(RELLIBS)\n"
550 "DECLARESET(RELLIBS)\n"
553 if (!(cfg
->options
& OPTION_NOOPENCLOSE
))
555 "THIS_PROGRAM_HANDLES_SYMBOLSET(OPENLIB)\n"
556 "THIS_PROGRAM_HANDLES_SYMBOLSET(CLOSELIB)\n"
557 "DECLARESET(OPENLIB)\n"
558 "DECLARESET(CLOSELIB)\n"
560 if (cfg
->modtype
== DEVICE
)
562 "THIS_PROGRAM_HANDLES_SYMBOLSET(OPENDEV)\n"
563 "THIS_PROGRAM_HANDLES_SYMBOLSET(CLOSEDEV)\n"
564 "DECLARESET(OPENDEV)\n"
565 "DECLARESET(CLOSEDEV)\n"
567 if (cfg
->classlist
!= NULL
)
569 "THIS_PROGRAM_HANDLES_SYMBOLSET(CLASSESINIT)\n"
570 "THIS_PROGRAM_HANDLES_SYMBOLSET(CLASSESEXPUNGE)\n"
571 "DECLARESET(CLASSESINIT)\n"
572 "DECLARESET(CLASSESEXPUNGE)\n"
573 "#define ADD2INITCLASSES(symbol, pri) ADD2SET(symbol, CLASSESINIT, pri)\n"
574 "#define ADD2EXPUNGECLASSES(symbol, pri) ADD2SET(symbol, CLASSESEXPUNGE, pri)\n"
580 static void writeresident(FILE *out
, struct config
*cfg
)
582 char *rt_skip
= cfg
->addromtag
;
585 fprintf(out
, "extern const struct Resident %s;\n", rt_skip
);
588 rt_skip
= "GM_UNIQUENAME(End)";
589 fprintf(out
, "extern int %s(void);\n", rt_skip
);
592 "extern const APTR GM_UNIQUENAME(FuncTable)[];\n"
594 if (cfg
->options
& OPTION_RESAUTOINIT
)
595 fprintf(out
, "static const struct InitTable GM_UNIQUENAME(InitTable);\n");
598 "extern const char GM_UNIQUENAME(LibName)[];\n"
599 "extern const char GM_UNIQUENAME(LibID)[];\n"
600 "extern const char GM_UNIQUENAME(Copyright)[];\n"
604 if (cfg
->options
& OPTION_RESAUTOINIT
)
607 "#define __freebase(LIBBASE)\\\n"
609 " UWORD negsize, possize;\\\n"
610 " UBYTE *negptr = (UBYTE *)LIBBASE;\\\n"
611 " negsize = ((struct Library *)LIBBASE)->lib_NegSize;\\\n"
612 " negptr -= negsize;\\\n"
613 " possize = ((struct Library *)LIBBASE)->lib_PosSize;\\\n"
614 " FreeMem (negptr, negsize+possize);\\\n"
620 "AROS_UFP3 (LIBBASETYPEPTR, GM_UNIQUENAME(InitLib),\n"
621 " AROS_UFPA(LIBBASETYPEPTR, LIBBASE, D0),\n"
622 " AROS_UFPA(BPTR, segList, A0),\n"
623 " AROS_UFPA(struct ExecBase *, sysBase, A6)\n"
626 if (cfg
->modtype
!= RESOURCE
&& cfg
->modtype
!= HANDLER
)
629 "AROS_LD1(BPTR, GM_UNIQUENAME(ExpungeLib),\n"
630 " AROS_LDA(LIBBASETYPEPTR, extralh, D0),\n"
631 " LIBBASETYPEPTR, LIBBASE, 3, %s\n"
638 "__section(\".text.romtag\") struct Resident const GM_UNIQUENAME(ROMTag) =\n"
641 " (struct Resident *)&GM_UNIQUENAME(ROMTag),\n"
644 " VERSION_NUMBER,\n",
647 switch (cfg
->modtype
)
657 fprintf(out
, " NT_LIBRARY,\n");
660 fprintf(out
, " NT_DEVICE,\n");
664 fprintf(out
, " NT_RESOURCE,\n");
667 fprintf(stderr
, "Internal error: unsupported modtype for NT_...\n");
673 " (CONST_STRPTR)&GM_UNIQUENAME(LibName)[0],\n"
674 " (CONST_STRPTR)&GM_UNIQUENAME(LibID)[6],\n"
676 if (cfg
->options
& OPTION_RESAUTOINIT
)
679 " (APTR)&GM_UNIQUENAME(InitTable)\n"
682 "__section(\".text.romtag\") static struct InitTable\n"
685 " const APTR *FuncTable;\n"
686 " struct DataTable *DataTable;\n"
687 " APTR InitLibTable;\n"
689 "const GM_UNIQUENAME(InitTable) =\n"
692 " &GM_UNIQUENAME(FuncTable)[0],\n"
694 " (APTR)GM_UNIQUENAME(InitLib)\n"
699 fprintf(out
, " (APTR)GM_UNIQUENAME(InitLib)\n};\n");
703 "__section(\".text.romtag\") const char GM_UNIQUENAME(LibName)[] = MOD_NAME_STRING;\n"
704 "__section(\".text.romtag\") const char GM_UNIQUENAME(LibID)[] = VERSION_STRING;\n"
705 "__section(\".text.romtag\") const char GM_UNIQUENAME(Copyright)[] = COPYRIGHT_STRING;\n"
710 static void writehandler(FILE *out
, struct config
*cfg
)
713 struct handlerinfo
*hl
;
714 int need_fse
= 0, need_dos
= 0;
718 "#include <resources/filesysres.h>\n"
719 "#include <aros/system.h>\n"
720 "#include <proto/arossupport.h>\n"
721 "#include <proto/expansion.h>\n"
725 for (hl
= cfg
->handlerlist
; hl
!= NULL
; hl
= hl
->next
) {
726 if (hl
->type
== HANDLER_DOSNODE
)
735 "LONG %s(struct ExecBase *sysBase);\n"
736 "extern const LONG __aros_libreq_SysBase __attribute__((weak));\n"
738 "__startup AROS_PROCH(GM_UNIQUENAME(Handler), argptr, argsize, SysBase)\n"
740 " AROS_PROCFUNC_INIT\n"
742 " LONG ret = RETURN_FAIL;\n"
744 " if (!SysBase || SysBase->LibNode.lib_Version < __aros_libreq_SysBase)\n"
745 " return ERROR_INVALID_RESIDENT_LIBRARY;\n"
746 " if (set_call_funcs(SETNAME(INIT), 1, 1)) {\n"
747 " ret = %s(SysBase);\n"
748 " set_call_funcs(SETNAME(EXIT), -1, 0);\n"
753 " AROS_PROCFUNC_EXIT\n"
761 "static inline BOOL GM_UNIQUENAME(InitHandler)(struct ExecBase *SysBase)\n"
765 if (!need_dos
&& !need_fse
) {
779 " struct Library *ExpansionBase;\n"
784 " struct FileSysResource *fsr;\n"
785 " struct FileSysEntry *fse;\n"
790 " fsr = (struct FileSysResource *)OpenResource(\"FileSystem.resource\");\n"
791 " if (fsr == NULL)\n"
797 " ExpansionBase = OpenLibrary(\"expansion.library\", 36);\n"
798 " if (ExpansionBase == NULL)\n"
803 " seg = CreateSegList(GM_UNIQUENAME(Handler));\n"
804 " if (seg != BNULL) {\n"
806 for (hl
= cfg
->handlerlist
; hl
!= NULL
; hl
= hl
->next
)
810 case HANDLER_DOSNODE
:
814 " struct DeviceNode *node;\n"
822 " node = MakeDosNode((APTR)pp);\n"
824 " node->dn_StackSize = %u;\n"
825 " node->dn_SegList = seg;\n"
826 " node->dn_Startup = (BPTR)%d;\n"
827 " node->dn_Priority = %d;\n"
828 " node->dn_GlobalVec = (BPTR)(SIPTR)-1;\n"
829 " AddBootNode(%d, 0, node, NULL);\n"
840 case HANDLER_RESIDENT
:
841 case HANDLER_DOSTYPE
:
844 " /* Check to see if we can allocate the memory for the fse */\n"
845 " fse = AllocMem(sizeof(*fse), MEMF_CLEAR);\n"
847 " fse->fse_Node.ln_Name = VERSION_STRING;\n"
848 " fse->fse_Node.ln_Pri = %d;\n"
849 " fse->fse_DosType = 0x%08x;\n"
850 " fse->fse_Version = (MAJOR_VERSION << 16) | MINOR_VERSION;\n"
851 " fse->fse_PatchFlags = FSEF_SEGLIST | FSEF_GLOBALVEC | FSEF_PRIORITY;\n"
858 " fse->fse_PatchFlags |= FSEF_STACKSIZE;\n"
859 " fse->fse_StackSize = %d;\n"
865 " fse->fse_PatchFlags |= FSEF_HANDLER;\n"
866 " fse->fse_Handler = AROS_CONST_BSTR(\"%s\");\n"
869 " fse->fse_Priority = %d;\n"
870 " fse->fse_SegList = seg;\n"
871 " fse->fse_GlobalVec = (BPTR)(SIPTR)-1;\n"
872 " fse->fse_Startup = (BPTR)%d;\n"
874 " /* Add to the list. I know forbid and permit are\n"
875 " * a little unnecessary for the pre-multitasking state\n"
876 " * we should be in at this point, but you never know\n"
877 " * who's going to blindly copy this code as an example.\n"
880 " Enqueue(&fsr->fsr_FileSysEntries, (struct Node *)fse);\n"
894 " CloseLibrary(ExpansionBase);\n"
904 static void writeinitlib(FILE *out
, struct config
*cfg
)
906 if (cfg
->handlerlist
)
907 writehandler(out
, cfg
);
910 "extern const LONG __aros_libreq_SysBase __attribute__((weak));\n"
912 "AROS_UFH3 (LIBBASETYPEPTR, GM_UNIQUENAME(InitLib),\n"
913 " AROS_UFHA(LIBBASETYPEPTR, LIBBASE, D0),\n"
914 " AROS_UFHA(BPTR, segList, A0),\n"
915 " AROS_UFHA(struct ExecBase *, sysBase, A6)\n"
918 " AROS_USERFUNC_INIT\n"
921 if (cfg
->modtype
== HANDLER
) {
924 " GM_UNIQUENAME(InitHandler)(sysBase);\n"
927 " AROS_USERFUNC_EXIT\n"
937 " int initcalled = 0;\n"
939 /* Set the global SysBase, needed for __aros_setoffsettable()/__aros_getoffsettable() */
940 if (cfg
->options
& OPTION_DUPBASE
)
942 " SysBase = sysBase;\n"
946 " struct ExecBase *SysBase = sysBase;\n"
950 "#ifdef GM_SYSBASE_FIELD\n"
951 " GM_SYSBASE_FIELD(LIBBASE) = (APTR)SysBase;\n"
953 " if (!SysBase || SysBase->LibNode.lib_Version < __aros_libreq_SysBase)\n"
958 if (cfg
->options
& OPTION_RESAUTOINIT
) {
960 "#ifdef GM_OOPBASE_FIELD\n"
961 " GM_OOPBASE_FIELD(LIBBASE) = OpenLibrary(\"oop.library\",0);\n"
962 " if (GM_OOPBASE_FIELD(LIBBASE) == NULL)\n"
968 if (!(cfg
->options
& OPTION_RESAUTOINIT
))
975 " vecsize = FUNCTIONS_COUNT * LIB_VECTSIZE;\n"
976 " if (vecsize > 0)\n"
977 " vecsize = ((vecsize-1)/sizeof(IPTR) + 1)*sizeof(IPTR);\n"
978 " mem = AllocMem(vecsize+sizeof(LIBBASETYPE), MEMF_PUBLIC|MEMF_CLEAR);\n"
979 " if (mem == NULL)\n"
981 " LIBBASE = (LIBBASETYPEPTR)(mem + vecsize);\n"
982 " n = (struct Node *)LIBBASE;\n"
983 " n->ln_Type = NT_RESOURCE;\n"
984 " n->ln_Pri = RESIDENTPRI;\n"
985 " n->ln_Name = (char *)GM_UNIQUENAME(LibName);\n"
986 " MakeFunctions(LIBBASE, (APTR)GM_UNIQUENAME(FuncTable), NULL);\n"
988 if ((cfg
->modtype
!= RESOURCE
) && (cfg
->options
& OPTION_SELFINIT
))
991 " ((struct Library*)LIBBASE)->lib_NegSize = vecsize;\n"
992 " ((struct Library*)LIBBASE)->lib_PosSize = sizeof(LIBBASETYPE);\n"
1000 " ((struct Library *)LIBBASE)->lib_Revision = REVISION_NUMBER;\n"
1004 if (cfg
->options
& OPTION_DUPBASE
)
1006 " __GM_BaseSlot = AllocTaskStorageSlot();\n"
1007 " if (!SetTaskStorageSlot(__GM_BaseSlot, (IPTR)LIBBASE)) {\n"
1008 " FreeTaskStorageSlot(__GM_BaseSlot);\n"
1012 else if (cfg
->rellibs
|| (cfg
->options
& OPTION_STACKCALL
))
1014 " __aros_setoffsettable((char *)LIBBASE);\n"
1016 if (cfg
->options
& OPTION_PERTASKBASE
)
1018 " __pertaskslot = AllocTaskStorageSlot();\n"
1021 if (!(cfg
->options
& OPTION_NOEXPUNGE
) && cfg
->modtype
!=RESOURCE
)
1022 fprintf(out
, " GM_SEGLIST_FIELD(LIBBASE) = segList;\n");
1023 if (cfg
->options
& OPTION_DUPBASE
)
1024 fprintf(out
, " GM_ROOTBASE_FIELD(LIBBASE) = (LIBBASETYPEPTR)LIBBASE;\n");
1025 fprintf(out
, " if (");
1026 if (!(cfg
->options
& OPTION_NOAUTOLIB
))
1027 fprintf(out
, "set_open_libraries() && ");
1029 fprintf(out
, "set_open_rellibraries(LIBBASE) && ");
1031 "set_call_funcs(SETNAME(INIT), 1, 1) &&"
1033 if (cfg
->classlist
!= NULL
)
1034 fprintf(out
, "set_call_libfuncs(SETNAME(CLASSESINIT), 1, 1, LIBBASE) && ");
1038 " set_call_funcs(SETNAME(CTORS), -1, 0);\n"
1039 " set_call_funcs(SETNAME(INIT_ARRAY), 1, 0);\n"
1044 " initcalled = 1;\n"
1045 " ok = set_call_libfuncs(SETNAME(INITLIB), 1, 1, LIBBASE);\n"
1052 " if (initcalled)\n"
1053 " set_call_libfuncs(SETNAME(EXPUNGELIB), -1, 0, LIBBASE);\n"
1054 " set_call_funcs(SETNAME(FINI_ARRAY), -1, 0);\n"
1055 " set_call_funcs(SETNAME(DTORS), 1, 0);\n"
1056 " set_call_funcs(SETNAME(EXIT), -1, 0);\n"
1058 if (cfg
->classlist
!= NULL
)
1059 fprintf(out
, " set_call_libfuncs(SETNAME(CLASSESEXPUNGE), -1, 0, LIBBASE);\n");
1061 fprintf(out
, " set_close_rellibraries(LIBBASE);\n");
1062 if (!(cfg
->options
& OPTION_NOAUTOLIB
))
1063 fprintf(out
, " set_close_libraries();\n");
1065 if (cfg
->options
& OPTION_RESAUTOINIT
)
1069 " __freebase(LIBBASE);\n"
1076 " FreeMem(mem, vecsize+LIBBASESIZE);\n"
1086 if (!(cfg
->options
& OPTION_RESAUTOINIT
) && !(cfg
->options
& OPTION_SELFINIT
))
1088 switch (cfg
->modtype
)
1091 fprintf(out
, " AddResource(LIBBASE);\n");
1095 fprintf(out
, " AddDevice(LIBBASE);\n");
1098 /* Everything else is library */
1099 fprintf(out
, " AddLibrary(LIBBASE);\n");
1105 " return LIBBASE;\n"
1108 " AROS_USERFUNC_EXIT\n"
1114 static void writeopenlib(FILE *out
, struct config
*cfg
)
1116 switch (cfg
->modtype
)
1119 fprintf(stderr
, "Internal error: writeopenlib called for a resource\n");
1122 fprintf(stderr
, "Internal error: writeopenlib called for a handler\n");
1125 if (cfg
->options
& OPTION_NOOPENCLOSE
)
1127 "AROS_LD3 (void, GM_UNIQUENAME(OpenLib),\n"
1128 " AROS_LDA(struct IORequest *, ioreq, A1),\n"
1129 " AROS_LDA(ULONG, unitnum, D0),\n"
1130 " AROS_LDA(ULONG, flags, D1),\n"
1131 " LIBBASETYPEPTR, LIBBASE, 1, %s\n"
1138 "AROS_LH3 (void, GM_UNIQUENAME(OpenLib),\n"
1139 " AROS_LHA(struct IORequest *, ioreq, A1),\n"
1140 " AROS_LHA(IPTR, unitnum, D0),\n"
1141 " AROS_LHA(ULONG, flags, D1),\n"
1142 " LIBBASETYPEPTR, LIBBASE, 1, %s\n"
1148 " AROS_LIBFUNC_INIT\n"
1150 " if ( set_call_libfuncs(SETNAME(OPENLIB), 1, 1, LIBBASE)\n"
1151 " && set_call_devfuncs(SETNAME(OPENDEV), 1, 1, LIBBASE, ioreq, unitnum, flags)\n"
1154 " ((struct Library *)LIBBASE)->lib_OpenCnt++;\n"
1155 " ((struct Library *)LIBBASE)->lib_Flags &= ~LIBF_DELEXP;\n"
1157 " ioreq->io_Message.mn_Node.ln_Type = NT_REPLYMSG;\n"
1161 " if (ioreq->io_Error >= 0)\n"
1162 " ioreq->io_Error = IOERR_OPENFAIL;\n"
1167 " AROS_LIBFUNC_EXIT\n"
1174 if (cfg
->options
& OPTION_NOOPENCLOSE
)
1177 "AROS_LD1 (LIBBASETYPEPTR, GM_UNIQUENAME(OpenLib),\n"
1178 " AROS_LDA (ULONG, version, D0),\n"
1179 " LIBBASETYPEPTR, LIBBASE, 1, %s\n"
1186 "AROS_LH1 (LIBBASETYPEPTR, GM_UNIQUENAME(OpenLib),\n"
1187 " AROS_LHA (ULONG, version, D0),\n"
1188 " LIBBASETYPEPTR, LIBBASE, 1, %s\n"
1191 " AROS_LIBFUNC_INIT\n"
1195 if (!(cfg
->options
& OPTION_DUPBASE
))
1198 " if ( set_call_libfuncs(SETNAME(OPENLIB), 1, 1, LIBBASE) )\n"
1200 " ((struct Library *)LIBBASE)->lib_OpenCnt++;\n"
1201 " ((struct Library *)LIBBASE)->lib_Flags &= ~LIBF_DELEXP;\n"
1202 " return LIBBASE;\n"
1207 " AROS_LIBFUNC_EXIT\n"
1212 else /* OPTION_DUPBASE */
1215 " struct Library *newlib = NULL;\n"
1216 " UWORD possize = ((struct Library *)LIBBASE)->lib_PosSize;\n"
1217 " LIBBASETYPEPTR oldbase = (LIBBASETYPEPTR)__aros_getbase_%s();\n",
1220 if (cfg
->options
& OPTION_PERTASKBASE
)
1222 " struct Task *thistask = FindTask(NULL);\n"
1223 " LIBBASETYPEPTR oldpertaskbase = __GM_GetPerTaskBase();\n"
1224 " if (!oldpertaskbase)\n"
1225 " oldpertaskbase = __GM_GetParentPerTaskBase();\n"
1226 " newlib = (struct Library *)oldpertaskbase;\n"
1229 " struct __GM_DupBase *dupbase = (struct __GM_DupBase *)newlib;\n"
1230 " if (dupbase->task != thistask)\n"
1232 " else if (thistask->tc_Node.ln_Type == NT_PROCESS\n"
1233 " && dupbase->retaddr != ((struct Process *)thistask)->pr_ReturnAddr\n"
1237 " dupbase->taskopencount++;\n"
1243 " if (newlib == NULL)\n"
1245 " newlib = MakeLibrary(GM_UNIQUENAME(InitTable).FuncTable,\n"
1246 " GM_UNIQUENAME(InitTable).DataTable,\n"
1248 " GM_UNIQUENAME(InitTable).Size,\n"
1251 " if (newlib == NULL)\n"
1254 " CopyMem(LIBBASE, newlib, possize);\n"
1255 " struct __GM_DupBase *dupbase = (struct __GM_DupBase *)newlib;\n"
1256 " dupbase->oldbase = oldbase;\n"
1257 " __aros_setoffsettable((char *)newlib);\n"
1259 if (cfg
->options
& OPTION_PERTASKBASE
)
1261 " dupbase->task = thistask;\n"
1262 " if (thistask->tc_Node.ln_Type == NT_PROCESS)\n"
1263 " dupbase->retaddr = ((struct Process *)thistask)->pr_ReturnAddr;\n"
1264 " dupbase->oldpertaskbase = oldpertaskbase;\n"
1265 " dupbase->taskopencount = 1;\n"
1266 " __GM_SetPerTaskBase((LIBBASETYPEPTR)newlib);\n"
1270 " if (!(set_open_rellibraries(newlib)\n"
1271 " && set_call_libfuncs(SETNAME(OPENLIB), 1, 1, newlib)\n"
1275 if (cfg
->options
& OPTION_PERTASKBASE
)
1277 " __GM_SetPerTaskBase(oldpertaskbase);\n");
1279 " __freebase(newlib);\n"
1283 " ((struct Library *)LIBBASE)->lib_OpenCnt++;\n"
1284 " ((struct Library *)LIBBASE)->lib_Flags &= ~LIBF_DELEXP;\n"
1287 " return (LIBBASETYPEPTR)newlib;\n"
1289 " AROS_LIBFUNC_EXIT\n"
1298 static void writecloselib(FILE *out
, struct config
*cfg
)
1300 if (cfg
->options
& OPTION_NOOPENCLOSE
)
1302 if (cfg
->modtype
!= DEVICE
)
1304 "AROS_LD0 (BPTR, GM_UNIQUENAME(CloseLib),\n"
1305 " LIBBASETYPEPTR, LIBBASE, 2, %s\n"
1311 "AROS_LD1(BPTR, GM_UNIQUENAME(CloseLib),\n"
1312 " AROS_LDA(struct IORequest *, ioreq, A1),\n"
1313 " LIBBASETYPEPTR, LIBBASE, 2, %s\n"
1319 if (cfg
->modtype
!= DEVICE
)
1321 "AROS_LH0 (BPTR, GM_UNIQUENAME(CloseLib),\n"
1322 " LIBBASETYPEPTR, LIBBASE, 2, %s\n"
1328 "AROS_LH1(BPTR, GM_UNIQUENAME(CloseLib),\n"
1329 " AROS_LHA(struct IORequest *, ioreq, A1),\n"
1330 " LIBBASETYPEPTR, LIBBASE, 2, %s\n"
1337 " AROS_LIBFUNC_INIT\n"
1340 if (cfg
->modtype
== DEVICE
)
1342 " if (!set_call_devfuncs(SETNAME(CLOSEDEV), -1, 1, LIBBASE, ioreq, 0, 0))\n"
1347 if (!(cfg
->options
& OPTION_DUPBASE
))
1350 " ((struct Library *)LIBBASE)->lib_OpenCnt--;\n"
1351 " set_call_libfuncs(SETNAME(CLOSELIB), -1, 0, LIBBASE);\n"
1354 else /* OPTION_DUPBASE */
1357 " LIBBASETYPEPTR rootbase = GM_ROOTBASE_FIELD(LIBBASE);\n"
1358 " struct __GM_DupBase *dupbase = (struct __GM_DupBase *)LIBBASE;\n"
1359 " __aros_setoffsettable(LIBBASE);\n"
1361 if (cfg
->options
& OPTION_PERTASKBASE
)
1363 " dupbase->taskopencount--;\n"
1364 " if (dupbase->taskopencount != 0)\n"
1369 " set_call_libfuncs(SETNAME(CLOSELIB), -1, 0, LIBBASE);\n"
1370 " set_close_rellibraries(LIBBASE);\n"
1371 " __aros_setoffsettable((char *)dupbase->oldbase);\n"
1373 if (cfg
->options
& OPTION_PERTASKBASE
)
1375 " __GM_SetPerTaskBase(((struct __GM_DupBase *)LIBBASE)->oldpertaskbase);\n"
1378 " __freebase(LIBBASE);\n"
1379 " LIBBASE = rootbase;\n"
1380 " ((struct Library *)LIBBASE)->lib_OpenCnt--;\n"
1384 if (!(cfg
->options
& OPTION_NOEXPUNGE
))
1388 " (((struct Library *)LIBBASE)->lib_OpenCnt == 0)\n"
1389 " && (((struct Library *)LIBBASE)->lib_Flags & LIBF_DELEXP)\n"
1392 " return AROS_LC1(BPTR, GM_UNIQUENAME(ExpungeLib),\n"
1393 " AROS_LCA(LIBBASETYPEPTR, LIBBASE, D0),\n"
1394 " LIBBASETYPEPTR, LIBBASE, 3, %s\n"
1403 " AROS_LIBFUNC_EXIT\n"
1410 static void writeexpungelib(FILE *out
, struct config
*cfg
)
1413 "AROS_LH1 (BPTR, GM_UNIQUENAME(ExpungeLib),\n"
1414 " AROS_LHA(LIBBASETYPEPTR, extralh, D0),\n"
1415 " LIBBASETYPEPTR, LIBBASE, 3, %s\n"
1421 " AROS_LIBFUNC_INIT\n"
1424 if (!(cfg
->options
& OPTION_NOEXPUNGE
))
1426 if (cfg
->options
& OPTION_RESAUTOINIT
) {
1428 "#ifdef GM_SYSBASE_FIELD\n"
1429 " struct ExecBase *SysBase = (struct ExecBase *)GM_SYSBASE_FIELD(LIBBASE);\n"
1433 if (cfg
->options
& OPTION_DUPBASE
)
1434 fprintf(out
, " __aros_setoffsettable(LIBBASE);\n");
1437 " if ( ((struct Library *)LIBBASE)->lib_OpenCnt == 0 )\n"
1439 " BPTR seglist = GM_SEGLIST_FIELD(LIBBASE);\n"
1441 " if(!set_call_libfuncs(SETNAME(EXPUNGELIB), -1, 1, LIBBASE))\n"
1443 " ((struct Library *)LIBBASE)->lib_Flags |= LIBF_DELEXP;\n"
1447 " Remove((struct Node *)LIBBASE);\n"
1449 " set_call_funcs(SETNAME(FINI_ARRAY), -1, 0);\n"
1450 " set_call_funcs(SETNAME(DTORS), 1, 0);\n"
1451 " set_call_funcs(SETNAME(EXIT), -1, 0);\n"
1453 if (cfg
->classlist
!= NULL
)
1454 fprintf(out
, " set_call_libfuncs(SETNAME(CLASSESEXPUNGE), -1, 0, LIBBASE);\n");
1456 fprintf(out
, " set_close_rellibraries(LIBBASE);\n");
1457 if (!(cfg
->options
& OPTION_NOAUTOLIB
))
1458 fprintf(out
, " set_close_libraries();\n"
1459 "#ifdef GM_OOPBASE_FIELD\n"
1460 " CloseLibrary((struct Library *)GM_OOPBASE_FIELD(LIBBASE));\n"
1463 if (cfg
->options
& OPTION_PERTASKBASE
)
1465 " FreeTaskStorageSlot(__pertaskslot);\n"
1466 " __pertaskslot = 0;\n"
1470 " __freebase(LIBBASE);\n"
1472 " return seglist;\n"
1475 " ((struct Library *)LIBBASE)->lib_Flags |= LIBF_DELEXP;\n"
1482 " AROS_LIBFUNC_EXIT\n"
1489 static void writeextfunclib(FILE *out
, struct config
*cfg
)
1492 "AROS_LH0 (LIBBASETYPEPTR, GM_UNIQUENAME(ExtFuncLib),\n"
1493 " LIBBASETYPEPTR, LIBBASE, 4, %s\n"
1496 " AROS_LIBFUNC_INIT\n"
1498 " AROS_LIBFUNC_EXIT\n"
1507 writefunctable(FILE *out
,
1511 struct functionhead
*funclistit
= cfg
->funclist
;
1512 struct functionarg
*arglistit
;
1516 int lastversion
= 0;
1518 /* lvo contains the number of functions already printed in the functable */
1521 if (!(cfg
->options
& OPTION_NORESIDENT
))
1525 "__section(\".text.romtag\") const APTR GM_UNIQUENAME(FuncTable)[]=\n"
1528 if (cfg
->modtype
!= RESOURCE
&& cfg
->modtype
!= HANDLER
)
1531 " &AROS_SLIB_ENTRY(GM_UNIQUENAME(OpenLib),%s,1),\n"
1532 " &AROS_SLIB_ENTRY(GM_UNIQUENAME(CloseLib),%s,2),\n"
1533 " &AROS_SLIB_ENTRY(GM_UNIQUENAME(ExpungeLib),%s,3),\n"
1534 " &AROS_SLIB_ENTRY(GM_UNIQUENAME(ExtFuncLib),%s,4),\n",
1535 cfg
->basename
, cfg
->basename
, cfg
->basename
, cfg
->basename
1539 if (cfg
->modtype
== MCC
|| cfg
->modtype
== MUI
|| cfg
->modtype
== MCP
)
1543 " &AROS_SLIB_ENTRY(MCC_Query,%s,%d),\n",
1547 else if (cfg
->modtype
== DATATYPE
)
1551 " &AROS_SLIB_ENTRY(ObtainEngine,%s,%d),\n",
1556 else /* NORESIDENT */
1558 if (cfg
->modtype
!= RESOURCE
&& cfg
->modtype
!= HANDLER
)
1561 struct functionhead
*funclistit2
;
1563 if (funclistit
->lvo
!= 1)
1565 fprintf(stderr
, "Module without a generated resident structure has to provide the Open function (LVO==1)\n");
1569 funclistit
= funclistit
->next
;
1571 if (funclistit
->lvo
!= 2)
1573 fprintf(stderr
, "Module without a generated resident structure has to provide the Close function (LVO==2)\n");
1577 funclistit
= funclistit
->next
;
1579 if (funclistit
->lvo
== 3)
1580 funclistit
= funclistit
->next
;
1584 if (funclistit
->lvo
== 4)
1585 funclistit
= funclistit
->next
;
1592 "AROS_UFH1S(int, %s_null,\n"
1593 " AROS_UFHA(struct Library *, libbase, A6)\n"
1596 " AROS_USERFUNC_INIT\n"
1598 " AROS_USERFUNC_EXIT\n"
1603 funclistit
= cfg
->funclist
;
1604 funclistit2
= funclistit
->next
;
1607 "const APTR GM_UNIQUENAME(FuncTable)[]=\n"
1609 " &AROS_SLIB_ENTRY(%s,%s,%d),\n"
1610 " &AROS_SLIB_ENTRY(%s,%s,%d),\n",
1611 funclistit
->internalname
, cfg
->basename
, lvo
+1,
1612 funclistit2
->internalname
, cfg
->basename
, lvo
+2
1615 funclistit
= funclistit2
->next
;
1617 if (funclistit
->lvo
== 3)
1619 fprintf(out
, " &AROS_SLIB_ENTRY(%s,%s,%d),\n",
1620 funclistit
->internalname
, cfg
->basename
, lvo
+1
1622 funclistit
= funclistit
->next
;
1625 fprintf(out
, " &%s_null,\n", cfg
->modulename
);
1628 if (funclistit
->lvo
== 4)
1630 fprintf(out
, " &AROS_SLIB_ENTRY(%s,%s,%d),\n",
1631 funclistit
->internalname
, cfg
->basename
, lvo
+1
1633 funclistit
= funclistit
->next
;
1636 fprintf(out
, " &%s_null,\n", cfg
->modulename
);
1643 "const APTR GM_UNIQUENAME(FuncTable)[]=\n"
1648 while (funclistit
!= NULL
)
1650 for (i
= lvo
+1; i
<funclistit
->lvo
; i
++)
1651 fprintf(out
, " NULL,\n");
1652 lvo
= funclistit
->lvo
;
1654 switch (funclistit
->libcall
)
1659 if (funclistit
->version
!= lastversion
) {
1660 lastversion
= funclistit
->version
;
1661 fprintf(out
, " /* Version %d */\n", lastversion
);
1663 fprintf(out
, " &AROS_SLIB_ENTRY(%s,%s,%d),\n", funclistit
->internalname
, cfg
->basename
, lvo
);
1667 fprintf(stderr
, "Internal error: unhandled libcall type in writestart\n");
1672 funclistit
= funclistit
->next
;
1675 fprintf(out
, " (void *)-1\n};\n");
1679 static void writesets(FILE *out
, struct config
*cfg
)
1685 if (cfg
->modtype
!= HANDLER
)
1687 "DEFINESET(CTORS)\n"
1688 "DEFINESET(DTORS)\n"
1689 "DEFINESET(INIT_ARRAY)\n"
1690 "DEFINESET(FINI_ARRAY)\n"
1691 "DEFINESET(INITLIB)\n"
1692 "DEFINESET(EXPUNGELIB)\n"
1694 if (!(cfg
->options
& OPTION_NOOPENCLOSE
))
1696 "DEFINESET(OPENLIB)\n"
1697 "DEFINESET(CLOSELIB)\n"
1699 if (cfg
->modtype
== DEVICE
)
1701 "DEFINESET(OPENDEV)\n"
1702 "DEFINESET(CLOSEDEV)\n"
1704 if (cfg
->classlist
!= NULL
)
1706 "DEFINESET(CLASSESINIT)\n"
1707 "DEFINESET(CLASSESEXPUNGE)\n"