]> granicus.if.org Git - yasm/log
yasm
19 years agoEnhance builtin bytecode_data to support embedded NULs in character strings.
Peter Johnson [Wed, 26 Oct 2005 03:22:44 +0000 (03:22 -0000)]
Enhance builtin bytecode_data to support embedded NULs in character strings.
While NASM doesn't allow this, GAS does.

While we're here, greatly clean up GAS data bytecode creation by no longer
building intermediate valparam list.

* bytecode.h (yasm_dv_create_string): Add length parameter.
(yasm_bc_create_data): Add append_zero parameter for new ability to append
a single ero byte after each data value.  This is used by the GAS .asciz
directive.
* bytecode.c (bytecode_data, ...): Implement the above.

* gas-bison.y (gas_define_strings, gas_define_data)
(gas_define_leb128): Remove; replace in usage with direct calls to bytecode
functions.  Add str, dataval, and datavalhead to parser union.  Add new
dirvals, which has valparams type, and change strvals and datavals to
datavals type.
* gas-token.re: Use new str type where STRING token is generated.

* nasm-bison.y: Add str type to union, and use for STRING token.
* nasm-token.re: Use new str type where STRING token is generated.

* coff-objfmt.c (win32_objfmt_directive): Adjust for updates to
bytecode_data.

* strzero.asm: Simple test for NUL in GAS string.

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

19 years agoSupport standalone, segment, and REX prefixes in GAS mode.
Peter Johnson [Mon, 24 Oct 2005 04:48:37 +0000 (04:48 -0000)]
Support standalone, segment, and REX prefixes in GAS mode.
* bytecode.c (yasm_bc_create_empty_insn): New function to create empty
instruction that can have prefixes applied to it, for standalone prefixes.
* bytecode.h (yasm_bc_create_empty_insn): Prototype.

* x86arch.h (x86_parse_insn_prefix): Add prefix types for segment registers
(X86_SEGREG) and REX bytes (X86_REX).
(yasm_x86__bc_apply_prefixes): Adjust prototype to include REX pointer (as
this isn't in the x86_common structure).
* x86bc.c (yasm_x86__bc_apply_prefixes): Support the new prefix types.

* x86id.re (x86_finalize_*): Use const x86_insn_info; all insn_infos are
const so these pointers should be as well.
(yasm_x86__finalize_insn): Handle empty instruction case by pointing to new
empty_insn info.
(empty_insn): New.
(yasm_x86__parse_check_prefix): Support GAS prefix naming, and REX and jump
hint prefixes (only in GAS mode at the moment).

* gas-bison.y: Add rules to handle segreg prefixes as well as standalone
prefixes (both segreg and others).

* gas-prefix.asm: New testcase that also hits the warning cases in
yasm_x86__bc_apply_prefixes X86_REX case.

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

19 years ago* gas-bison.y, gas-token.re: Support multiple instructions on a single line
Peter Johnson [Sun, 23 Oct 2005 06:01:44 +0000 (06:01 -0000)]
* gas-bison.y, gas-token.re: Support multiple instructions on a single line
with ';' separator.  List output with this is currently broken however.

* gas-semi.asm: New test for this.

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

19 years ago* gas-token.re (strbuf_append): Allocate before store (otherwise crash is
Peter Johnson [Wed, 19 Oct 2005 07:57:32 +0000 (07:57 -0000)]
* gas-token.re (strbuf_append): Allocate before store (otherwise crash is
possible).

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

19 years ago* gas-bison.y: Add support for .value alias for .2byte (GAS-x86/amd64).
Peter Johnson [Wed, 19 Oct 2005 07:44:59 +0000 (07:44 -0000)]
* gas-bison.y: Add support for .value alias for .2byte (GAS-x86/amd64).
This is generated by GCC in debug sections.
* gas-token.re: Likewise.

* gas-bison.y: Add support for 4th parameter on .section directive, for use
with M (SHF_MERGE) ELF section flag.
* elf-objfmt.c: Add support for M, S (SHF_STRINGS), G (SHF_GROUP), and T
(SHF_TLS) section flags.
* elf.h: Declare additional SHF_* flags.

With these changes, debug information generated by GCC in GAS format is
passed through successfully.  Should just need line number generation to
have full debugging for ELF-DWARF2 coming from GCC.

Only remaining thing to handle that I see at the moment for full GCC output
support is multiple instructions on one line (separated by semicolons).

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

19 years ago* elf-x86-amd64.c (elf_x86_amd64_write_reloc): Fix a crash with ELF: when an
Peter Johnson [Wed, 19 Oct 2005 07:18:20 +0000 (07:18 -0000)]
* elf-x86-amd64.c (elf_x86_amd64_write_reloc): Fix a crash with ELF: when an
invalid relocation is generated, this still gets called but with a NULL
addend.

* expr.c (expr_xform_bc_dist): Check return value of yasm_symrec_get_label()
to avoid crash.

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

19 years agoAdd support for LEB128 encoded integers (both signed and unsigned). This
Peter Johnson [Mon, 17 Oct 2005 07:43:16 +0000 (07:43 -0000)]
Add support for LEB128 encoded integers (both signed and unsigned).  This
is needed for the GAS .uleb128 and .sleb128 directives.

* intnum.c (yasm_intnum_sign): New signedness discovery function.
* intnum.h (yasm_intnum_sign): Prototype.

* intnum.c (yasm_intnum_get_leb128, yasm_intnum_size_leb128): New.
* intnum.h (yasm_intnum_get_leb128, yasm_intnum_size_leb128): Prototype.
* leb128_test.c: New test for intnum-level LEB128 functions.

* bytecode.c (bytecode_leb128): New bytecode and supporting functions.
(yasm_bc_create_leb128): New creation function.
* bytecode.h (yasm_bc_create_leb128): Prototype.

* gas-token.re: Recognize .uleb128 and .sleb128.
* gas-bison.y: Ditto.
(gas_define_leb128): New.
* leb128.asm: New test for GAS .uleb128 and .sleb128 directives.

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

19 years ago* gas-bison.y, gas-token.re: Implement .weak directive.
Peter Johnson [Sun, 16 Oct 2005 08:48:24 +0000 (08:48 -0000)]
* gas-bison.y, gas-token.re: Implement .weak directive.

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

19 years ago* gas-bison.y: Implement .type and .size directives.
Peter Johnson [Sun, 16 Oct 2005 08:45:11 +0000 (08:45 -0000)]
* gas-bison.y: Implement .type and .size directives.
* elf-objfmt.c (elf_objfmt_directive): Implement type/size/weak for ELF output.
* elf.h (elf_sym_set_type, elf_sym_set_size): Supporting functions.
* elf.c (elf_sym_set_type, elf_sym_set_size): Implement.

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

19 years ago* Makefile.am: Actually include Mkfiles/dj/_stdint.h in the distribution.
Peter Johnson [Sat, 15 Oct 2005 19:40:15 +0000 (19:40 -0000)]
* Makefile.am: Actually include Mkfiles/dj/_stdint.h in the distribution.

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

19 years ago* Makefile.flat, Makefile.dj: Further enhance flat/DJGPP Makefiles to build
Peter Johnson [Sat, 15 Oct 2005 04:39:32 +0000 (04:39 -0000)]
* Makefile.flat, Makefile.dj: Further enhance flat/DJGPP Makefiles to build
re2c.  Now the only thing not built with these is the Bison parsers.

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

19 years ago* x86id.re: Fix basic uses of pop suffixes for GAS mode.
Peter Johnson [Sat, 15 Oct 2005 03:18:47 +0000 (03:18 -0000)]
* x86id.re: Fix basic uses of pop suffixes for GAS mode.

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

19 years agoResync alternate build Makefiles with tree changes.
Peter Johnson [Fri, 14 Oct 2005 03:21:54 +0000 (03:21 -0000)]
Resync alternate build Makefiles with tree changes.

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

19 years ago* x86bc.c (x86_bc_insn_resolve): Fix loss of precision on yasm_intnum_get_int
Peter Johnson [Thu, 13 Oct 2005 07:17:15 +0000 (07:17 -0000)]
* x86bc.c (x86_bc_insn_resolve): Fix loss of precision on yasm_intnum_get_int
return value on 64-bit machines that could cause incorrect optimization.

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

19 years ago* x86id.re (DEF_INSN_DATA, yasm_x86__parse_check_insn): Perform a few minor
Peter Johnson [Mon, 10 Oct 2005 05:55:21 +0000 (05:55 -0000)]
* x86id.re (DEF_INSN_DATA, yasm_x86__parse_check_insn): Perform a few minor
optimizations to reduce yasm code size.

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

19 years ago* nasm-pp.c, x86id.re: Remove a couple of unused variables.
Peter Johnson [Mon, 10 Oct 2005 05:13:47 +0000 (05:13 -0000)]
* nasm-pp.c, x86id.re: Remove a couple of unused variables.

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

19 years agore2c: Unbreak distcheck.
Peter Johnson [Mon, 10 Oct 2005 05:11:46 +0000 (05:11 -0000)]
re2c: Unbreak distcheck.

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

19 years agoUpdate all re2c input files to use case-insensitive strings. The code
Peter Johnson [Mon, 10 Oct 2005 03:47:58 +0000 (03:47 -0000)]
Update all re2c input files to use case-insensitive strings.  The code
generated for this is identical to the old A=[aA] way of doing this, but
this way is easier to read.

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

19 years agore2c: Finish update to latest version.
Peter Johnson [Sun, 9 Oct 2005 21:56:14 +0000 (21:56 -0000)]
re2c: Finish update to latest version.

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

19 years agore2c: Fix yyaccept warnings.
Peter Johnson [Sun, 9 Oct 2005 20:29:00 +0000 (20:29 -0000)]
re2c: Fix yyaccept warnings.

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

19 years agoContinue re2c updates. This one gets rid of the unused label warnings.
Peter Johnson [Sun, 9 Oct 2005 07:11:45 +0000 (07:11 -0000)]
Continue re2c updates.  This one gets rid of the unused label warnings.
Going ahead and removing the cleanup script; a later commit will get rid
of the remaining unused variable warnings that the cleanup script took care
of as well.

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

19 years ago* cleanup.c: Add strdup implementation as strdup is nonstandard C.
Peter Johnson [Sun, 9 Oct 2005 06:10:03 +0000 (06:10 -0000)]
* cleanup.c: Add strdup implementation as strdup is nonstandard C.

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

19 years agoUpdate re2c to May 12, 2004 version. This adds an output file option, so
Peter Johnson [Sun, 9 Oct 2005 06:08:02 +0000 (06:08 -0000)]
Update re2c to May 12, 2004 version.  This adds an output file option, so
also adjust cleanup program to take input/output file name, and update
Makefiles to use it in this fashion.

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

19 years ago* re2c: Start syncing back up to re2c HEAD. This gets us up to 2004-03-29.
Peter Johnson [Sun, 9 Oct 2005 00:50:31 +0000 (00:50 -0000)]
* re2c: Start syncing back up to re2c HEAD. This gets us up to 2004-03-29.

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

19 years ago* x86arch.h (x86_insn): Combine shift_op, signext_imm8_op, shortmov_op, and
Peter Johnson [Fri, 7 Oct 2005 05:15:52 +0000 (05:15 -0000)]
* x86arch.h (x86_insn): Combine shift_op, signext_imm8_op, shortmov_op, and
address16_op flags into a single postop enum.
* x86id.re (yasm_x86__finalie_insn): Set new enum rather than flags.
* x86bc.c: Use new combined enum.

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

19 years ago* x86id.re: Add support for VIA PadLock instructions.
Peter Johnson [Fri, 7 Oct 2005 03:35:33 +0000 (03:35 -0000)]
* x86id.re: Add support for VIA PadLock instructions.
* padlock.asm: New testcase for these instructions.

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

19 years ago* x86id.re: Add support for AMD Pacifica (Secure Virtual Machine) insns.
Peter Johnson [Fri, 7 Oct 2005 02:55:32 +0000 (02:55 -0000)]
* x86id.re: Add support for AMD Pacifica (Secure Virtual Machine) insns.
* svm.asm: New test for AMD Pacifica instructions.

* x86id.re: Support vmread and vmwrite GAS syntax.

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

19 years ago* x86id.re: Implement string, protection, SSE2 instructions for GAS mode.
Peter Johnson [Wed, 5 Oct 2005 06:57:37 +0000 (06:57 -0000)]
* x86id.re: Implement string, protection, SSE2 instructions for GAS mode.
While we're here, add 64-bit register versions of SSE2 instructions movmskps,
pextrw, pinsrw, and pmovmskb that are documented by Intel but not AMD.

Add test for above.

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

19 years ago* bytecode.c (bc_align_tobytes): Handle cases where some code fills don't
Peter Johnson [Mon, 3 Oct 2005 06:49:15 +0000 (06:49 -0000)]
* bytecode.c (bc_align_tobytes): Handle cases where some code fills don't
exist (this happens in LC3b).
* lc3barch.c (lc3b_get_fill): NOP pattern is actually all 0's.

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

19 years agoImplement align and org bytecodes. While we're here, implement .zero
Peter Johnson [Mon, 3 Oct 2005 05:52:04 +0000 (05:52 -0000)]
Implement align and org bytecodes.  While we're here, implement .zero
directive for GAS (it's generated by GCC).

* bytecode.c (bytecode_align): Update for full align implementation.
(yasm_bc_create_align): Likewise.
(bc_align_finalize): New.
(bc_align_resolve, bc_align_tobytes): Real implementation.
* bytecode.h (yasm_bc_create_align): Update to match.
* arch.h (get_fill, yasm_arch_get_fill): New, to get NOP fill patterns.
* x86arch.c (x86_get_fill): Implement.
* lc3barch.c (lc3b_get_fill): Likewise (probably buggy, there's no real NOP).

* bytecode.c (bytecode_org): New org bytecode.
(bc_org_callback, bc_org_destroy, bc_org_print, bc_org_resolve)
(bc_org_tobytes, yasm_bc_create_org): Implement.

* gas-parser.h (yasm_parser_gas): Add code_section flag to indicate when to
use code fill vs. data fill.
* gas-parser.c: Initialize flag.
* gas-bison.y: Update flag in various places.  Generate org bytecode.
Call gas_parser_align to generate align bytecode.
(gas_parser_align): Generate align bytecode.

* gas-bison.y: Implement .zero directive.
* gas-token.re: Likewise.

* align32, align64: New tests to test align directive NOP generation.

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

19 years ago* x86id.re (push_insn): Turn on signed 8-bit optimization for GAS mode.
Peter Johnson [Mon, 3 Oct 2005 00:12:08 +0000 (00:12 -0000)]
* x86id.re (push_insn): Turn on signed 8-bit optimization for GAS mode.
Don't do this yet for NASM mode; this could be done e.g. through use of
the strict modifier.

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

19 years ago* x86id.re (push_insn, incdec_insn): Fix for GAS parser.
Peter Johnson [Sun, 2 Oct 2005 20:38:29 +0000 (20:38 -0000)]
* x86id.re (push_insn, incdec_insn): Fix for GAS parser.

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

19 years ago* x86id.re (test_insn): Add GAS suffix flags.
Peter Johnson [Sun, 2 Oct 2005 02:31:26 +0000 (02:31 -0000)]
* x86id.re (test_insn): Add GAS suffix flags.

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

19 years ago* x86bc.c (yasm_x86__ea_create_expr, yasm_x86__ea_create_imm): Initialize
Peter Johnson [Sun, 2 Oct 2005 02:30:08 +0000 (02:30 -0000)]
* x86bc.c (yasm_x86__ea_create_expr, yasm_x86__ea_create_imm): Initialize
ea.strong to 0.

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

19 years agoTurn on export macro for win64 in addition to win32.
Peter Johnson [Sat, 1 Oct 2005 16:35:27 +0000 (16:35 -0000)]
Turn on export macro for win64 in addition to win32.

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

19 years agoRevert [1251]. From further investigation, ML64's generation of REL32 in
Peter Johnson [Sat, 1 Oct 2005 05:47:54 +0000 (05:47 -0000)]
Revert [1251].  From further investigation, ML64's generation of REL32 in
these cases seems to be a bug.  If you get a linker error about ADDR32, it
means you aren't using RIP-relative instructions.  Note this means to access
an array you need to do:
  lea rax, [var wrt rip] ; generates RIP-relative insn and REL32 reloc
  mov rcx, [rax+rbx]     ; rbx is index
and not:
  mov rcx, [var+rbx]     ; generates ADDR32 reloc
At least when trying to build a DLL (the ADDR32 reloc fails the DLL link).
When building statically, ADDR32 should work okay and thus the latter form
can be used.

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

19 years ago* coff-objfmt.c (coff_objfmt_output_expr): Try to match the new ML64's
Peter Johnson [Fri, 30 Sep 2005 04:03:59 +0000 (04:03 -0000)]
* coff-objfmt.c (coff_objfmt_output_expr): Try to match the new ML64's
output better by generating relocs directly to the symbol being relocated
rather than to the section.  Use a new coff_objfmt->win64 flag to
conditionalize this rather than just COFF_MACHINE_AMD64.
(coff_objfmt): New win64 flag.
(coff_objfmt_create, win32_objfmt_create, win64_objfmt_create): Initialize
flag.
(coff_objfmt_output): Turn on outputting all symbols in win64 mode so they
can be referenced by relocs.  This isn't quite correct: we should only turn
on the symbols that are actually used by relocs, but having them there
doesn't hurt linking; it only exposes all of the internal symbol names.

With these changes, yasm output matches the new ML64 output except for a
very few cases:
 - ML64 generates REL32 relocs when referencing objects in the same .text
section.  I cannot see how this is necessary because call instructions
don't generate REL32 relocs!  I currently do not plan on fixing this unless
it causes a problem.
 - ML64 generates ADDR32 relocs instead of REL32 relocs when loading a
32-bit register with the address of an object.  I will probably try to fix
this.

Extended test case for this a bit.

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

19 years ago* x86id.re: Unbreak movq for NASM parser. I accidentally overrode it when
Peter Johnson [Thu, 29 Sep 2005 05:13:26 +0000 (05:13 -0000)]
* x86id.re: Unbreak movq for NASM parser.  I accidentally overrode it when
defining the mov forms for GAS.  While I'm here, fix movq so it also
supports the 64-bit move registers (per Intel's spec, AMD has it under movd)
and copy the MMX/SSE2 versions of movq into mov so they're visible to the
GAS parser (and only the GAS parser).

Add a whole bunch of testcases to test movd and movq in both 32 bit and 64
bit modes for both GAS and NASM parsers.

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

19 years ago* Fix win64/tests/Makefile.inc that was causing distcheck breakage.
Peter Johnson [Thu, 29 Sep 2005 05:10:29 +0000 (05:10 -0000)]
* Fix win64/tests/Makefile.inc that was causing distcheck breakage.

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

19 years agoUpdate VC build files for GAS parser.
Peter Johnson [Wed, 28 Sep 2005 06:07:24 +0000 (06:07 -0000)]
Update VC build files for GAS parser.

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

19 years ago- Add win64 as an alias for -f win32 -m amd64.
Peter Johnson [Wed, 28 Sep 2005 05:50:51 +0000 (05:50 -0000)]
- Add win64 as an alias for -f win32 -m amd64.
- Add elf32 as an alias for -f elf.
- Add elf64 as an alias for -f elf -m amd64.
Note the old command lines still work.

Add a testcase for win64 (includes masm -> yasm mapping, look at
win64-dataref.masm and win64-dataref.asm files respectively).

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

19 years ago* coff-objfmt.c (coff_objfmt_output_expr): Change relocations output for
Peter Johnson [Wed, 28 Sep 2005 03:23:24 +0000 (03:23 -0000)]
* coff-objfmt.c (coff_objfmt_output_expr): Change relocations output for
instructions in Win64 to always be REL32 regardless of whether they're
RIP relative or not.  I don't understand this behavior, but it matches how
ML64 generates relocs and unbreaks linking.  The handling of this case must
be handled at a higher level somehow (either at the linker or the compiler).
Note that this REL32 generation behavior of ML64 happens only with the
latest version (VC8); the 2003 SP1 SDK ML64 doesn't do this.

* bytecode.c (yasm_bc_is_data): New supporting function.
* bytecode.h (yasm_bc_is_data): Prototype.

Testcase pending.

Reported by and much debugging support contributed by:
  Brian Gladman <brg@gladman.plus.com>. Thanks!

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

19 years ago* gas-bison.y: Change instructions and prefixes back into identifiers if
Peter Johnson [Tue, 27 Sep 2005 07:16:17 +0000 (07:16 -0000)]
* gas-bison.y: Change instructions and prefixes back into identifiers if
used as an identifier.
* varinsn.*: Test for this.

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

19 years agoSplit arch module parse_check_id into parse_check_reg, parse_check_reggroup,
Peter Johnson [Tue, 27 Sep 2005 07:07:07 +0000 (07:07 -0000)]
Split arch module parse_check_id into parse_check_reg, parse_check_reggroup,
parse_check_segreg, parse_check_insn, parse_check_prefix, and
parse_check_targetmod.  This will allow for future improvements to
identifier handling in the various parsers.

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

19 years ago* gas-bison.y: Allow .data, .text, and .bss to be used in expressions (they
Peter Johnson [Tue, 27 Sep 2005 03:46:34 +0000 (03:46 -0000)]
* gas-bison.y: Allow .data, .text, and .bss to be used in expressions (they
come through as unique directive tokens, not as DIR_ID).
* dataref-imm.*: Test for this.

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

19 years ago* x86id.re (DEF_INSN_DATA): OR in data[3] rather than setting it directly.
Peter Johnson [Mon, 26 Sep 2005 07:52:25 +0000 (07:52 -0000)]
* x86id.re (DEF_INSN_DATA): OR in data[3] rather than setting it directly.
(yasm_x86__finalize_insn): Ignore special suffix value 0x80 when matching
in info, but use strict matching.  This unbreaks jmp/call broken in previous
commit.
(yasm_x86__parse_check_insn): Initialize data[3] and for FLDT and FSTPT, set
special suffix value 0x80.

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

19 years ago* x86id.re: Implement GAS handling for floating point, some extensions,
Peter Johnson [Mon, 26 Sep 2005 07:06:27 +0000 (07:06 -0000)]
* x86id.re: Implement GAS handling for floating point, some extensions,
interrupts, conditional movs/sets, and a few other minor things.  What's
left: string insns, loop insns, other jmp/call forms, protection control,
SSE/SSE2, and odds and ends (like prefixes-as-instructions).

Add an incomplete FP testcase.

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

19 years ago* x86expr.c (yasm_x86__expr_checkea): Add address16_op parameter to avoid
Peter Johnson [Mon, 26 Sep 2005 04:17:09 +0000 (04:17 -0000)]
* x86expr.c (yasm_x86__expr_checkea): Add address16_op parameter to avoid
errors when using enter in 64-bit mode.
* x86arch.h (yasm_x86__expr_checkea): Update prototype.
* x86bc.c (x86_bc_insn_resolve, x86_bc_insn_tobytes): Pass flag to above.

* x86id.re: Implement mul, imul, div, idiv, enter, leave for GAS mode.
Add tests for above.

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

19 years ago* x86id.re (yasm_x86__parse_check_insn): Implement GAS versions of pushf,
Peter Johnson [Mon, 26 Sep 2005 00:43:28 +0000 (00:43 -0000)]
* x86id.re (yasm_x86__parse_check_insn): Implement GAS versions of pushf,
popf, and conversion instructions (cbw, etc).

Add test case for conversion instructions.

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

19 years ago* x86id.re (yasm_x86__parse_check_insn): Enable lahf/sahf for 64-bit mode,
Peter Johnson [Mon, 26 Sep 2005 00:07:33 +0000 (00:07 -0000)]
* x86id.re (yasm_x86__parse_check_insn): Enable lahf/sahf for 64-bit mode,
as these are supported on newer processor steppings.

Add testcase for lahf/sahf in all BITS modes.

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

19 years ago* x86id.re: For GAS, implement movsx/movzx, pushal, popal, xchg, in, out,
Peter Johnson [Mon, 26 Sep 2005 00:03:02 +0000 (00:03 -0000)]
* x86id.re: For GAS, implement movsx/movzx, pushal, popal, xchg, in, out,
and l*s.

Add tests for in/out and movsx/movzx in GAS mode.

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

19 years agoMove gas_amd64_test.sh to x86_gas64_test.sh to match path.
Peter Johnson [Sun, 25 Sep 2005 20:23:40 +0000 (20:23 -0000)]
Move gas_amd64_test.sh to x86_gas64_test.sh to match path.

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

19 years agoMove parsers/gas/tests/amd64 to arch/x86/tests/gas64, as the tests going
Peter Johnson [Sun, 25 Sep 2005 20:19:05 +0000 (20:19 -0000)]
Move parsers/gas/tests/amd64 to arch/x86/tests/gas64, as the tests going
here are really entirely implemented in the x86 arch.

After this commit, gas_amd64_test.sh needs to be renamed.

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

19 years agoPreliminary GAS parser. Only a few instructions are supported at present.
Peter Johnson [Sun, 25 Sep 2005 04:25:26 +0000 (04:25 -0000)]
Preliminary GAS parser.  Only a few instructions are supported at present.
This work is being done under contract with a company that has requested
to remain unnamed at the present time.

* bc-int.h (yasm_effaddr): Add strong flag to indicate if the effective
address is definitely an effective address; GAS does not use [] to designate
effective addresses so it's otherwise impossible to tell the difference
between "expr(,1)" and just "expr" (important for the relative jump
instructions).
* bytecode.h (yasm_ea_set_strong): New function to set the strong flag.
* bytecode.c (yasm_ea_set_strong): Implementation.
* x86bc.c (yasm_x86__ea_create_reg): Initialize strong flag.

* arch.h (yasm_insn_operand): Add deref flag to indicate use of "*foo" in
GAS syntax.
* arch.c (yasm_operand_create_reg, yasm_operand_create_segreg)
(yasm_operand_create_mem, yasm_operand_create_imm): Set deref flag to 0.

* gas: GAS syntax lexer and parser.  Not all directives are implemented yet
(some will require additional core bytecodes).

* elf-objfmt.c (elf_objfmt_section_switch): Add support for GAS-style
section flags.

* x86arch.h (yasm_arch_x86): Add parser setting.
* x86arch.c (x86_create): Check for gas parser and initialize setting.

* x86bc.c (yasm_x86__ea_create_expr): Transform val+RIP to val wrt RIP when
using the GAS parser (this is how GAS interprets "expr(%rip)").

* x86id.re: Too many changes to enumerate in detail.  Add new modifiers for
GAS suffixes.  Start using them in a couple instructions.  Split check_id
into subfunctions (still one entry point at present).
(yasm_x86__finalize_insn): Support new modifiers, reverse operands, derefs.

* yasm.c (main): Change all undef to extern when using GAS parser (this is
default GAS behavior).

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

19 years ago* arch.h (yasm_arch_reggroup_get_reg): Add macro implementation.
Peter Johnson [Sun, 25 Sep 2005 03:47:13 +0000 (03:47 -0000)]
* arch.h (yasm_arch_reggroup_get_reg): Add macro implementation.

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

19 years ago* genmodule.c (main): Make sure len is initialized to 0.
Peter Johnson [Sun, 25 Sep 2005 03:35:49 +0000 (03:35 -0000)]
* genmodule.c (main): Make sure len is initialized to 0.

* genmodule.vcproj: Ensure FILTERMODE is defined for Debug configuration.

Patch by: Masaru Tsuchiyama <tsuchiyama@asahi-net.email.ne.jp>

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

19 years ago* basic-optimizer.c (basic_optimize_bytecode_2): Fix check of
Peter Johnson [Sun, 25 Sep 2005 03:27:05 +0000 (03:27 -0000)]
* basic-optimizer.c (basic_optimize_bytecode_2): Fix check of
yasm_bc_resolve() return value (it's a flag, not a signed integer).

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

19 years ago* bytecode.h (yasm_dv_create_float): Remove (no implementation exists or is
Peter Johnson [Sun, 25 Sep 2005 03:23:54 +0000 (03:23 -0000)]
* bytecode.h (yasm_dv_create_float): Remove (no implementation exists or is
planned).

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

19 years ago* arch.h (yasm_arch_check_id_retval): Add YASM_ARCH_CHECK_ID_REGGROUP to
Peter Johnson [Sun, 25 Sep 2005 03:20:54 +0000 (03:20 -0000)]
* arch.h (yasm_arch_check_id_retval): Add YASM_ARCH_CHECK_ID_REGGROUP to
represent a register group (e.g. indexed registers).
(yasm_arch_reggroup_get_reg): New function to get a specific register from
a register group and index.
(yasm_arch_module): Add module version of yasm_arch_reggroup_get_reg().

* lc3barch.c (lc3b_reggroup_get_reg): Implement.
(yasm_lc3b_LTX_arch): Point to implementation.
* x86arch.c (x86_reggroup_get_reg, yasm_x86_LTX_arch): Likewise.

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

19 years ago* symrec.c (symtab_parser_finalize_checksym): Remove cruft that snuck into
Peter Johnson [Sun, 25 Sep 2005 01:06:00 +0000 (01:06 -0000)]
* symrec.c (symtab_parser_finalize_checksym): Remove cruft that snuck into
previous commit.

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

19 years ago* symrec.h (yasm_symtab_parser_finalize): Add function to declare all
Peter Johnson [Sun, 25 Sep 2005 01:01:02 +0000 (01:01 -0000)]
* symrec.h (yasm_symtab_parser_finalize): Add function to declare all
undefined symbols extern if unused rather than causing undef errors.
* symrec.c (yasm_symtab_parser_finalize): Implement.
(symtab_finalize_info): New (more data to pass to
(symtab_parser_finalize_checksym): Update finalize helper.

* yasm.c (main): Update call to yasm_symtab_parser_finalize().

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

19 years ago* coretype.h (yasm_expr_op): Add YASM_EXPR_NOR for NOR operator.
Peter Johnson [Sun, 25 Sep 2005 00:47:35 +0000 (00:47 -0000)]
* coretype.h (yasm_expr_op): Add YASM_EXPR_NOR for NOR operator.

* intnum.c (yasm_intnum_calc): Handle YASM_EXPR_NOR.
* expr.c (yasm_expr_print): Likewise.

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

19 years ago* arch.h (yasm_arch_syntax_flavor): Remove.
Peter Johnson [Sun, 25 Sep 2005 00:41:04 +0000 (00:41 -0000)]
* arch.h (yasm_arch_syntax_flavor): Remove.
(yasm_arch_create): Add parser and error parameters; now the arch is given
the keyword of the parser in use.  The error parameter allows the caller to
find out whether it was the machine name or the parser name that was in
error.
(yasm_arch_module): Change create definition to match yasm_arch_create().
(yasm_arch_create_error): New error typedef for yasm_arch_create() errors.

* lc3barch.c (lc3b_create): Update to match new yasm_arch_create().
* x86arch.c (x86_create): Likewise.

* yasm.c (main): Use new yasm_arch_create() and handle the two kinds of
errors it can now generate.  Move parser creation up in the sequence so it
happens before the arch is created.

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

19 years ago* x86bc.c (x86_bc_insn_resolve): When handling shift_op, change immlen
Peter Johnson [Sun, 25 Sep 2005 00:15:17 +0000 (00:15 -0000)]
* x86bc.c (x86_bc_insn_resolve): When handling shift_op, change immlen
rather than munging bc->len directly.

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

19 years ago* yasm.c (main): Add workaround for when -m amd64 is specified to override
Peter Johnson [Sun, 25 Sep 2005 00:09:30 +0000 (00:09 -0000)]
* yasm.c (main): Add workaround for when -m amd64 is specified to override
the object format default BITS setting.  This makes it so [bits 64] is not
necessary to explicitly specify in the source file.

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

19 years ago* x86bc.c (x86_bc_insn_resolve): Actually support the flag to allow
Peter Johnson [Sat, 24 Sep 2005 23:50:09 +0000 (23:50 -0000)]
* x86bc.c (x86_bc_insn_resolve): Actually support the flag to allow
shortening to signed 8-bit immediate from a larger immediate size.  This
yields much smaller code for many arithmetic instructions.

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

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

19 years ago* elf-objfmt.c (elf_objfmt_output_section): Don't try to skip empty
Peter Johnson [Thu, 8 Sep 2005 05:01:32 +0000 (05:01 -0000)]
* elf-objfmt.c (elf_objfmt_output_section): Don't try to skip empty
sections.  This breaks section numbering between the file section headers
and the section numbering used by symbols to reference sections.

While we're here, don't even try to number sections during parse... this
numbering is getting overwritten anyway.

Fixes #59 (reported by hkmaly@gmail.com).

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

19 years agoFix VC build files.
Peter Johnson [Thu, 8 Sep 2005 02:00:08 +0000 (02:00 -0000)]
Fix VC build files.
 - _stdint.h for VC build (both 64-bit and 32-bit)
 - Handle spaces in genmodule/genmacro/re2c paths.

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

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

19 years ago* expr.c (expr_level_op): Fix corruption with certain types of complex
Peter Johnson [Wed, 7 Sep 2005 03:53:38 +0000 (03:53 -0000)]
* expr.c (expr_level_op): Fix corruption with certain types of complex
expressions by adjusting level_numterms if expr_simplify_identity changes
fold_numterms.

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

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

19 years ago* hamt.c: Use uintptr_t to correctly cast to integer from pointer. On some
Peter Johnson [Mon, 5 Sep 2005 20:53:07 +0000 (20:53 -0000)]
* hamt.c: Use uintptr_t to correctly cast to integer from pointer.  On some
platforms (notably Win64), unsigned long is not big enough to hold a
pointer.
* Makefile.am, configure.ac: Use ax_create_stdint_h to get us uintptr_t.
* ax_create_stdint_h.m4: Implementation of ax_create_stdint_h autoconf
macro from http://ac-archive.sourceforge.net/guidod/ax_create_stdint_h.html

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

19 years agoFix distcheck build breakage by including stamp-h1 instead of trying to
Peter Johnson [Tue, 30 Aug 2005 06:56:12 +0000 (06:56 -0000)]
Fix distcheck build breakage by including stamp-h1 instead of trying to
include source (which breaks when different build/source paths are used).

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

19 years ago* nasm-token.re (nasm_parser_lex): Fix #57 by recognizing "long" as an alias
Peter Johnson [Sat, 27 Aug 2005 17:13:32 +0000 (17:13 -0000)]
* nasm-token.re (nasm_parser_lex): Fix #57 by recognizing "long" as an alias
for "dword".

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

19 years ago* bytecode.c (bc_incbin_tobytes): Fix fread call so that return value check
Peter Johnson [Sat, 27 Aug 2005 02:05:36 +0000 (02:05 -0000)]
* bytecode.c (bc_incbin_tobytes): Fix fread call so that return value check
works (was broken for >1 byte files).
(yasm_bc_tobytes): Fix handling of bytecodes that are larger than provided
buffer.

Patch by: Stephen Polkowski <stephen@centtech.com>

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

19 years ago* x86id.re: Add support for AMD64 64-bit registers in SSE-2 cvt instructions.
Peter Johnson [Fri, 19 Aug 2005 03:25:48 +0000 (03:25 -0000)]
* x86id.re: Add support for AMD64 64-bit registers in SSE-2 cvt instructions.

Patch submitted by: Denis Godinho <asmcode@gmail.com>

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

19 years agocoff_objfmt.c: Add support for ADDR32NB relocations, and enable by default for
Peter Johnson [Thu, 4 Aug 2005 07:53:10 +0000 (07:53 -0000)]
coff_objfmt.c: Add support for ADDR32NB relocations, and enable by default for
the .pdata section.  This is needed for structured exception handling on AMD64.
Yasm in the long run should generate this info itself via the use of objfmt
specific directives.

Noticed By: Andrew Dunstan <a_dunstan@hotmail.com>

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

19 years agocoff_objfmt.c (coff_objfmt_section_switch): Default alignment to 16 bytes
Peter Johnson [Wed, 3 Aug 2005 07:05:09 +0000 (07:05 -0000)]
coff_objfmt.c (coff_objfmt_section_switch): Default alignment to 16 bytes
when in 64-bit mode.

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

19 years agoAdd support for ADDR64 relocations in 64-bit mode.
Peter Johnson [Wed, 3 Aug 2005 06:06:28 +0000 (06:06 -0000)]
Add support for ADDR64 relocations in 64-bit mode.
Change flags handling a bit and turn off the AR32WR flag in 64-bit mode.

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

19 years agoFix #53. This makes things like "es stosb" work.
Peter Johnson [Thu, 30 Jun 2005 03:57:56 +0000 (03:57 -0000)]
Fix #53.  This makes things like "es stosb" work.

Reported by: Dmitry Gokun <jedi@online.kharkov.ua>

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

19 years agoAdd -M option for Makefile dependency generation.
Peter Johnson [Wed, 29 Jun 2005 06:16:10 +0000 (06:16 -0000)]
Add -M option for Makefile dependency generation.

Initial patch by: Thomas Weidenmueller <thomas@reactsoft.com>

The NASM preprocessor implementation of this is ugly; the preprocessor
really needs a rewrite to clean it up, but there's other higher-priority
items on the TODO list.

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

19 years agoFix ENTER in BITS 32 mode: it was generating a bogus A16 override.
Peter Johnson [Tue, 28 Jun 2005 09:26:15 +0000 (09:26 -0000)]
Fix ENTER in BITS 32 mode: it was generating a bogus A16 override.
Also add warning if user tries to override address size on ENTER.

Noticed by: Dmitry <jedi@online.kharkov.ua>

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

19 years agoAdd Intel's P4 VMX instructions.
Peter Johnson [Tue, 28 Jun 2005 08:22:04 +0000 (08:22 -0000)]
Add Intel's P4 VMX instructions.

Initial patch: Stephen Polkowski <stephen@centtech.com>

Added test case and tightened up so that vmread/vmwrite to/from 32-bit reg
is illegal in 64-bit mode.

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

19 years agoFix a couple nits in the VC build.
Peter Johnson [Tue, 28 Jun 2005 04:16:22 +0000 (04:16 -0000)]
Fix a couple nits in the VC build.

Contributed by: Masaru Tsuchiyama <tsuchiyama@asahi-net.email.ne.jp>

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

19 years agoFix opcodes FINIT, FCLEX, UCOMISS, and UCOMISD.
Peter Johnson [Thu, 9 Jun 2005 02:38:42 +0000 (02:38 -0000)]
Fix opcodes FINIT, FCLEX, UCOMISS, and UCOMISD.

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

19 years ago* genmacro.c (main): Incorporate slightly modified version of David
Peter Johnson [Sat, 7 May 2005 04:37:48 +0000 (04:37 -0000)]
* genmacro.c (main): Incorporate slightly modified version of David
Woodhouse's fix of a memory corruption bug when the string is empty.

Source: https://www.redhat.com/archives/fedora-extras-commits/2005-February/msg00305.html

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

19 years agoFix #52 by updating flat and DJGPP Makefiles to match changes to how
Peter Johnson [Fri, 6 May 2005 03:25:34 +0000 (03:25 -0000)]
Fix #52 by updating flat and DJGPP Makefiles to match changes to how
nasm-macros.c is built.  Now they build genmacro and generate nasm-macros.c
at build time, as it's no longer contained in the distribution.

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

19 years agoAdd SSE3 (PNI) instruction support.
Peter Johnson [Mon, 2 May 2005 00:49:55 +0000 (00:49 -0000)]
Add SSE3 (PNI) instruction support.

* x86id.re (yasm_x86__parse_cpu): Add cases for "PRESCOTT", "SSE3", and "PNI".
(yasm_x86__parse_check_id): Add cases for all 13 new instructions.
Update FILD and FISTP so that common fildstp_insn can be used.
(lddqu_insn): New instruction format.
* x86arch.h (CPU_SSE3): New.  Renumber others.

* sse3.asm, sse3.hex, sse3.errwarn: New test case for SSE3 instructions.
* x86/tests/Makefile.inc: Include test in build.

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

19 years agoModify the output for 'make check' to be much less verbose, and thus
Michael Urman [Wed, 16 Mar 2005 05:26:35 +0000 (05:26 -0000)]
Modify the output for 'make check' to be much less verbose, and thus
much easier to see the bad news when necessary. Thanks go to Peter for
updates to the C tests. Kudos to him having us send most of our tests
through a single shell script!

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

19 years agoAdd `hidden' `internal' and `protected' symbol visibility types to
Michael Urman [Sat, 12 Mar 2005 05:06:50 +0000 (05:06 -0000)]
Add `hidden' `internal' and `protected' symbol visibility types to
global symbols in ELF. Search for STV_HIDDEN for explanations; these
don't seem to appear in the base ELF documentation.

Sample syntax:
    global foo:hidden

Inspiration and base patch provided by Oskari Saarenmaa under our BSD
license. This checkin tweaks and extends Oskari's patch and adds tests.

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

19 years ago* xdf-objfmt.c (XDF_MAGIC): Change to XDF version 2.0. No backwards
Peter Johnson [Sat, 5 Feb 2005 07:12:14 +0000 (07:12 -0000)]
* xdf-objfmt.c (XDF_MAGIC): Change to XDF version 2.0.  No backwards
compatibility with previous versions maintained.
(xdf_section_data): Add virtual address field.
(xdf_objfmt_output_section): Output in section header.
(xdf_objfmt_output): Adjust section header size to 40 bytes.
(xdf_objfmt_section_switch): Add "virtual=" valparam handling.
(xdf_section_data_destroy): Delete vaddr.
(xdf_section_data_print): Print vaddr.

* xdflong.hex, xdfprotect.hex, xdfother.hex: Update to XDF2 files.

* xdfversion.asm, xdfversion.errwarn, xdfvirtual.hex: Add testcase for
"virtual=" functionality.

* xdf.h (XDF_MAGIC): Update to XDF version 2.0
(SECTION_HEADER): Add s_vaddr field.
* xdfdump.c (print_section): Print virtual address.

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

19 years ago* configure.ac: Turn on -Wno-unused; this covers more warnings than the old
Peter Johnson [Sat, 29 Jan 2005 23:48:05 +0000 (23:48 -0000)]
* configure.ac: Turn on -Wno-unused; this covers more warnings than the old
-Wno-unused-parameter, but works on mingw gcc.

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

19 years ago* coff-objfmt.c (win32_objfmt_directive): New function that implements the
Peter Johnson [Sat, 29 Jan 2005 10:24:23 +0000 (10:24 -0000)]
* coff-objfmt.c (win32_objfmt_directive): New function that implements the
undocumented (in NASM) win32 object format "export" directive.
(yasm_win32_LTX_objfmt): Reference above instead of coff_objfmt_directive.
(coff_objfmt_section_switch): Add support for ".drectve" section.
(coff_objfmt_init_new_section): Refactored from coff_objfmt_section_switch.

* preproc.h (yasm_preproc_module): Add define_builtin for defining macros
before standard.mac macros are processed.
(yasm_preproc_builtin_define): Add prototype and macro to call above.
* raw-preproc.c (raw_preproc_define_builtin): Add (empty).
(yasm_raw_LTX_preproc): Use.
* nasm-preproc.c (nasm_preproc_define_builtin): Add wrapper around new
pp_builtin_define.
(yasm_nasm_LTX_preproc): Use.
* nasm-pp.h (pp_builtin_define): Add prototype.
* nasm-pp.c (builtindef): New list of builtin definitions.
(read_line): Iterate through builtindef.
(pp_builtin_define): Add to builtindef.

* standard.mac: Add wrapper around definition of ORG (only for bin objfmt),
add wrappered EXPORT definition.
* yasm.c (apply_preproc_builtins): Define __YASM_OBJFMT__ to selected objfmt.
(main): Call above in correct places.

* export.asm, export.hex, export.errwarn: New test for use of "export" macro
and directive.

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

19 years agoRemove 3 warnings that caused mingw build to break.
Peter Johnson [Tue, 25 Jan 2005 06:44:42 +0000 (06:44 -0000)]
Remove 3 warnings that caused mingw build to break.

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

19 years ago* yasm.c (options): Allow -i as a synonym for -I.
Peter Johnson [Mon, 24 Jan 2005 06:44:25 +0000 (06:44 -0000)]
* yasm.c (options): Allow -i as a synonym for -I.
* yasm-options.c (parse_cmdline): Make unrecognized options warnings instead
of errors.

These two changes make yasm more closely match the nasm command line.  The
long-term fix for this will be making a nasm-like frontend.

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

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

19 years ago* nasm-listfmt.c (nasm_listfmt_output_expr): Fix garbage due to non-simple
Peter Johnson [Mon, 24 Jan 2005 06:21:16 +0000 (06:21 -0000)]
* nasm-listfmt.c (nasm_listfmt_output_expr): Fix garbage due to non-simple
expressions by outputting a 0 if the expr does not have an intnum equivalent.
This is not a fix: the real fix will need to be changing how listfmts get the
final data bytes for a bytecode.  This "fix" only replaces the garbage with
0's, not the correct value (e.g. for relative jumps).

Found by: Albrecht Kleine <kleine@ak.sax.de>

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

19 years ago* configure.ac: Reorganize and add a few more extra GCC warnings.
Peter Johnson [Sat, 22 Jan 2005 01:18:08 +0000 (01:18 -0000)]
* configure.ac: Reorganize and add a few more extra GCC warnings.

* x86id.re (YYFILL): Silence "empty if" warnings.
* lc3bid.re (YYFILL): Likewise.

* elf.c (elf_null_machine): Fully specify initializer.

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

19 years ago* yasm.c (main): Make sure we check for undefined symbols before doing any
Peter Johnson [Fri, 21 Jan 2005 23:46:27 +0000 (23:46 -0000)]
* yasm.c (main): Make sure we check for undefined symbols before doing any
expression processing.  A crash is possible if we don't do this.

* nomem64-err.asm, nomem64-err.errwarn: New order forces split of this into:
* nomem64-err2.asm, nomem64-err2.errwarn: move two cases here.

Found by: Ewout Prangsma <ewout@prangsma.net>

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

19 years ago* nasm-token.re (nasm_parser_lex): b/q/h suffixes should be case-insensitive.
Peter Johnson [Wed, 19 Jan 2005 02:51:38 +0000 (02:51 -0000)]
* nasm-token.re (nasm_parser_lex): b/q/h suffixes should be case-insensitive.
* numcase.asm, numcase.errwarn, numcase.hex: Add testcases.

Noticed by: Albrecht Kleine <kleine@ak.sax.de>

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

19 years ago* symrec.c (yasm_symrec_print): Add SYM_SPECIAL to type switch.
Peter Johnson [Fri, 14 Jan 2005 05:27:33 +0000 (05:27 -0000)]
* symrec.c (yasm_symrec_print): Add SYM_SPECIAL to type switch.

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

19 years agoMove pregenerated man pages to root.
Peter Johnson [Fri, 14 Jan 2005 05:25:30 +0000 (05:25 -0000)]
Move pregenerated man pages to root.

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

19 years ago* symrec.h (yasm_symrec_declare): Rename rec parameter to symrec to match
Peter Johnson [Thu, 13 Jan 2005 07:17:06 +0000 (07:17 -0000)]
* symrec.h (yasm_symrec_declare): Rename rec parameter to symrec to match
documentation.

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