Skip to content
  1. Jan 20, 2015
  2. Jan 18, 2015
  3. Jan 16, 2015
  4. 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
  5. Jan 14, 2015
  6. 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
  7. 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
  8. Jan 09, 2015
  9. Jan 08, 2015
  10. Jan 07, 2015
  11. Jan 06, 2015
    • Filipe Cabecinhas's avatar
      Don't loop endlessly for MachO files with 0 ncmds · e71bd0c8
      Filipe Cabecinhas authored
      llvm-svn: 225271
      e71bd0c8
    • Chandler Carruth's avatar
      [PM] Hide a function we only use in an assert behind NDEBUG. · 9d2e58f7
      Chandler Carruth authored
      llvm-svn: 225258
      9d2e58f7
    • Chandler Carruth's avatar
      [PM] Introduce a utility pass that preserves no analyses. · 4e107caf
      Chandler Carruth authored
      Use this to test that path of invalidation. This test actually shows
      redundant invalidation here that is really bad. I'm going to work on
      fixing that next, but wanted to commit the test harness now that its all
      working.
      
      llvm-svn: 225257
      4e107caf
    • Chandler Carruth's avatar
      [PM] Simplify how we parse the outer layer of the pass pipeline text and · ea368f1e
      Chandler Carruth authored
      remove an extra, redundant pass manager wrapping every run.
      
      I had kept seeing these when manually testing, but it was getting really
      annoying and was going to cause problems with overly eager invalidation.
      The root cause was an overly complex and unnecessary pile of code for
      parsing the outer layer of the pass pipeline. We can instead delegate
      most of this to the recursive pipeline parsing.
      
      I've added some somewhat more basic and precise tests to catch this.
      
      llvm-svn: 225253
      ea368f1e
    • Chandler Carruth's avatar
      [PM] Add a utility pass template that synthesizes the invalidation of · 3472ffb3
      Chandler Carruth authored
      a specific analysis result.
      
      This is quite handy to test things, and will also likely be very useful
      for debugging issues. You could narrow down pass validation failures by
      walking these invalidate pass runs up and down the pass pipeline, etc.
      I've added support to the pass pipeline parsing to be able to create one
      of these for any analysis pass desired.
      
      Just adding this class uncovered one latent bug where the
      AnalysisManager CRTP base class had a hard-coded Module type rather than
      using IRUnitT.
      
      I've also added tests for invalidation and caching of analyses in
      a basic way across all the pass managers. These in turn uncovered two
      more bugs where we failed to correctly invalidate an analysis -- its
      results were invalidated but the key for re-running the pass was never
      cleared and so it was never re-run. Quite nasty. I'm very glad to debug
      this here rather than with a full system.
      
      Also, yes, the naming here is horrid. I'm going to update some of the
      names to be slightly less awful shortly. But really, I've no "good"
      ideas for naming. I'll be satisfied if I can get it to "not bad".
      
      llvm-svn: 225246
      3472ffb3
    • Chandler Carruth's avatar
      [PM] Simplify how we use the registry by including it only once. Still · 2be089de
      Chandler Carruth authored
      more verbose than I'd like, but the code really isn't that interesting,
      and this still seems vastly simpler than any other solutions I've come
      up with. =] Maybe if we get to the 10th IR unit, this will be a problem
      in practice.
      
      llvm-svn: 225245
      2be089de
    • Chandler Carruth's avatar
      [PM] Add a collection of no-op analysis passes and switch the new pass · 0b576b37
      Chandler Carruth authored
      manager tests to use them and be significantly more comprehensive.
      
      This, naturally, uncovered a bug where the CGSCC pass manager wasn't
      printing analyses when they were run.
      
      The only remaining core manipulator is I think an invalidate pass
      similar to the require pass. That'll be next. =]
      
      llvm-svn: 225240
      0b576b37
    • Chandler Carruth's avatar
      [PM] Sink the no-op pass parsing logic into the .def-based registry to · a872f3f6
      Chandler Carruth authored
      simplify things. This will become more important as I add no-op analyses
      that want to re-use the logic we already have for analyses in the
      registry. For now, no functionality changed.
      
      llvm-svn: 225238
      a872f3f6
    • Chandler Carruth's avatar
      [PM] Move the analysis registry into the Passes.cpp file and provide · b70f6734
      Chandler Carruth authored
      a normal interface for it in Passes.h.
      
      This gives us essentially a single interface for running pass managers
      which are provided from the bottom of the LLVM stack through interfaces
      at the top of the LLVM stack that populate them with all of the
      different analyses available throughout. It also means there is a single
      blob of code that needs to include all of the pass headers and needs to
      deal with the registry of passes and parsing names.
      
      No functionality changed intended, should just be cleanup.
      
      llvm-svn: 225237
      b70f6734
    • Chandler Carruth's avatar
      [PM] Add a utility to the new pass manager for generating a pass which · 628503e4
      Chandler Carruth authored
      is a no-op other than requiring some analysis results be available.
      
      This can be used in real pass pipelines to force the usually lazy
      analysis running to eagerly compute something at a specific point, and
      it can be used to test the pass manager infrastructure (my primary use
      at the moment).
      
      I've also added bit of pipeline parsing magic to support generating
      these directly from the opt command so that you can directly use these
      when debugging your analysis. The syntax is:
      
        require<analysis-name>
      
      This can be used at any level of the pass manager. For example:
      
        cgscc(function(require<my-analysis>,no-op-function))
      
      This would produce a no-op function pass requiring my-analysis, followed
      by a fully no-op function pass, both of these in a function pass manager
      which is nested inside of a bottom-up CGSCC pass manager which is in the
      top-level (implicit) module pass manager.
      
      I have zero attachment to the particular syntax I'm using here. Consider
      it a straw man for use while I'm testing and fleshing things out.
      Suggestions for better syntax welcome, and I'll update everything based
      on any consensus that develops.
      
      I've used this new functionality to more directly test the analysis
      printing rather than relying on the cgscc pass manager running an
      analysis for me. This is still minimally tested because I need to have
      analyses to run first! ;] That patch is next, but wanted to keep this
      one separate for easier review and discussion.
      
      llvm-svn: 225236
      628503e4
  12. Jan 05, 2015
    • Frederic Riss's avatar
      [dsymutil] Implement the BinaryHolder object and gain archive support. · 43988507
      Frederic Riss authored
      This object is meant to own the ObjectFiles and their underlying
      MemoryBuffer. It is basically the equivalent of an OwningBinary
      except that it efficiently handles Archives. It is optimized for
      efficiently providing mappings of members of the same archive when
      they are opened successively (which is standard in Darwin debug
      maps, objects from the same archive will be contiguous).
      
      Of course, the BinaryHolder will also be used by the DWARF linker
      once it is commited, but for now only the debug map parser uses it.
      
      With this change, you can run llvm-dsymutil on your Darwin debug build
      of clang and get a complete debug map for it.
      
      Differential Revision: http://reviews.llvm.org/D6690
      
      llvm-svn: 225207
      43988507
    • Chandler Carruth's avatar
      [PM] Switch the new pass manager to use a reference-based API for IR · d174ce4a
      Chandler Carruth authored
      units.
      
      This was debated back and forth a bunch, but using references is now
      clearly cleaner. Of all the code written using pointers thus far, in
      only one place did it really make more sense to have a pointer. In most
      cases, this just removes immediate dereferencing from the code. I think
      it is much better to get errors on null IR units earlier, potentially
      at compile time, than to delay it.
      
      Most notably, the legacy pass manager uses references for its routines
      and so as more and more code works with both, the use of pointers was
      likely to become really annoying. I noticed this when I ported the
      domtree analysis over and wrote the entire thing with references only to
      have it fail to compile. =/ It seemed better to switch now than to
      delay. We can, of course, revisit this is we learn that references are
      really problematic in the API.
      
      llvm-svn: 225145
      d174ce4a
Loading