xref: /netbsd-src/external/gpl3/binutils.old/dist/bfd/pei-i386.c (revision e992f068c547fd6e84b3f104dc2340adcc955732)
175fd0b74Schristos /* BFD back-end for Intel 386 PE IMAGE COFF files.
2*e992f068Schristos    Copyright (C) 1995-2022 Free Software Foundation, Inc.
375fd0b74Schristos 
475fd0b74Schristos    This file is part of BFD, the Binary File Descriptor library.
575fd0b74Schristos 
675fd0b74Schristos    This program is free software; you can redistribute it and/or modify
775fd0b74Schristos    it under the terms of the GNU General Public License as published by
875fd0b74Schristos    the Free Software Foundation; either version 3 of the License, or
975fd0b74Schristos    (at your option) any later version.
1075fd0b74Schristos 
1175fd0b74Schristos    This program is distributed in the hope that it will be useful,
1275fd0b74Schristos    but WITHOUT ANY WARRANTY; without even the implied warranty of
1375fd0b74Schristos    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1475fd0b74Schristos    GNU General Public License for more details.
1575fd0b74Schristos 
1675fd0b74Schristos    You should have received a copy of the GNU General Public License
1775fd0b74Schristos    along with this program; if not, write to the Free Software
1875fd0b74Schristos    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
1975fd0b74Schristos    MA 02110-1301, USA.  */
2075fd0b74Schristos 
2175fd0b74Schristos #include "sysdep.h"
2275fd0b74Schristos #include "bfd.h"
2375fd0b74Schristos 
2475fd0b74Schristos #define TARGET_SYM		i386_pei_vec
2575fd0b74Schristos #define TARGET_NAME		"pei-i386"
2675fd0b74Schristos #define COFF_IMAGE_WITH_PE
2775fd0b74Schristos #define COFF_WITH_PE
28*e992f068Schristos #define PCRELOFFSET		true
2975fd0b74Schristos #define TARGET_UNDERSCORE	'_'
3075fd0b74Schristos /* Long section names not allowed in executable images, only object files.  */
3175fd0b74Schristos #define COFF_LONG_SECTION_NAMES 0
3275fd0b74Schristos #define COFF_SUPPORT_GNU_LINKONCE
3375fd0b74Schristos #define COFF_LONG_FILENAMES
3475fd0b74Schristos 
3575fd0b74Schristos #define COFF_SECTION_ALIGNMENT_ENTRIES \
3675fd0b74Schristos { COFF_SECTION_NAME_PARTIAL_MATCH (".idata"), \
3775fd0b74Schristos   COFF_ALIGNMENT_FIELD_EMPTY, COFF_ALIGNMENT_FIELD_EMPTY, 2 }, \
3875fd0b74Schristos { COFF_SECTION_NAME_EXACT_MATCH (".pdata"), \
3975fd0b74Schristos   COFF_ALIGNMENT_FIELD_EMPTY, COFF_ALIGNMENT_FIELD_EMPTY, 2 }, \
4075fd0b74Schristos { COFF_SECTION_NAME_PARTIAL_MATCH (".debug"), \
4175fd0b74Schristos   COFF_ALIGNMENT_FIELD_EMPTY, COFF_ALIGNMENT_FIELD_EMPTY, 0 }, \
4275fd0b74Schristos { COFF_SECTION_NAME_PARTIAL_MATCH (".gnu.linkonce.wi."), \
4375fd0b74Schristos   COFF_ALIGNMENT_FIELD_EMPTY, COFF_ALIGNMENT_FIELD_EMPTY, 0 }
4475fd0b74Schristos 
4575fd0b74Schristos #include "coff-i386.c"
46