process.cc revision 3415
12207SN/A/*
22207SN/A * Copyright (c) 2003-2004 The Regents of The University of Michigan
32207SN/A * All rights reserved.
42207SN/A *
52207SN/A * Redistribution and use in source and binary forms, with or without
62207SN/A * modification, are permitted provided that the following conditions are
72207SN/A * met: redistributions of source code must retain the above copyright
82207SN/A * notice, this list of conditions and the following disclaimer;
92207SN/A * redistributions in binary form must reproduce the above copyright
102207SN/A * notice, this list of conditions and the following disclaimer in the
112207SN/A * documentation and/or other materials provided with the distribution;
122207SN/A * neither the name of the copyright holders nor the names of its
132207SN/A * contributors may be used to endorse or promote products derived from
142207SN/A * this software without specific prior written permission.
152207SN/A *
162207SN/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
172207SN/A * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
182207SN/A * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
192207SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
202207SN/A * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
212207SN/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
222207SN/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
232207SN/A * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
242207SN/A * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
252207SN/A * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
262207SN/A * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
272665Ssaidi@eecs.umich.edu *
282665Ssaidi@eecs.umich.edu * Authors: Gabe Black
292665Ssaidi@eecs.umich.edu *          Ali Saidi
302207SN/A */
312207SN/A
322474SN/A#include "arch/sparc/isa_traits.hh"
332207SN/A#include "arch/sparc/process.hh"
342454SN/A#include "base/loader/object_file.hh"
352976Sgblack@eecs.umich.edu#include "base/loader/elf_object.hh"
362454SN/A#include "base/misc.hh"
372680Sktlim@umich.edu#include "cpu/thread_context.hh"
382561SN/A#include "mem/page_table.hh"
392561SN/A#include "mem/translating_port.hh"
402474SN/A#include "sim/system.hh"
412207SN/A
422458SN/Ausing namespace std;
432474SN/Ausing namespace SparcISA;
442458SN/A
452207SN/A
462474SN/ASparcLiveProcess::SparcLiveProcess(const std::string &nm, ObjectFile *objFile,
472474SN/A        System *_system, int stdin_fd, int stdout_fd, int stderr_fd,
483114Sgblack@eecs.umich.edu        std::vector<std::string> &argv, std::vector<std::string> &envp,
493114Sgblack@eecs.umich.edu        uint64_t _uid, uint64_t _euid, uint64_t _gid, uint64_t _egid,
503114Sgblack@eecs.umich.edu        uint64_t _pid, uint64_t _ppid)
512474SN/A    : LiveProcess(nm, objFile, _system, stdin_fd, stdout_fd, stderr_fd,
523114Sgblack@eecs.umich.edu        argv, envp, _uid, _euid, _gid, _egid, _pid, _ppid)
532474SN/A{
542474SN/A
552474SN/A    // XXX all the below need to be updated for SPARC - Ali
562474SN/A    brk_point = objFile->dataBase() + objFile->dataSize() + objFile->bssSize();
572474SN/A    brk_point = roundUp(brk_point, VMPageSize);
582474SN/A
592561SN/A    // Set up stack. On SPARC Linux, stack goes from the top of memory
602561SN/A    // downward, less the hole for the kernel address space.
613044Sgblack@eecs.umich.edu    stack_base = (Addr)0x80000000000ULL;
622474SN/A
632474SN/A    // Set up region for mmaps.  Tru64 seems to start just above 0 and
642474SN/A    // grow up from there.
653044Sgblack@eecs.umich.edu    mmap_start = mmap_end = 0xfffff80000000000ULL;
662474SN/A
672474SN/A    // Set pointer for next thread stack.  Reserve 8M for main stack.
682474SN/A    next_thread_stack_base = stack_base - (8 * 1024 * 1024);
693415Sgblack@eecs.umich.edu
703415Sgblack@eecs.umich.edu    //Initialize these to 0s
713415Sgblack@eecs.umich.edu    fillStart = 0;
723415Sgblack@eecs.umich.edu    spillStart = 0;
732474SN/A}
742474SN/A
752474SN/Avoid
762474SN/ASparcLiveProcess::startup()
772474SN/A{
782474SN/A    argsInit(MachineBytes, VMPageSize);
792561SN/A
802561SN/A    //From the SPARC ABI
812561SN/A
822561SN/A    //The process runs in user mode
832680Sktlim@umich.edu    threadContexts[0]->setMiscRegWithEffect(MISCREG_PSTATE, 0x02);
842561SN/A
852646Ssaidi@eecs.umich.edu    //Setup default FP state
862680Sktlim@umich.edu    threadContexts[0]->setMiscReg(MISCREG_FSR, 0);
872646Ssaidi@eecs.umich.edu
882680Sktlim@umich.edu    threadContexts[0]->setMiscReg(MISCREG_TICK, 0);
892646Ssaidi@eecs.umich.edu    //
902561SN/A    /*
912561SN/A     * Register window management registers
922561SN/A     */
932561SN/A
942561SN/A    //No windows contain info from other programs
953415Sgblack@eecs.umich.edu    threadContexts[0]->setMiscReg(MISCREG_OTHERWIN, 0);
962561SN/A    //There are no windows to pop
973415Sgblack@eecs.umich.edu    threadContexts[0]->setMiscReg(MISCREG_CANRESTORE, 0);
982561SN/A    //All windows are available to save into
993415Sgblack@eecs.umich.edu    threadContexts[0]->setMiscReg(MISCREG_CANSAVE, NWindows - 2);
1002561SN/A    //All windows are "clean"
1013415Sgblack@eecs.umich.edu    threadContexts[0]->setMiscReg(MISCREG_CLEANWIN, NWindows);
1022561SN/A    //Start with register window 0
1033415Sgblack@eecs.umich.edu    threadContexts[0]->setMiscReg(MISCREG_CWP, 0);
1043415Sgblack@eecs.umich.edu    //Always use spill and fill traps 0
1053415Sgblack@eecs.umich.edu    threadContexts[0]->setMiscReg(MISCREG_WSTATE, 0);
1063415Sgblack@eecs.umich.edu    //Set the trap level to 0
1073415Sgblack@eecs.umich.edu    threadContexts[0]->setMiscReg(MISCREG_TL, 0);
1082474SN/A}
1092474SN/A
1102585SN/Am5_auxv_t buildAuxVect(int64_t type, int64_t val)
1112585SN/A{
1122585SN/A    m5_auxv_t result;
1132585SN/A    result.a_type = TheISA::htog(type);
1142585SN/A    result.a_val = TheISA::htog(val);
1152585SN/A    return result;
1162585SN/A}
1172585SN/A
1183415Sgblack@eecs.umich.edu//We only use 19 instructions for the trap handlers, but there would be
1193415Sgblack@eecs.umich.edu//space for 32 in a real SPARC trap table.
1203415Sgblack@eecs.umich.educonst int numFillInsts = 32;
1213415Sgblack@eecs.umich.educonst int numSpillInsts = 32;
1223415Sgblack@eecs.umich.edu
1233415Sgblack@eecs.umich.eduMachInst fillHandler[numFillInsts] =
1243415Sgblack@eecs.umich.edu{
1253415Sgblack@eecs.umich.edu    htog(0x87802018), //wr %g0, ASI_AIUP, %asi
1263415Sgblack@eecs.umich.edu    htog(0xe0dba7ff), //ldxa [%sp + BIAS + (0*8)] %asi, %l0
1273415Sgblack@eecs.umich.edu    htog(0xe2dba807), //ldxa [%sp + BIAS + (1*8)] %asi, %l1
1283415Sgblack@eecs.umich.edu    htog(0xe4dba80f), //ldxa [%sp + BIAS + (2*8)] %asi, %l2
1293415Sgblack@eecs.umich.edu    htog(0xe6dba817), //ldxa [%sp + BIAS + (3*8)] %asi, %l3
1303415Sgblack@eecs.umich.edu    htog(0xe8dba81f), //ldxa [%sp + BIAS + (4*8)] %asi, %l4
1313415Sgblack@eecs.umich.edu    htog(0xeadba827), //ldxa [%sp + BIAS + (5*8)] %asi, %l5
1323415Sgblack@eecs.umich.edu    htog(0xecdba82f), //ldxa [%sp + BIAS + (6*8)] %asi, %l6
1333415Sgblack@eecs.umich.edu    htog(0xeedba837), //ldxa [%sp + BIAS + (7*8)] %asi, %l7
1343415Sgblack@eecs.umich.edu    htog(0xf0dba83f), //ldxa [%sp + BIAS + (8*8)] %asi, %i0
1353415Sgblack@eecs.umich.edu    htog(0xf2dba847), //ldxa [%sp + BIAS + (9*8)] %asi, %i1
1363415Sgblack@eecs.umich.edu    htog(0xf4dba84f), //ldxa [%sp + BIAS + (10*8)] %asi, %i2
1373415Sgblack@eecs.umich.edu    htog(0xf6dba857), //ldxa [%sp + BIAS + (11*8)] %asi, %i3
1383415Sgblack@eecs.umich.edu    htog(0xf8dba85f), //ldxa [%sp + BIAS + (12*8)] %asi, %i4
1393415Sgblack@eecs.umich.edu    htog(0xfadba867), //ldxa [%sp + BIAS + (13*8)] %asi, %i5
1403415Sgblack@eecs.umich.edu    htog(0xfcdba86f), //ldxa [%sp + BIAS + (14*8)] %asi, %i6
1413415Sgblack@eecs.umich.edu    htog(0xfedba877), //ldxa [%sp + BIAS + (15*8)] %asi, %i7
1423415Sgblack@eecs.umich.edu    htog(0x83880000), //restored
1433415Sgblack@eecs.umich.edu    htog(0x83F00000), //retry
1443415Sgblack@eecs.umich.edu    htog(0x00000000), //illtrap
1453415Sgblack@eecs.umich.edu    htog(0x00000000), //illtrap
1463415Sgblack@eecs.umich.edu    htog(0x00000000), //illtrap
1473415Sgblack@eecs.umich.edu    htog(0x00000000), //illtrap
1483415Sgblack@eecs.umich.edu    htog(0x00000000), //illtrap
1493415Sgblack@eecs.umich.edu    htog(0x00000000), //illtrap
1503415Sgblack@eecs.umich.edu    htog(0x00000000), //illtrap
1513415Sgblack@eecs.umich.edu    htog(0x00000000), //illtrap
1523415Sgblack@eecs.umich.edu    htog(0x00000000), //illtrap
1533415Sgblack@eecs.umich.edu    htog(0x00000000), //illtrap
1543415Sgblack@eecs.umich.edu    htog(0x00000000), //illtrap
1553415Sgblack@eecs.umich.edu    htog(0x00000000), //illtrap
1563415Sgblack@eecs.umich.edu    htog(0x00000000)  //illtrap
1573415Sgblack@eecs.umich.edu};
1583415Sgblack@eecs.umich.edu
1593415Sgblack@eecs.umich.eduMachInst spillHandler[numSpillInsts] =
1603415Sgblack@eecs.umich.edu{
1613415Sgblack@eecs.umich.edu    htog(0x87802018), //wr %g0, ASI_AIUP, %asi
1623415Sgblack@eecs.umich.edu    htog(0xe0f3a7ff), //stxa %l0, [%sp + BIAS + (0*8)] %asi
1633415Sgblack@eecs.umich.edu    htog(0xe2f3a807), //stxa %l1, [%sp + BIAS + (1*8)] %asi
1643415Sgblack@eecs.umich.edu    htog(0xe4f3a80f), //stxa %l2, [%sp + BIAS + (2*8)] %asi
1653415Sgblack@eecs.umich.edu    htog(0xe6f3a817), //stxa %l3, [%sp + BIAS + (3*8)] %asi
1663415Sgblack@eecs.umich.edu    htog(0xe8f3a81f), //stxa %l4, [%sp + BIAS + (4*8)] %asi
1673415Sgblack@eecs.umich.edu    htog(0xeaf3a827), //stxa %l5, [%sp + BIAS + (5*8)] %asi
1683415Sgblack@eecs.umich.edu    htog(0xecf3a82f), //stxa %l6, [%sp + BIAS + (6*8)] %asi
1693415Sgblack@eecs.umich.edu    htog(0xeef3a837), //stxa %l7, [%sp + BIAS + (7*8)] %asi
1703415Sgblack@eecs.umich.edu    htog(0xf0f3a83f), //stxa %i0, [%sp + BIAS + (8*8)] %asi
1713415Sgblack@eecs.umich.edu    htog(0xf2f3a847), //stxa %i1, [%sp + BIAS + (9*8)] %asi
1723415Sgblack@eecs.umich.edu    htog(0xf4f3a84f), //stxa %i2, [%sp + BIAS + (10*8)] %asi
1733415Sgblack@eecs.umich.edu    htog(0xf6f3a857), //stxa %i3, [%sp + BIAS + (11*8)] %asi
1743415Sgblack@eecs.umich.edu    htog(0xf8f3a85f), //stxa %i4, [%sp + BIAS + (12*8)] %asi
1753415Sgblack@eecs.umich.edu    htog(0xfaf3a867), //stxa %i5, [%sp + BIAS + (13*8)] %asi
1763415Sgblack@eecs.umich.edu    htog(0xfcf3a86f), //stxa %i6, [%sp + BIAS + (14*8)] %asi
1773415Sgblack@eecs.umich.edu    htog(0xfef3a877), //stxa %i7, [%sp + BIAS + (15*8)] %asi
1783415Sgblack@eecs.umich.edu    htog(0x81880000), //saved
1793415Sgblack@eecs.umich.edu    htog(0x83F00000), //retry
1803415Sgblack@eecs.umich.edu    htog(0x00000000), //illtrap
1813415Sgblack@eecs.umich.edu    htog(0x00000000), //illtrap
1823415Sgblack@eecs.umich.edu    htog(0x00000000), //illtrap
1833415Sgblack@eecs.umich.edu    htog(0x00000000), //illtrap
1843415Sgblack@eecs.umich.edu    htog(0x00000000), //illtrap
1853415Sgblack@eecs.umich.edu    htog(0x00000000), //illtrap
1863415Sgblack@eecs.umich.edu    htog(0x00000000), //illtrap
1873415Sgblack@eecs.umich.edu    htog(0x00000000), //illtrap
1883415Sgblack@eecs.umich.edu    htog(0x00000000), //illtrap
1893415Sgblack@eecs.umich.edu    htog(0x00000000), //illtrap
1903415Sgblack@eecs.umich.edu    htog(0x00000000), //illtrap
1913415Sgblack@eecs.umich.edu    htog(0x00000000), //illtrap
1923415Sgblack@eecs.umich.edu    htog(0x00000000)  //illtrap
1933415Sgblack@eecs.umich.edu};
1943415Sgblack@eecs.umich.edu
1952561SN/Avoid
1962561SN/ASparcLiveProcess::argsInit(int intSize, int pageSize)
1972561SN/A{
1982561SN/A    Process::startup();
1992474SN/A
2003044Sgblack@eecs.umich.edu    string filename;
2013044Sgblack@eecs.umich.edu    if(argv.size() < 1)
2023044Sgblack@eecs.umich.edu        filename = "";
2033044Sgblack@eecs.umich.edu    else
2043044Sgblack@eecs.umich.edu        filename = argv[0];
2053044Sgblack@eecs.umich.edu
2062561SN/A    Addr alignmentMask = ~(intSize - 1);
2072561SN/A
2082561SN/A    // load object file into target memory
2092561SN/A    objFile->loadSections(initVirtMem);
2102561SN/A
2112585SN/A    //These are the auxilliary vector types
2122585SN/A    enum auxTypes
2132585SN/A    {
2142585SN/A        SPARC_AT_HWCAP = 16,
2152585SN/A        SPARC_AT_PAGESZ = 6,
2162585SN/A        SPARC_AT_CLKTCK = 17,
2172585SN/A        SPARC_AT_PHDR = 3,
2182585SN/A        SPARC_AT_PHENT = 4,
2192585SN/A        SPARC_AT_PHNUM = 5,
2202585SN/A        SPARC_AT_BASE = 7,
2212585SN/A        SPARC_AT_FLAGS = 8,
2222585SN/A        SPARC_AT_ENTRY = 9,
2232585SN/A        SPARC_AT_UID = 11,
2242585SN/A        SPARC_AT_EUID = 12,
2252585SN/A        SPARC_AT_GID = 13,
2262976Sgblack@eecs.umich.edu        SPARC_AT_EGID = 14,
2272976Sgblack@eecs.umich.edu        SPARC_AT_SECURE = 23
2282585SN/A    };
2292585SN/A
2302585SN/A    enum hardwareCaps
2312585SN/A    {
2322585SN/A        M5_HWCAP_SPARC_FLUSH = 1,
2332585SN/A        M5_HWCAP_SPARC_STBAR = 2,
2342585SN/A        M5_HWCAP_SPARC_SWAP = 4,
2352585SN/A        M5_HWCAP_SPARC_MULDIV = 8,
2362585SN/A        M5_HWCAP_SPARC_V9 = 16,
2372585SN/A        //This one should technically only be set
2382585SN/A        //if there is a cheetah or cheetah_plus tlb,
2392585SN/A        //but we'll use it all the time
2402585SN/A        M5_HWCAP_SPARC_ULTRA3 = 32
2412585SN/A    };
2422585SN/A
2432585SN/A    const int64_t hwcap =
2442585SN/A        M5_HWCAP_SPARC_FLUSH |
2452585SN/A        M5_HWCAP_SPARC_STBAR |
2462585SN/A        M5_HWCAP_SPARC_SWAP |
2472585SN/A        M5_HWCAP_SPARC_MULDIV |
2482585SN/A        M5_HWCAP_SPARC_V9 |
2492585SN/A        M5_HWCAP_SPARC_ULTRA3;
2502585SN/A
2512976Sgblack@eecs.umich.edu
2522976Sgblack@eecs.umich.edu    //Setup the auxilliary vectors. These will already have endian conversion.
2532976Sgblack@eecs.umich.edu    //Auxilliary vectors are loaded only for elf formatted executables.
2542976Sgblack@eecs.umich.edu    ElfObject * elfObject = dynamic_cast<ElfObject *>(objFile);
2552976Sgblack@eecs.umich.edu    if(elfObject)
2562976Sgblack@eecs.umich.edu    {
2572976Sgblack@eecs.umich.edu        //Bits which describe the system hardware capabilities
2582976Sgblack@eecs.umich.edu        auxv.push_back(buildAuxVect(SPARC_AT_HWCAP, hwcap));
2592976Sgblack@eecs.umich.edu        //The system page size
2602976Sgblack@eecs.umich.edu        auxv.push_back(buildAuxVect(SPARC_AT_PAGESZ, SparcISA::VMPageSize));
2612976Sgblack@eecs.umich.edu        //Defined to be 100 in the kernel source.
2622976Sgblack@eecs.umich.edu        //Frequency at which times() increments
2632976Sgblack@eecs.umich.edu        auxv.push_back(buildAuxVect(SPARC_AT_CLKTCK, 100));
2642976Sgblack@eecs.umich.edu        // For statically linked executables, this is the virtual address of the
2652976Sgblack@eecs.umich.edu        // program header tables if they appear in the executable image
2662976Sgblack@eecs.umich.edu        auxv.push_back(buildAuxVect(SPARC_AT_PHDR, elfObject->programHeaderTable()));
2672976Sgblack@eecs.umich.edu        // This is the size of a program header entry from the elf file.
2682976Sgblack@eecs.umich.edu        auxv.push_back(buildAuxVect(SPARC_AT_PHENT, elfObject->programHeaderSize()));
2692976Sgblack@eecs.umich.edu        // This is the number of program headers from the original elf file.
2702976Sgblack@eecs.umich.edu        auxv.push_back(buildAuxVect(SPARC_AT_PHNUM, elfObject->programHeaderCount()));
2712976Sgblack@eecs.umich.edu        //This is the address of the elf "interpreter", It should be set
2722976Sgblack@eecs.umich.edu        //to 0 for regular executables. It should be something else
2732976Sgblack@eecs.umich.edu        //(not sure what) for dynamic libraries.
2742976Sgblack@eecs.umich.edu        auxv.push_back(buildAuxVect(SPARC_AT_BASE, 0));
2752976Sgblack@eecs.umich.edu        //This is hardwired to 0 in the elf loading code in the kernel
2762976Sgblack@eecs.umich.edu        auxv.push_back(buildAuxVect(SPARC_AT_FLAGS, 0));
2772976Sgblack@eecs.umich.edu        //The entry point to the program
2782976Sgblack@eecs.umich.edu        auxv.push_back(buildAuxVect(SPARC_AT_ENTRY, objFile->entryPoint()));
2792976Sgblack@eecs.umich.edu        //Different user and group IDs
2803114Sgblack@eecs.umich.edu        auxv.push_back(buildAuxVect(SPARC_AT_UID, uid()));
2813114Sgblack@eecs.umich.edu        auxv.push_back(buildAuxVect(SPARC_AT_EUID, euid()));
2823114Sgblack@eecs.umich.edu        auxv.push_back(buildAuxVect(SPARC_AT_GID, gid()));
2833114Sgblack@eecs.umich.edu        auxv.push_back(buildAuxVect(SPARC_AT_EGID, egid()));
2842976Sgblack@eecs.umich.edu        //Whether to enable "secure mode" in the executable
2852976Sgblack@eecs.umich.edu        auxv.push_back(buildAuxVect(SPARC_AT_SECURE, 0));
2862976Sgblack@eecs.umich.edu    }
2872585SN/A
2882561SN/A    //Figure out how big the initial stack needs to be
2892561SN/A
2903044Sgblack@eecs.umich.edu    // The unaccounted for 0 at the top of the stack
2913044Sgblack@eecs.umich.edu    int mysterious_size = intSize;
2923044Sgblack@eecs.umich.edu
2933044Sgblack@eecs.umich.edu    //This is the name of the file which is present on the initial stack
2943044Sgblack@eecs.umich.edu    //It's purpose is to let the user space linker examine the original file.
2953044Sgblack@eecs.umich.edu    int file_name_size = filename.size() + 1;
2963044Sgblack@eecs.umich.edu
2972561SN/A    int env_data_size = 0;
2982561SN/A    for (int i = 0; i < envp.size(); ++i) {
2992561SN/A        env_data_size += envp[i].size() + 1;
3002561SN/A    }
3012561SN/A    int arg_data_size = 0;
3022561SN/A    for (int i = 0; i < argv.size(); ++i) {
3032561SN/A        arg_data_size += argv[i].size() + 1;
3042561SN/A    }
3052561SN/A
3063044Sgblack@eecs.umich.edu    //The info_block needs to be padded so it's size is a multiple of the
3073044Sgblack@eecs.umich.edu    //alignment mask. Also, it appears that there needs to be at least some
3083044Sgblack@eecs.umich.edu    //padding, so if the size is already a multiple, we need to increase it
3093044Sgblack@eecs.umich.edu    //anyway.
3103044Sgblack@eecs.umich.edu    int info_block_size =
3113044Sgblack@eecs.umich.edu        (file_name_size +
3123044Sgblack@eecs.umich.edu        env_data_size +
3133044Sgblack@eecs.umich.edu        arg_data_size +
3143044Sgblack@eecs.umich.edu        intSize) & alignmentMask;
3153044Sgblack@eecs.umich.edu
3163044Sgblack@eecs.umich.edu    int info_block_padding =
3173044Sgblack@eecs.umich.edu        info_block_size -
3183044Sgblack@eecs.umich.edu        file_name_size -
3193044Sgblack@eecs.umich.edu        env_data_size -
3203044Sgblack@eecs.umich.edu        arg_data_size;
3213044Sgblack@eecs.umich.edu
3223044Sgblack@eecs.umich.edu    //Each auxilliary vector is two 8 byte words
3232561SN/A    int aux_array_size = intSize * 2 * (auxv.size() + 1);
3242561SN/A
3253044Sgblack@eecs.umich.edu    int envp_array_size = intSize * (envp.size() + 1);
3262561SN/A    int argv_array_size = intSize * (argv.size() + 1);
3272561SN/A
3282561SN/A    int argc_size = intSize;
3292561SN/A    int window_save_size = intSize * 16;
3302561SN/A
3312561SN/A    int space_needed =
3323044Sgblack@eecs.umich.edu        mysterious_size +
3332561SN/A        info_block_size +
3342561SN/A        aux_array_size +
3352561SN/A        envp_array_size +
3362561SN/A        argv_array_size +
3372561SN/A        argc_size +
3382561SN/A        window_save_size;
3392561SN/A
3402561SN/A    stack_min = stack_base - space_needed;
3412561SN/A    stack_min &= alignmentMask;
3422561SN/A    stack_size = stack_base - stack_min;
3432561SN/A
3442561SN/A    // map memory
3452561SN/A    pTable->allocate(roundDown(stack_min, pageSize),
3462561SN/A                     roundUp(stack_size, pageSize));
3472561SN/A
3482561SN/A    // map out initial stack contents
3493044Sgblack@eecs.umich.edu    Addr mysterious_base = stack_base - mysterious_size;
3503044Sgblack@eecs.umich.edu    Addr file_name_base = mysterious_base - file_name_size;
3513044Sgblack@eecs.umich.edu    Addr env_data_base = file_name_base - env_data_size;
3522561SN/A    Addr arg_data_base = env_data_base - arg_data_size;
3533044Sgblack@eecs.umich.edu    Addr auxv_array_base = arg_data_base - aux_array_size - info_block_padding;
3542585SN/A    Addr envp_array_base = auxv_array_base - envp_array_size;
3552561SN/A    Addr argv_array_base = envp_array_base - argv_array_size;
3562561SN/A    Addr argc_base = argv_array_base - argc_size;
3573039Sstever@eecs.umich.edu#ifndef NDEBUG
3583039Sstever@eecs.umich.edu    // only used in DPRINTF
3592561SN/A    Addr window_save_base = argc_base - window_save_size;
3603039Sstever@eecs.umich.edu#endif
3612561SN/A
3622561SN/A    DPRINTF(Sparc, "The addresses of items on the initial stack:\n");
3633044Sgblack@eecs.umich.edu    DPRINTF(Sparc, "0x%x - file name\n", file_name_base);
3642561SN/A    DPRINTF(Sparc, "0x%x - env data\n", env_data_base);
3652561SN/A    DPRINTF(Sparc, "0x%x - arg data\n", arg_data_base);
3662585SN/A    DPRINTF(Sparc, "0x%x - auxv array\n", auxv_array_base);
3672585SN/A    DPRINTF(Sparc, "0x%x - envp array\n", envp_array_base);
3682585SN/A    DPRINTF(Sparc, "0x%x - argv array\n", argv_array_base);
3692561SN/A    DPRINTF(Sparc, "0x%x - argc \n", argc_base);
3702561SN/A    DPRINTF(Sparc, "0x%x - window save\n", window_save_base);
3712561SN/A    DPRINTF(Sparc, "0x%x - stack min\n", stack_min);
3722561SN/A
3732561SN/A    // write contents to stack
3743044Sgblack@eecs.umich.edu
3753044Sgblack@eecs.umich.edu    // figure out argc
3762561SN/A    uint64_t argc = argv.size();
3772585SN/A    uint64_t guestArgc = TheISA::htog(argc);
3782561SN/A
3793044Sgblack@eecs.umich.edu    //Write out the mysterious 0
3803044Sgblack@eecs.umich.edu    uint64_t mysterious_zero = 0;
3813044Sgblack@eecs.umich.edu    initVirtMem->writeBlob(mysterious_base,
3823044Sgblack@eecs.umich.edu            (uint8_t*)&mysterious_zero, mysterious_size);
3833044Sgblack@eecs.umich.edu
3843044Sgblack@eecs.umich.edu    //Write the file name
3853044Sgblack@eecs.umich.edu    initVirtMem->writeString(file_name_base, filename.c_str());
3863044Sgblack@eecs.umich.edu
3872585SN/A    //Copy the aux stuff
3882585SN/A    for(int x = 0; x < auxv.size(); x++)
3892585SN/A    {
3902585SN/A        initVirtMem->writeBlob(auxv_array_base + x * 2 * intSize,
3912585SN/A                (uint8_t*)&(auxv[x].a_type), intSize);
3922585SN/A        initVirtMem->writeBlob(auxv_array_base + (x * 2 + 1) * intSize,
3932585SN/A                (uint8_t*)&(auxv[x].a_val), intSize);
3942585SN/A    }
3952585SN/A    //Write out the terminating zeroed auxilliary vector
3962561SN/A    const uint64_t zero = 0;
3972585SN/A    initVirtMem->writeBlob(auxv_array_base + 2 * intSize * auxv.size(),
3982585SN/A            (uint8_t*)&zero, 2 * intSize);
3992561SN/A
4002561SN/A    copyStringArray(envp, envp_array_base, env_data_base, initVirtMem);
4012561SN/A    copyStringArray(argv, argv_array_base, arg_data_base, initVirtMem);
4022561SN/A
4032585SN/A    initVirtMem->writeBlob(argc_base, (uint8_t*)&guestArgc, intSize);
4042561SN/A
4053415Sgblack@eecs.umich.edu    //Stuff the trap handlers into the processes address space.
4063415Sgblack@eecs.umich.edu    //Since the stack grows down and is the highest area in the processes
4073415Sgblack@eecs.umich.edu    //address space, we can put stuff above it and stay out of the way.
4083415Sgblack@eecs.umich.edu    int fillSize = sizeof(MachInst) * numFillInsts;
4093415Sgblack@eecs.umich.edu    int spillSize = sizeof(MachInst) * numSpillInsts;
4103415Sgblack@eecs.umich.edu    fillStart = stack_base;
4113415Sgblack@eecs.umich.edu    spillStart = fillStart + fillSize;
4123415Sgblack@eecs.umich.edu    initVirtMem->writeBlob(fillStart, (uint8_t*)fillHandler, fillSize);
4133415Sgblack@eecs.umich.edu    initVirtMem->writeBlob(spillStart, (uint8_t*)spillHandler, spillSize);
4143415Sgblack@eecs.umich.edu
4153415Sgblack@eecs.umich.edu    //Set up the thread context to start running the process
4162680Sktlim@umich.edu    threadContexts[0]->setIntReg(ArgumentReg0, argc);
4172680Sktlim@umich.edu    threadContexts[0]->setIntReg(ArgumentReg1, argv_array_base);
4182680Sktlim@umich.edu    threadContexts[0]->setIntReg(StackPointerReg, stack_min - StackBias);
4192561SN/A
4202561SN/A    Addr prog_entry = objFile->entryPoint();
4212680Sktlim@umich.edu    threadContexts[0]->setPC(prog_entry);
4222680Sktlim@umich.edu    threadContexts[0]->setNextPC(prog_entry + sizeof(MachInst));
4232680Sktlim@umich.edu    threadContexts[0]->setNextNPC(prog_entry + (2 * sizeof(MachInst)));
4242561SN/A
4252561SN/A//    num_processes++;
4262561SN/A}
427