]> granicus.if.org Git - yasm/log
yasm
15 years agoFix #190: Incorrect opcode generated for vphaddudq.
Peter Johnson [Sun, 8 Nov 2009 17:14:01 +0000 (17:14 -0000)]
Fix #190: Incorrect opcode generated for vphaddudq.

svn path=/trunk/yasm/; revision=2236

15 years agoFix #189: Avoid compiler warning in genperf.
Peter Johnson [Tue, 3 Nov 2009 05:15:37 +0000 (05:15 -0000)]
Fix #189: Avoid compiler warning in genperf.

svn path=/trunk/yasm/; revision=2235

15 years agoFix #187: Add new variable CFLAGS_FOR_BUILD for CC_FOR_BUILD compiles.
Peter Johnson [Sat, 31 Oct 2009 21:52:42 +0000 (21:52 -0000)]
Fix #187: Add new variable CFLAGS_FOR_BUILD for CC_FOR_BUILD compiles.

Due to the need to support cross-building, CC_FOR_BUILD is used instead of
CC for tools that will be run as part of the build process.  However, it
is sometimes necessary to add custom CFLAGS for these builds; CFLAGS_FOR_BUILD
supports this cleanly.

svn path=/trunk/yasm/; revision=2234

15 years agoFix #188: Times forward references would result in bad code generation.
Peter Johnson [Sat, 31 Oct 2009 21:45:55 +0000 (21:45 -0000)]
Fix #188: Times forward references would result in bad code generation.

svn path=/trunk/yasm/; revision=2233

15 years agoFix #78 further: Support C++ style // comments.
Peter Johnson [Sat, 12 Sep 2009 02:38:35 +0000 (02:38 -0000)]
Fix #78 further: Support C++ style // comments.

svn path=/trunk/yasm/; revision=2232

15 years agoFurther change to python invocation in genperf
Brian Gladman [Wed, 12 Aug 2009 14:51:57 +0000 (14:51 -0000)]
Further change to python invocation in genperf

svn path=/trunk/yasm/; revision=2231

15 years agoimprove handling of Python batch file for genperf
Brian Gladman [Wed, 12 Aug 2009 14:33:52 +0000 (14:33 -0000)]
improve handling of Python batch file for genperf

svn path=/trunk/yasm/; revision=2230

15 years agoFix #186: Avoid memory runaway in optimizer TIMES circular reference checking.
Peter Johnson [Thu, 6 Aug 2009 07:13:11 +0000 (07:13 -0000)]
Fix #186: Avoid memory runaway in optimizer TIMES circular reference checking.

Check for duplicates in backtrace used when checking for circular references.
This uses a simple N^2 algorithm (as the number of items in the backtrace is
usually small) but avoids memory runaway due to duplicate item storage.

svn path=/trunk/yasm/; revision=2229

15 years agoFix #185: Add mkinstalldirs to svn repo, as autogen.sh doesn't pull it in.
Peter Johnson [Fri, 31 Jul 2009 02:50:19 +0000 (02:50 -0000)]
Fix #185: Add mkinstalldirs to svn repo, as autogen.sh doesn't pull it in.

svn path=/trunk/yasm/; revision=2227

15 years agoFix #184: test -e is not portable (despite being in POSIX); use test -f instead.
Peter Johnson [Thu, 30 Jul 2009 02:19:38 +0000 (02:19 -0000)]
Fix #184: test -e is not portable (despite being in POSIX); use test -f instead.

svn path=/trunk/yasm/; revision=2226

15 years agoUnbreak distcheck.
Peter Johnson [Sat, 25 Jul 2009 05:29:47 +0000 (05:29 -0000)]
Unbreak distcheck.

svn path=/trunk/yasm/; revision=2224

15 years agoFix #178: Don't "distribute" shift right op.
Peter Johnson [Fri, 24 Jul 2009 19:01:35 +0000 (19:01 -0000)]
Fix #178: Don't "distribute" shift right op.

This breaks horribly for things like (sym+511)>>9 in -f bin, as the result is
zero instead of something more useful.

Also don't check RHS for symbols; these will fall out later in the assembly
process if they cannot be simplified.

svn path=/trunk/yasm/; revision=2220

15 years agoUpdate elf special symbols:
Peter Johnson [Wed, 22 Jul 2009 05:51:35 +0000 (05:51 -0000)]
Update elf special symbols:
 - Add tlsdesc and tlscall to both x86 and amd64.
 - Add 64-bit pltoff, gotplt, gotoff to amd64.

svn path=/trunk/yasm/; revision=2210

15 years agoUnbreak make check (broken by [2206]).
Peter Johnson [Wed, 22 Jul 2009 05:49:54 +0000 (05:49 -0000)]
Unbreak make check (broken by [2206]).

svn path=/trunk/yasm/; revision=2209

15 years agoelf: Add latest x86 relocation types.
Peter Johnson [Wed, 22 Jul 2009 05:45:03 +0000 (05:45 -0000)]
elf: Add latest x86 relocation types.

svn path=/trunk/yasm/; revision=2208

15 years agoelf: Add support for 64-bit PC-relative relocation.
Peter Johnson [Tue, 21 Jul 2009 06:49:44 +0000 (06:49 -0000)]
elf: Add support for 64-bit PC-relative relocation.

svn path=/trunk/yasm/; revision=2207

15 years agoSpecial-case _GLOBAL_OFFSET_TABLE_ in elf32/64 to generate appropriate relocs.
Peter Johnson [Tue, 21 Jul 2009 06:48:42 +0000 (06:48 -0000)]
Special-case _GLOBAL_OFFSET_TABLE_ in elf32/64 to generate appropriate relocs.

This was particularly noticable in GAS, but there was also a bug in NASM
output (lack of fixup within instruction in elf32).

Also:
- changed ssym lookup from a linear search to using assocdata
- added more relocation types (most not implemented)

Reported by: Mark Charney

svn path=/trunk/yasm/; revision=2206

15 years agoNASM is now licensed under the 2-clause BSD license.
Peter Johnson [Mon, 20 Jul 2009 06:04:58 +0000 (06:04 -0000)]
NASM is now licensed under the 2-clause BSD license.

svn path=/trunk/yasm/; revision=2205

15 years agoFix #177: Make check fails on CR/LF systems.
Peter Johnson [Sat, 18 Jul 2009 02:33:10 +0000 (02:33 -0000)]
Fix #177: Make check fails on CR/LF systems.

The diff on the hexdump output was not using -w.

svn path=/trunk/yasm/; revision=2204

15 years agoFix #175: Only sanity check final section size if no user errors occurred.
Peter Johnson [Fri, 12 Jun 2009 07:06:16 +0000 (07:06 -0000)]
Fix #175: Only sanity check final section size if no user errors occurred.

svn path=/trunk/yasm/; revision=2203

15 years agoFix #173: Debug full paths were being generated incorrectly.
Peter Johnson [Wed, 3 Jun 2009 05:49:18 +0000 (05:49 -0000)]
Fix #173: Debug full paths were being generated incorrectly.
This was because the path returned by yasm__getcwd() did not have a trailing
slash and thus yasm__combpath() stripped off the last path component.

svn path=/trunk/yasm/; revision=2202

15 years agoFix #171: Broken build in ytasm CMakeLists.txt.
Peter Johnson [Tue, 12 May 2009 01:47:59 +0000 (01:47 -0000)]
Fix #171: Broken build in ytasm CMakeLists.txt.

Reported by: postmodern.mod3

svn path=/trunk/yasm/; revision=2201

15 years agoCMakeLists.txt: Set cmake policy to avoid warning.
Peter Johnson [Tue, 12 May 2009 01:46:42 +0000 (01:46 -0000)]
CMakeLists.txt: Set cmake policy to avoid warning.

svn path=/trunk/yasm/; revision=2200

15 years agoAdd support for AMD XOP, FMA4, and CVT16 instructions (replacing SSE5).
Peter Johnson [Sun, 10 May 2009 05:24:46 +0000 (05:24 -0000)]
Add support for AMD XOP, FMA4, and CVT16 instructions (replacing SSE5).

AMD has obsoleted the SSE5 spec in favor of these instructions.  These
instructions use an AVX-like new opcode structure called XOP instead of
the SSE5 DREX byte.

The AMD FMA4 instructions are a copy of the *old* Intel FMA instructions.
Intel has since updated their spec, and AMD may follow, but for now we've
implemented what AMD's spec contains.

svn path=/trunk/yasm/; revision=2199

15 years agoAdd gencheck.py Python script to make it easier to generate expected results
Peter Johnson [Sun, 10 May 2009 05:21:26 +0000 (05:21 -0000)]
Add gencheck.py Python script to make it easier to generate expected results
from long .asm files that generate simple binary output (e.g. for opcode
testing).

svn path=/trunk/yasm/; revision=2198

15 years agotasm (tweaked nasm) preproc fixes:
Peter Johnson [Fri, 17 Apr 2009 03:25:08 +0000 (03:25 -0000)]
tasm (tweaked nasm) preproc fixes:
 - comments stripped before tokenization caused strings containing ';'
   to generate warnings (unterminated string) and incorrect output.
 - assume directive parsing did not properly handle ';' as end of line

Also add tests for the above.

Reported by: Rugxulo <rugxulo@gmail.com>

svn path=/trunk/yasm/; revision=2197

15 years agotasm parser: Support "not" keyword.
Peter Johnson [Fri, 17 Apr 2009 03:22:25 +0000 (03:22 -0000)]
tasm parser: Support "not" keyword.

Requested by: Rugxulo <rugxulo@gmail.com>

svn path=/trunk/yasm/; revision=2196

15 years agoDefault memory size to "s" for no-suffix FP conversions in GAS syntax.
Peter Johnson [Sun, 29 Mar 2009 23:25:05 +0000 (23:25 -0000)]
Default memory size to "s" for no-suffix FP conversions in GAS syntax.

Reported by: Gregory McGarry <g.mcgarry@ieee.org>

svn path=/trunk/yasm/; revision=2192

15 years agoFix referencing of local label from line that defines nonlocal label.
Peter Johnson [Wed, 25 Mar 2009 03:40:59 +0000 (03:40 -0000)]
Fix referencing of local label from line that defines nonlocal label.

Reported by: Brian Gladman

svn path=/trunk/yasm/; revision=2190

15 years agoUpdate copyright dates.
Peter Johnson [Tue, 24 Mar 2009 06:47:38 +0000 (06:47 -0000)]
Update copyright dates.

svn path=/trunk/yasm/; revision=2188

15 years agoFix #155: Don't crash on missing %endmacro.
Peter Johnson [Tue, 24 Mar 2009 06:33:32 +0000 (06:33 -0000)]
Fix #155: Don't crash on missing %endmacro.

We were crashing because we didn't generate this error until the preproc
module was getting cleaned up, which doesn't happen until after linemap
is cleaned up.  Instead detect and output this error when we reach the end
of preprocessed tokens during the parsing stage.

svn path=/trunk/yasm/; revision=2185

15 years agoRemove vc7 and vc8 build files, as they're no longer being maintained.
Peter Johnson [Tue, 24 Mar 2009 05:04:15 +0000 (05:04 -0000)]
Remove vc7 and vc8 build files, as they're no longer being maintained.
There's a Python script (vc98_swap.py) in the Mkfiles/vc9 directory for
those who want to build with vc8.

svn path=/trunk/yasm/; revision=2184

15 years agoRename tasm to ytasm in Unix builds.
Peter Johnson [Tue, 24 Mar 2009 04:58:46 +0000 (04:58 -0000)]
Rename tasm to ytasm in Unix builds.
We aren't compatible enough to call ourselves the "real" one.

svn path=/trunk/yasm/; revision=2183

15 years agoUpdate code generated for alignment padding for more recent processors.
Peter Johnson [Fri, 20 Mar 2009 07:36:49 +0000 (07:36 -0000)]
Update code generated for alignment padding for more recent processors.
Also match GAS behavior by using different NOP sequences for AMD and Intel.
Different "Long" NOP opcode sequences are used based on the below criteria.

Defaults in 32-bit mode:
 - CPU directive not used: backwards compatible (no long NOP opcodes)
 - CPU directive with Intel CPU >= 686: Intel guidelines, using long NOPs
 - CPU directive with AMD CPU >= K6: AMD guidelines, using long NOPs

Defaults in 64-bit mode:
 - CPU directive not used: Intel guidelines, using long NOPs
 - CPU directive with Intel CPU >= 686: Intel guidelines, using long NOPs
 - CPU directive with AMD CPU >= K6: AMD guidelines, using long NOPs

The above defaults may be overridden with these options to the CPU directive:
 - CPU basicnop: backwards compatible (no long NOP opcodes)
 - CPU intelnop: Intel guidelines, using long NOPs
 - CPU amdnop: AMD guidelines, using long NOPs

Suggested by: Brian Gladman <brg@gladman.plus.com>

svn path=/trunk/yasm/; revision=2181

15 years agoUse arrays instead of strings to store NOP fill.
Peter Johnson [Fri, 20 Mar 2009 05:24:16 +0000 (05:24 -0000)]
Use arrays instead of strings to store NOP fill.

svn path=/trunk/yasm/; revision=2180

15 years agoAdd (but don't enable) AMD K10 alignment padding data
Brian Gladman [Wed, 18 Mar 2009 19:57:37 +0000 (19:57 -0000)]
Add (but don't enable) AMD K10 alignment padding data

svn path=/trunk/yasm/; revision=2179

15 years agoUpdate yasm.rules file for VC++
Brian Gladman [Fri, 6 Mar 2009 09:18:56 +0000 (09:18 -0000)]
Update yasm.rules file for VC++

svn path=/trunk/yasm/; revision=2178

15 years agoRemove renamed tasm.vcproj (as of [2175] it is ytasm.vcproj).
Peter Johnson [Wed, 4 Mar 2009 07:41:59 +0000 (07:41 -0000)]
Remove renamed tasm.vcproj (as of [2175] it is ytasm.vcproj).
Add to distribution files.

svn path=/trunk/yasm/; revision=2177

15 years agoUnbreak snapshots (broken in [2172]).
Peter Johnson [Wed, 4 Mar 2009 07:39:02 +0000 (07:39 -0000)]
Unbreak snapshots (broken in [2172]).

Noticed by: Mark Charney <mark.charney@intel.com>

svn path=/trunk/yasm/; revision=2176

15 years agoTidy up VC++ project names for ytasm
Brian Gladman [Thu, 26 Feb 2009 09:58:33 +0000 (09:58 -0000)]
Tidy up VC++ project names for ytasm

svn path=/trunk/yasm/; revision=2175

15 years agorename tasm for VC++
Brian Gladman [Wed, 25 Feb 2009 18:33:05 +0000 (18:33 -0000)]
rename tasm for VC++

svn path=/trunk/yasm/; revision=2174

15 years agoAdd support for VEX-encoded pclmul*qdq instructions per the latest AVX spec.
Peter Johnson [Mon, 2 Feb 2009 08:20:12 +0000 (08:20 -0000)]
Add support for VEX-encoded pclmul*qdq instructions per the latest AVX spec.
To stay consist with handling of other VEX instructions, also add yasm
extensions to support combining the first two operands for direct translation
from non-VEX to VEX-encoded by simply adding a "v" prefix to the opcode.

Contributed by: Mark Charney, Intel Corporation <Mark.Charney@intel.com>
Yasm extensions by: Peter Johnson

svn path=/trunk/yasm/; revision=2173

15 years agoFix #166: Off-by-one error in raw preproc caused hang on lines longer than
Peter Johnson [Tue, 27 Jan 2009 06:38:14 +0000 (06:38 -0000)]
Fix #166: Off-by-one error in raw preproc caused hang on lines longer than
512 characters.

svn path=/trunk/yasm/; revision=2172

15 years agoAdd file missed in previous commit.
Peter Johnson [Wed, 14 Jan 2009 08:34:22 +0000 (08:34 -0000)]
Add file missed in previous commit.

Contributed by: Mark Charney, Intel Corporation

svn path=/trunk/yasm/; revision=2171

15 years agoUpdate AVX and FMA to latest Intel specification (Dec 2008).
Peter Johnson [Wed, 14 Jan 2009 08:28:13 +0000 (08:28 -0000)]
Update AVX and FMA to latest Intel specification (Dec 2008).
- Removed VPERMIL2 opcodes (VPERMIL2PS, VPERMIL2PD).
- Replaced 4-operand FMA instructions with completely new set of opcodes.

Contributed by: Mark Charney, Intel Corporation <mark.charney@intel.com>

svn path=/trunk/yasm/; revision=2170

15 years agogas parser: Allow segment register prefixes before instructions.
Peter Johnson [Fri, 2 Jan 2009 20:46:57 +0000 (20:46 -0000)]
gas parser: Allow segment register prefixes before instructions.

svn path=/trunk/yasm/; revision=2169

15 years agogas parser: Allow equ's to be named the same as instructions.
Peter Johnson [Fri, 2 Jan 2009 20:32:05 +0000 (20:32 -0000)]
gas parser: Allow equ's to be named the same as instructions.

svn path=/trunk/yasm/; revision=2168

15 years agoRemove long-obsolete "debug" flag from internal parser structures.
Peter Johnson [Fri, 2 Jan 2009 08:36:09 +0000 (08:36 -0000)]
Remove long-obsolete "debug" flag from internal parser structures.

svn path=/trunk/yasm/; revision=2167

15 years agoAllow @ signs in identifiers in win32/win64 only.
Peter Johnson [Fri, 2 Jan 2009 08:33:21 +0000 (08:33 -0000)]
Allow @ signs in identifiers in win32/win64 only.
In ELF, @ is used to indicate special relocations.

Fixes #164.

Reported by: Gregory McGarry on yasm-devel@
Testcase by: Gregory McGarry

We don't allow identifiers to start with @; doing so conflicts with use of
e.g. "@function" in some directives.  Need to look into what GAS does.

svn path=/trunk/yasm/; revision=2166

15 years agoelf-x86id.asm testcase: Don't require NASM preproc.
Peter Johnson [Fri, 2 Jan 2009 08:15:58 +0000 (08:15 -0000)]
elf-x86id.asm testcase: Don't require NASM preproc.

svn path=/trunk/yasm/; revision=2165

15 years agoGas parser: Move instruction/prefix lookup from tokenizer to parser.
Peter Johnson [Fri, 2 Jan 2009 07:27:39 +0000 (07:27 -0000)]
Gas parser: Move instruction/prefix lookup from tokenizer to parser.
Use the single token of lookahead to detect the label case.

This is significantly cleaner as it removes the special-casing of labels
in the tokenizer (so there is just a single identifier rule) and removes
the INSTDIR parser state (as this was only used to prevent instruction
lookup within other locations).

Also, ID and LABEL now provide the string length to the parser.  We needed
to do this for ID due to parse_check_insnprefix() needing the length, so
both were folded in for consistency.

svn path=/trunk/yasm/; revision=2164

16 years agogas-parse.c: Fix double-free on error.
Peter Johnson [Wed, 24 Dec 2008 06:17:54 +0000 (06:17 -0000)]
gas-parse.c: Fix double-free on error.

svn path=/trunk/yasm/; revision=2163

16 years agoLegalize effective addresses such as [eax*2+ebx*2-ebx].
Peter Johnson [Sun, 21 Dec 2008 10:57:36 +0000 (10:57 -0000)]
Legalize effective addresses such as [eax*2+ebx*2-ebx].
These were incorrectly identified as invalid.  The code would see the
ebx*2 term and identify ebx as the index register.  After the ebx was
subtracted, the ebx remained in the index register slot, so eax*2 had
nowhere to go.  The code now recognizes this case and frees the slot
when the -ebx is processed, leaving the index register selection up
to the main part of the code.

svn path=/trunk/yasm/; revision=2162

16 years agoFix Mach-O alignment handling by aligning start and end of every section.
Peter Johnson [Sun, 7 Dec 2008 02:49:22 +0000 (02:49 -0000)]
Fix Mach-O alignment handling by aligning start and end of every section.

Reported and patch by: David DeHaven <dave@sagetv.com>

svn path=/trunk/yasm/; revision=2161

16 years agogen_x86_insn.py: Handle invalid rcstag.
Peter Johnson [Fri, 5 Dec 2008 07:13:33 +0000 (07:13 -0000)]
gen_x86_insn.py: Handle invalid rcstag.
This can happen if somehow this file is retrieved without expanded keywords
(e.g. directly from the webpage, or via something like git-svn).

Reported by: Patrick Walton <pcwalton@cs.ucla.edu>

svn path=/trunk/yasm/; revision=2160

16 years agoDon't assume CPP_PROG is 3 characters long (e.g. "gcc -E" isn't).
Peter Johnson [Tue, 25 Nov 2008 09:16:26 +0000 (09:16 -0000)]
Don't assume CPP_PROG is 3 characters long (e.g. "gcc -E" isn't).

Reported and fix submitted by: Mark Charney

svn path=/trunk/yasm/; revision=2159

16 years agoFix #161: Don't require 0d/0e/0f/0t prefix on floating point numbers.
Peter Johnson [Thu, 30 Oct 2008 07:36:25 +0000 (07:36 -0000)]
Fix #161: Don't require 0d/0e/0f/0t prefix on floating point numbers.
While this is not mentioned in the GAS documentation, GAS doesn't require it.

svn path=/trunk/yasm/; revision=2158

16 years agoFix #157: Use UNIX (not Windows) path functions on cygwin platform.
Peter Johnson [Sun, 19 Oct 2008 07:29:15 +0000 (07:29 -0000)]
Fix #157: Use UNIX (not Windows) path functions on cygwin platform.

svn path=/trunk/yasm/; revision=2157

16 years agoAdd movbe instruction and CPU feature.
Peter Johnson [Thu, 16 Oct 2008 02:44:49 +0000 (02:44 -0000)]
Add movbe instruction and CPU feature.

Noticed by: Mark Charney

svn path=/trunk/yasm/; revision=2156

16 years agoUpdate Makefile.am for vc98_swap.py.
Peter Johnson [Thu, 9 Oct 2008 04:37:12 +0000 (04:37 -0000)]
Update Makefile.am for vc98_swap.py.

svn path=/trunk/yasm/; revision=2152

16 years agoChange to Python for Visual Studio 2008/2005 conversion (vc98_swap.py in place of...
Brian Gladman [Wed, 8 Oct 2008 08:48:18 +0000 (08:48 -0000)]
Change to Python for Visual Studio 2008/2005 conversion (vc98_swap.py in place of vc928.c)

svn path=/trunk/yasm/; revision=2151

16 years agosvn path=/trunk/yasm/; revision=2150
Brian Gladman [Wed, 8 Oct 2008 08:41:55 +0000 (08:41 -0000)]
svn path=/trunk/yasm/; revision=2150

16 years agoupdate Visual Studio 2008 build
Brian Gladman [Wed, 8 Oct 2008 08:22:37 +0000 (08:22 -0000)]
update Visual Studio 2008 build

svn path=/trunk/yasm/; revision=2149

16 years agoRemove directory EXTRA_DIST; it seems to be making distcheck on ctn die.
Peter Johnson [Wed, 8 Oct 2008 07:15:45 +0000 (07:15 -0000)]
Remove directory EXTRA_DIST; it seems to be making distcheck on ctn die.

svn path=/trunk/yasm/; revision=2140

16 years agoUse yasm functions yasm__strcasecmp and nasm_strdup instead of relying on
Peter Johnson [Wed, 8 Oct 2008 05:19:47 +0000 (05:19 -0000)]
Use yasm functions yasm__strcasecmp and nasm_strdup instead of relying on
platform to have them.

Also, instead of using snprintf, preallocate and then use sprintf.  This
also avoids the while() reallocation loop.

Reported by: Brian Gladman

svn path=/trunk/yasm/; revision=2139

16 years agotasm.c: Don't include unistd.h.
Peter Johnson [Wed, 8 Oct 2008 04:58:08 +0000 (04:58 -0000)]
tasm.c: Don't include unistd.h.

svn path=/trunk/yasm/; revision=2138

16 years agoAdd Samuel Thibault to list of contributors.
Peter Johnson [Tue, 7 Oct 2008 06:22:58 +0000 (06:22 -0000)]
Add Samuel Thibault to list of contributors.

svn path=/trunk/yasm/; revision=2137

16 years agotasm frontend: Fix handling of options >2 chars long.
Peter Johnson [Tue, 7 Oct 2008 06:21:06 +0000 (06:21 -0000)]
tasm frontend: Fix handling of options >2 chars long.
Use yasm__strncasecmp instead of manually lowercasing up to two characters.

svn path=/trunk/yasm/; revision=2136

16 years agotasm frontend: Fix crash with plain /l option.
Peter Johnson [Tue, 7 Oct 2008 06:16:57 +0000 (06:16 -0000)]
tasm frontend: Fix crash with plain /l option.

svn path=/trunk/yasm/; revision=2135

16 years agoDon't use tasm_compatible_mode in nasm parser (use local var instead).
Peter Johnson [Tue, 7 Oct 2008 06:02:12 +0000 (06:02 -0000)]
Don't use tasm_compatible_mode in nasm parser (use local var instead).
Fix a few warnings while here.

svn path=/trunk/yasm/; revision=2134

16 years agoFix a number of warnings.
Peter Johnson [Tue, 7 Oct 2008 05:59:29 +0000 (05:59 -0000)]
Fix a number of warnings.

svn path=/trunk/yasm/; revision=2133

16 years agoAdd CMakeLists.txt for tasm frontend.
Peter Johnson [Tue, 7 Oct 2008 05:47:08 +0000 (05:47 -0000)]
Add CMakeLists.txt for tasm frontend.

svn path=/trunk/yasm/; revision=2132

16 years agoUpdate Mkfiles (except for VC) for TASM build.
Peter Johnson [Tue, 7 Oct 2008 05:43:29 +0000 (05:43 -0000)]
Update Mkfiles (except for VC) for TASM build.

svn path=/trunk/yasm/; revision=2131

16 years agoAdd core TASM syntax support.
Peter Johnson [Tue, 7 Oct 2008 05:38:11 +0000 (05:38 -0000)]
Add core TASM syntax support.
Contributed by: Samuel Thibault <samuel.thibault@ens-lyon.org>

It is built on top of the NASM parser and preproc, with the following
notable extensions for TASM syntax:
 - case insensitive symbols and filenames,
 - support for segment and size of labels, which permits to avoid giving
   them on each memory dereference,
 - support for data reservation (i.e. e.g. "var dd ?"),
 - support for multiples (i.e. e.g. "var dd 1 dup 10"),
 - little endian string integer constants,
 - additional expression operators: shl, shr, and, or, low, high,
 - additional offset keyword,
 - additional fword and df,
 - support for doubled quotes within quotes,
 - support for array-like and structure-like notations: t[eax] and
   [var].field,
 - support for tasm directives: macro, rept, irp, locals, proc, struc,
   segment, assume.

Notes:

 - Almost all extensions are only effective when tasm_compatible_mode is
   set, so we should have very reduced possible breakage.

 - Because the "and" keyword can be an expression operator and an
   instruction name, the data pseudo-instructions explicitly switch the
   lexer state to INSTRUCTION state to fix the ambiguity.

 - In gen_x86_insn.py, several instructions (namely lds and lea) now take
   relaxed memory sizes.  The reason is that in the case of tasm, the size
   of the actual pointed data is passed up to there, and thus any type of
   data should be accepted.

With all of this, loadlin can be compiled by yasm with quite reduced
modifications.

A new TASM-like frontend is also included.

svn path=/trunk/yasm/; revision=2130

16 years agoDon't require nasm preproc for some testcases.
Peter Johnson [Tue, 7 Oct 2008 04:34:19 +0000 (04:34 -0000)]
Don't require nasm preproc for some testcases.

svn path=/trunk/yasm/; revision=2129

16 years agoOptimize non-strict push with 66 override to byte size if possible in NASM
Peter Johnson [Sun, 5 Oct 2008 08:31:04 +0000 (08:31 -0000)]
Optimize non-strict push with 66 override to byte size if possible in NASM
syntax.

Previously, the forms of push that did this optimization were disabled in
NASM syntax due to conflicting with the size=BITS case.  Fix this via
reordering to allow these forms to be active in NASM syntax.

svn path=/trunk/yasm/; revision=2127

16 years agoelf64: automatically promote [rel foo wrt ..gotpc] to GOTPCREL relocation.
Peter Johnson [Fri, 3 Oct 2008 08:13:00 +0000 (08:13 -0000)]
elf64: automatically promote [rel foo wrt ..gotpc] to GOTPCREL relocation.
Formerly, [rel foo wrt ..gotpcrel] was required.

svn path=/trunk/yasm/; revision=2126

16 years agoVPBLENDVB doesn't have a 256-bit form.
Peter Johnson [Thu, 2 Oct 2008 07:26:22 +0000 (07:26 -0000)]
VPBLENDVB doesn't have a 256-bit form.

Reported by: Mark Charney

svn path=/trunk/yasm/; revision=2125

16 years agogen_x86_insn.py: Warn if any groups are unused (due to a typo, for example).
Peter Johnson [Thu, 2 Oct 2008 02:15:56 +0000 (02:15 -0000)]
gen_x86_insn.py: Warn if any groups are unused (due to a typo, for example).

svn path=/trunk/yasm/; revision=2124

16 years agoFix expr simplification bug.
Peter Johnson [Tue, 30 Sep 2008 03:56:37 +0000 (03:56 -0000)]
Fix expr simplification bug.
If an expression of the form INT+(a+b)+INT was simplified, constant folding
would combine the ints, but then the level stage (to make INT+a+b) would
start reading from the second (deleted due to folding) INT rather than the
new end of the expression.

Reported by: Samuel Thibault (on yasm-devel@)

svn path=/trunk/yasm/; revision=2123

16 years agoNasm lexer: Don't read past end of passed string.
Peter Johnson [Tue, 30 Sep 2008 02:52:56 +0000 (02:52 -0000)]
Nasm lexer: Don't read past end of passed string.
This was because the re2c-generated code always reads the next character
prior to user code being executed.  Instead, check for the \0 marker prior
to entering the re2c code.  Retain the re2c check just for sanity.

Reported by: Samuel Thibault (on yasm-devel@)

svn path=/trunk/yasm/; revision=2122

16 years agoMark gen_x86_insn.py outputs as generated, to discourage hand-editing.
Peter Johnson [Wed, 10 Sep 2008 02:42:45 +0000 (02:42 -0000)]
Mark gen_x86_insn.py outputs as generated, to discourage hand-editing.

Suggested by: Mark Charney

svn path=/trunk/yasm/; revision=2121

16 years agoFix #153: Name the absolute symbol.
Peter Johnson [Thu, 4 Sep 2008 04:45:30 +0000 (04:45 -0000)]
Fix #153: Name the absolute symbol.
While we're here, ensure it's always output regardless of all_syms setting.

svn path=/trunk/yasm/; revision=2120

16 years agoIncrease size of buffer now that mnenomics can be 16 characters.
Peter Johnson [Wed, 13 Aug 2008 04:05:19 +0000 (04:05 -0000)]
Increase size of buffer now that mnenomics can be 16 characters.

svn path=/trunk/yasm/; revision=2119

16 years agoAdd support for newly specified AVX/AES instructions:
Peter Johnson [Wed, 13 Aug 2008 03:43:47 +0000 (03:43 -0000)]
Add support for newly specified AVX/AES instructions:
- vaes*
- 256b vmovnt{ps,pd,dq}

Reported by: Mark.Charney@intel.com

svn path=/trunk/yasm/; revision=2118

16 years agoFix bug in expr_level_op(). Discovered when adding on-the-fly expr leveling.
Peter Johnson [Fri, 18 Jul 2008 05:52:01 +0000 (05:52 -0000)]
Fix bug in expr_level_op().  Discovered when adding on-the-fly expr leveling.

svn path=/trunk/yasm/; revision=2117

16 years agoActually implement yasm__abspath() according to its documentation.
Peter Johnson [Tue, 15 Jul 2008 05:49:29 +0000 (05:49 -0000)]
Actually implement yasm__abspath() according to its documentation.
Formerly, it would not correctly handle absolute paths.  Now it uses
yasm__combpath() to do absolute-path aware path combination.
As a benefit, it no longer needs to be OS-specific.

Reported by: Shmuel Baron <shmulik@gmail.com>

svn path=/trunk/yasm/; revision=2116

16 years agoFix extraneous warnings and update testcases for [2114] changes.
Peter Johnson [Tue, 8 Jul 2008 06:36:44 +0000 (06:36 -0000)]
Fix extraneous warnings and update testcases for [2114] changes.

svn path=/trunk/yasm/; revision=2115

16 years agoFix #148: Don't clear elf section flags in GAS if it's a standard section and
Peter Johnson [Tue, 8 Jul 2008 06:28:37 +0000 (06:28 -0000)]
Fix #148: Don't clear elf section flags in GAS if it's a standard section and
no GAS flags were provided.

svn path=/trunk/yasm/; revision=2114

16 years agox86_reg_print(): Add missing commas for correct register name lookup.
Peter Johnson [Mon, 7 Jul 2008 06:17:33 +0000 (06:17 -0000)]
x86_reg_print(): Add missing commas for correct register name lookup.

svn path=/trunk/yasm/; revision=2113

16 years agoyasm_symrec_get_global_name(): Document object parameter.
Peter Johnson [Sun, 6 Jul 2008 22:30:07 +0000 (22:30 -0000)]
yasm_symrec_get_global_name(): Document object parameter.

svn path=/trunk/yasm/; revision=2112

16 years agoGenerated files listed in SOURCES (rather than included by other files)
Peter Johnson [Sun, 6 Jul 2008 22:26:49 +0000 (22:26 -0000)]
Generated files listed in SOURCES (rather than included by other files)
should not be listed in BUILT_SOURCES but rather have nodist_ prepended.
They still need to be separately listed as CLEANFILES as they're built
at make time.

Reported by: David Harvey <dmharvey@math.harvard.edu>

svn path=/trunk/yasm/; revision=2111

16 years agoBin map file: Fix incorrect address printing for symbols.
Peter Johnson [Thu, 3 Jul 2008 04:19:12 +0000 (04:19 -0000)]
Bin map file: Fix incorrect address printing for symbols.
We were printing the previous bytecode's start rather than the label's
bytecode.  Use yasm_bc_next_offset() to get the correct offset.

svn path=/trunk/yasm/; revision=2110

16 years agoFix #132: Add --prefix and --suffix (aka --postfix) options.
Peter Johnson [Sun, 8 Jun 2008 09:06:05 +0000 (09:06 -0000)]
Fix #132: Add --prefix and --suffix (aka --postfix) options.
These allow arbitrary prefixes and/or suffixes to be added to
externally-visible (GLOBAL, EXTERN, or COMMON) symbol names.

svn path=/trunk/yasm/; revision=2109

16 years agoFix #141: Add macho64 PIC support.
Peter Johnson [Thu, 5 Jun 2008 08:48:21 +0000 (08:48 -0000)]
Fix #141: Add macho64 PIC support.
The way PIC relocations are generated for macho64 requires a bit of a hack
to detect MOV opcodes and generate GOT_LOAD relocs.
GAS contains a similar hack.

svn path=/trunk/yasm/; revision=2108

16 years agoQuiet a warning about casting from a data to function pointer.
Peter Johnson [Sun, 25 May 2008 17:02:24 +0000 (17:02 -0000)]
Quiet a warning about casting from a data to function pointer.
This is required to get a function pointer from dlsym().

svn path=/trunk/yasm/; revision=2107

16 years agoUpdate plugin README files for Windows.
Peter Johnson [Sat, 24 May 2008 19:00:48 +0000 (19:00 -0000)]
Update plugin README files for Windows.

svn path=/trunk/yasm/; revision=2106

16 years agoError out if Python not found.
Peter Johnson [Sat, 24 May 2008 18:50:32 +0000 (18:50 -0000)]
Error out if Python not found.

svn path=/trunk/yasm/; revision=2105

16 years agoFix x86 plugin build on Windows.
Peter Johnson [Sat, 24 May 2008 18:49:59 +0000 (18:49 -0000)]
Fix x86 plugin build on Windows.

svn path=/trunk/yasm/; revision=2104

16 years agoClean up plugins CMakeLists a bit.
Peter Johnson [Sat, 24 May 2008 18:32:39 +0000 (18:32 -0000)]
Clean up plugins CMakeLists a bit.
Be more clever about finding the yasm executable on Windows.

svn path=/trunk/yasm/; revision=2103