Added mmap start and end so detailed CPU can know if an access is
[gem5.git] / sim / process.hh
1 /*
2 * Copyright (c) 2001-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
29 #ifndef __PROCESS_HH__
30 #define __PROCESS_HH__
31
32 //
33 // The purpose of this code is to fake the loader & syscall mechanism
34 // when there's no OS: thus there's no reason to use it in FULL_SYSTEM
35 // mode when we do have an OS.
36 //
37 #ifndef FULL_SYSTEM
38
39 #include <vector>
40
41 #include "targetarch/isa_traits.hh"
42 #include "sim/sim_object.hh"
43 #include "sim/stats.hh"
44 #include "base/statistics.hh"
45
46 class ExecContext;
47 class FunctionalMemory;
48 class Process : public SimObject
49 {
50 public:
51
52 // have we initialized an execution context from this process? If
53 // yes, subsequent contexts are assumed to be for dynamically
54 // created threads and are not initialized.
55 bool initialContextLoaded;
56
57 // execution contexts associated with this process
58 std::vector<ExecContext *> execContexts;
59
60 // number of CPUs (esxec contexts, really) assigned to this process.
61 unsigned int numCpus() { return execContexts.size(); }
62
63 // record of blocked context
64 struct WaitRec
65 {
66 Addr waitChan;
67 ExecContext *waitingContext;
68
69 WaitRec(Addr chan, ExecContext *ctx)
70 : waitChan(chan), waitingContext(ctx)
71 {
72 }
73 };
74
75 // list of all blocked contexts
76 std::list<WaitRec> waitList;
77
78 RegFile *init_regs; // initial register contents
79
80 Addr text_base; // text (code) segment base
81 unsigned text_size; // text (code) size in bytes
82
83 Addr data_base; // initialized data segment base
84 unsigned data_size; // initialized data + bss size in bytes
85
86 Addr brk_point; // top of the data segment
87
88 Addr stack_base; // stack segment base (highest address)
89 unsigned stack_size; // initial stack size
90 Addr stack_min; // lowest address accessed on the stack
91
92 // addr to use for next stack region (for multithreaded apps)
93 Addr next_thread_stack_base;
94
95 // Base of region for mmaps (when user doesn't specify an address).
96 Addr mmap_start;
97 Addr mmap_end;
98
99 std::string prog_fname; // file name
100 Addr prog_entry; // entry point (initial PC)
101
102 Stats::Scalar<> num_syscalls; // number of syscalls executed
103
104
105 protected:
106 // constructor
107 Process(const std::string &name,
108 int stdin_fd, // initial I/O descriptors
109 int stdout_fd,
110 int stderr_fd);
111
112
113 protected:
114 FunctionalMemory *memory;
115
116 private:
117 // file descriptor remapping support
118 static const int MAX_FD = 100; // max legal fd value
119 int fd_map[MAX_FD+1];
120
121 public:
122 // static helper functions to generate file descriptors for constructor
123 static int openInputFile(const std::string &filename);
124 static int openOutputFile(const std::string &filename);
125
126 // override of virtual SimObject method: register statistics
127 virtual void regStats();
128
129 // register an execution context for this process.
130 // returns xc's cpu number (index into execContexts[])
131 int registerExecContext(ExecContext *xc);
132
133
134 void replaceExecContext(ExecContext *xc, int xcIndex);
135
136 // map simulator fd sim_fd to target fd tgt_fd
137 void dup_fd(int sim_fd, int tgt_fd);
138
139 // generate new target fd for sim_fd
140 int open_fd(int sim_fd);
141
142 // look up simulator fd for given target fd
143 int sim_fd(int tgt_fd);
144
145 // is this a valid instruction fetch address?
146 bool validInstAddr(Addr addr)
147 {
148 return (text_base <= addr &&
149 addr < text_base + text_size &&
150 !(addr & (sizeof(MachInst)-1)));
151 }
152
153 // is this a valid address? (used to filter data fetches)
154 // note that we just assume stack size <= 16MB
155 // this may be alpha-specific
156 bool validDataAddr(Addr addr)
157 {
158 return ((data_base <= addr && addr < brk_point) ||
159 ((stack_base - 16*1024*1024) <= addr && addr < stack_base) ||
160 (text_base <= addr && addr < (text_base + text_size)) ||
161 (mmap_start <= addr && addr < mmap_end));
162 }
163
164 virtual void syscall(ExecContext *xc) = 0;
165
166 virtual FunctionalMemory *getMemory() { return memory; }
167 };
168
169 //
170 // "Live" process with system calls redirected to host system
171 //
172 class ObjectFile;
173 class LiveProcess : public Process
174 {
175 protected:
176 LiveProcess(const std::string &name, ObjectFile *objFile,
177 int stdin_fd, int stdout_fd, int stderr_fd,
178 std::vector<std::string> &argv,
179 std::vector<std::string> &envp);
180
181 public:
182 // this function is used to create the LiveProcess object, since
183 // we can't tell which subclass of LiveProcess to use until we
184 // open and look at the object file.
185 static LiveProcess *create(const std::string &name,
186 int stdin_fd, int stdout_fd, int stderr_fd,
187 std::vector<std::string> &argv,
188 std::vector<std::string> &envp);
189 };
190
191
192 #endif // !FULL_SYSTEM
193
194 #endif // __PROCESS_HH__