Skip to content
  1. May 14, 2015
  2. May 13, 2015
    • Duncan P. N. Exon Smith's avatar
      MC: clang-format MCSymbol.h, NFC · 307b3c4c
      Duncan P. N. Exon Smith authored
      llvm-svn: 237297
      307b3c4c
    • Tim Northover's avatar
      ARM: remove possible vestiges of the legacy JIT??? · b4c61f88
      Tim Northover authored
      There's no need to manually pass modifier strings around to tell an operand how
      to print now, that information is encoded in the operand itself since the MC
      layer came along.
      
      llvm-svn: 237295
      b4c61f88
    • Tim Northover's avatar
      ARM: remove custom jump table UID · 4998a47f
      Tim Northover authored
      We were creating and propagating two separate indices for each jump table (from
      back in the mists of time). However, the generic index used by other backends
      is sufficient to emit a unique symbol so this was unneeded.
      
      llvm-svn: 237294
      4998a47f
    • Tim Northover's avatar
      ARM: refactor optimizeThumb2JumpTables. · 688f7bb2
      Tim Northover authored
      The previous logic mixed 2 separate questions:
        + Can we form a TBB/TBH instruction?
        + Can we remove the jump-table calculation before it?
      
      It then performed a bunch of random tests on the instructions earlier in the
      basic block, which were probably sufficient to answer 2 but only because of the
      very limited ways in which a t2BR_JT can actually be created.
      
      For example there's no reason to expect the LeaInst to define the same base
      register as the following indexing calulation. In practice this means we might
      have missed opportunities to form TBB/TBH, in theory you could end up
      misidentifying a sequence and removing the wrong LEA:
      
           %R1 = t2LEApcrelJT ...
           %R2 = t2LEApcrelJT ...
           <... using and killing %R2 ...>
           %R2 = t2ADDr %R1, $Ridx
      
      Before we would have looked for an LEA defining %R2 and found the wrong one. We
      just got lucky that jump table setup was (almost?) always confined to a single
      basic block and there was only one jump table per block.
      
      llvm-svn: 237293
      688f7bb2
    • Sanjoy Das's avatar
      [Statepoints][Docs] Fix a couple of out of date examples. · 6d9da4b2
      Sanjoy Das authored
      Things I had missed in r237285.
      
      llvm-svn: 237290
      6d9da4b2
    • Sanjoy Das's avatar
      [Statepoints][Docs] Fix typo: change a period to a comma. · dc4932fb
      Sanjoy Das authored
      llvm-svn: 237289
      dc4932fb
    • Sanjoy Das's avatar
      [Safepoints][Verifier] Fix a tautological Assert. · 9af34eb7
      Sanjoy Das authored
      llvm-svn: 237287
      9af34eb7
Loading