Skip to content
  1. Jan 23, 2015
    • Lang Hames's avatar
      [Orc] New JIT APIs. · 93de2a12
      Lang Hames authored
      This patch adds a new set of JIT APIs to LLVM. The aim of these new APIs is to
      cleanly support a wider range of JIT use cases in LLVM, and encourage the
      development and contribution of re-usable infrastructure for LLVM JIT use-cases.
      
      These APIs are intended to live alongside the MCJIT APIs, and should not affect
      existing clients.
      
      Included in this patch:
      
      1) New headers in include/llvm/ExecutionEngine/Orc that provide a set of
         components for building JIT infrastructure.
         Implementation code for these headers lives in lib/ExecutionEngine/Orc.
      
      2) A prototype re-implementation of MCJIT (OrcMCJITReplacement) built out of the
         new components.
      
      3) Minor changes to RTDyldMemoryManager needed to support the new components.
         These changes should not impact existing clients.
      
      4) A new flag for lli, -use-orcmcjit, which will cause lli to use the
         OrcMCJITReplacement class as its underlying execution engine, rather than
         MCJIT itself.
      
      Tests to follow shortly.
      
      Special thanks to Michael Ilseman, Pete Cooper, David Blaikie, Eric Christopher,
      Justin Bogner, and Jim Grosbach for extensive feedback and discussion.
      
      llvm-svn: 226940
      93de2a12
    • Kevin Enderby's avatar
      Fix the problem with llvm-objdump and -archive-headers in printing the archive header size field. · 479ee613
      Kevin Enderby authored
      This problem showed up with the clang-cmake-armv7-a15-full bot.  Thanks to Renato Golin for his help.
      
      llvm-svn: 226936
      479ee613
    • Colin LeMahieu's avatar
    • Kevin Enderby's avatar
      Add the option, -data-in-code, to llvm-objdump used with -macho to print the... · 69fe98da
      Kevin Enderby authored
      Add the option, -data-in-code, to llvm-objdump used with -macho to print the Mach-O data in code table.
      
      llvm-svn: 226921
      69fe98da
    • Rafael Espindola's avatar
      Add STB_GNU_UNIQUE to the ELF writer. · 5fa925eb
      Rafael Espindola authored
      This lets llvm-mc assemble files produced by gcc.
      
      llvm-svn: 226895
      5fa925eb
  2. Jan 22, 2015
    • Chandler Carruth's avatar
      [PM] Actually add the new pass manager support for the assumption cache. · df8b223d
      Chandler Carruth authored
      I had already factored this analysis specifically to enable doing this,
      but hadn't actually committed the necessary wiring to get at this from
      the new pass manager. This also nicely shows how the separate cache
      object can be directly managed by the new pass manager.
      
      This analysis didn't have any direct tests and so I've added a printer
      pass and a boring test case. I chose to print the i1 value which is
      being assumed rather than the call to llvm.assume as that seems much
      more useful for testing... but suggestions on an even better printing
      strategy welcome. My main goal was to make sure things actually work. =]
      
      llvm-svn: 226868
      df8b223d
    • Kevin Enderby's avatar
      Add the option, -indirect-symbols, used with -macho to print the Mach-O... · a7bdc7e6
      Kevin Enderby authored
      Add the option, -indirect-symbols, used with -macho to print the Mach-O indirect symbol table to llvm-objdump.
      
      llvm-svn: 226848
      a7bdc7e6
    • Chris Bieneman's avatar
      Assigning and copying command line option objects shouldn't be allowed. · e71fb5ce
      Chris Bieneman authored
      Summary:
      The default copy and assignment operators for these objects probably don't actually do what the clients intend, so they should be deleted.
      
      Places using the assignment operator to set the value of an option should cast to the option's data type first to call into the override for operator=. Places using the copy constructor just need to be changed to not copy (i.e. passing by const reference instead of value).
      
      Reviewers: dexonsmith, chandlerc
      
      Subscribers: llvm-commits
      
      Differential Revision: http://reviews.llvm.org/D7114
      
      llvm-svn: 226762
      e71fb5ce
  3. Jan 20, 2015
  4. Jan 18, 2015
  5. Jan 16, 2015
  6. Jan 15, 2015
    • Chandler Carruth's avatar
      [PM] Port TargetLibraryInfo to the new pass manager, provided by the · 8ca43224
      Chandler Carruth authored
      TargetLibraryAnalysis pass.
      
      There are actually no direct tests of this already in the tree. I've
      added the most basic test that the pass manager bits themselves work,
      and the TLI object produced will be tested by an upcoming patches as
      they port passes which rely on TLI.
      
      This is starting to point out the awkwardness of the invalidate API --
      it seems poorly fitting on the *result* object. I suspect I will change
      it to live on the analysis instead, but that's not for this change, and
      I'd rather have a few more passes ported in order to have more
      experience with how this plays out.
      
      I believe there is only one more analysis required in order to start
      porting instcombine. =]
      
      llvm-svn: 226160
      8ca43224
    • Chandler Carruth's avatar
      [PM] Separate the TargetLibraryInfo object from the immutable pass. · b98f63db
      Chandler Carruth authored
      The pass is really just a means of accessing a cached instance of the
      TargetLibraryInfo object, and this way we can re-use that object for the
      new pass manager as its result.
      
      Lots of delta, but nothing interesting happening here. This is the
      common pattern that is developing to allow analyses to live in both the
      old and new pass manager -- a wrapper pass in the old pass manager
      emulates the separation intrinsic to the new pass manager between the
      result and pass for analyses.
      
      llvm-svn: 226157
      b98f63db
    • NAKAMURA Takumi's avatar
      24ebfcb6
    • Chandler Carruth's avatar
      [PM] Move TargetLibraryInfo into the Analysis library. · 62d4215b
      Chandler Carruth authored
      While the term "Target" is in the name, it doesn't really have to do
      with the LLVM Target library -- this isn't an abstraction which LLVM
      targets generally need to implement or extend. It has much more to do
      with modeling the various runtime libraries on different OSes and with
      different runtime environments. The "target" in this sense is the more
      general sense of a target of cross compilation.
      
      This is in preparation for porting this analysis to the new pass
      manager.
      
      No functionality changed, and updates inbound for Clang and Polly.
      
      llvm-svn: 226078
      62d4215b
  7. Jan 14, 2015
  8. Jan 13, 2015
    • Chandler Carruth's avatar
      [PM] Push the debug option for the new pass manager into the opt tool · 14a759e3
      Chandler Carruth authored
      and expose the necessary hooks in the API directly.
      
      This makes it much cleaner for example to log the usage of a pass
      manager from a library. It also makes it more obvious that this
      functionality isn't "optional" or "asserts-only" for the pass manager.
      
      llvm-svn: 225841
      14a759e3
    • Chandler Carruth's avatar
      [PM] Fold all three analysis managers into a single AnalysisManager · 7ad6d620
      Chandler Carruth authored
      template.
      
      This consolidates three copies of nearly the same core logic. It adds
      "complexity" to the ModuleAnalysisManager in that it makes it possible
      to share a ModuleAnalysisManager across multiple modules... But it does
      so by deleting *all of the code*, so I'm OK with that. This will
      naturally make fixing bugs in this code much simpler, etc.
      
      The only down side here is that we have to use 'typename' and 'this->'
      in various places, and the implementation is lifted into the header.
      I'll take that for the code size reduction.
      
      The convenient names are still typedef-ed and used throughout so that
      users can largely ignore this aspect of the implementation.
      
      The follow-up change to this will do the exact same refactoring for the
      PassManagers. =D
      
      It turns out that the interesting different code is almost entirely in
      the adaptors. At the end, that should be essentially all that is left.
      
      llvm-svn: 225757
      7ad6d620
  9. Jan 10, 2015
    • Rafael Espindola's avatar
      Use the DiagnosticHandler to print diagnostics when reading bitcode. · d0b23bef
      Rafael Espindola authored
      The bitcode reading interface used std::error_code to report an error to the
      callers and it is the callers job to print diagnostics.
      
      This is not ideal for error handling or diagnostic reporting:
      
      * For error handling, all that the callers care about is 3 possibilities:
        * It worked
        * The bitcode file is corrupted/invalid.
        * The file is not bitcode at all.
      
      * For diagnostic, it is user friendly to include far more information
        about the invalid case so the user can find out what is wrong with the
        bitcode file. This comes up, for example, when a developer introduces a
        bug while extending the format.
      
      The compromise we had was to have a lot of error codes.
      
      With this patch we use the DiagnosticHandler to communicate with the
      human and std::error_code to communicate with the caller.
      
      This allows us to have far fewer error codes and adds the infrastructure to
      print better diagnostics. This is so because the diagnostics are printed when
      he issue is found. The code that detected the problem in alive in the stack and
      can pass down as much context as needed. As an example the patch updates
      test/Bitcode/invalid.ll.
      
      Using a DiagnosticHandler also moves the fatal/non-fatal error decision to the
      caller. A simple one like llvm-dis can just use fatal errors. The gold plugin
      needs a bit more complex treatment because of being passed non-bitcode files. An
      hypothetical interactive tool would make all bitcode errors non-fatal.
      
      llvm-svn: 225562
      d0b23bef
  10. Jan 09, 2015
  11. Jan 08, 2015
  12. Jan 07, 2015
  13. Jan 06, 2015
Loading