home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / files / mint / mntlib18 / crtinit.c < prev    next >
C/C++ Source or Header  |  1993-08-03  |  9KB  |  336 lines

  1. /*
  2.  *
  3.  * Crtinit: C run-time initialization code.
  4.  * Written by Eric R. Smith, and placed in the public domain.
  5.  * Use at your own risk.
  6.  *
  7.  * 01/03/89 ++jrb
  8.  *    The (new) meaning of _stksize: (thanks to allan pratt for the feedback)
  9.  *
  10.  *    _stksize            meaning
  11.  *      -1L        keep all of memory (except MINFREE at top) and do
  12.  *            mallocs from own heap, with heap grown upwards towards
  13.  *            stack, and the stack growing down towards heap,
  14.  *            with a minimum slush between them so that they
  15.  *            dont meet (only checked while malloc'ing). With
  16.  *            this model, further spawning is not possible, but it is
  17.  *            well suited for programs such as gcc-cc1 etc.
  18.  *            Thanks to Piet van Oostrum & Atze Dijkstra for this idea
  19.  *
  20.  *    0L        keep minimum amount of memory. this is also the
  21.  *            case when _stksize is undefined by the user.
  22.  *    1L        keep 1/4 of memory, free 3/4 ( as in Alcyon GEMSTART)
  23.  *    2L        keep 2/4 (1/2), free rest
  24.  *    3L        keep 3/4, free 1/4
  25.  *    other        keep that many bytes
  26.  *    -other        keep |other| bytes, use the heap for mallocs
  27.  *
  28.  * 02/14/90 ++jrb (thanks edgar)
  29.  *    auto acc detect
  30.  *    undump friendly
  31.  *
  32.  * NOTE: dumping applications should use _initial_stack instead: if
  33.  *     !=0, then _stksize is initialized from _initial_stack, and
  34.  *     mallocs are always from internal heap. (TeX works much better now),
  35.  *     thanks edgar!
  36.  *
  37.  * Acc convention:
  38.  *    user sets _heapbase to bottom of stack + heap area
  39.  *         sets _stksize to the size of this area
  40.  *         at startup, sp will be set to top of this area
  41.  *         (_heapbase  + _stksize ) and malloc()'s will happen from heap.
  42.  *        (note malloc() and *not* Malloc())
  43.  *
  44.  * 02/16/90 ++jrb
  45.  *  - bug fix: dont get screwed by desktop launch when fast bit is set
  46.  *             convert env string to format usable
  47.  *        (atari get your act together!!)
  48.  */
  49.  
  50. #include <basepage.h>
  51. #include <osbind.h>
  52. #include "lib.h"
  53.  
  54. #define isspace(c) ((c) == ' '||(c) == '\t')
  55. #define MINFREE    (8L * 1024L)        /* free at least this much mem */
  56.                     /* on top */
  57. #define MINKEEP (8L * 1024L)        /* keep at least this much mem */
  58.  
  59. BASEPAGE *_base;
  60. char **environ;
  61. static long argc;
  62. static char **argv;
  63.  
  64. /*
  65.  * initial stack is used primarily by dumping application,
  66.  * if it is, malloc is always from heap, and _stksize is init
  67.  * from initial_stack (to preserve the value in the undumped run)
  68.  */
  69. long _initial_stack;        /* .comm __initial_size, 4 */
  70. extern long _stksize;        /* picked up from user or from stksiz.c */
  71.  
  72. /* set to heap base addr when _stksize == -1L || _initial_stack || When DA */
  73. void *_heapbase;
  74.  
  75. /* default sizeof stdio buffers */
  76. size_t __DEFAULT_BUFSIZ__;    /* .comm             */
  77.  
  78. /* are we an app? */
  79. short _app;
  80.  
  81. static long parseargs();
  82. static void setup_handlers    __PROTO((void));
  83. __EXTERN void _main    __PROTO((long, char **, char **));
  84. __EXTERN void _init_signal    __PROTO((void));
  85. __EXTERN void monstartup __PROTO((void *lowpc, void *highpc));
  86. __EXTERN void _mcleanup     __PROTO((void));
  87. __EXTERN void moncontrol __PROTO((long));
  88.  
  89.  
  90. /*
  91.  * accessories start here:
  92.  */
  93.  
  94. static char    *acc_argv[] = {"", (char *) 0}; /* no name and no arguments */
  95.  
  96. void _acc_main()
  97. {
  98.     _app = 0;                /* this is an accessory */
  99.     _main(1L, acc_argv, acc_argv);
  100.     /*NOTREACHED*/
  101. }
  102.  
  103. /* functions in crt0.s or gcrt0.s */
  104. extern void _setstack(), _monstartup(), _moncontrol(), __mcleanup();
  105.  
  106. void _crtinit()
  107. {
  108.     register BASEPAGE *bp;
  109.     register long m;
  110.     register long freemem;
  111.  
  112.     _app = 1;    /* its an application */
  113.     if(!__DEFAULT_BUFSIZ__)
  114.         __DEFAULT_BUFSIZ__ = BUFSIZ;
  115.  
  116.     bp = _base;
  117.     m = parseargs(bp);    /* m = # bytes used by environment + args */
  118.  
  119. /* make m the total number of bytes required by program sans stack/heap */
  120.     m += (bp->p_tlen + bp->p_dlen + bp->p_blen);
  121.     m = (m + 3L) & (~3L);
  122. /* freemem the amount of free mem accounting for MINFREE at top */
  123.     if((freemem = (long)bp->p_hitpa - (long)bp->p_tbase - MINFREE - m) <= 0L)
  124.         goto notenough;
  125.     
  126.     if(_initial_stack)
  127.     {
  128.         /* the primary use of _initial_stack will be in dumping */
  129.         /* applications where only a heap for malloc makes sense */
  130.         _heapbase = (void *) ((long)bp->p_tbase + m);
  131.         _stksize = _initial_stack;
  132.     }
  133.     
  134.     switch(_stksize)
  135.     {
  136.       case -1L:    /* keep all but MINFREE, and malloc from own heap */
  137.         _stksize = freemem;
  138.         _heapbase = (void *) ((long)bp->p_tbase + m);
  139.         break;
  140.         
  141.       case 0L:    /* free all but MINKEEP */
  142.         _stksize = MINKEEP;
  143.         break;
  144.  
  145.       case 1L:    /* keep 1/4, free 3/4 */
  146.         _stksize = freemem >> 2;
  147.         break;
  148.  
  149.       case 2L:    /* keep 1/2, free 1/2 */
  150.         _stksize = freemem >> 1;
  151.         break;
  152.  
  153.       case 3L:    /* keep 3/4, free 1/4 */
  154.         _stksize = freemem - (freemem >> 2); 
  155.         break;
  156.         
  157.       default:
  158.         if(_stksize < -1L) { /* keep |_stksize|, use heap for mallocs */
  159.         _stksize = -_stksize;
  160.         _heapbase = (void *)((long)bp->p_tbase + m);
  161.         }
  162.     }
  163.     
  164. /* make m the total number of bytes including stack */
  165.     _stksize = _stksize & (~3L);
  166.     m += _stksize;
  167.  
  168. /* make sure there's enough room for the stack */
  169.     if ((((long)bp->p_tbase) + m) > ((long)bp->p_hitpa - MINFREE))
  170.         goto notenough;
  171.  
  172. /* set up the new stack to bp->p_tbase + m  */
  173.     _setstack(bp->p_tbase + m);
  174.  
  175. /* shrink the TPA */
  176. /* this is right only if bp == bp->p_tbase - sizeof(BASEPAGE) */
  177.     (void)Mshrink(bp, m + sizeof(BASEPAGE));
  178.     
  179. /* establish handlers,  call the main routine */
  180.     setup_handlers();
  181.  
  182. /* start profiling, if we were linked with crt0.o */
  183.     _monstartup((void *)(bp->p_tbase), 
  184.            (void *)((long)bp->p_tbase +  bp->p_tlen));
  185.  
  186.     _main(argc, argv, environ);
  187.     /* not reached normally */
  188.  
  189. notenough:
  190.     Cconws("Fatal error: insufficient memory\r\n");
  191.         Pterm(-1);
  192. }
  193.  
  194.  
  195. /*
  196.  * parseargs(bp): parse the environment and arguments pointed to by the
  197.  * basepage. Return the number of bytes of environment and arguments
  198.  * that have been appended to the bss area (the environ and argv arrays
  199.  * are put here, as is a temporary buffer for the command line, if
  200.  * necessary).
  201.  *
  202.  * The MWC extended argument passing scheme is assumed.
  203.  *
  204.  */
  205.  
  206. static long parseargs(bp)
  207.     BASEPAGE *bp;
  208. {
  209.     long count = 4;        /* compensate for aligning */
  210.     long  i;
  211.     char *from, *cmdln, *to;
  212.     char **envp, **arg;
  213. /* flag to indicate desktop-style arg. passing */
  214.     long desktoparg = 0;
  215.  
  216. /* handle the environment first */
  217.  
  218.     environ = envp = (char **)(( (long)bp->p_bbase + bp->p_blen + 4) & (~3));
  219.     from = bp->p_env;
  220.     while (*from) {
  221.  
  222. /* if we find MWC arguments, tie off environment here */
  223.         if (*from == 'A' && *(from+1) == 'R' && *(from+2) == 'G' &&
  224.             *(from+3) == 'V' && *(from+4) == '=') {
  225.             *envp++ = (char *) 0; count += 4;
  226.             *from++ = 0;
  227. #ifdef STRICTLY_COMPATIBLE_WITH_STANDARD
  228.             if (bp->p_cmdlin[0] != 127)
  229.                 goto old_cmdlin;
  230. #endif
  231.             while (*from++) ; /* skip ARGV= string */
  232.             argv = arg = envp++;
  233.             *arg++ = from; count+= 4;
  234.             while (*from++) ; /* skip argv[0] */
  235.             goto do_argc;
  236.         }
  237.         *envp++ = from;
  238.         count += 4;
  239.         desktoparg = 1;
  240.         while (*from) {
  241.             if (*from == '=') {
  242.                 desktoparg = 0;
  243.             }
  244.             from++;
  245.         }
  246.         from++;        /* skip 0 */
  247.  
  248. /* the desktop (and some shells) use the environment in the wrong
  249.    way, putting in "PATH=\0C:\0" instead of "PATH=C:". so if we
  250.    find an "environment variable" without an '=' in it, we
  251.    see if the last environment variable ended with '=\0', and
  252.    if so we append this one to the last one
  253.  */
  254.         if(desktoparg && envp > &environ[1]) 
  255.         {
  256.         /* launched from desktop -- fix up env */
  257.             char *p, *q;
  258.  
  259.             q = envp[-2];    /* current one is envp[-1] */
  260.             while (*q) q++;
  261.             if (q[-1] == '=') {
  262.             p = *--envp;
  263.             while(*p)
  264.                *q++ = *p++;
  265.                 *q = '\0';
  266.            }
  267.         }
  268.     }
  269.     *envp++ = (char *)0;
  270.     count += 4;
  271.  
  272. /* old_cmdlin: */
  273. /* Allocate some room for the command line to be parsed */
  274.     cmdln = bp->p_cmdlin;
  275.     i = *cmdln++;
  276.     from = to = (char *) envp;
  277.     if (i > 0) {
  278.         count += (i&(~3));
  279.         envp = (char **) ( ((long) envp)  + (i&(~3)) );
  280.     }
  281.     envp += 2; count += 8;
  282.  
  283. /* Now parse the command line and put argv after the environment */
  284.  
  285.     argv = arg = envp;
  286.     *arg++ = "";        /* argv[0] not available */
  287.     count += 4;
  288.     while(i > 0 && isspace(*cmdln) )
  289.         cmdln++,--i;
  290.  
  291.     while (i > 0) {
  292.         if (isspace(*cmdln)) {
  293.             --i; cmdln++;
  294.             while (i > 0 && isspace(*cmdln))
  295.                 --i,cmdln++;
  296.             *to++ = 0;
  297.         }
  298.         else {
  299.             if (!(*to++ = *cmdln++)) break;
  300.             --i;
  301.         }
  302.     }
  303.     *to++ = '\0';
  304.     *to = '\0'; /* bug fix example:cmdln == '\3' 'a' ' ' 'b' '\0' */
  305.     /* the loop below expects \0\0 at end to terminate! */
  306.     /* the byte @ cmdln[i+2] != 0 when fast bit is set */
  307. do_argc:
  308.     argc = 1;        /* at this point argv[0] is done */
  309.     while (*from) {
  310.         *arg++ = from;
  311.         argc++;
  312.         count += 4;
  313.         while(*from++) ;
  314.     }
  315.     *arg++ = (char *) 0;
  316.     return count+4;
  317. }
  318.  
  319. static void setup_handlers()
  320. {
  321.     _init_signal();
  322. }
  323.  
  324. /*
  325.  * _exit: does the actual exiting. Note that _moncontrol and __mcleanup are
  326.  * dummies in crt0.s, but do something in gcrt0.s
  327.  */
  328.  
  329. void _exit(status)
  330.     int status;
  331. {
  332.     _moncontrol(0L);
  333.     __mcleanup();
  334.     Pterm(status);
  335. }
  336.