process.cc (5713:993c7952b930) process.cc (5771:f58d82cb8b7f)
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;

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

184}
185
186template<class IntType>
187void
188SparcLiveProcess::argsInit(int pageSize)
189{
190 int intSize = sizeof(IntType);
191
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;

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

184}
185
186template<class IntType>
187void
188SparcLiveProcess::argsInit(int pageSize)
189{
190 int intSize = sizeof(IntType);
191
192 typedef M5_auxv_t<IntType> auxv_t;
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];

--- 311 unchanged lines hidden ---
193
194 std::vector<auxv_t> auxv;
195
196 string filename;
197 if(argv.size() < 1)
198 filename = "";
199 else
200 filename = argv[0];

--- 311 unchanged lines hidden ---