process.cc (10318:98771a936b61) process.cc (11389:1e55f16160cb)
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#include "arch/sparc/asi.hh"
33#include "arch/sparc/handlers.hh"
34#include "arch/sparc/isa_traits.hh"
35#include "arch/sparc/process.hh"
36#include "arch/sparc/registers.hh"
37#include "arch/sparc/types.hh"
38#include "base/loader/elf_object.hh"
39#include "base/loader/object_file.hh"
40#include "base/misc.hh"
41#include "cpu/thread_context.hh"
42#include "debug/Stack.hh"
43#include "mem/page_table.hh"
44#include "sim/process_impl.hh"
45#include "sim/system.hh"
46
47using namespace std;
48using namespace SparcISA;
49
50static const int FirstArgumentReg = 8;
51
52
53SparcLiveProcess::SparcLiveProcess(LiveProcessParams * params,
54 ObjectFile *objFile, Addr _StackBias)
55 : LiveProcess(params, objFile), StackBias(_StackBias)
56{
57
58 // XXX all the below need to be updated for SPARC - Ali
59 brk_point = objFile->dataBase() + objFile->dataSize() + objFile->bssSize();
60 brk_point = roundUp(brk_point, PageBytes);
61
62 // Set pointer for next thread stack. Reserve 8M for main stack.
63 next_thread_stack_base = stack_base - (8 * 1024 * 1024);
64
65 // Initialize these to 0s
66 fillStart = 0;
67 spillStart = 0;
68}
69
70void
71SparcLiveProcess::handleTrap(int trapNum, ThreadContext *tc)
72{
73 PCState pc = tc->pcState();
74 switch (trapNum) {
75 case 0x01: // Software breakpoint
76 warn("Software breakpoint encountered at pc %#x.\n", pc.pc());
77 break;
78 case 0x02: // Division by zero
79 warn("Software signaled a division by zero at pc %#x.\n", pc.pc());
80 break;
81 case 0x03: // Flush window trap
82 flushWindows(tc);
83 break;
84 case 0x04: // Clean windows
85 warn("Ignoring process request for clean register "
86 "windows at pc %#x.\n", pc.pc());
87 break;
88 case 0x05: // Range check
89 warn("Software signaled a range check at pc %#x.\n", pc.pc());
90 break;
91 case 0x06: // Fix alignment
92 warn("Ignoring process request for os assisted unaligned accesses "
93 "at pc %#x.\n", pc.pc());
94 break;
95 case 0x07: // Integer overflow
96 warn("Software signaled an integer overflow at pc %#x.\n", pc.pc());
97 break;
98 case 0x32: // Get integer condition codes
99 warn("Ignoring process request to get the integer condition codes "
100 "at pc %#x.\n", pc.pc());
101 break;
102 case 0x33: // Set integer condition codes
103 warn("Ignoring process request to set the integer condition codes "
104 "at pc %#x.\n", pc.pc());
105 break;
106 default:
107 panic("Unimplemented trap to operating system: trap number %#x.\n", trapNum);
108 }
109}
110
111void
112SparcLiveProcess::initState()
113{
114 LiveProcess::initState();
115
116 ThreadContext *tc = system->getThreadContext(contextIds[0]);
117 // From the SPARC ABI
118
119 // Setup default FP state
120 tc->setMiscRegNoEffect(MISCREG_FSR, 0);
121
122 tc->setMiscRegNoEffect(MISCREG_TICK, 0);
123
124 /*
125 * Register window management registers
126 */
127
128 // No windows contain info from other programs
129 // tc->setMiscRegNoEffect(MISCREG_OTHERWIN, 0);
130 tc->setIntReg(NumIntArchRegs + 6, 0);
131 // There are no windows to pop
132 // tc->setMiscRegNoEffect(MISCREG_CANRESTORE, 0);
133 tc->setIntReg(NumIntArchRegs + 4, 0);
134 // All windows are available to save into
135 // tc->setMiscRegNoEffect(MISCREG_CANSAVE, NWindows - 2);
136 tc->setIntReg(NumIntArchRegs + 3, NWindows - 2);
137 // All windows are "clean"
138 // tc->setMiscRegNoEffect(MISCREG_CLEANWIN, NWindows);
139 tc->setIntReg(NumIntArchRegs + 5, NWindows);
140 // Start with register window 0
141 tc->setMiscReg(MISCREG_CWP, 0);
142 // Always use spill and fill traps 0
143 // tc->setMiscRegNoEffect(MISCREG_WSTATE, 0);
144 tc->setIntReg(NumIntArchRegs + 7, 0);
145 // Set the trap level to 0
146 tc->setMiscRegNoEffect(MISCREG_TL, 0);
147 // Set the ASI register to something fixed
148 tc->setMiscReg(MISCREG_ASI, ASI_PRIMARY);
149
150 /*
151 * T1 specific registers
152 */
153 // Turn on the icache, dcache, dtb translation, and itb translation.
154 tc->setMiscRegNoEffect(MISCREG_MMU_LSU_CTRL, 15);
155}
156
157void
158Sparc32LiveProcess::initState()
159{
160 SparcLiveProcess::initState();
161
162 ThreadContext *tc = system->getThreadContext(contextIds[0]);
163 // The process runs in user mode with 32 bit addresses
164 PSTATE pstate = 0;
165 pstate.ie = 1;
166 pstate.am = 1;
167 tc->setMiscReg(MISCREG_PSTATE, pstate);
168
169 argsInit(32 / 8, PageBytes);
170}
171
172void
173Sparc64LiveProcess::initState()
174{
175 SparcLiveProcess::initState();
176
177 ThreadContext *tc = system->getThreadContext(contextIds[0]);
178 // The process runs in user mode
179 PSTATE pstate = 0;
180 pstate.ie = 1;
181 tc->setMiscReg(MISCREG_PSTATE, pstate);
182
183 argsInit(sizeof(IntReg), PageBytes);
184}
185
186template<class IntType>
187void
188SparcLiveProcess::argsInit(int pageSize)
189{
190 int intSize = sizeof(IntType);
191
192 typedef AuxVector<IntType> auxv_t;
193
194 std::vector<auxv_t> auxv;
195
196 string filename;
197 if (argv.size() < 1)
198 filename = "";
199 else
200 filename = argv[0];
201
202 // Even for a 32 bit process, the ABI says we still need to
203 // maintain double word alignment of the stack pointer.
204 uint64_t align = 16;
205
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#include "arch/sparc/asi.hh"
33#include "arch/sparc/handlers.hh"
34#include "arch/sparc/isa_traits.hh"
35#include "arch/sparc/process.hh"
36#include "arch/sparc/registers.hh"
37#include "arch/sparc/types.hh"
38#include "base/loader/elf_object.hh"
39#include "base/loader/object_file.hh"
40#include "base/misc.hh"
41#include "cpu/thread_context.hh"
42#include "debug/Stack.hh"
43#include "mem/page_table.hh"
44#include "sim/process_impl.hh"
45#include "sim/system.hh"
46
47using namespace std;
48using namespace SparcISA;
49
50static const int FirstArgumentReg = 8;
51
52
53SparcLiveProcess::SparcLiveProcess(LiveProcessParams * params,
54 ObjectFile *objFile, Addr _StackBias)
55 : LiveProcess(params, objFile), StackBias(_StackBias)
56{
57
58 // XXX all the below need to be updated for SPARC - Ali
59 brk_point = objFile->dataBase() + objFile->dataSize() + objFile->bssSize();
60 brk_point = roundUp(brk_point, PageBytes);
61
62 // Set pointer for next thread stack. Reserve 8M for main stack.
63 next_thread_stack_base = stack_base - (8 * 1024 * 1024);
64
65 // Initialize these to 0s
66 fillStart = 0;
67 spillStart = 0;
68}
69
70void
71SparcLiveProcess::handleTrap(int trapNum, ThreadContext *tc)
72{
73 PCState pc = tc->pcState();
74 switch (trapNum) {
75 case 0x01: // Software breakpoint
76 warn("Software breakpoint encountered at pc %#x.\n", pc.pc());
77 break;
78 case 0x02: // Division by zero
79 warn("Software signaled a division by zero at pc %#x.\n", pc.pc());
80 break;
81 case 0x03: // Flush window trap
82 flushWindows(tc);
83 break;
84 case 0x04: // Clean windows
85 warn("Ignoring process request for clean register "
86 "windows at pc %#x.\n", pc.pc());
87 break;
88 case 0x05: // Range check
89 warn("Software signaled a range check at pc %#x.\n", pc.pc());
90 break;
91 case 0x06: // Fix alignment
92 warn("Ignoring process request for os assisted unaligned accesses "
93 "at pc %#x.\n", pc.pc());
94 break;
95 case 0x07: // Integer overflow
96 warn("Software signaled an integer overflow at pc %#x.\n", pc.pc());
97 break;
98 case 0x32: // Get integer condition codes
99 warn("Ignoring process request to get the integer condition codes "
100 "at pc %#x.\n", pc.pc());
101 break;
102 case 0x33: // Set integer condition codes
103 warn("Ignoring process request to set the integer condition codes "
104 "at pc %#x.\n", pc.pc());
105 break;
106 default:
107 panic("Unimplemented trap to operating system: trap number %#x.\n", trapNum);
108 }
109}
110
111void
112SparcLiveProcess::initState()
113{
114 LiveProcess::initState();
115
116 ThreadContext *tc = system->getThreadContext(contextIds[0]);
117 // From the SPARC ABI
118
119 // Setup default FP state
120 tc->setMiscRegNoEffect(MISCREG_FSR, 0);
121
122 tc->setMiscRegNoEffect(MISCREG_TICK, 0);
123
124 /*
125 * Register window management registers
126 */
127
128 // No windows contain info from other programs
129 // tc->setMiscRegNoEffect(MISCREG_OTHERWIN, 0);
130 tc->setIntReg(NumIntArchRegs + 6, 0);
131 // There are no windows to pop
132 // tc->setMiscRegNoEffect(MISCREG_CANRESTORE, 0);
133 tc->setIntReg(NumIntArchRegs + 4, 0);
134 // All windows are available to save into
135 // tc->setMiscRegNoEffect(MISCREG_CANSAVE, NWindows - 2);
136 tc->setIntReg(NumIntArchRegs + 3, NWindows - 2);
137 // All windows are "clean"
138 // tc->setMiscRegNoEffect(MISCREG_CLEANWIN, NWindows);
139 tc->setIntReg(NumIntArchRegs + 5, NWindows);
140 // Start with register window 0
141 tc->setMiscReg(MISCREG_CWP, 0);
142 // Always use spill and fill traps 0
143 // tc->setMiscRegNoEffect(MISCREG_WSTATE, 0);
144 tc->setIntReg(NumIntArchRegs + 7, 0);
145 // Set the trap level to 0
146 tc->setMiscRegNoEffect(MISCREG_TL, 0);
147 // Set the ASI register to something fixed
148 tc->setMiscReg(MISCREG_ASI, ASI_PRIMARY);
149
150 /*
151 * T1 specific registers
152 */
153 // Turn on the icache, dcache, dtb translation, and itb translation.
154 tc->setMiscRegNoEffect(MISCREG_MMU_LSU_CTRL, 15);
155}
156
157void
158Sparc32LiveProcess::initState()
159{
160 SparcLiveProcess::initState();
161
162 ThreadContext *tc = system->getThreadContext(contextIds[0]);
163 // The process runs in user mode with 32 bit addresses
164 PSTATE pstate = 0;
165 pstate.ie = 1;
166 pstate.am = 1;
167 tc->setMiscReg(MISCREG_PSTATE, pstate);
168
169 argsInit(32 / 8, PageBytes);
170}
171
172void
173Sparc64LiveProcess::initState()
174{
175 SparcLiveProcess::initState();
176
177 ThreadContext *tc = system->getThreadContext(contextIds[0]);
178 // The process runs in user mode
179 PSTATE pstate = 0;
180 pstate.ie = 1;
181 tc->setMiscReg(MISCREG_PSTATE, pstate);
182
183 argsInit(sizeof(IntReg), PageBytes);
184}
185
186template<class IntType>
187void
188SparcLiveProcess::argsInit(int pageSize)
189{
190 int intSize = sizeof(IntType);
191
192 typedef AuxVector<IntType> auxv_t;
193
194 std::vector<auxv_t> auxv;
195
196 string filename;
197 if (argv.size() < 1)
198 filename = "";
199 else
200 filename = argv[0];
201
202 // Even for a 32 bit process, the ABI says we still need to
203 // maintain double word alignment of the stack pointer.
204 uint64_t align = 16;
205
206 // Patch the ld_bias for dynamic executables.
207 updateBias();
208
206 // load object file into target memory
207 objFile->loadSections(initVirtMem);
208
209 enum hardwareCaps
210 {
211 M5_HWCAP_SPARC_FLUSH = 1,
212 M5_HWCAP_SPARC_STBAR = 2,
213 M5_HWCAP_SPARC_SWAP = 4,
214 M5_HWCAP_SPARC_MULDIV = 8,
215 M5_HWCAP_SPARC_V9 = 16,
216 // This one should technically only be set
217 // if there is a cheetah or cheetah_plus tlb,
218 // but we'll use it all the time
219 M5_HWCAP_SPARC_ULTRA3 = 32
220 };
221
222 const int64_t hwcap =
223 M5_HWCAP_SPARC_FLUSH |
224 M5_HWCAP_SPARC_STBAR |
225 M5_HWCAP_SPARC_SWAP |
226 M5_HWCAP_SPARC_MULDIV |
227 M5_HWCAP_SPARC_V9 |
228 M5_HWCAP_SPARC_ULTRA3;
229
230 // Setup the auxilliary vectors. These will already have endian conversion.
231 // Auxilliary vectors are loaded only for elf formatted executables.
232 ElfObject * elfObject = dynamic_cast<ElfObject *>(objFile);
233 if (elfObject) {
234 // Bits which describe the system hardware capabilities
235 auxv.push_back(auxv_t(M5_AT_HWCAP, hwcap));
236 // The system page size
237 auxv.push_back(auxv_t(M5_AT_PAGESZ, SparcISA::PageBytes));
238 // Defined to be 100 in the kernel source.
239 // Frequency at which times() increments
240 auxv.push_back(auxv_t(M5_AT_CLKTCK, 100));
241 // For statically linked executables, this is the virtual address of the
242 // program header tables if they appear in the executable image
243 auxv.push_back(auxv_t(M5_AT_PHDR, elfObject->programHeaderTable()));
244 // This is the size of a program header entry from the elf file.
245 auxv.push_back(auxv_t(M5_AT_PHENT, elfObject->programHeaderSize()));
246 // This is the number of program headers from the original elf file.
247 auxv.push_back(auxv_t(M5_AT_PHNUM, elfObject->programHeaderCount()));
209 // load object file into target memory
210 objFile->loadSections(initVirtMem);
211
212 enum hardwareCaps
213 {
214 M5_HWCAP_SPARC_FLUSH = 1,
215 M5_HWCAP_SPARC_STBAR = 2,
216 M5_HWCAP_SPARC_SWAP = 4,
217 M5_HWCAP_SPARC_MULDIV = 8,
218 M5_HWCAP_SPARC_V9 = 16,
219 // This one should technically only be set
220 // if there is a cheetah or cheetah_plus tlb,
221 // but we'll use it all the time
222 M5_HWCAP_SPARC_ULTRA3 = 32
223 };
224
225 const int64_t hwcap =
226 M5_HWCAP_SPARC_FLUSH |
227 M5_HWCAP_SPARC_STBAR |
228 M5_HWCAP_SPARC_SWAP |
229 M5_HWCAP_SPARC_MULDIV |
230 M5_HWCAP_SPARC_V9 |
231 M5_HWCAP_SPARC_ULTRA3;
232
233 // Setup the auxilliary vectors. These will already have endian conversion.
234 // Auxilliary vectors are loaded only for elf formatted executables.
235 ElfObject * elfObject = dynamic_cast<ElfObject *>(objFile);
236 if (elfObject) {
237 // Bits which describe the system hardware capabilities
238 auxv.push_back(auxv_t(M5_AT_HWCAP, hwcap));
239 // The system page size
240 auxv.push_back(auxv_t(M5_AT_PAGESZ, SparcISA::PageBytes));
241 // Defined to be 100 in the kernel source.
242 // Frequency at which times() increments
243 auxv.push_back(auxv_t(M5_AT_CLKTCK, 100));
244 // For statically linked executables, this is the virtual address of the
245 // program header tables if they appear in the executable image
246 auxv.push_back(auxv_t(M5_AT_PHDR, elfObject->programHeaderTable()));
247 // This is the size of a program header entry from the elf file.
248 auxv.push_back(auxv_t(M5_AT_PHENT, elfObject->programHeaderSize()));
249 // This is the number of program headers from the original elf file.
250 auxv.push_back(auxv_t(M5_AT_PHNUM, elfObject->programHeaderCount()));
248 // This is the address of the elf "interpreter", It should be set
249 // to 0 for regular executables. It should be something else
250 // (not sure what) for dynamic libraries.
251 auxv.push_back(auxv_t(M5_AT_BASE, 0));
251 // This is the base address of the ELF interpreter; it should be
252 // zero for static executables or contain the base address for
253 // dynamic executables.
254 auxv.push_back(auxv_t(M5_AT_BASE, getBias()));
252 // This is hardwired to 0 in the elf loading code in the kernel
253 auxv.push_back(auxv_t(M5_AT_FLAGS, 0));
254 // The entry point to the program
255 auxv.push_back(auxv_t(M5_AT_ENTRY, objFile->entryPoint()));
256 // Different user and group IDs
257 auxv.push_back(auxv_t(M5_AT_UID, uid()));
258 auxv.push_back(auxv_t(M5_AT_EUID, euid()));
259 auxv.push_back(auxv_t(M5_AT_GID, gid()));
260 auxv.push_back(auxv_t(M5_AT_EGID, egid()));
261 // Whether to enable "secure mode" in the executable
262 auxv.push_back(auxv_t(M5_AT_SECURE, 0));
263 }
264
265 // Figure out how big the initial stack needs to be
266
267 // The unaccounted for 8 byte 0 at the top of the stack
268 int sentry_size = 8;
269
270 // This is the name of the file which is present on the initial stack
271 // It's purpose is to let the user space linker examine the original file.
272 int file_name_size = filename.size() + 1;
273
274 int env_data_size = 0;
275 for (int i = 0; i < envp.size(); ++i) {
276 env_data_size += envp[i].size() + 1;
277 }
278 int arg_data_size = 0;
279 for (int i = 0; i < argv.size(); ++i) {
280 arg_data_size += argv[i].size() + 1;
281 }
282
283 // The info_block.
284 int base_info_block_size =
285 sentry_size + file_name_size + env_data_size + arg_data_size;
286
287 int info_block_size = roundUp(base_info_block_size, align);
288
289 int info_block_padding = info_block_size - base_info_block_size;
290
291 // Each auxilliary vector is two words
292 int aux_array_size = intSize * 2 * (auxv.size() + 1);
293
294 int envp_array_size = intSize * (envp.size() + 1);
295 int argv_array_size = intSize * (argv.size() + 1);
296
297 int argc_size = intSize;
298 int window_save_size = intSize * 16;
299
300 // Figure out the size of the contents of the actual initial frame
301 int frame_size =
302 aux_array_size +
303 envp_array_size +
304 argv_array_size +
305 argc_size +
306 window_save_size;
307
308 // There needs to be padding after the auxiliary vector data so that the
309 // very bottom of the stack is aligned properly.
310 int aligned_partial_size = roundUp(frame_size, align);
311 int aux_padding = aligned_partial_size - frame_size;
312
313 int space_needed =
314 info_block_size +
315 aux_padding +
316 frame_size;
317
318 stack_min = stack_base - space_needed;
319 stack_min = roundDown(stack_min, align);
320 stack_size = stack_base - stack_min;
321
322 // Allocate space for the stack
323 allocateMem(roundDown(stack_min, pageSize), roundUp(stack_size, pageSize));
324
325 // map out initial stack contents
326 IntType sentry_base = stack_base - sentry_size;
327 IntType file_name_base = sentry_base - file_name_size;
328 IntType env_data_base = file_name_base - env_data_size;
329 IntType arg_data_base = env_data_base - arg_data_size;
330 IntType auxv_array_base = arg_data_base -
331 info_block_padding - aux_array_size - aux_padding;
332 IntType envp_array_base = auxv_array_base - envp_array_size;
333 IntType argv_array_base = envp_array_base - argv_array_size;
334 IntType argc_base = argv_array_base - argc_size;
335#if TRACING_ON
336 IntType window_save_base = argc_base - window_save_size;
337#endif
338
339 DPRINTF(Stack, "The addresses of items on the initial stack:\n");
340 DPRINTF(Stack, "%#x - sentry NULL\n", sentry_base);
341 DPRINTF(Stack, "filename = %s\n", filename);
342 DPRINTF(Stack, "%#x - file name\n", file_name_base);
343 DPRINTF(Stack, "%#x - env data\n", env_data_base);
344 DPRINTF(Stack, "%#x - arg data\n", arg_data_base);
345 DPRINTF(Stack, "%#x - auxv array\n", auxv_array_base);
346 DPRINTF(Stack, "%#x - envp array\n", envp_array_base);
347 DPRINTF(Stack, "%#x - argv array\n", argv_array_base);
348 DPRINTF(Stack, "%#x - argc \n", argc_base);
349 DPRINTF(Stack, "%#x - window save\n", window_save_base);
350 DPRINTF(Stack, "%#x - stack min\n", stack_min);
351
352 assert(window_save_base == stack_min);
353
354 // write contents to stack
355
356 // figure out argc
357 IntType argc = argv.size();
358 IntType guestArgc = SparcISA::htog(argc);
359
360 // Write out the sentry void *
361 uint64_t sentry_NULL = 0;
362 initVirtMem.writeBlob(sentry_base,
363 (uint8_t*)&sentry_NULL, sentry_size);
364
365 // Write the file name
366 initVirtMem.writeString(file_name_base, filename.c_str());
367
368 // Copy the aux stuff
369 for (int x = 0; x < auxv.size(); x++) {
370 initVirtMem.writeBlob(auxv_array_base + x * 2 * intSize,
371 (uint8_t*)&(auxv[x].a_type), intSize);
372 initVirtMem.writeBlob(auxv_array_base + (x * 2 + 1) * intSize,
373 (uint8_t*)&(auxv[x].a_val), intSize);
374 }
375
376 // Write out the terminating zeroed auxilliary vector
377 const IntType zero = 0;
378 initVirtMem.writeBlob(auxv_array_base + intSize * 2 * auxv.size(),
379 (uint8_t*)&zero, intSize);
380 initVirtMem.writeBlob(auxv_array_base + intSize * (2 * auxv.size() + 1),
381 (uint8_t*)&zero, intSize);
382
383 copyStringArray(envp, envp_array_base, env_data_base, initVirtMem);
384 copyStringArray(argv, argv_array_base, arg_data_base, initVirtMem);
385
386 initVirtMem.writeBlob(argc_base, (uint8_t*)&guestArgc, intSize);
387
388 // Set up space for the trap handlers into the processes address space.
389 // Since the stack grows down and there is reserved address space abov
390 // it, we can put stuff above it and stay out of the way.
391 fillStart = stack_base;
392 spillStart = fillStart + sizeof(MachInst) * numFillInsts;
393
394 ThreadContext *tc = system->getThreadContext(contextIds[0]);
395 // Set up the thread context to start running the process
396 // assert(NumArgumentRegs >= 2);
397 // tc->setIntReg(ArgumentReg[0], argc);
398 // tc->setIntReg(ArgumentReg[1], argv_array_base);
399 tc->setIntReg(StackPointerReg, stack_min - StackBias);
400
401 // %g1 is a pointer to a function that should be run at exit. Since we
402 // don't have anything like that, it should be set to 0.
403 tc->setIntReg(1, 0);
404
255 // This is hardwired to 0 in the elf loading code in the kernel
256 auxv.push_back(auxv_t(M5_AT_FLAGS, 0));
257 // The entry point to the program
258 auxv.push_back(auxv_t(M5_AT_ENTRY, objFile->entryPoint()));
259 // Different user and group IDs
260 auxv.push_back(auxv_t(M5_AT_UID, uid()));
261 auxv.push_back(auxv_t(M5_AT_EUID, euid()));
262 auxv.push_back(auxv_t(M5_AT_GID, gid()));
263 auxv.push_back(auxv_t(M5_AT_EGID, egid()));
264 // Whether to enable "secure mode" in the executable
265 auxv.push_back(auxv_t(M5_AT_SECURE, 0));
266 }
267
268 // Figure out how big the initial stack needs to be
269
270 // The unaccounted for 8 byte 0 at the top of the stack
271 int sentry_size = 8;
272
273 // This is the name of the file which is present on the initial stack
274 // It's purpose is to let the user space linker examine the original file.
275 int file_name_size = filename.size() + 1;
276
277 int env_data_size = 0;
278 for (int i = 0; i < envp.size(); ++i) {
279 env_data_size += envp[i].size() + 1;
280 }
281 int arg_data_size = 0;
282 for (int i = 0; i < argv.size(); ++i) {
283 arg_data_size += argv[i].size() + 1;
284 }
285
286 // The info_block.
287 int base_info_block_size =
288 sentry_size + file_name_size + env_data_size + arg_data_size;
289
290 int info_block_size = roundUp(base_info_block_size, align);
291
292 int info_block_padding = info_block_size - base_info_block_size;
293
294 // Each auxilliary vector is two words
295 int aux_array_size = intSize * 2 * (auxv.size() + 1);
296
297 int envp_array_size = intSize * (envp.size() + 1);
298 int argv_array_size = intSize * (argv.size() + 1);
299
300 int argc_size = intSize;
301 int window_save_size = intSize * 16;
302
303 // Figure out the size of the contents of the actual initial frame
304 int frame_size =
305 aux_array_size +
306 envp_array_size +
307 argv_array_size +
308 argc_size +
309 window_save_size;
310
311 // There needs to be padding after the auxiliary vector data so that the
312 // very bottom of the stack is aligned properly.
313 int aligned_partial_size = roundUp(frame_size, align);
314 int aux_padding = aligned_partial_size - frame_size;
315
316 int space_needed =
317 info_block_size +
318 aux_padding +
319 frame_size;
320
321 stack_min = stack_base - space_needed;
322 stack_min = roundDown(stack_min, align);
323 stack_size = stack_base - stack_min;
324
325 // Allocate space for the stack
326 allocateMem(roundDown(stack_min, pageSize), roundUp(stack_size, pageSize));
327
328 // map out initial stack contents
329 IntType sentry_base = stack_base - sentry_size;
330 IntType file_name_base = sentry_base - file_name_size;
331 IntType env_data_base = file_name_base - env_data_size;
332 IntType arg_data_base = env_data_base - arg_data_size;
333 IntType auxv_array_base = arg_data_base -
334 info_block_padding - aux_array_size - aux_padding;
335 IntType envp_array_base = auxv_array_base - envp_array_size;
336 IntType argv_array_base = envp_array_base - argv_array_size;
337 IntType argc_base = argv_array_base - argc_size;
338#if TRACING_ON
339 IntType window_save_base = argc_base - window_save_size;
340#endif
341
342 DPRINTF(Stack, "The addresses of items on the initial stack:\n");
343 DPRINTF(Stack, "%#x - sentry NULL\n", sentry_base);
344 DPRINTF(Stack, "filename = %s\n", filename);
345 DPRINTF(Stack, "%#x - file name\n", file_name_base);
346 DPRINTF(Stack, "%#x - env data\n", env_data_base);
347 DPRINTF(Stack, "%#x - arg data\n", arg_data_base);
348 DPRINTF(Stack, "%#x - auxv array\n", auxv_array_base);
349 DPRINTF(Stack, "%#x - envp array\n", envp_array_base);
350 DPRINTF(Stack, "%#x - argv array\n", argv_array_base);
351 DPRINTF(Stack, "%#x - argc \n", argc_base);
352 DPRINTF(Stack, "%#x - window save\n", window_save_base);
353 DPRINTF(Stack, "%#x - stack min\n", stack_min);
354
355 assert(window_save_base == stack_min);
356
357 // write contents to stack
358
359 // figure out argc
360 IntType argc = argv.size();
361 IntType guestArgc = SparcISA::htog(argc);
362
363 // Write out the sentry void *
364 uint64_t sentry_NULL = 0;
365 initVirtMem.writeBlob(sentry_base,
366 (uint8_t*)&sentry_NULL, sentry_size);
367
368 // Write the file name
369 initVirtMem.writeString(file_name_base, filename.c_str());
370
371 // Copy the aux stuff
372 for (int x = 0; x < auxv.size(); x++) {
373 initVirtMem.writeBlob(auxv_array_base + x * 2 * intSize,
374 (uint8_t*)&(auxv[x].a_type), intSize);
375 initVirtMem.writeBlob(auxv_array_base + (x * 2 + 1) * intSize,
376 (uint8_t*)&(auxv[x].a_val), intSize);
377 }
378
379 // Write out the terminating zeroed auxilliary vector
380 const IntType zero = 0;
381 initVirtMem.writeBlob(auxv_array_base + intSize * 2 * auxv.size(),
382 (uint8_t*)&zero, intSize);
383 initVirtMem.writeBlob(auxv_array_base + intSize * (2 * auxv.size() + 1),
384 (uint8_t*)&zero, intSize);
385
386 copyStringArray(envp, envp_array_base, env_data_base, initVirtMem);
387 copyStringArray(argv, argv_array_base, arg_data_base, initVirtMem);
388
389 initVirtMem.writeBlob(argc_base, (uint8_t*)&guestArgc, intSize);
390
391 // Set up space for the trap handlers into the processes address space.
392 // Since the stack grows down and there is reserved address space abov
393 // it, we can put stuff above it and stay out of the way.
394 fillStart = stack_base;
395 spillStart = fillStart + sizeof(MachInst) * numFillInsts;
396
397 ThreadContext *tc = system->getThreadContext(contextIds[0]);
398 // Set up the thread context to start running the process
399 // assert(NumArgumentRegs >= 2);
400 // tc->setIntReg(ArgumentReg[0], argc);
401 // tc->setIntReg(ArgumentReg[1], argv_array_base);
402 tc->setIntReg(StackPointerReg, stack_min - StackBias);
403
404 // %g1 is a pointer to a function that should be run at exit. Since we
405 // don't have anything like that, it should be set to 0.
406 tc->setIntReg(1, 0);
407
405 tc->pcState(objFile->entryPoint());
408 tc->pcState(getStartPC());
406
407 // Align the "stack_min" to a page boundary.
408 stack_min = roundDown(stack_min, pageSize);
409
410// num_processes++;
411}
412
413void
414Sparc64LiveProcess::argsInit(int intSize, int pageSize)
415{
416 SparcLiveProcess::argsInit<uint64_t>(pageSize);
417
418 // Stuff the trap handlers into the process address space
419 initVirtMem.writeBlob(fillStart,
420 (uint8_t*)fillHandler64, sizeof(MachInst) * numFillInsts);
421 initVirtMem.writeBlob(spillStart,
422 (uint8_t*)spillHandler64, sizeof(MachInst) * numSpillInsts);
423}
424
425void
426Sparc32LiveProcess::argsInit(int intSize, int pageSize)
427{
428 SparcLiveProcess::argsInit<uint32_t>(pageSize);
429
430 // Stuff the trap handlers into the process address space
431 initVirtMem.writeBlob(fillStart,
432 (uint8_t*)fillHandler32, sizeof(MachInst) * numFillInsts);
433 initVirtMem.writeBlob(spillStart,
434 (uint8_t*)spillHandler32, sizeof(MachInst) * numSpillInsts);
435}
436
437void Sparc32LiveProcess::flushWindows(ThreadContext *tc)
438{
439 IntReg Cansave = tc->readIntReg(NumIntArchRegs + 3);
440 IntReg Canrestore = tc->readIntReg(NumIntArchRegs + 4);
441 IntReg Otherwin = tc->readIntReg(NumIntArchRegs + 6);
442 MiscReg CWP = tc->readMiscReg(MISCREG_CWP);
443 MiscReg origCWP = CWP;
444 CWP = (CWP + Cansave + 2) % NWindows;
445 while (NWindows - 2 - Cansave != 0) {
446 if (Otherwin) {
447 panic("Otherwin non-zero.\n");
448 } else {
449 tc->setMiscReg(MISCREG_CWP, CWP);
450 // Do the stores
451 IntReg sp = tc->readIntReg(StackPointerReg);
452 for (int index = 16; index < 32; index++) {
453 uint32_t regVal = tc->readIntReg(index);
454 regVal = htog(regVal);
455 if (!tc->getMemProxy().tryWriteBlob(
456 sp + (index - 16) * 4, (uint8_t *)&regVal, 4)) {
457 warn("Failed to save register to the stack when "
458 "flushing windows.\n");
459 }
460 }
461 Canrestore--;
462 Cansave++;
463 CWP = (CWP + 1) % NWindows;
464 }
465 }
466 tc->setIntReg(NumIntArchRegs + 3, Cansave);
467 tc->setIntReg(NumIntArchRegs + 4, Canrestore);
468 tc->setMiscReg(MISCREG_CWP, origCWP);
469}
470
471void
472Sparc64LiveProcess::flushWindows(ThreadContext *tc)
473{
474 IntReg Cansave = tc->readIntReg(NumIntArchRegs + 3);
475 IntReg Canrestore = tc->readIntReg(NumIntArchRegs + 4);
476 IntReg Otherwin = tc->readIntReg(NumIntArchRegs + 6);
477 MiscReg CWP = tc->readMiscReg(MISCREG_CWP);
478 MiscReg origCWP = CWP;
479 CWP = (CWP + Cansave + 2) % NWindows;
480 while (NWindows - 2 - Cansave != 0) {
481 if (Otherwin) {
482 panic("Otherwin non-zero.\n");
483 } else {
484 tc->setMiscReg(MISCREG_CWP, CWP);
485 // Do the stores
486 IntReg sp = tc->readIntReg(StackPointerReg);
487 for (int index = 16; index < 32; index++) {
488 IntReg regVal = tc->readIntReg(index);
489 regVal = htog(regVal);
490 if (!tc->getMemProxy().tryWriteBlob(
491 sp + 2047 + (index - 16) * 8, (uint8_t *)&regVal, 8)) {
492 warn("Failed to save register to the stack when "
493 "flushing windows.\n");
494 }
495 }
496 Canrestore--;
497 Cansave++;
498 CWP = (CWP + 1) % NWindows;
499 }
500 }
501 tc->setIntReg(NumIntArchRegs + 3, Cansave);
502 tc->setIntReg(NumIntArchRegs + 4, Canrestore);
503 tc->setMiscReg(MISCREG_CWP, origCWP);
504}
505
506IntReg
507Sparc32LiveProcess::getSyscallArg(ThreadContext *tc, int &i)
508{
509 assert(i < 6);
510 return bits(tc->readIntReg(FirstArgumentReg + i++), 31, 0);
511}
512
513void
514Sparc32LiveProcess::setSyscallArg(ThreadContext *tc, int i, IntReg val)
515{
516 assert(i < 6);
517 tc->setIntReg(FirstArgumentReg + i, bits(val, 31, 0));
518}
519
520IntReg
521Sparc64LiveProcess::getSyscallArg(ThreadContext *tc, int &i)
522{
523 assert(i < 6);
524 return tc->readIntReg(FirstArgumentReg + i++);
525}
526
527void
528Sparc64LiveProcess::setSyscallArg(ThreadContext *tc, int i, IntReg val)
529{
530 assert(i < 6);
531 tc->setIntReg(FirstArgumentReg + i, val);
532}
533
534void
535SparcLiveProcess::setSyscallReturn(ThreadContext *tc, SyscallReturn sysret)
536{
537 // check for error condition. SPARC syscall convention is to
538 // indicate success/failure in reg the carry bit of the ccr
539 // and put the return value itself in the standard return value reg ().
540 PSTATE pstate = tc->readMiscRegNoEffect(MISCREG_PSTATE);
541 if (sysret.successful()) {
542 // no error, clear XCC.C
543 tc->setIntReg(NumIntArchRegs + 2,
544 tc->readIntReg(NumIntArchRegs + 2) & 0xEE);
545 IntReg val = sysret.returnValue();
546 if (pstate.am)
547 val = bits(val, 31, 0);
548 tc->setIntReg(ReturnValueReg, val);
549 } else {
550 // got an error, set XCC.C
551 tc->setIntReg(NumIntArchRegs + 2,
552 tc->readIntReg(NumIntArchRegs + 2) | 0x11);
553 IntReg val = sysret.errnoValue();
554 if (pstate.am)
555 val = bits(val, 31, 0);
556 tc->setIntReg(ReturnValueReg, val);
557 }
558}
409
410 // Align the "stack_min" to a page boundary.
411 stack_min = roundDown(stack_min, pageSize);
412
413// num_processes++;
414}
415
416void
417Sparc64LiveProcess::argsInit(int intSize, int pageSize)
418{
419 SparcLiveProcess::argsInit<uint64_t>(pageSize);
420
421 // Stuff the trap handlers into the process address space
422 initVirtMem.writeBlob(fillStart,
423 (uint8_t*)fillHandler64, sizeof(MachInst) * numFillInsts);
424 initVirtMem.writeBlob(spillStart,
425 (uint8_t*)spillHandler64, sizeof(MachInst) * numSpillInsts);
426}
427
428void
429Sparc32LiveProcess::argsInit(int intSize, int pageSize)
430{
431 SparcLiveProcess::argsInit<uint32_t>(pageSize);
432
433 // Stuff the trap handlers into the process address space
434 initVirtMem.writeBlob(fillStart,
435 (uint8_t*)fillHandler32, sizeof(MachInst) * numFillInsts);
436 initVirtMem.writeBlob(spillStart,
437 (uint8_t*)spillHandler32, sizeof(MachInst) * numSpillInsts);
438}
439
440void Sparc32LiveProcess::flushWindows(ThreadContext *tc)
441{
442 IntReg Cansave = tc->readIntReg(NumIntArchRegs + 3);
443 IntReg Canrestore = tc->readIntReg(NumIntArchRegs + 4);
444 IntReg Otherwin = tc->readIntReg(NumIntArchRegs + 6);
445 MiscReg CWP = tc->readMiscReg(MISCREG_CWP);
446 MiscReg origCWP = CWP;
447 CWP = (CWP + Cansave + 2) % NWindows;
448 while (NWindows - 2 - Cansave != 0) {
449 if (Otherwin) {
450 panic("Otherwin non-zero.\n");
451 } else {
452 tc->setMiscReg(MISCREG_CWP, CWP);
453 // Do the stores
454 IntReg sp = tc->readIntReg(StackPointerReg);
455 for (int index = 16; index < 32; index++) {
456 uint32_t regVal = tc->readIntReg(index);
457 regVal = htog(regVal);
458 if (!tc->getMemProxy().tryWriteBlob(
459 sp + (index - 16) * 4, (uint8_t *)&regVal, 4)) {
460 warn("Failed to save register to the stack when "
461 "flushing windows.\n");
462 }
463 }
464 Canrestore--;
465 Cansave++;
466 CWP = (CWP + 1) % NWindows;
467 }
468 }
469 tc->setIntReg(NumIntArchRegs + 3, Cansave);
470 tc->setIntReg(NumIntArchRegs + 4, Canrestore);
471 tc->setMiscReg(MISCREG_CWP, origCWP);
472}
473
474void
475Sparc64LiveProcess::flushWindows(ThreadContext *tc)
476{
477 IntReg Cansave = tc->readIntReg(NumIntArchRegs + 3);
478 IntReg Canrestore = tc->readIntReg(NumIntArchRegs + 4);
479 IntReg Otherwin = tc->readIntReg(NumIntArchRegs + 6);
480 MiscReg CWP = tc->readMiscReg(MISCREG_CWP);
481 MiscReg origCWP = CWP;
482 CWP = (CWP + Cansave + 2) % NWindows;
483 while (NWindows - 2 - Cansave != 0) {
484 if (Otherwin) {
485 panic("Otherwin non-zero.\n");
486 } else {
487 tc->setMiscReg(MISCREG_CWP, CWP);
488 // Do the stores
489 IntReg sp = tc->readIntReg(StackPointerReg);
490 for (int index = 16; index < 32; index++) {
491 IntReg regVal = tc->readIntReg(index);
492 regVal = htog(regVal);
493 if (!tc->getMemProxy().tryWriteBlob(
494 sp + 2047 + (index - 16) * 8, (uint8_t *)&regVal, 8)) {
495 warn("Failed to save register to the stack when "
496 "flushing windows.\n");
497 }
498 }
499 Canrestore--;
500 Cansave++;
501 CWP = (CWP + 1) % NWindows;
502 }
503 }
504 tc->setIntReg(NumIntArchRegs + 3, Cansave);
505 tc->setIntReg(NumIntArchRegs + 4, Canrestore);
506 tc->setMiscReg(MISCREG_CWP, origCWP);
507}
508
509IntReg
510Sparc32LiveProcess::getSyscallArg(ThreadContext *tc, int &i)
511{
512 assert(i < 6);
513 return bits(tc->readIntReg(FirstArgumentReg + i++), 31, 0);
514}
515
516void
517Sparc32LiveProcess::setSyscallArg(ThreadContext *tc, int i, IntReg val)
518{
519 assert(i < 6);
520 tc->setIntReg(FirstArgumentReg + i, bits(val, 31, 0));
521}
522
523IntReg
524Sparc64LiveProcess::getSyscallArg(ThreadContext *tc, int &i)
525{
526 assert(i < 6);
527 return tc->readIntReg(FirstArgumentReg + i++);
528}
529
530void
531Sparc64LiveProcess::setSyscallArg(ThreadContext *tc, int i, IntReg val)
532{
533 assert(i < 6);
534 tc->setIntReg(FirstArgumentReg + i, val);
535}
536
537void
538SparcLiveProcess::setSyscallReturn(ThreadContext *tc, SyscallReturn sysret)
539{
540 // check for error condition. SPARC syscall convention is to
541 // indicate success/failure in reg the carry bit of the ccr
542 // and put the return value itself in the standard return value reg ().
543 PSTATE pstate = tc->readMiscRegNoEffect(MISCREG_PSTATE);
544 if (sysret.successful()) {
545 // no error, clear XCC.C
546 tc->setIntReg(NumIntArchRegs + 2,
547 tc->readIntReg(NumIntArchRegs + 2) & 0xEE);
548 IntReg val = sysret.returnValue();
549 if (pstate.am)
550 val = bits(val, 31, 0);
551 tc->setIntReg(ReturnValueReg, val);
552 } else {
553 // got an error, set XCC.C
554 tc->setIntReg(NumIntArchRegs + 2,
555 tc->readIntReg(NumIntArchRegs + 2) | 0x11);
556 IntReg val = sysret.errnoValue();
557 if (pstate.am)
558 val = bits(val, 31, 0);
559 tc->setIntReg(ReturnValueReg, val);
560 }
561}