summaryrefslogtreecommitdiffstats
path: root/contrib/binutils/opcodes
Commit message (Collapse)AuthorAgeFilesLines
* MFC r264238:dim2014-04-102-0/+16
| | | | | | | | For GNU as, add two missing modes for each of the fcomip and fucomip instructions. Partially obtained from OpenBSD by Pedro Giffuni, while I added the fcomip variants. Apparently this should help with compiling certain variants of WebKit.
* MFC r261175:pfg2014-01-313-1/+18
| | | | | | | | | | | binutils: add support for Intel SMAP-related instructions Add support for stac/clac instructions to manipulate the flag that controls the behaviour of Intel's Supervisor Mode Access Prevention (SMAP) feature. Tested by: dim Obtained from: OpenBSD
* Add support for assembling and disassembling Intel Random Numberdim2013-10-074-8/+40
| | | | | | | | | Generator extensions (e.g. the 'rdrand' mnemonic) to our copy of binutils. Approved by: re (kib) Obtained from: OpenBSD, via pfg MFC after: 1 week
* Add support for the 'invpcid' instruction to binutils and DDB'sjhb2013-09-033-1/+22
| | | | | | disassembler on amd64. MFC after: 1 month
* reorder so all the flags are together and make the PCLMUL flag unique..jmg2013-02-211-4/+5
| | | | | | | | This fixes the problem on amd64 miscompiling mpboot.s causing boot issues... We are still using gas for a few files in the kernel... Submitted by: kib MFC after: 1 month
* add support for AES and PCLMULQDQ instructions to binutils...jmg2013-02-193-11/+126
| | | | | | | | | Thanks to Mike Belopuhov for the pointer to the OpenBSD patch, though OpenBSD's gcc is very different that it only helped w/ where to modify, not how... Thanks to jhb for some early reviews... Reviewed by: imp, kib MFC after: 1 month
* Add support for the 'invept' and 'invvpid' instructions. Beyond simplyjhb2012-07-063-3/+42
| | | | | | | | adding appropriate table entries, the assembler had to be adjusted as these are the first non-SSE instructions to use a 3-byte opcode (and a mandatory prefix to boot). MFC after: 1 month
* Add support for the 'xsave', 'xrstor', 'xsaveopt', 'xgetbv', and 'xsetbv'jhb2012-07-044-10/+71
| | | | | | | | | | instructions. I reimplemented this from scratch based on the Intel manuals and the existing support for handling the fxsave and fxrstor instructions. This will let us use these instructions natively with GCC rather than hardcoding the opcodes in hex. Reviewed by: kib MFC after: 1 month
* Fix clang warnings.benl2011-06-181-12/+12
| | | | Approved by: philip (mentor)
* Merge ^/vendor/binutils/dist@214571 into contrib/binutils, which bringsdim2010-11-0144-7407/+36176
|\ | | | | | | | | | | | | | | | | | | | | | | us up to version 2.17.50.20070703, at the last GPLv2 commit. Amongst others, this added upstream support for some FreeBSD-specific things that we previously had to manually hack in, such as the OSABI label support, and so on. There are also quite a number of new files, some for cpu's (e.g. SPU) that we may or may not be interested in, but those can be cleaned up later on, if needed.
* | Make contrib/binutils/opcodes/mips-dic.c compile without warnings.dim2010-10-221-1/+1
| |
* | Merge ^vendor/binutils/dist@214082 into contrib/binutils.dim2010-10-2159-14489/+24497
|\ \ | |/
| * Rename vendor/binutils/*/contrib to vendor/binutils/*/xobrien2009-01-1971-64338/+0
| | | | | | | | | | | | | | Binutils has a "contrib" subdirectory - thus flattening cannot happen without renaming the upper level contrib directory in a first pass. Also, don't record this move and remove any keyword expansion.
* | Merge ^vendor/binutils/dist@214033 into contrib/binutils.dim2010-10-193-5/+80
| | | | | | | | | | | | | | The change made to bfd/elf.c in upstream revision 1.217.4.3 (which was a revert of an earlier change), caused objcopy on powerpc to fail to copy debug info from kernel modules. This had to be fixed by applying the diff from upstream revision 1.243 on top of it.
* | Add/improve mips64r2, Octeon, n32 and n64 support in the toolchain.jmallett2010-06-023-1600/+2155
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | o) Add TARGET_ABI to the MIPS toolchain build process. This sets the default ABI to one of o32, n32 or n64. If it is not set, o32 is assumed as that is the current default. o) Set the default GCC cpu type to any specified TARGET_CPUTYPE. This is necessary to have a working "cc" if e.g. mips64 is specified, as binutils will refuse to link objects using different ISAs in some cases. o) Add support for n32 and n64 ABIs to binutils and GCC. o) Add additional required libgcc2 stubs for n32 and n64. o) Add support for the "mips64r2" architecture to GCC. Add the "octeon" o) When static linking, wrap default libraries in --start-group and --end-group. This is required for static linking to work on n64 with the interdependencies between libraries there. This is what other OSes that support n64 seem to do, as well. o) Fix our GCC spec to define __mips64 for 64-bit targets, not __mips64__, the former being what libgcc, etc., check and the latter seemingly being a misspelling of a hand merge from a Linux spec. o) When no TARGET_CPUTYPE is specified at build time, make GCC take the default ISA from the ABI. Our old defaults were too liberal and assumed that 64-bit ABIs should default to the MIPS64 ISA and that 32-bit ABIs should default to the MIPS32 ISA, when we are supporting or will support some systems based on earlier 32-bit and 64-bit ISAs, most notably MIPS-III. o) Merge a new opcode file (and support code) from a later version of binutils and add flags and code necessary to support Octeon-specific instructions. This should also make merging opcodes for other modern architectures easier. Reviewed by: imp
* | This commit was generated by cvs2svn to compensate for changes in r179404,obrien2008-05-293-0/+3280
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Import of Binutils from the FSF 2.15 branch (just post-.0 release).obrien2008-05-293-0/+3280
| | | | | | | | These bits are taken from the FSF anoncvs repo on 23-May-2004 04:41:00 UTC.
* | Fix strict alias warnings.jb2007-11-231-3/+7
| |
* | This commit was generated by cvs2svn to compensate for changes in r147824,obrien2005-07-071-101/+63
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Fix bogus fmov* SPARC opcodes.obrien2005-07-071-101/+63
| | | | | | | | | | | | | | | | | | (Note this makes the vendor branch not represent Binutils in the vendor's CVS repository at any point in time. Portmgr did not like the state of Binutils on Sparc that represented the point in time the vendor fixed this issue. I'd rather have fixed this on RELENG_6.) Approved by: re
* | This commit was generated by cvs2svn to compensate for changes in r130561,obrien2004-06-1653-14497/+18524
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Import of Binutils from the FSF 2.15 branch (just post-.0 release).obrien2004-06-1653-14497/+18524
| | | | | | | | These bits are taken from the FSF anoncvs repo on 23-May-2004 04:41:00 UTC.
| * Things that never should have been imported.obrien2003-03-026-8298/+0
| |
* | GC some stuff I thought was long gone.obrien2002-12-026-8298/+0
| |
* | This commit was generated by cvs2svn to compensate for changes in r107492,obrien2002-12-023-21/+38
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Import of Binutils from the FSF 2.13 branch (just pre-.2 release).obrien2002-12-023-21/+38
| | | | | | | | These bits are taken from the FSF anoncvs repo on 27-Oct-2002 21:12:00 EST.
* | This commit was generated by cvs2svn to compensate for changes in r104834,obrien2002-10-1120-991/+1577
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Import of Binutils from the FSF 2.13 branch (just pre-.1 release).obrien2002-10-1120-991/+1577
| | | | | | | | These bits are taken from the FSF anoncvs repo on 11-Oct-2002 22:39:35 PDT.
* | This commit was generated by cvs2svn to compensate for changes in r99461,obrien2002-07-056-1/+1424
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Import of Binutils from the FSF 2.12 branch (just post-.1 release).obrien2002-07-056-1/+1424
| | | | | | | | These bits are taken from the FSF anoncvs repo on 22-June-2002 23:28:00 EDT.
* | This commit was generated by cvs2svn to compensate for changes in r94536,obrien2002-04-1213-839/+982
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Import of Binutils from the FSF 2.12 branch.obrien2002-04-1213-839/+982
| | | | | | | | | | (this fixes several linker problems and coredumps) These bits are taken from the FSF anoncvs repo on 10-April-2002 13:24 Zulu
* | This commit was generated by cvs2svn to compensate for changes in r92828,obrien2002-03-206-517/+577
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Import of Binutils from the FSF 2.12 branch (just post-.0 release).obrien2002-03-206-517/+577
| | | | | | | | These bits are taken from the FSF anoncvs repo on 20-March-2002 13:33:33 PST.
* | This commit was generated by cvs2svn to compensate for changes in r91041,obrien2002-02-2214-225/+545
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Import of Binutils from the FSF 2.12 branch (pre-.0 release).obrien2002-02-2214-225/+545
| | | | | | | | These bits are taken from the FSF anoncvs repo on 21-Feburary-2002 20:15 PST.
* | This commit was generated by cvs2svn to compensate for changes in r89857,obrien2002-01-2733-1854/+4518
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Enlist the FreeBSD-CURRENT users as testers of what is to become Binutilsobrien2002-01-2733-1854/+4518
| | | | | | | | | | version 2.12.0. These bits are taken from the FSF anoncvs repo on 27-January-2002 03:41 PST.
* | This commit was generated by cvs2svn to compensate for changes in r85815,obrien2001-11-0117-3299/+5643
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Halloween import of Binutils from the FSF 2.11 branch.obrien2001-11-0117-3299/+5643
| | | | | | | | This fixes some IA-64 related bugs.
* | This commit was generated by cvs2svn to compensate for changes in r84865,obrien2001-10-1317-0/+15157
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Import the extra bits needed to target IA-64, PowerPC, and sparc64.obrien2001-10-1317-0/+15157
| | | | | | | | (this is Binutils from the FSF 2.11 branch [checked out 19-July-2001])
* | This commit was generated by cvs2svn to compensate for changes in r80016,obrien2001-07-203-4/+12
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Import of Binutils from the FSF 2.11 branch [checked out 19-July-2001].obrien2001-07-203-4/+12
| | | | | | | | This fixes an annoying `ld' bug.
* | This commit was generated by cvs2svn to compensate for changes in r78828,obrien2001-06-2626-634/+777
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Import of GNU Binutils version 2.11.2.obrien2001-06-2626-634/+777
| |
* | This commit was generated by cvs2svn to compensate for changes in r77298,obrien2001-05-2825-7852/+10921
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Import of GNU Binutils version 2.11.0.obrien2001-05-2825-7852/+10921
| | | | | | | | Believe it or not, this is heavily stripped down.
* | Remove binutils 2.9.1 files that are not part of 2.10.x.obrien2000-11-251-6/+0
|/
* Import a virgin (but trimed) Binutils 2.10 release.obrien2000-06-203-8/+31
|
OpenPOWER on IntegriCloud