Skip to content
  1. Mar 07, 2015
    • Chandler Carruth's avatar
      Teach the LLVM CMake build how to explicitly use libc++abi when using · dc57c481
      Chandler Carruth authored
      libc++. This lets me almost self-host on Linux with libc++ and libc++abi
      very simply.
      
      Currently, MCJIT and OrcJIT are failing due to uncaught exceptions, and
      the Go binding tests are failing to build due to not linking in the
      correct C++ standard library.
      
      llvm-svn: 231560
      dc57c481
    • Chandler Carruth's avatar
      [PM] Fixup for r231556 where I missed a dependency on intrinsics · df397c52
      Chandler Carruth authored
      generation.
      
      llvm-svn: 231558
      df397c52
    • Chandler Carruth's avatar
      [PM] Create a separate library for high-level pass management code. · 1ff7724d
      Chandler Carruth authored
      This will provide the analogous replacements for the PassManagerBuilder
      and other code long term. This code is extracted from the opt tool
      currently, and I plan to extend it as I build up support for using the
      new pass manager in Clang and other places.
      
      Mailing this out for review in part to let folks comment on the terrible names
      here. A brief word about why I chose the names I did.
      
      The library is called "Passes" to try and make it clear that it is a high-level
      utility and where *all* of the passes come together and are registered in
      a common library. I didn't want it to be *limited* to a registry though, the
      registry is just one component.
      
      The class is a "PassBuilder" but this name I'm less happy with. It doesn't
      build passes in any traditional sense and isn't a Builder-style API at all. The
      class is a PassRegisterer or PassAdder, but neither of those really make a lot
      of sense. This class is responsible for constructing passes for registry in an
      analysis manager or for population of a pass pipeline. If anyone has a better
      name, I would love to hear it. The other candidate I looked at was
      PassRegistrar, but that doesn't really fit either. There is no register of all
      the passes in use, and so I think continuing the "registry" analog outside of
      the registry of pass *names* and *types* is a mistake. The objects themselves
      are just objects with the new pass manager.
      
      Differential Revision: http://reviews.llvm.org/D8054
      
      llvm-svn: 231556
      1ff7724d
    • Simon Pilgrim's avatar
      [DAGCombiner] SCALAR_TO_VECTOR(EXTRACT_VECTOR_ELT(V,C)) -> VECTOR_SHUFFLE · bede80a4
      Simon Pilgrim authored
      This patch attempts to convert a SCALAR_TO_VECTOR using an operand from an EXTRACT_VECTOR_ELT into a VECTOR_SHUFFLE.
      
      This prevents many cases of spilling scalar data between the gpr + simd registers. 
      
      At present the optimization only accepts cases where there is no TRUNC of the scalar type (i.e. all types must match).
      
      Differential Revision: http://reviews.llvm.org/D8132
      
      llvm-svn: 231554
      bede80a4
    • Eric Christopher's avatar
      Typo. · 25dbdeb4
      Eric Christopher authored
      llvm-svn: 231547
      25dbdeb4
    • Eric Christopher's avatar
      Remove use of misched-bench from this test and replace it with · e035e266
      Eric Christopher authored
      non-temporary enabling options. This is part of removing misched-bench
      as an option.
      
      llvm-svn: 231546
      e035e266
    • Frederic Riss's avatar
      [dsymutil] Apply relocations to DIE data before cloning. · 23e20e95
      Frederic Riss authored
      Doing this gets function's low_pc and global variable's locations right
      in the output debug info. It also could get right other attributes
      that need to be relocated (in linker terms), but I don't know of any
      other than the address attributes.
      
      This doesn't fixup low_pc attributes in compile_unit, lexical_block
      or inlined subroutine, nor does it get right high_pc attributes
      for function. This will come in a subsequent commit.
      
      llvm-svn: 231544
      23e20e95
    • Eric Christopher's avatar
      Recommit r231324 with a fix to the ARM execution domain code · 7e70aba1
      Eric Christopher authored
      to disable lane switching if we don't actually have the instruction
      set we want to switch to. Models the earlier check above the
      conditional for the pass.
      
      The testcase is one that triggered with the assert that's added
      as part of the fix, use it to avoid adding a new testcase as it
      highlights the same problem.
      
      llvm-svn: 231539
      7e70aba1
    • Richard Smith's avatar
      [modules] Mark Analysis/TargetLibraryInfo.def as a textual header. · 6661a67d
      Richard Smith authored
      llvm-svn: 231532
      6661a67d
    • Frederic Riss's avatar
      [dsymutil] Support cloning DIE reference attributes. · 9833de65
      Frederic Riss authored
      Reference attributes are mainly handled by just creating DIEEntry
      attributes for them. There is a special case for DW_FORM_ref_addr
      attributes though, because the DIEEntry code needs a DwarfDebug
      code to emit them (and we don't have one as we do no CodeGen).
      In that case, just use DIEInteger attributes with the right form.
      
      llvm-svn: 231531
      9833de65
    • Frederic Riss's avatar
      [dsymutil] Set linked unit start offset early. NFC. · 9d441b68
      Frederic Riss authored
      The start offset of a linked unit is known before starting to clone
      its DIEs. Handling DW_FORM_ref_addr attributes requires that this
      offset is set while cloning the unit. Split CompileUnit::computeOffsets()
      into setStartOffset() and computeNextUnitOffset() and call them
      repsectively before cloning the DIEs and right after.
      
      llvm-svn: 231530
      9d441b68
    • Frederic Riss's avatar
      Add DIEInteger::setValue() method. · 718c60e2
      Frederic Riss authored
      dsymutil needs to 'patch' attribute values after creating them. Just
      add this trivial capability.
      
      llvm-svn: 231529
      718c60e2
    • Olivier Sallenave's avatar
  2. Mar 06, 2015
Loading