util: do checkpoint aggregation more cleanly, fix last changeset.
[gem5.git] / src / arch / alpha / process.cc
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/alpha/isa_traits.hh"
33 #include "arch/alpha/process.hh"
34 #include "base/loader/object_file.hh"
35 #include "base/loader/elf_object.hh"
36 #include "base/misc.hh"
37 #include "cpu/thread_context.hh"
38 #include "mem/page_table.hh"
39 #include "sim/process_impl.hh"
40 #include "sim/system.hh"
41
42 using namespace AlphaISA;
43 using namespace std;
44
45 AlphaLiveProcess::AlphaLiveProcess(LiveProcessParams *params,
46 ObjectFile *objFile)
47 : LiveProcess(params, objFile)
48 {
49 brk_point = objFile->dataBase() + objFile->dataSize() + objFile->bssSize();
50 brk_point = roundUp(brk_point, VMPageSize);
51
52 // Set up stack. On Alpha, stack goes below text section. This
53 // code should get moved to some architecture-specific spot.
54 stack_base = objFile->textBase() - (409600+4096);
55
56 // Set up region for mmaps. Tru64 seems to start just above 0 and
57 // grow up from there.
58 mmap_start = mmap_end = 0x10000;
59
60 // Set pointer for next thread stack. Reserve 8M for main stack.
61 next_thread_stack_base = stack_base - (8 * 1024 * 1024);
62
63 }
64
65 void
66 AlphaLiveProcess::argsInit(int intSize, int pageSize)
67 {
68 objFile->loadSections(initVirtMem);
69
70 typedef AuxVector<uint64_t> auxv_t;
71 std::vector<auxv_t> auxv;
72
73 ElfObject * elfObject = dynamic_cast<ElfObject *>(objFile);
74 if(elfObject)
75 {
76 // modern glibc uses a bunch of auxiliary vectors to set up
77 // TLS as well as do a bunch of other stuff
78 // these vectors go on the bottom of the stack, below argc/argv/envp
79 // pointers but above actual arg strings
80 // I don't have all the ones glibc looks at here, but so far it doesn't
81 // seem to be a problem.
82 // check out _dl_aux_init() in glibc/elf/dl-support.c for details
83 // --Lisa
84 auxv.push_back(auxv_t(M5_AT_PAGESZ, AlphaISA::VMPageSize));
85 auxv.push_back(auxv_t(M5_AT_CLKTCK, 100));
86 auxv.push_back(auxv_t(M5_AT_PHDR, elfObject->programHeaderTable()));
87 DPRINTF(Loader, "auxv at PHDR %08p\n", elfObject->programHeaderTable());
88 auxv.push_back(auxv_t(M5_AT_PHNUM, elfObject->programHeaderCount()));
89 auxv.push_back(auxv_t(M5_AT_ENTRY, objFile->entryPoint()));
90 auxv.push_back(auxv_t(M5_AT_UID, uid()));
91 auxv.push_back(auxv_t(M5_AT_EUID, euid()));
92 auxv.push_back(auxv_t(M5_AT_GID, gid()));
93 auxv.push_back(auxv_t(M5_AT_EGID, egid()));
94
95 }
96
97 // Calculate how much space we need for arg & env & auxv arrays.
98 int argv_array_size = intSize * (argv.size() + 1);
99 int envp_array_size = intSize * (envp.size() + 1);
100 int auxv_array_size = intSize * 2 * (auxv.size() + 1);
101
102 int arg_data_size = 0;
103 for (vector<string>::size_type i = 0; i < argv.size(); ++i) {
104 arg_data_size += argv[i].size() + 1;
105 }
106 int env_data_size = 0;
107 for (vector<string>::size_type i = 0; i < envp.size(); ++i) {
108 env_data_size += envp[i].size() + 1;
109 }
110
111 int space_needed =
112 argv_array_size +
113 envp_array_size +
114 auxv_array_size +
115 arg_data_size +
116 env_data_size;
117
118 if (space_needed < 32*1024)
119 space_needed = 32*1024;
120
121 // set bottom of stack
122 stack_min = stack_base - space_needed;
123 // align it
124 stack_min = roundDown(stack_min, pageSize);
125 stack_size = stack_base - stack_min;
126 // map memory
127 pTable->allocate(stack_min, roundUp(stack_size, pageSize));
128
129 // map out initial stack contents
130 Addr argv_array_base = stack_min + intSize; // room for argc
131 Addr envp_array_base = argv_array_base + argv_array_size;
132 Addr auxv_array_base = envp_array_base + envp_array_size;
133 Addr arg_data_base = auxv_array_base + auxv_array_size;
134 Addr env_data_base = arg_data_base + arg_data_size;
135
136 // write contents to stack
137 uint64_t argc = argv.size();
138 if (intSize == 8)
139 argc = htog((uint64_t)argc);
140 else if (intSize == 4)
141 argc = htog((uint32_t)argc);
142 else
143 panic("Unknown int size");
144
145 initVirtMem->writeBlob(stack_min, (uint8_t*)&argc, intSize);
146
147 copyStringArray(argv, argv_array_base, arg_data_base, initVirtMem);
148 copyStringArray(envp, envp_array_base, env_data_base, initVirtMem);
149
150 //Copy the aux stuff
151 for (vector<auxv_t>::size_type x = 0; x < auxv.size(); x++) {
152 initVirtMem->writeBlob(auxv_array_base + x * 2 * intSize,
153 (uint8_t*)&(auxv[x].a_type), intSize);
154 initVirtMem->writeBlob(auxv_array_base + (x * 2 + 1) * intSize,
155 (uint8_t*)&(auxv[x].a_val), intSize);
156 }
157
158 ThreadContext *tc = system->getThreadContext(contextIds[0]);
159
160 setSyscallArg(tc, 0, argc);
161 setSyscallArg(tc, 1, argv_array_base);
162 tc->setIntReg(StackPointerReg, stack_min);
163
164 Addr prog_entry = objFile->entryPoint();
165 tc->setPC(prog_entry);
166 tc->setNextPC(prog_entry + sizeof(MachInst));
167
168 // MIPS/Sparc need NNPC for delay slot handling, while
169 // Alpha has no delay slots... However, CPU models
170 // cycle PCs by PC=NPC, NPC=NNPC, etc. so setting this
171 // here ensures CPU-Model Compatibility across board
172 tc->setNextNPC(prog_entry + (2 * sizeof(MachInst)));
173 }
174
175 void
176 AlphaLiveProcess::startup()
177 {
178 ThreadContext *tc = system->getThreadContext(contextIds[0]);
179 tc->setMiscRegNoEffect(IPR_DTB_ASN, M5_pid << 57);
180
181 if (checkpointRestored) {
182 return;
183 }
184
185 Process::startup();
186
187 argsInit(MachineBytes, VMPageSize);
188
189 tc->setIntReg(GlobalPointerReg, objFile->globalPointer());
190 //Operate in user mode
191 tc->setMiscRegNoEffect(IPR_ICM, 0x18);
192 //No super page mapping
193 tc->setMiscRegNoEffect(IPR_MCSR, 0);
194 }
195
196 AlphaISA::IntReg
197 AlphaLiveProcess::getSyscallArg(ThreadContext *tc, int &i)
198 {
199 assert(i < 6);
200 return tc->readIntReg(FirstArgumentReg + i++);
201 }
202
203 void
204 AlphaLiveProcess::setSyscallArg(ThreadContext *tc,
205 int i, AlphaISA::IntReg val)
206 {
207 assert(i < 6);
208 tc->setIntReg(FirstArgumentReg + i, val);
209 }
210
211 void
212 AlphaLiveProcess::setSyscallReturn(ThreadContext *tc,
213 SyscallReturn return_value)
214 {
215 // check for error condition. Alpha syscall convention is to
216 // indicate success/failure in reg a3 (r19) and put the
217 // return value itself in the standard return value reg (v0).
218 if (return_value.successful()) {
219 // no error
220 tc->setIntReg(SyscallSuccessReg, 0);
221 tc->setIntReg(ReturnValueReg, return_value.value());
222 } else {
223 // got an error, return details
224 tc->setIntReg(SyscallSuccessReg, (IntReg)-1);
225 tc->setIntReg(ReturnValueReg, -return_value.value());
226 }
227 }