Changes
上传用户:yuppie_zhu
上传日期:2007-01-08
资源大小:535k
文件大小:20k
源码类别:

编译器/解释器

开发平台:

C/C++

  1. Change log for NASM
  2. ===================
  3. This is the Changelog for the official releases; this is a modified
  4. version.  For the changes from the official release, see the MODIFIED file.
  5. 0.90 released October 1996
  6. --------------------------
  7. First release version. First support for object file output. Other
  8. changes from previous version (0.3x) too numerous to document.
  9. 0.91 released November 1996
  10. ---------------------------
  11. Loads of bug fixes.
  12. Support for RDF added.
  13. Support for DBG debugging format added.
  14. Support for 32-bit extensions to Microsoft OBJ format added.
  15. Revised for Borland C: some variable names changed, makefile added.
  16. LCC support revised to actually work.
  17. JMP/CALL NEAR/FAR notation added.
  18. `a16', `o16', `a32' and `o32' prefixes added.
  19. Range checking on short jumps implemented.
  20. MMX instruction support added.
  21. Negative floating point constant support added.
  22. Memory handling improved to bypass 64K barrier under DOS.
  23. $ prefix to force treatment of reserved words as identifiers added.
  24. Default-size mechanism for object formats added.
  25. Compile-time configurability added.
  26. `#', `@', `~' and `?' are now valid characters in labels.
  27. `-e' and `-k' options in NDISASM added.
  28. 0.92 released January 1997
  29. --------------------------
  30. The FDIVP/FDIVRP and FSUBP/FSUBRP pairs had been inverted: this was
  31. fixed. This also affected the LCC driver.
  32. Fixed a bug regarding 32-bit effective addresses of the form
  33. [other_register+ESP].
  34. Documentary changes, notably documentation of the fact that Borland
  35. Win32 compilers use `obj' rather than `win32' object format.
  36. Fixed the COMENT record in OBJ files, which was formatted
  37. incorrectly.
  38. Fixed a bug causing segfaults in large RDF files.
  39. OBJ format now strips initial periods from segment and group
  40. definitions, in order to avoid complications with the local label
  41. syntax.
  42. Fixed a bug in disassembling far calls and jumps in NDISASM.
  43. Added support for user-defined sections in COFF and ELF files.
  44. Compiled the DOS binaries with a sensible amount of stack, to
  45. prevent stack overflows on any arithmetic expression containing
  46. parentheses.
  47. Fixed a bug in handling of files that do not terminate in a newline.
  48. 0.93 released January 1997
  49. --------------------------
  50. This release went out in a great hurry after semi-crippling bugs
  51. were found in 0.92.
  52. Really _did_ fix the stack overflows this time. *blush*
  53. Had problems with EA instruction sizes changing between passes, when
  54. an offset contained a forward reference and so 4 bytes were
  55. allocated for the offset in pass one; by pass two the symbol had
  56. been defined and happened to be a small absolute value, so only 1
  57. byte got allocated, causing instruction size mismatch between passes
  58. and hence incorrect address calculations. Fixed.
  59. Stupid bug in the revised ELF section generation fixed (associated
  60. string-table section for .symtab was hard-coded as 7, even when this
  61. didn't fit with the real section table). Was causing `ld' to
  62. seg-fault under Linux.
  63. Included a new Borland C makefile, Makefile.bc2, donated by Fox
  64. Cutter <lmb@comtch.iea.com>.
  65. 0.94 released April 1997
  66. ------------------------
  67. Major item: added the macro processor.
  68. Added undocumented instructions SMI, IBTS, XBTS and LOADALL286. Also
  69. reorganised CMPXCHG instruction into early-486 and Pentium forms.
  70. Thanks to Thobias Jones for the information.
  71. Fixed two more stupid bugs in ELF, which were causing `ld' to
  72. continue to seg-fault in a lot of non-trivial cases.
  73. Fixed a seg-fault in the label manager.
  74. Stopped FBLD and FBSTP from _requiring_ the TWORD keyword, which is
  75. the only option for BCD loads/stores in any case.
  76. Ensured FLDCW, FSTCW and FSTSW can cope with the WORD keyword, if
  77. anyone bothers to provide it. Previously they complained unless no
  78. keyword at all was present.
  79. Some forms of FDIV/FDIVR and FSUB/FSUBR were still inverted: a
  80. vestige of a bug that I thought had been fixed in 0.92. This was
  81. fixed, hopefully for good this time...
  82. Another minor phase error (insofar as a phase error can _ever_ be
  83. minor) fixed, this one occurring in code of the form
  84.    rol ax,forward_reference
  85.    forward_reference equ 1
  86. The number supplied to TIMES is now sanity-checked for positivity,
  87. and also may be greater than 64K (which previously didn't work on
  88. 16-bit systems).
  89. Added Watcom C makefiles, and misc/pmw.bat, donated by Dominik Behr.
  90. Added the INCBIN pseudo-opcode.
  91. Due to the advent of the preprocessor, the [INCLUDE] and [INC]
  92. directives have become obsolete. They are still supported in this
  93. version, with a warning, but won't be in the next.
  94. Fixed a bug in OBJ format, which caused incorrect object records to
  95. be output when absolute labels were made global.
  96. Updates to RDOFF subdirectory, and changes to outrdf.c.
  97. 0.95 released July 1997
  98. -----------------------
  99. Fixed yet another ELF bug. This one manifested if the user relied on
  100. the default segment, and attempted to define global symbols without
  101. first explicitly declaring the target segment.
  102. Added makefiles (for NASM and the RDF tools) to build Win32 console
  103. apps under Symantec C++. Donated by Mark Junker.
  104. Added `macros.bas' and `insns.bas', QBasic versions of the Perl
  105. scripts that convert `standard.mac' to `macros.c' and convert
  106. `insns.dat' to `insnsa.c' and `insnsd.c'. Also thanks to Mark
  107. Junker.
  108. Changed the diassembled forms of the conditional instructions so
  109. that JB is now emitted as JC, and other similar changes. Suggested
  110. list by Ulrich Doewich.
  111. Added `@' to the list of valid characters to begin an identifier
  112. with.
  113. Documentary changes, notably the addition of the `Common Problems'
  114. section in nasm.doc.
  115. Fixed a bug relating to 32-bit PC-relative fixups in OBJ.
  116. Fixed a bug in perm_copy() in labels.c which was causing exceptions
  117. in cleanup_labels() on some systems.
  118. Positivity sanity check in TIMES argument changed from a warning to
  119. an error following a further complaint.
  120. Changed the acceptable limits on byte and word operands to allow
  121. things like `~10111001b' to work.
  122. Fixed a major problem in the preprocessor which caused seg-faults if
  123. macro definitions contained blank lines or comment-only lines.
  124. Fixed inadequate error checking on the commas separating the
  125. arguments to `db', `dw' etc.
  126. Fixed a crippling bug in the handling of macros with operand counts
  127. defined with a `+' modifier.
  128. Fixed a bug whereby object file formats which stored the input file
  129. name in the output file (such as OBJ and COFF) weren't doing so
  130. correctly when the output file name was specified on the command
  131. line.
  132. Removed [INC] and [INCLUDE] support for good, since they were
  133. obsolete anyway.
  134. Fixed a bug in OBJ which caused all fixups to be output in 16-bit
  135. (old-format) FIXUPP records, rather than putting the 32-bit ones in
  136. FIXUPP32 (new-format) records.
  137. Added, tentatively, OS/2 object file support (as a minor variant on
  138. OBJ).
  139. Updates to Fox Cutter's Borland C makefile, Makefile.bc2.
  140. Removed a spurious second fclose() on the output file.
  141. Added the `-s' command line option to redirect all messages which
  142. would go to stderr (errors, help text) to stdout instead.
  143. Added the `-w' command line option to selectively suppress some
  144. classes of assembly warning messages.
  145. Added the `-p' pre-include and `-d' pre-define command-line options.
  146. Added an include file search path: the `-i' command line option.
  147. Fixed a silly little preprocessor bug whereby starting a line with a
  148. `%!' environment-variable reference caused an `unknown directive'
  149. error.
  150. Added the long-awaited listing file support: the `-l' command line
  151. option.
  152. Fixed a problem with OBJ format whereby, in the absence of any
  153. explicit segment definition, non-global symbols declared in the
  154. implicit default segment generated spurious EXTDEF records in the
  155. output.
  156. Added the NASM environment variable.
  157. From this version forward, Win32 console-mode binaries will be
  158. included in the DOS distribution in addition to the 16-bit binaries.
  159. Added Makefile.vc for this purpose.
  160. Added `return 0;' to test/objlink.c to prevent compiler warnings.
  161. Added the __NASM_MAJOR__ and __NASM_MINOR__ standard defines.
  162. Added an alternative memory-reference syntax in which prefixing an
  163. operand with `&' is equivalent to enclosing it in square brackets,
  164. at the request of Fox Cutter.
  165. Errors in pass two now cause the program to return a non-zero error
  166. code, which they didn't before.
  167. Fixed the single-line macro cycle detection, which didn't work at
  168. all on macros with no parameters (caused an infinite loop). Also
  169. changed the behaviour of single-line macro cycle detection to work
  170. like cpp, so that macros like `extrn' as given in the documentation
  171. can be implemented.
  172. Fixed the implementation of WRT, which was too restrictive in that
  173. you couldn't do `mov ax,[di+abc wrt dgroup]' because (di+abc) wasn't
  174. a relocatable reference.
  175. 0.96 released November 1997
  176. ---------------------------
  177. Fixed a bug whereby, if `nasm sourcefile' would cause a filename
  178. collision warning and put output into `nasm.out', then `nasm
  179. sourcefile -o outputfile' still gave the warning even though the
  180. `-o' was honoured.
  181. Fixed name pollution under Digital UNIX: one of its header files
  182. defined R_SP, which broke the enum in nasm.h.
  183. Fixed minor instruction table problems: FUCOM and FUCOMP didn't have
  184. two-operand forms; NDISASM didn't recognise the longer register
  185. forms of PUSH and POP (eg FF F3 for PUSH BX); TEST mem,imm32 was
  186. flagged as undocumented; the 32-bit forms of CMOV had 16-bit operand
  187. size prefixes; `AAD imm' and `AAM imm' are no longer flagged as
  188. undocumented because the Intel Architecture reference documents
  189. them.
  190. Fixed a problem with the local-label mechanism, whereby strange
  191. types of symbol (EQUs, auto-defined OBJ segment base symbols)
  192. interfered with the `previous global label' value and screwed up
  193. local labels.
  194. Fixed a bug whereby the stub preprocessor didn't communicate with
  195. the listing file generator, so that the -a and -l options in
  196. conjunction would produce a useless listing file.
  197. Merged `os2' object file format back into `obj', after discovering
  198. that `obj' _also_ shouldn't have a link pass separator in a module
  199. containing a non-trivial MODEND. Flat segments are now declared
  200. using the FLAT attribute. `os2' is no longer a valid object format
  201. name: use `obj'.
  202. Removed the fixed-size temporary storage in the evaluator. Very very
  203. long expressions (like `mov ax,1+1+1+1+...' for two hundred 1s or
  204. so) should now no longer crash NASM.
  205. Fixed a bug involving segfaults on disassembly of MMX instructions,
  206. by changing the meaning of one of the operand-type flags in nasm.h.
  207. This may cause other apparently unrelated MMX problems; it needs to
  208. be tested thoroughly.
  209. Fixed some buffer overrun problems with large OBJ output files.
  210. Thanks to DJ Delorie for the bug report and fix.
  211. Made preprocess-only mode actually listen to the %line markers as it
  212. prints them, so that it can report errors more sanely.
  213. Re-designed the evaluator to keep more sensible track of expressions
  214. involving forward references: can now cope with previously-nightmare
  215. situations such as
  216.    mov ax,foo | bar
  217.    foo equ 1
  218.    bar equ 2
  219. Added the ALIGN and ALIGNB standard macros.
  220. Added PIC support in ELF: use of WRT to obtain the four extra
  221. relocation types needed.
  222. Added the ability for output file formats to define their own
  223. extensions to the GLOBAL, COMMON and EXTERN directives.
  224. Implemented common-variable alignment, and global-symbol type and
  225. size declarations, in ELF.
  226. Implemented NEAR and FAR keywords for common variables, plus
  227. far-common element size specification, in OBJ.
  228. Added a feature whereby EXTERNs and COMMONs in OBJ can be given a
  229. default WRT specification (either a segment or a group).
  230. Transformed the Unix NASM archive into an auto-configuring package.
  231. Added a sanity-check for people applying SEG to things which are
  232. already segment bases: this previously went unnoticed by the SEG
  233. processing and caused OBJ-driver panics later.
  234. Added the ability, in OBJ format, to deal with `MOV EAX,<segment>'
  235. type references: OBJ doesn't directly support dword-size segment
  236. base fixups, but as long as the low two bytes of the constant term
  237. are zero, a word-size fixup can be generated instead and it will
  238. work.
  239. Added the ability to specify sections' alignment requirements in
  240. Win32 object files and pure binary files.
  241. Added preprocess-time expression evaluation: the %assign (and
  242. %iassign) directive and the bare %if (and %elif) conditional. Added
  243. relational operators to the evaluator, for use only in %if
  244. constructs: the standard relationals = < > <= >= <> (and C-like
  245. synonyms == and !=) plus low-precedence logical operators &&, ^^ and
  246. ||.
  247. Added a preprocessor repeat construct: %rep / %exitrep / %endrep.
  248. Added the __FILE__ and __LINE__ standard macros.
  249. Added a sanity check for number constants being greater than
  250. 0xFFFFFFFF. The warning can be disabled.
  251. Added the %0 token whereby a variadic multi-line macro can tell how
  252. many parameters it's been given in a specific invocation.
  253. Added %rotate, allowing multi-line macro parameters to be cycled.
  254. Added the `*' option for the maximum parameter count on multi-line
  255. macros, allowing them to take arbitrarily many parameters.
  256. Added the ability for the user-level forms of EXTERN, GLOBAL and
  257. COMMON to take more than one argument.
  258. Added the IMPORT and EXPORT directives in OBJ format, to deal with
  259. Windows DLLs.
  260. Added some more preprocessor %if constructs: %ifidn / %ifidni (exact
  261. textual identity), and %ifid / %ifnum / %ifstr (token type testing).
  262. Added the ability to distinguish SHL AX,1 (the 8086 version) from
  263. SHL AX,BYTE 1 (the 286-and-upwards version whose constant happens to
  264. be 1).
  265. Added NetBSD/FreeBSD/OpenBSD's variant of a.out format, complete
  266. with PIC shared library features.
  267. Changed NASM's idiosyncratic handling of FCLEX, FDISI, FENI, FINIT,
  268. FSAVE, FSTCW, FSTENV, and FSTSW to bring it into line with the
  269. otherwise accepted standard. The previous behaviour, though it was a
  270. deliberate feature, was a deliberate feature based on a
  271. misunderstanding. Apologies for the inconvenience.
  272. Improved the flexibility of ABSOLUTE: you can now give it an
  273. expression rather than being restricted to a constant, and it can
  274. take relocatable arguments as well.
  275. Added the ability for a variable to be declared as EXTERN multiple
  276. times, and the subsequent definitions are just ignored.
  277. We now allow instruction prefixes (CS, DS, LOCK, REPZ etc) to be
  278. alone on a line (without a following instruction).
  279. Improved sanity checks on whether the arguments to EXTERN, GLOBAL
  280. and COMMON are valid identifiers.
  281. Added misc/exebin.mac to allow direct generation of .EXE files by
  282. hacking up an EXE header using DB and DW; also added test/binexe.asm
  283. to demonstrate the use of this. Thanks to Yann Guidon for
  284. contributing the EXE header code.
  285. ndisasm forgot to check whether the input file had been successfully
  286. opened. Now it does. Doh!
  287. Added the Cyrix extensions to the MMX instruction set.
  288. Added a hinting mechanism to allow [EAX+EBX] and [EBX+EAX] to be
  289. assembled differently. This is important since [ESI+EBP] and
  290. [EBP+ESI] have different default base segment registers.
  291. Added support for the PharLap OMF extension for 4096-byte segment
  292. alignment.
  293. 0.97 released December 1997
  294. ---------------------------
  295. This was entirely a bug-fix release to 0.96, which seems to have got
  296. cursed. Silly me.
  297. Fixed stupid mistake in OBJ which caused `MOV EAX,<constant>' to
  298. fail. Caused by an error in the `MOV EAX,<segment>' support.
  299. ndisasm hung at EOF when compiled with lcc on Linux because lcc on
  300. Linux somehow breaks feof(). ndisasm now does not rely on feof().
  301. A heading in the documentation was missing due to a markup error in
  302. the indexing. Fixed.
  303. Fixed failure to update all pointers on realloc() within extended-
  304. operand code in parser.c. Was causing wrong behaviour and seg faults
  305. on lines such as `dd 0.0,0.0,0.0,0.0,...'
  306. Fixed a subtle preprocessor bug whereby invoking one multi-line
  307. macro on the first line of the expansion of another, when the second
  308. had been invoked with a label defined before it, didn't expand the
  309. inner macro. 
  310. Added internal.doc back in to the distribution archives - it was
  311. missing in 0.96 *blush*
  312. Fixed bug causing 0.96 to be unable to assemble its own test files,
  313. specifically objtest.asm. *blush again*
  314. Fixed seg-faults and bogus error messages caused by mismatching
  315. %rep and %endrep within multi-line macro definitions.
  316. Fixed a problem with buffer overrun in OBJ, which was causing
  317. corruption at ends of long PUBDEF records.
  318. Separated DOS archives into main-program and documentation to reduce
  319. download size.
  320. 0.98 released May 1999
  321. ----------------------
  322. Fixed a bug whereby STRUC didn't work at all in RDF.
  323. Fixed a problem with group specification in PUBDEFs in OBJ.
  324. Improved ease of adding new output formats. Contribution due to
  325. Fox Cutter.
  326. Fixed a bug in relocations in the `bin' format: was showing up when
  327. a relocatable reference crossed an 8192-byte boundary in any output
  328. section.
  329. Fixed a bug in local labels: local-label lookups were inconsistent
  330. between passes one and two if an EQU occurred between the definition
  331. of a global label and the subsequent use of a local label local to
  332. that global.
  333. Fixed a seg-fault in the preprocessor (again) which happened when
  334. you use a blank line as the first line of a multi-line macro
  335. definition and then defined a label on the same line as a call to
  336. that macro.
  337. Fixed a stale-pointer bug in the handling of the NASM environment
  338. variable. Thanks to Thomas McWilliams.
  339. ELF had a hard limit on the number of sections which caused
  340. segfaults when transgressed. Fixed.
  341. Added ability for ndisasm to read from stdin by using `-' as the
  342. filename.
  343. ndisasm wasn't outputting the TO keyword. Fixed.
  344. Fixed error cascade on bogus expression in %if - an error in
  345. evaluation was causing the entire %if to be discarded, thus creating
  346. trouble later when the %else or %endif was encountered.
  347. Forward reference tracking was instruction-granular not operand-
  348. granular, which was causing 286-specific code to be generated
  349. needlessly on code of the form `shr word [forwardref],1'. Thanks to
  350. Jim Hague for sending a patch.
  351. All messages now appear on stdout, as sending them to stderr serves
  352. no useful purpose other than to make redirection difficult.
  353. Fixed the problem with EQUs pointing to an external symbol - this
  354. now generates an error message.
  355. Allowed multiple size prefixes to an operand, of which only the first
  356. is taken into account.
  357. Incorporated John Fine's changes, including fixes of a large number
  358. of preprocessor bugs, some small problems in OBJ, and a reworking of
  359. label handling to define labels before their line is assembled, rather
  360. than after.
  361. Reformatted a lot of the source code to be more readable. Included
  362. 'coding.txt' as a guideline for how to format code for contributors.
  363. Stopped nested %reps causing a panic - they now cause a slightly more
  364. friendly error message instead.
  365. Fixed floating point constant problems (patch by Pedro Gimeno)
  366. Fixed the return value of insn_size() not being checked for -1, indicating
  367. an error.
  368. Incorporated 3D now instructions.
  369. Fixed the 'mov eax, eax + ebx' bug.
  370. Fixed the GLOBAL EQU bug in ELF. Released developers release 3.
  371. Incorporated John Fine's command line parsing changes
  372. Incorporated David Lindauer's OMF debug support
  373. Made changes for LCC 4.0 support (__NASM_CDecl__, removed register size
  374. specification warning when sizes agree).
  375. Released NASM 0.98 Pre-release 1
  376. fixed bug in outcoff.c to do with truncating section names longer
  377. than 8 characters, referencing beyond end of string; 0.98 pre-release 2
  378. added response file support, improved command line handling, new layout
  379. help screen
  380. fixed limit checking bug, 'OUT byte nn, reg' bug, and a couple of rdoff
  381. related bugs, updated Wishlist; 0.98 Prerelease 3.
  382. See the file "MODIFIED" for changes after 0.98p3.