Switch sources over to use the GPL version 3
[binutils.git] / bfd / hosts / i386bsd.h
blobb2145e6bfd5832785f89c9afb6a3d76736eaff66
1 /* Copyright 2007 Free Software Foundation, Inc.
3 This file is part of BFD, the Binary File Descriptor library.
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
18 MA 02110-1301, USA. */
20 /* Intel 386 running any BSD Unix. */
22 #include <machine/param.h>
23 #include <machine/vmparam.h>
25 /* Recent versions of FreeBSD don't define NBPG. */
26 #ifndef NBPG
27 #ifdef PAGE_SIZE
28 #define NBPG PAGE_SIZE
29 #endif
30 #endif
32 #define HOST_PAGE_SIZE NBPG
33 #define HOST_MACHINE_ARCH bfd_arch_i386
34 #define HOST_TEXT_START_ADDR USRTEXT
36 /* Jolitz suggested defining HOST_STACK_END_ADDR to
37 (u.u_kproc.kp_eproc.e_vm.vm_maxsaddr + MAXSSIZ), which should work on
38 both BSDI and 386BSD, but that is believed not to work for BSD 4.4. */
40 #ifdef __bsdi__
41 /* This seems to be the right thing for BSDI. */
42 #define HOST_STACK_END_ADDR USRSTACK
43 #define HOST_DATA_START_ADDR ((bfd_vma)u.u_kproc.kp_eproc.e_vm.vm_daddr)
44 #else
45 /* This seems to be the right thing for 386BSD release 0.1. */
46 #define HOST_STACK_END_ADDR (USRSTACK - MAXSSIZ)
47 #endif
49 #define TRAD_UNIX_CORE_FILE_FAILING_SIGNAL(core_bfd) \
50 ((core_bfd)->tdata.trad_core_data->u.u_sig)
51 #define u_comm u_kproc.kp_proc.p_comm