gem5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
process.hh
Go to the documentation of this file.
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;
9  * redistributions in binary form must reproduce the above copyright
10  * notice, this list of conditions and the following disclaimer in the
11  * documentation and/or other materials provided with the distribution;
12  * neither the name of the copyright holders nor the names of its
13  * contributors may be used to endorse or promote products derived from
14  * this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  *
28  * Authors: Gabe Black
29  * Ali Saidi
30  */
31 
32 #ifndef __SPARC_PROCESS_HH__
33 #define __SPARC_PROCESS_HH__
34 
35 #include <memory>
36 #include <string>
37 #include <vector>
38 
39 #include "arch/sparc/isa_traits.hh"
41 #include "mem/page_table.hh"
42 #include "sim/byteswap.hh"
43 #include "sim/process.hh"
44 
45 class SparcProcess : public Process
46 {
47  protected:
48 
49  const Addr StackBias;
50 
51  // The locations of the fill and spill handlers
53 
54  SparcProcess(ProcessParams * params, ObjectFile *objFile,
55  Addr _StackBias);
56 
57  void initState();
58 
59  template<class IntType>
60  void argsInit(int pageSize);
61 
62  public:
63 
64  // Handles traps which request services from the operating system
65  virtual void handleTrap(int trapNum, ThreadContext *tc, Fault *fault);
66 
69 
70  virtual void flushWindows(ThreadContext *tc) = 0;
71  void setSyscallReturn(ThreadContext *tc, SyscallReturn return_value);
72 };
73 
75 {
76  protected:
77 
79  : SparcProcess(params, objFile, 0)
80  {
81  Addr brk_point = objFile->dataBase() + objFile->dataSize() +
82  objFile->bssSize();
83  brk_point = roundUp(brk_point, SparcISA::PageBytes);
84 
85  // Reserve 8M for main stack.
86  Addr max_stack_size = 8 * 1024 * 1024;
87 
88  // Set up stack. On SPARC Linux, stack goes from the top of memory
89  // downward, less the hole for the kernel address space.
90  Addr stack_base = 0xf0000000ULL;
91 
92  // Set pointer for next thread stack.
93  Addr next_thread_stack_base = stack_base - max_stack_size;
94 
95  // Set up region for mmaps.
96  Addr mmap_end = 0x70000000;
97 
98  memState = std::make_shared<MemState>(brk_point, stack_base,
99  max_stack_size,
100  next_thread_stack_base,
101  mmap_end);
102  }
103 
104  void initState();
105 
106  public:
107 
108  void argsInit(int intSize, int pageSize);
109 
110  void flushWindows(ThreadContext *tc);
111 
115 
117 };
118 
120 {
121  protected:
122 
124  : SparcProcess(params, objFile, 2047)
125  {
126  Addr brk_point = objFile->dataBase() + objFile->dataSize() +
127  objFile->bssSize();
128  brk_point = roundUp(brk_point, SparcISA::PageBytes);
129 
130  Addr max_stack_size = 8 * 1024 * 1024;
131 
132  // Set up stack. On SPARC Linux, stack goes from the top of memory
133  // downward, less the hole for the kernel address space.
134  Addr stack_base = 0x80000000000ULL;
135 
136  // Set pointer for next thread stack. Reserve 8M for main stack.
137  Addr next_thread_stack_base = stack_base - max_stack_size;
138 
139  // Set up region for mmaps.
140  Addr mmap_end = 0xfffff80000000000ULL;
141 
142  memState = std::make_shared<MemState>(brk_point, stack_base,
143  max_stack_size,
144  next_thread_stack_base,
145  mmap_end);
146  }
147 
148  void initState();
149 
150  public:
151 
152  void argsInit(int intSize, int pageSize);
153 
154  void flushWindows(ThreadContext *tc);
155 
159 
161 };
162 
163 /* No architectural page table defined for this ISA */
165 
166 #endif // __SPARC_PROCESS_HH__
Addr dataBase() const
Definition: object_file.hh:139
void setSyscallArg(ThreadContext *tc, int i, SparcISA::IntReg val)
Definition: process.cc:528
ObjectFile * objFile
Definition: process.hh:182
Bitfield< 7 > i
Definition: miscregs.hh:1378
void initState()
initState() is called on each SimObject when not restoring from a checkpoint.
Definition: process.cc:107
void argsInit(int pageSize)
Definition: process.cc:186
SparcProcess(ProcessParams *params, ObjectFile *objFile, Addr _StackBias)
Definition: process.cc:56
void initState()
initState() is called on each SimObject when not restoring from a checkpoint.
Definition: process.cc:171
const Params * params() const
Definition: sim_object.hh:111
virtual TheISA::IntReg getSyscallArg(ThreadContext *tc, int &i)=0
SparcISA::IntReg getSyscallArg(ThreadContext *tc, int &i)
Definition: process.cc:507
const Addr StackBias
Definition: process.hh:49
T roundUp(const T &val, const U &align)
Definition: intmath.hh:205
std::shared_ptr< MemState > memState
Definition: process.hh:206
const Addr PageBytes
Definition: isa_traits.hh:59
ThreadContext is the external interface to all thread state for anything outside of the CPU...
Bitfield< 63 > val
Definition: misc.hh:770
void flushWindows(ThreadContext *tc)
Definition: process.cc:472
Sparc64Process(ProcessParams *params, ObjectFile *objFile)
Definition: process.hh:123
Faux page table class indended to stop the usage of an architectural page table, when there is none d...
Definition: page_table.hh:254
void setSyscallReturn(ThreadContext *tc, SyscallReturn return_value)
Definition: process.cc:535
virtual void flushWindows(ThreadContext *tc)=0
SparcISA::IntReg getSyscallArg(ThreadContext *tc, int &i)
Definition: process.cc:521
Addr readSpillStart()
Definition: process.hh:68
Addr spillStart
Definition: process.hh:52
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:142
#define ULL(N)
uint64_t constant
Definition: types.hh:50
size_t dataSize() const
Definition: object_file.hh:143
void argsInit(int intSize, int pageSize)
Definition: process.cc:426
Addr fillStart
Definition: process.hh:52
Declarations of a non-full system Page Table.
void flushWindows(ThreadContext *tc)
Definition: process.cc:437
virtual void handleTrap(int trapNum, ThreadContext *tc, Fault *fault)
Definition: process.cc:66
size_t bssSize() const
Definition: object_file.hh:144
void initState()
initState() is called on each SimObject when not restoring from a checkpoint.
Definition: process.cc:156
void argsInit(int intSize, int pageSize)
Definition: process.cc:414
uint64_t IntReg
Definition: registers.hh:47
NoArchPageTable ArchPageTable
Definition: process.hh:65
This class represents the return value from an emulated system call, including any errno setting...
void setSyscallArg(ThreadContext *tc, int i, SparcISA::IntReg val)
Definition: process.cc:514
Sparc32Process(ProcessParams *params, ObjectFile *objFile)
Definition: process.hh:78
std::shared_ptr< FaultBase > Fault
Definition: types.hh:184
Addr readFillStart()
Definition: process.hh:67

Generated on Fri Jun 9 2017 13:03:35 for gem5 by doxygen 1.8.6