Skip to content
  1. May 27, 2014
  2. May 26, 2014
  3. May 25, 2014
    • Saleem Abdulrasool's avatar
      tools: avoid use of std::function · 65dbbb5d
      Saleem Abdulrasool authored
      Remove the use of the std::function and replace the capturing lambda with a
      non-capturing one, opting to pass the user data down to the context.  This is
      needed as std::function is not yet available on all hosted platforms (it
      requires RTTI, which breaks on Windows).
      
      Thanks to Nico Rieck for pointing this out!
      
      llvm-svn: 209607
      65dbbb5d
    • Saleem Abdulrasool's avatar
      tools: split out Win64EHDumper from COFFDumper · e8839a75
      Saleem Abdulrasool authored
      Move the implementation of the Win64 EH printer from the COFFDumper into its own
      class.  This is in preparation for adding support to print ARM EH information.
      The only real change here is in printUnwindInfo where we now lambda lift the
      implicit this parameter for the resolveFunction.  Also setup the printing to
      handle ARM.  This now has set the stage to introduce ARM EH printing.
      
      llvm-svn: 209606
      e8839a75
    • Saleem Abdulrasool's avatar
      tools: inline simple single-use function · 4e08f627
      Saleem Abdulrasool authored
      This inlines the single use function in preparation for splitting the Win64EH
      printing out of the COFFDumper into its own entity.
      
      llvm-svn: 209605
      4e08f627
    • Saleem Abdulrasool's avatar
      tools: refactor COFFDumper symbol resolution logic · 5dd27f42
      Saleem Abdulrasool authored
      Make the use of the cache more transparent to the users.  There is no reason
      that the cached entries really need to be passed along.  The overhead for doing
      so is minimal: a single extra parameter.  This requires that some standalone
      functions be brought into the COFFDumper class so that they may access the
      cache.
      
      llvm-svn: 209604
      5dd27f42
    • Saleem Abdulrasool's avatar
      tools: use references rather than out pointers in COFFDumper · 3617c96d
      Saleem Abdulrasool authored
      Switch to use references for parameters that are guaranteed to be non-null.
      Simplifies the code a slight bit in preparation for another change.
      
      llvm-svn: 209603
      3617c96d
    • David Blaikie's avatar
      DebugInfo: Fix inlining with #file directives a little harder · ea862267
      David Blaikie authored
      Seems my previous fix was insufficient - we were still not adding the
      inlined function to the abstract scope list. Which meant it wasn't
      flagged as inline, didn't have nested lexical scopes in the abstract
      definition, and didn't have abstract variables - so the inlined variable
      didn't reference an abstract variable, instead being described
      completely inline.
      
      llvm-svn: 209602
      ea862267
    • David Blaikie's avatar
      Streamline test case by avoiding a temporary file and piping llc output straight to llvm-dwarfdump · 69d3406a
      David Blaikie authored
      We still do temporary files in many cases, just updating this particular
      one because I was debugging it and made this change while doing so.
      
      llvm-svn: 209601
      69d3406a
    • Rafael Espindola's avatar
      Emit data or code export directives based on the type. · 4a04c4b6
      Rafael Espindola authored
      Currently we look at the Aliasee to decide what type of export
      directive to use. It seems better to use the type of the alias
      directly. This is similar to how we handle the alias having the
      same address but other attributes (linkage, visibility) from the
      aliasee.
      
      With this patch it is now possible to do things like
      
      target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
      target triple = "x86_64-pc-windows-msvc"
      @foo = global [6 x i8] c"\B8*\00\00\00\C3", section ".text", align 16
      @f = dllexport alias i32 (), [6 x i8]* @foo
      !llvm.module.flags = !{!0}
      !0 = metadata !{i32 6, metadata !"Linker Options", metadata !1}
      !1 = metadata !{metadata !2, metadata !3}
      !2 = metadata !{metadata !"/DEFAULTLIB:libcmt.lib"}
      !3 = metadata !{metadata !"/DEFAULTLIB:oldnames.lib"}
      
      llvm-svn: 209600
      4a04c4b6
    • Rafael Espindola's avatar
      Make these CHECKs a bit more strict. · d234b0f0
      Rafael Espindola authored
      The " at the end of the line makes sure we matched the entire directive.
      
      llvm-svn: 209599
      d234b0f0
    • Peter Collingbourne's avatar
      Add an extension point for peephole optimizers. · 0a437619
      Peter Collingbourne authored
      This extension point allows adding passes that perform peephole optimizations
      similar to the instruction combiner. These passes will be inserted after
      each instance of the instruction combiner pass.
      
      Differential Revision: http://reviews.llvm.org/D3905
      
      llvm-svn: 209595
      0a437619
  4. May 24, 2014
Loading