Deleted Added
sdiff udiff text old ( 2686:f0d591379ac3 ) new ( 2715:4032e02b525e )
full compact
1/*
2 * Copyright (c) 2003-2004 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 18 unchanged lines hidden (view full) ---

27 *
28 * Authors: Gabe Black
29 * Ali Saidi
30 * Korey Sewell
31 */
32
33#include "arch/mips/isa_traits.hh"
34#include "arch/mips/process.hh"
35#include "base/loader/object_file.hh"
36#include "base/misc.hh"
37#include "cpu/thread_context.hh"
38#include "sim/system.hh"
39
40using namespace std;
41using namespace MipsISA;
42
43MipsLiveProcess::MipsLiveProcess(const std::string &nm, ObjectFile *objFile,
44 System *_system, int stdin_fd, int stdout_fd, int stderr_fd,
45 std::vector<std::string> &argv, std::vector<std::string> &envp)
46 : LiveProcess(nm, objFile, _system, stdin_fd, stdout_fd, stderr_fd,
47 argv, envp)
48{
49 // Set up stack. On MIPS, stack starts at the top of kuseg
50 // user address space. MIPS stack grows down from here

--- 10 unchanged lines hidden (view full) ---

61 mmap_start = mmap_end = 0x10000;
62}
63
64void
65MipsLiveProcess::startup()
66{
67 argsInit(MachineBytes, VMPageSize);
68}