2006-03-04 09:09:23 +01:00
|
|
|
/*
|
2007-11-15 20:21:01 +01:00
|
|
|
* Copyright (c) 2004-2005 The Regents of The University of Michigan
|
|
|
|
* All rights reserved.
|
2007-11-13 22:58:16 +01:00
|
|
|
*
|
2007-11-15 20:21:01 +01:00
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are
|
|
|
|
* met: redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer;
|
|
|
|
* redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution;
|
|
|
|
* neither the name of the copyright holders nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived from
|
|
|
|
* this software without specific prior written permission.
|
2006-03-04 09:09:23 +01:00
|
|
|
*
|
2007-11-15 20:21:01 +01:00
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2006-03-04 09:09:23 +01:00
|
|
|
*
|
2007-11-15 20:21:01 +01:00
|
|
|
* Authors: Gabe Black
|
|
|
|
* Ali Saidi
|
|
|
|
* Korey Sewell
|
2006-03-04 09:09:23 +01:00
|
|
|
*/
|
|
|
|
|
2006-03-15 23:04:50 +01:00
|
|
|
#include "arch/mips/isa_traits.hh"
|
2006-03-04 09:09:23 +01:00
|
|
|
#include "arch/mips/process.hh"
|
2006-03-12 22:27:52 +01:00
|
|
|
#include "base/loader/object_file.hh"
|
|
|
|
#include "base/misc.hh"
|
2006-06-06 23:32:21 +02:00
|
|
|
#include "cpu/thread_context.hh"
|
2006-03-15 23:04:50 +01:00
|
|
|
#include "sim/system.hh"
|
2006-03-04 09:09:23 +01:00
|
|
|
|
2006-03-12 11:57:34 +01:00
|
|
|
using namespace std;
|
2006-03-15 23:04:50 +01:00
|
|
|
using namespace MipsISA;
|
2006-03-12 11:57:34 +01:00
|
|
|
|
2007-10-17 03:04:01 +02:00
|
|
|
MipsLiveProcess::MipsLiveProcess(LiveProcessParams * params,
|
|
|
|
ObjectFile *objFile)
|
|
|
|
: LiveProcess(params, objFile)
|
2006-03-15 23:04:50 +01:00
|
|
|
{
|
2006-06-09 09:57:25 +02:00
|
|
|
// Set up stack. On MIPS, stack starts at the top of kuseg
|
|
|
|
// user address space. MIPS stack grows down from here
|
2006-07-23 19:39:42 +02:00
|
|
|
stack_base = 0x7FFFFFFF;
|
2006-03-15 23:04:50 +01:00
|
|
|
|
2006-06-09 09:57:25 +02:00
|
|
|
// Set pointer for next thread stack. Reserve 8M for main stack.
|
|
|
|
next_thread_stack_base = stack_base - (8 * 1024 * 1024);
|
|
|
|
|
|
|
|
// Set up break point (Top of Heap)
|
2006-03-15 23:04:50 +01:00
|
|
|
brk_point = objFile->dataBase() + objFile->dataSize() + objFile->bssSize();
|
|
|
|
brk_point = roundUp(brk_point, VMPageSize);
|
|
|
|
|
2006-06-09 09:57:25 +02:00
|
|
|
// Set up region for mmaps. For now, start at bottom of kuseg space.
|
2006-03-15 23:04:50 +01:00
|
|
|
mmap_start = mmap_end = 0x10000;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
MipsLiveProcess::startup()
|
|
|
|
{
|
|
|
|
argsInit(MachineBytes, VMPageSize);
|
|
|
|
}
|