Deleted Added
sdiff udiff text old ( 2680:246e7104f744 ) 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;

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

26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Gabe Black
29 * Ali Saidi
30 */
31
32#include "arch/alpha/constants.hh"
33#include "arch/alpha/process.hh"
34#include "base/loader/object_file.hh"
35#include "base/misc.hh"
36#include "cpu/thread_context.hh"
37#include "sim/system.hh"
38
39
40using namespace AlphaISA;
41using namespace std;
42
43AlphaLiveProcess::AlphaLiveProcess(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 brk_point = objFile->dataBase() + objFile->dataSize() + objFile->bssSize();
50 brk_point = roundUp(brk_point, VMPageSize);

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

66AlphaLiveProcess::startup()
67{
68 argsInit(MachineBytes, VMPageSize);
69
70 threadContexts[0]->setIntReg(GlobalPointerReg, objFile->globalPointer());
71}
72
73