Searched refs:intSize (Results 1 - 9 of 9) sorted by relevance

/gem5/src/arch/power/
H A Dprocess.hh52 void argsInit(int intSize, int pageSize);
H A Dprocess.cc86 PowerProcess::argsInit(int intSize, int pageSize) argument
149 int sentry_size = intSize;
174 int aux_array_size = intSize * 2 * (auxv.size() + 1);
176 int envp_array_size = intSize * (envp.size() + 1);
177 int argv_array_size = intSize * (argv.size() + 1);
179 int argc_size = intSize;
263 initVirtMem.writeBlob(argc_base, &guestArgc, intSize);
/gem5/src/arch/alpha/
H A Dprocess.hh49 void argsInit(int intSize, int pageSize);
H A Dprocess.cc78 AlphaProcess::argsInit(int intSize, int pageSize) argument
117 int argv_array_size = intSize * (argv.size() + 1);
118 int envp_array_size = intSize * (envp.size() + 1);
119 int auxv_array_size = intSize * 2 * (auxv.size() + 1);
150 Addr argv_array_base = memState->getStackMin() + intSize; // room for argc
158 if (intSize == 8)
160 else if (intSize == 4)
165 initVirtMem.writeBlob(memState->getStackMin(), &argc, intSize);
/gem5/src/arch/mips/
H A Dprocess.cc91 int intSize = sizeof(IntType); local
132 int argv_array_size = intSize * (argv.size() + 1);
133 int envp_array_size = intSize * (envp.size() + 1);
134 int auxv_array_size = intSize * 2 * (auxv.size() + 1);
162 IntType argv_array_base = memState->getStackMin() + intSize;
173 initVirtMem.writeBlob(memState->getStackMin(), &argc, intSize);
/gem5/src/arch/sparc/
H A Dprocess.cc193 int intSize = sizeof(IntType); local
296 int aux_array_size = intSize * 2 * (auxv.size() + 1);
298 int envp_array_size = intSize * (envp.size() + 1);
299 int argv_array_size = intSize * (argv.size() + 1);
301 int argc_size = intSize;
302 int window_save_size = intSize * 16;
387 initVirtMem.writeBlob(argc_base, &guestArgc, intSize);
413 Sparc64Process::argsInit(int intSize, int pageSize) argument
425 Sparc32Process::argsInit(int intSize, int pageSize) argument
H A Dprocess.hh108 void argsInit(int intSize, int pageSize);
152 void argsInit(int intSize, int pageSize);
/gem5/src/arch/arm/
H A Dprocess.cc258 int intSize = sizeof(IntType); local
327 int sentry_size = intSize;
355 int aux_array_size = intSize * 2 * (auxv.size() + 1);
357 int envp_array_size = intSize * (envp.size() + 1);
358 int argv_array_size = intSize * (argv.size() + 1);
360 int argc_size = intSize;
448 initVirtMem.writeBlob(argc_base, &guestArgc, intSize);
/gem5/src/arch/x86/
H A Dprocess.cc762 int intSize = sizeof(IntType); local
899 int sentry_size = intSize;
930 int aux_array_size = intSize * 2 * (auxv.size() + 1);
932 int envp_array_size = intSize * (envp.size() + 1);
933 int argv_array_size = intSize * (argv.size() + 1);
935 int argc_size = intSize;
1031 initVirtMem.writeBlob(argc_base, &guestArgc, intSize);

Completed in 19 milliseconds