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

编译器/解释器

开发平台:

C/C++

  1. NASM Wishlist
  2. =============
  3. Numbers on right hand side are version numbers that it would be nice to
  4. have this done by. ? means I haven't looked at it yet.
  5. - Create a binary RDF tools distribution. Should probably be distributed 0.98
  6.   seperately.
  7. - Check misc/ide.cfg into RCS as Watcom IDE enhancement thingy. 0.98
  8.   (nop@dlc.fi)
  9. - Package the Linux Assembler HOWTO. 0.98
  10. - 3DNow!, SSE and other extensions need documenting. 0.98
  11.   hpa: Does it really make sense to have a whole instruction set
  12.   reference packaged with the assembler?
  13. - prototypes of lrotate don't match in test/*. Fix. 0.98
  14. - Build djgpp binaries for 0.98 onwards. Look into PMODE/W as a stub 0.98
  15.   - it might be a lot better than CWSDPMI. It's in PMW133.ZIP.
  16. - %undef operator that goes along with %define DONE
  17. - Fix `%error' giving error messages twice. 0.99
  18.   Not especially important, as changes planned for 1.1x below will make
  19.   the preprocessor be only called once.
  20. - Sort out problems with OBJ: 0.99
  21.   * TLINK32 doesn't seem to like SEGDEF32 et al. So for that, we
  22.     should avoid xxx32 records wherever we can.
  23.   * However, didn't we change _to_ using xxx32 at some stage? Try
  24.     to remember why and when.
  25.   * Apparently Delphi's linker has trouble with two or more
  26.     globals being defined inside a PUBDEF32. Don't even know if it
  27.     _can_ cope with a PUBDEF16.
  28.   * Might need extra flags. *sigh*
  29. - Symbol table output may possibly be useful. 0.99
  30.   Ken Martwick (kenm@efn.org) wants the following format:
  31. labelname type offset(hex) repetition count
  32.   Possibly include xref addresses after repetition count?
  33. - There are various other bugs in outelf.c that make certain kinds 0.99
  34.   of relocation not work. See zbrown.asm. Looks like we may have to do
  35.   a major rewrite of parts of it. Compare some NASM code output with
  36.   equivalent GAS code output. Look at the ELF spec. Generally fix things.
  37. - NASM is currently using a kludge in ELF that involves defining 0.99
  38.   a symbol at a zero absolute offset. This isn't needed, as the
  39.   documented solution to the problem that this solves is to use
  40.   SHN_UNDEF.
  41. - Debug information, in all formats it can be usefully done in. 0.99
  42.   * including line-number record support.
  43.   * "George C. Lindauer" <gclind01@starbase.spd.louisville.edu>
  44.     wants to have some say in how this goes through.
  45.   * Andrew Crabtree <andrewc@rosemail.rose.hp.com> wants to help out.
  46. - Think about a line-continuation character. 0.99
  47. - Consider allowing declaration of two labels on the same line,
  48.   syntax 'label1[:] label2[:] ... instruction'. Need to investigate
  49.   feasibility. 0.99
  50. - Quoting of quotes by doubling them, in string and char constants. 0.99
  51. - Two-operand syntax for SEGMENT/SECTION macro to avoid warnings 0.99
  52.   of ignored section parameters on reissue of __SECT__.
  53.   Or maybe skip the warning if the given parameters are identical to
  54.   what was actually stored. Investigate.
  55. - Apparently we are not missing a PSRAQ instruction, because it
  56.   doesn't exist.  Check that it doesn't exist as an undocumented
  57.   instruction, or something stupid like that. 0.99
  58. - Any assembled form starting 0x80 can also start 0x82. ndisasm 1.00
  59.   should know this. New special code in instruction encodings,
  60.   probably.
  61. - Pointing an EQU at an external symbol now generates an error. There 1.05
  62.   may be a better way of handling this; we should look into it.
  63.   Ideally, the label mechanism should be changed to cope with one
  64.   label being declared relative to another - that may work, but could be
  65.   a pain to implement (or is it? it may be easy enough that you just
  66.   need to declare a new offset in the same segment...) This should be done
  67.   before v1.0 is released. There is a comment regarding this in labels.c,
  68.   towards the end of the file, which discusses ways of fixing this.
  69. - nested %rep used to cause a panic. Now a more informative error 1.10
  70.   message is produced. This problem whould be fixed before v1.0.
  71.   See comment in switch() statement block for PP_REP in do_directive()
  72.   in preproc.c (line 1585, or thereabouts)
  73. - Contribution: zgraeme.tar contains improved hash table routines ?
  74.   contributed by Graeme Defty <graeme@HK.Super.NET> for use in the
  75.   label manager.
  76. - Contribution: zsyntax.zip contains a syntax-highlighting mode for ?
  77.   NASM, for use with the Aurora text editor (??).
  78. - Contribution: zvim.zip contains a syntax-highlighting mode for ?
  79.   NASM, for use with vim.
  80. - Contribution: zkendal1.zip and zkendal2.zip contain Kendall ?
  81.   Bennett's (<KendallB@scitechsoft.com>) alternative syntax stuff,
  82.   providing an alternative syntax mode for NASM which allows a macro
  83.   set to be written that allows the same source files to be
  84.   assembled with NASM and TASM.
  85. - Add the UD2 instruction. DONE
  86. - Add the four instructions documented in 24368901.pdf (Intel's own DONE
  87.   document).
  88. - Some means of avoiding MOV memoffs,EAX which apparently the 1.10?
  89.   Pentium pairing detector thinks modifies EAX. Similar means of
  90.   choosing instruction encodings where necessary.
  91. - The example of ..@ makes it clear that a ..@ label isn't just ?
  92.   local, but doesn't make it clear that it isn't just global either.
  93. - hpa wants an evaluator operator for ceil(log2(x)). ?
  94. - Extra reloc types in ELF: R_386_16 type 20, PC16 is 21, 8 is 22, PC8 is 23.
  95.   Add support for the 16s at least. ?
  96. - Lazy section creation or selective section output, in COFF/win32 ?
  97.   at least and probably other formats: don't bother to emit a section
  98.   if it contains no data. Particularly the default auto-created
  99.   section. We believe zero-length sections crash at least WLINK (in
  100.   win32).
  101. - Make the flags field in `struct itemplate' in insns.h a long ?
  102.   instead of an int.
  103. - Implement %ifref to check whether a single-line macro has ever been ?
  104.   expanded since (last re) definition. Or maybe not. We'll see.
  105. - add pointer to k{insLEAVE} and k{insENTER} in chapters about ?
  106.   mixed-language programming.
  107. - Some equivalent to TASM's GLOBAL directive, ie something which ?
  108.   defines a symbol as external if it doesn't end up being defined
  109.   but defines it as public if it does end up being defined.
  110. - Documentation doesn't explain about C++ name mangling. ?
  111. - see if BITS can be made to do anything sensible in obj (eg set the ?
  112.   default new-segment property to Use32).
  113. - OBJ: coalesce consecutive offset and segment fixups for the same ?
  114.   location into full-32bit-pointer fixups. This is apparently
  115.   necessary because some twazzock in the PowerBASIC development
  116.   team didn't deign to support the OMF spec the way the rest of the
  117.   world sees it.
  118. - Allow % to be separated from the rest of a preproc directive, for ?
  119.   alternative directive indentation styles.
  120. - __DATE__, __TIME__, and text variants of __NASM_MAJOR__ and ?
  121.   __NASM_MINOR__.
  122. - Warn on TIMES combined with multi-line macros. TIMES gets applied 1.00
  123.   to first line only - should bring to users' attention.
  124. - Re-work the evaluator, again, with a per-object-format fixup 1.10
  125.   routine, so as to be able to cope with section offsets "really"
  126.   being pure numbers; should be able to allow at _least_ the two
  127.   common idioms
  128.      TIMES 510-$ DB 0            ; bootsector
  129.      MOV AX,(PROG_END-100H)/16   ; .COM TSR
  130.   Would need to call the fixup throughout the evaluator, and the
  131.   fixup would have to be allowed to return UNKNOWN on pass one if it
  132.   had to. (_Always_ returning UNKNOWN on pass one, though a lovely
  133.   clean design, breaks the first of the above examples.)
  134. - Preprocessor identifier concatenation? 1.10
  135. - Arbitrary section names in `bin'. ?
  136.   Is this necessary? Is it even desirable?
  137.   hpa: Desirable, yes.  Necessary?  Probably not, but there are
  138.   definitely cases where it becomes quite useful.
  139. - Ability to read from a pipe. Obviously not useful under dos, so 1.10
  140.   memory problems with storing entire input file aren't a problem
  141.   either.
  142.   Related topic: file caching under DOS/32 bit... 1.10?
  143.   maybe even implement discardable buffers that get thrown away
  144.   when we get a NULL returned from malloc(). Only really useful under
  145.   DOS. Think about it.
  146.   Another related topic: possibly spool out the pre-processed 1.10?
  147.   stuff to a file, to avoid having to re-process it. Possible problems
  148.   with preprocessor values not known on pass 1? Have a look...
  149.   Or maybe we can spool out a pre-parsed version...? 1.10
  150.   Need to investigate feasibility. Does the results from the parser
  151.   change from pass 1 to pass 2? Would it be feasible to alter it so that
  152.   the parser returns an invariant result, and this is then processed
  153.   afterwards to resolve label references, etc?
  154. - Subsection support? ?
  155. - A good ALIGN mechanism, similar to GAS's. GAS pads out space by 1.10?
  156.   means of the following (32-bit) instructions:
  157.           8DB42600000000    lea esi,[esi+0x0]
  158.           8DB600000000      lea esi,[esi+0x0]
  159.           8D742600          lea esi,[esi+0x0]
  160.           8D7600            lea esi,[esi+0x0]
  161.           8D36              lea esi,[esi]
  162.           90                nop
  163.   It uses up to two of these instructions to do up to 14-byte pads;
  164.   when more than 14 bytes are needed, it issues a (short) jump to
  165.   the end of the padded section and then NOPs the rest. Come up with
  166.   a similar scheme for 16 bit mode, and also come up with a way to
  167.   use it - internal to the assembler, so that programs using ALIGN
  168.   don't knock over preprocess-only mode.
  169.     Also re-work the macro form so that when given one argument in a
  170.   code section it calls this feature.
  171. - Possibly a means whereby FP constants can be specified as ?
  172.   immediate operands to non-FP instructions.
  173.   * Possible syntax: MOV EAX,FLOAT 1.2 to get a single-precision FP
  174.     constant. Then maybe MOV EAX,HI_FLOAT 1.2 and MOV EAX,LO_FLOAT
  175.     1.2 to get the two halves of a double-precision one. Best to
  176.     ignore extended-precision in case it bites.
  177.   * Alternatively, maybe MOV EAX,FLOAT(4,0-4,1.2) to get bytes 0-4
  178.     (ie 0-3) of a 4-byte constant. Then HI_FLOAT is FLOAT(8,4-8,x)
  179.     and LO_FLOAT is FLOAT(8,0-4,x). But this version allows two-byte
  180.     chunks, one-byte chunks, even stranger chunks, and pieces of
  181.     ten-byte reals to be bandied around as well.
  182. - A UNION macro might be quite cool, now that ABSOLUTE is sane ?
  183.   enough to be able to handle it.
  184. - An equivalent to gcc's ## stringify operator, plus string ?
  185.   concatenation, somehow implemented without undue ugliness, so as
  186.   to be able to do `%include "/my/path/%1"' in a macro, or something
  187.   similar...
  188. - Actually _do_ something with the processor, privileged and 1.10
  189.   undocumented flags in the instruction table. When this happens,
  190.   consider allowing PMULHRW to map to either of the Cyrix or AMD
  191.   versions?
  192.   hpa: The -p option to ndisasm now uses this to some extent.
  193. - Maybe NEC V20/V30 instructions? ?
  194.   hpa: What are they?  Should be trivial to implement.
  195. - Yet more object formats.
  196.   * Possibly direct support for .EXE files? 1.10
  197. - Symbol map in binary format. Format-specific options... 1.10?
  198. - REDESIGN: Think about EQU dependency, and about start-point 1.20?
  199.   specification in OBJ. Possibly re-think directive support.
  200. - Think about a wrapper program like gcc? Possibly invent a _patch_ 2.00?
  201.   for gcc so that it can take .asm files on the command line?
  202. - If a wrapper happens, think about adding an option to cause the ?
  203.   resulting executable file to be executed immediately, thus
  204.   allowing NASM source files to have #!... (probably silly)
  205. - Multi-platform support? If so: definitely Alpha; possibly Java ?
  206.   byte code; probably ARM/StrongARM; maybe Sparc; maybe Mips; maybe
  207.   Vax. Perhaps Z80 and 6502, just for a laugh?
  208. - Consider a 'verbose' option that prints information about the ?
  209.   resulting object file onto stdout.
  210. - Line numbers in the .lst file don't match the line numbers in the ?
  211.   input.  They probably should, rather than the current matching
  212.   of the post-preprocessor line numbers.