Skip to content
  1. Aug 11, 2009
  2. Aug 10, 2009
  3. Aug 09, 2009
  4. Aug 08, 2009
  5. Aug 07, 2009
    • Daniel Dunbar's avatar
    • Daniel Dunbar's avatar
      llvm-mc/AsmMatcher: Tweaks in response to feedback. · 15b80370
      Daniel Dunbar authored
      llvm-svn: 78404
      15b80370
    • Daniel Dunbar's avatar
      llvm-mc/AsmMatcher: Move to a slightly more sane matching design. · e10787e7
      Daniel Dunbar authored
       - Still not very sane, but a least its not 60k lines on X86. :)
      
       - In terms of correctness, currently some things are hard wired for X86, and we
         still don't properly resolve ambiguities (this is ignoring the instructions
         we don't even match due to funny .td stuff or other corner cases).
      
      The high level changes:
       1. Represent tokens which are significant for matching explicitly as separate
          operands. This uniformly handles not only the instruction mnemonic, but
          also 'signficiant' syntax like the '*' in "call * ...".
      
       2. Separate the matching of operands to an instruction from the construction of
          the MCInst. In theory this can be done during matching, but since the number
          of variations is small I think it makes sense to decompose the problems.
      
       3. Improved a few of the mechanisms to at least successfully flatten / tokenize
          the assembly strings for PowerPC and ARM.
      
       4. The comment at the top of AsmMatcherEmitter.cpp explains the approach I'm
          moving towards for handling ambiguous instructions. The high-bit is to infer
          a partial ordering of the operand classes (and force the user to specify one
          if we can't) and use that to resolve ambiguities.
      
      llvm-svn: 78378
      e10787e7
  6. Aug 06, 2009
  7. Aug 05, 2009
    • Daniel Dunbar's avatar
      Suppress compiler warning. · 1efb6b03
      Daniel Dunbar authored
      llvm-svn: 78246
      1efb6b03
    • David Greene's avatar
      · fdd2519e
      David Greene authored
      Fix some column padding bugs, reorganize things as suggested by Chris
      and eliminate complexity.  Yay!
      
      llvm-svn: 78243
      fdd2519e
  8. Aug 04, 2009
  9. Aug 03, 2009
  10. Aug 02, 2009
  11. Jul 31, 2009
    • David Greene's avatar
      · 81bcae5f
      David Greene authored
      Simplify operand padding by keying off tabs in the asm stream.  If
      padding is disabled, tabs get replaced by spaces except in the case of
      the first operand, where the tab is output to line up the operands after
      the mnemonics.
      
      Add some better comments and eliminate redundant code.
      
      Fix some testcases to not assume tabs.
      
      llvm-svn: 77740
      81bcae5f
    • Daniel Dunbar's avatar
      llvm-mc: Match a few X86 instructions. · b6d6aa2d
      Daniel Dunbar authored
       - This is "experimental" code, I am feeling my way around and working out the
         best way to do things (and learning tblgen in the process). Comments welcome,
         but keep in mind this stuff will change radically.
      
       - This is enough to match "subb" and friends, but not much else. The next step is to
         automatically generate the matchers for individual operands.
      
      llvm-svn: 77657
      b6d6aa2d
  12. Jul 30, 2009
Loading