process.cc (11321:02e930db812d) process.cc (11386:94c09b607a84)
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;

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

52 brk_point = roundUp(brk_point, PageBytes);
53
54 // Set up stack. On Alpha, stack goes below text section. This
55 // code should get moved to some architecture-specific spot.
56 stack_base = objFile->textBase() - (409600+4096);
57
58 // Set up region for mmaps. Tru64 seems to start just above 0 and
59 // grow up from there.
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;

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

52 brk_point = roundUp(brk_point, PageBytes);
53
54 // Set up stack. On Alpha, stack goes below text section. This
55 // code should get moved to some architecture-specific spot.
56 stack_base = objFile->textBase() - (409600+4096);
57
58 // Set up region for mmaps. Tru64 seems to start just above 0 and
59 // grow up from there.
60 mmap_start = mmap_end = 0x10000;
60 mmap_end = 0x10000;
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}
66
67void
68AlphaLiveProcess::argsInit(int intSize, int pageSize)

--- 169 unchanged lines hidden ---
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}
66
67void
68AlphaLiveProcess::argsInit(int intSize, int pageSize)

--- 169 unchanged lines hidden ---