process.cc (12431:000549e1f497) process.cc (12432:2480d8b432f5)
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;

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

51using namespace std;
52using namespace SparcISA;
53
54static const int FirstArgumentReg = 8;
55
56
57SparcProcess::SparcProcess(ProcessParams *params, ObjectFile *objFile,
58 Addr _StackBias)
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;

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

51using namespace std;
52using namespace SparcISA;
53
54static const int FirstArgumentReg = 8;
55
56
57SparcProcess::SparcProcess(ProcessParams *params, ObjectFile *objFile,
58 Addr _StackBias)
59 : Process(params, new FuncPageTable(params->name, params->pid), objFile),
60 StackBias(_StackBias)
59 : Process(params, new FuncPageTable(params->name, params->pid, PageBytes),
60 objFile),
61 StackBias(_StackBias)
61{
62 fatal_if(!params->useArchPT, "Arch page tables not implemented.");
63 // Initialize these to 0s
64 fillStart = 0;
65 spillStart = 0;
66}
67
68void

--- 493 unchanged lines hidden ---
62{
63 fatal_if(!params->useArchPT, "Arch page tables not implemented.");
64 // Initialize these to 0s
65 fillStart = 0;
66 spillStart = 0;
67}
68
69void

--- 493 unchanged lines hidden ---