summaryrefslogtreecommitdiffstats
path: root/gnu/usr.bin/binutils/include (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add PN_XNUM support to libbfd so objdump and gdb can handle coreguenther2018-12-111-0/+3
| | | | | | dumps with many many segments. ok yasuoka@
* Add improvements to the DWARF frame unwinder to support xorguard.kettenis2017-08-142-0/+5
| | | | ok mortimer@
* Start moving some vmm things into the tree. First up is binutils so we willmlarkin2015-11-091-0/+31
| | | | | | be able to use the virtualization instructions. ok'ed a long time ago, I forgot who, but deraadt@ ok'ed it again anyway.
* Add support for an efi-app-x86_64 target. Needed for UEFI bootloader work.kettenis2015-04-064-14/+171
| | | | ok mlarkin@
* Bring in a change present in binutils 2.17 to allow sahf/lahfjsg2014-11-191-2/+2
| | | | | | instructions on amd64. ok deraadt@ miod@ mlarkin@
* Backport @file support from binutils-2.17tobiasu2014-08-311-0/+3
| | | | | | | @file allows reading command line arguments from a file. Gcc now uses this to pass very long arguments lists to ld. ok guenther@ miod@
* Backport support for i386/amd64 'rdtscp' instruction from binutils-2.17guenther2014-08-201-0/+1
| | | | Request and testing by krw@
* Add the missing addressing modes for the fucomip instruction. Surprisingly,miod2014-04-061-0/+2
| | | | | | | fucompi was correct. Unbreaks www/webkit on i386. ok sthen@
* Add a few more instruction patterns that are apparently needed by gcc 4.8.kettenis2014-03-131-13/+16
| | | | | | Taken from binutils 2.17. ok guenther@
* Add support for i386 XSAVE family of instructions: xgetbv, xsetbv, xsave,guenther2014-02-091-0/+7
| | | | | | | xrstor, and xsaveopt. based on kettenis's original that did xgetbv and xsetbv ok kettenis@
* Define and fill machine-specific DT_88K_PLT{START,END} _DYNAMIC tags whenmiod2013-04-171-0/+7
| | | | | | | | | creating objects with a .plt (either shared libraries or dynamic binaries). These tags contain the start and end address of the plt, relative to the beginning of the object. This will (eventually) allow ld.so to find the area spanned by the plt more easily, and also matches what SVR4/m88k does.
* m88k ELF toolchain, supporting static binaries only so far.miod2013-01-011-0/+99
| | | | | | | | | | | | | | | | | | Assembler supports a register prefix of `#' when configured for SVR4, and `%' when configured for OpenBSD. Pseudo-ops do not need a leading dot, except when configured for OpenBSD, allowing the `set' instruction to be recognized correctly. Based upon various unfinished or unreliable works, including smurph@'s early work in 2003, my own attempts in 2004 and 2005, and Michael Kato's binutils 2.15 diff from 2005. Support for register prefixes, as well as fixing an evil off-by-one in resolving 16-bit pc-relative relocations in ld (which would only affect kernel .S files branching to global symbols), came as part of the 2012 work. Not enabled yet (needs Makefile.bsd-wrapper, bfd/config.bfd and gdb/configure.tgt updates to completely enable) so as not to disturb the existing a.out toolchain builds; will hopefully be enabled very soon.
* Backport a powerpc --relax fix present in binutils 2.17.landry2012-11-051-2/+4
| | | | | | | | This allows mozilla trunk to finally link again on ppc (with --relax), otherwise it fails badly with relocations overflow. From http://sourceware.org/ml/binutils/2005-01/msg00115.html ok kettenis@, no objection miod@
* Add support for stac/clac instructions to manipulate the flagjsg2012-10-181-0/+4
| | | | | | | that controls the behaviour of Intel's Supervisor Mode Access Prevention (SMAP) feature. 'looks correct' miod@ ok deraadt@
* Teach as(1) about rdrand on i386/amd64.kettenis2012-09-031-0/+3
| | | | ok jsg@
* Add support for .openbsd.randomdata sections and PT_OPENBSD_RANDOMIZEmatthew2012-08-201-0/+3
| | | | | | | | segments to the kernel, ld (2.15), and ld.so. Tested on alpha, amd64, i386, macppc, and sparc64 (thanks naddy, mpi, and okan!). Idea discussed for some time; committing now for further testing. ok deraadt
* Teach as(4) about cmpxchg16b on amd64.kettenis2012-01-051-0/+1
| | | | ok miod@
* Add support for Intel AES-NI and the CLMUL_ instructions, plus a few othersthib2010-06-111-0/+18
| | | | | | | | | that are needed to omplement accelerated AES (and AES-GCM mode) on newer Intel cores. Diff from Mike Belopuhov. no objections/ok miod@
* Add a new option to the mips64 gas, -mfix-loongson2f-btb. This optionmiod2010-02-031-0/+4
| | | | | | | | | | | | | | | | | | | | | | is intended to be used when compiling kernel code which will run on a Loongson 2E or 2F processor, and inserts an explicit BTB clear operation before every jump through a register (jr or jalr instructions), unless that register is k0 or k1, or we are in .set noat. This is a reliable, although aggressive, workaround for the misbehaviour of the branch prediction engine of many Loongson 2F processors with regard to the Branch Translation Buffer, for which an official errata has yet to be published, and for which the Loongson suggested workaround apparently only works due to pipeline side effects, but requires all the executable kernel code to be located in CKSEG0/CKSEG1. These changes are inspired by a backport of the Loongson binutils 2.19 patch to binutils 2.18; the idea of doing an aggressive BTB clear is mine. This causes no functional change to code compiled without the -mfix-loongson2f-btb option. ``looks reasonable'' kettenis@
* Teach bfd and gdb about the upcoming ELF core dumps.kettenis2009-03-051-0/+11
|
* add some more xcrypt & co opcodeshshoexer2006-05-181-0/+6
| | | | ok deraadt
* GDB 6.3 (excluding .info files)kettenis2004-12-274-5/+812
|
* Merge conflicts, bringing our changes back in:miod2004-11-0232-7768/+3525
| | | | | | | | | | | | | | | | | | | | | - extra $(SHELL) and sugar for make (so that files not mode +x still work) - safer temp file handling - our W^X binary layout changes in ld - OpenBSD policy for library file selection in ld - arm and m88k changes which were not merged in time for official 2.15 - bfd core file handling - a couple typos New for 2.15: - ld(1) and as(1) manpages now generated at build time - binutils/stabs.c reverted to use our in-tree libiberty for now - we still use our VIA C3 crypto code over stock binutils, as it recognizes more instructions - new emulations for OpenBSD on mips64 machines, to help OpenBSD/sgi - relaxed %f# handling in gas on OpenBSD/sparc64 (same as was in 2.14) Tested on all platforms by various people; special thanks to sturm@ and otto@.
* Binutils 2.15, with testsuites removed, and without gdb and libiberty.miod2004-11-0234-316/+9518
|
* GDB 6.1 (excluding .info files)kettenis2004-05-215-4/+227
|
* Update headers to gdb-6.1 version to get new constants.kettenis2004-05-212-16/+79
| | | | ok deraadt@
* Add dis-init.c from gdb 6.1.kettenis2004-05-191-34/+9
| | | | ok drahn@
* Remove a build warning by reverting to old method of testing fordrahn2004-05-191-8/+5
| | | | HAVE_DECL_GETOPT. pointed out by a few.
* Resolve merge conflicts, adjust method of W^X handing (.sh files)drahn2004-05-1761-5716/+4520
| | | | remove testsuites (not useable) remove mmalloc (not part of new binutils).
* import binutils 2.14 (excluding testsuites, .info files, and .po files)drahn2004-05-1781-1327/+8117
|
* Add support for xmove-rng and xcrypt-{ecb,cbc,cfb,ofb} instructions foundderaadt2004-02-011-0/+7
| | | | | in VIA C3 cpus. Very simple encoding: 0f a7 {c0, c8, d0, e0, d8}. This change is placed into the public domain, so someone get it back to FSF
* pull some demangler changes as with the libiberty counterpart to pleasefgsch2002-05-131-19/+35
| | | | binutils; actually both files should be the same.
* resolve conflicts.fgsch2002-05-1359-1842/+4056
|
* Import binutils-2.11.2fgsch2002-05-1391-870/+4464
| | | | | | - only the binutils package (no gdb here) - don't import libiberty and texinfo, they are elsewhere - remove all .info* generated files
* Revert to older demangle. Not tested nor updated yet.espie2001-06-091-45/+20
|
* Automatic cvs merge. Dread what I will have to fix after this excuseespie2001-06-094-23/+98
| | | | of a program is done...
* Long delayed import of binutils-2.10.1. Turns out art@ needs some alphaespie2001-06-091-0/+92
| | | | bug-fixes...
* Resolve other problems that dumb cvs can't find out by itself.espie2000-09-124-16/+46
| | | | (trivial part done, `interesting' patches remain)
* Help stupid cvs fixing basic conflicts.espie2000-09-1228-1715/+6943
|
* Import binutils-2.10espie2000-09-1256-735/+7776
| | | | | | - only the binutils package (no gdb here) - don't import libiberty and texinfo, they are elsewhere - remove all .info* generated files
* Kill remaining instances of mktemp, direct and indirect.espie1999-09-141-1/+4
|
* 4 more instructions; some registers needed, but numbers are ok anywaymickey1998-08-111-0/+4
|
* Import of binutils-2.8.1 from Cygnus/FSFniklas1997-05-2912-86/+1397
|
* Merge to Cygnus 961112 + add some support (not ready) for shared libsniklas1996-11-2312-34/+416
|
* Import of 961112 Cygnus binutils+gas+ld+gdb+gprofniklas1996-11-192-267/+14
|
* Alpha support based on Chris Demetriou's <cgd@cs.cmu.edu> workniklas1996-10-311-0/+1
|
* Alpha support based on Chris Demetriou's <cgd@cs.cmu.edu> workniklas1996-10-062-1/+3
|
* Merge the Cygnus 960904 sourcesniklas1996-09-0421-104/+416
|
* Import of binutils, gas, ld & gprof from Cygnus 960904 treeniklas1996-09-0421-70/+1090
|
* (Correct) Import of Cygnus binutils snapshot taken 960607niklas1996-06-0736-146/+1095
|