Skip to content
  1. May 17, 2013
    • Benjamin Kramer's avatar
      X86: Make shuffle -> shift conversion more aggressive about undefs. · fc33e1d9
      Benjamin Kramer authored
      Shuffles that only move an element into position 0 of the vector are common in
      the output of the loop vectorizer and often generate suboptimal code when SSSE3
      is not available. Lower them to vector shifts if possible.
      
      We still prefer palignr over psrldq because it has higher throughput on
      sandybridge.
      
      llvm-svn: 182102
      fc33e1d9
    • Benjamin Kramer's avatar
      FileCheckize test. · 7ccd1b86
      Benjamin Kramer authored
      llvm-svn: 182101
      7ccd1b86
    • Benjamin Kramer's avatar
      LoopVectorize: Simplify code. No functionality change. · d84a6339
      Benjamin Kramer authored
      llvm-svn: 182100
      d84a6339
    • David Tweed's avatar
      r182085 introduced a change that triggered an assertion on ARM. This is an immediate fix · 3285dc13
      David Tweed authored
      which doesn't resolve the deeper problem.
      
      llvm-svn: 182098
      3285dc13
    • Ulrich Weigand's avatar
      · 2dbe06a9
      Ulrich Weigand authored
      [PowerPC] Fix hi/lo encoding in old-style code emitter
      
      This patch implements the equivalent change to r182091/r182092
      in the old-style code emitter.  Instead of having two separate
      16-bit immediate encoding routines depending on the instruction,
      this patch introduces a single encoder that checks the machine
      operand flags to decide whether the low or high half of a
      symbol address is required.
      
      Since now both encoders make no further distinction between
      "symbolLo" and "symbolHi", the .td operand can now use a
      single getS16ImmEncoding method.
      
      Tested by running the old-style JIT tests on 32-bit Linux.
      
      llvm-svn: 182097
      2dbe06a9
    • Ulrich Weigand's avatar
      · 6e23ac60
      Ulrich Weigand authored
      [PowerPC] Merge/rename PPC fixup types
      
      Now that fixup_ppc_ha16 and fixup_ppc_lo16 are being treated exactly
      the same everywhere, it no longer makes sense to have two fixup types.
      
      This patch merges them both into a single type fixup_ppc_half16,
      and renames fixup_ppc_lo16_ds to fixup_ppc_half16ds for consistency.
      (The half16 and half16ds names are taken from the description of
      relocation types in the PowerPC ABI.)
      
      No change in code generation expected.
      
      llvm-svn: 182092
      6e23ac60
    • Ulrich Weigand's avatar
      · 994f49ed
      Ulrich Weigand authored
      [PowerPC] Fix processing of ha16/lo16 fixups
      
      The current PowerPC MC back end distinguishes between fixup_ppc_ha16
      and fixup_ppc_lo16, which are determined by the instruction the fixup
      applies to, and uses this distinction to decide whether a fixup ought
      to resolve to the high or the low part of a symbol address.
      
      This isn't quite correct, however.  It is valid -if unusual- assembler
      to use, e.g.
        li 1, symbol@ha
      or
        lis 1, symbol@l
      Whether the high or the low part of the address is used depends solely
      on the @ suffix, not on the instruction.
      
      In addition, both
        li 1, symbol
      and
        lis 1, symbol
      are valid, assuming the symbol address fits into 16 bits; again, both
      will then refer to the actual symbol value (so li will load the value
      itself, while lis will load the value shifted by 16).
      
      
      To fix this, two places need to be adapted.  If the fixup cannot be
      resolved at assembler time, a relocation needs to be emitted via
      PPCELFObjectWriter::getRelocType.  This routine already looks at
      the VK_ type to determine the relocation.  The only problem is that
      will reject any _LO modifier in a ha16 fixup and vice versa.  This
      is simply incorrect; any of those modifiers ought to be accepted
      for either fixup type.
      
      If the fixup *can* be resolved at assembler time, adjustFixupValue
      currently selects the high bits of the symbol value if the fixup
      type is ha16.  Again, this is incorrect; see the above example
        lis 1, symbol
      
      Now, in theory we'd have to respect a VK_ modifier here.  However,
      in fact common code never even attempts to resolve symbol references
      using any nontrivial VK_ modifier at assembler time; it will always
      fall back to emitting a reloc and letting the linker handle it.
      
      If this ever changes, presumably there'd have to be a target callback
      to resolve VK_ modifiers.  We'd then have to handle @ha etc. there.
      
      llvm-svn: 182091
      994f49ed
    • Sylvestre Ledru's avatar
      Fix a typo (ouput => output) · b4dc9f01
      Sylvestre Ledru authored
      llvm-svn: 182090
      b4dc9f01
    • Benjamin Kramer's avatar
      Don't cast away constness. · 2057a2b8
      Benjamin Kramer authored
      llvm-svn: 182086
      2057a2b8
    • David Tweed's avatar
      Minor changes to the MCJITTest unittests to use the correct API for finalizing · 2e7efedd
      David Tweed authored
      the JIT object (including XFAIL an ARM test that now needs fixing). Also renames
      internal function for consistency.
      
      llvm-svn: 182085
      2e7efedd
    • Christian Konig's avatar
      b7be72df
    • Venkatraman Govindaraju's avatar
    • Adrian Prantl's avatar
  2. May 16, 2013
Loading