Skip to content
  1. Sep 27, 2016
    • Adam Nemet's avatar
      Output optimization remarks in YAML · a62b7e1a
      Adam Nemet authored
      (Re-committed after moving the template specialization under the yaml
      namespace.  GCC was complaining about this.)
      
      This allows various presentation of this data using an external tool.
      This was first recommended here[1].
      
      As an example, consider this module:
      
        1 int foo();
        2 int bar();
        3
        4 int baz() {
        5   return foo() + bar();
        6 }
      
      The inliner generates these missed-optimization remarks today (the
      hotness information is pulled from PGO):
      
        remark: /tmp/s.c:5:10: foo will not be inlined into baz (hotness: 30)
        remark: /tmp/s.c:5:18: bar will not be inlined into baz (hotness: 30)
      
      Now with -pass-remarks-output=<yaml-file>, we generate this YAML file:
      
        --- !Missed
        Pass:            inline
        Name:            NotInlined
        DebugLoc:        { File: /tmp/s.c, Line: 5, Column: 10 }
        Function:        baz
        Hotness:         30
        Args:
          - Callee: foo
          - String:  will not be inlined into
          - Caller: baz
        ...
        --- !Missed
        Pass:            inline
        Name:            NotInlined
        DebugLoc:        { File: /tmp/s.c, Line: 5, Column: 18 }
        Function:        baz
        Hotness:         30
        Args:
          - Callee: bar
          - String:  will not be inlined into
          - Caller: baz
        ...
      
      This is a summary of the high-level decisions:
      
      * There is a new streaming interface to emit optimization remarks.
      E.g. for the inliner remark above:
      
         ORE.emit(DiagnosticInfoOptimizationRemarkMissed(
                      DEBUG_TYPE, "NotInlined", &I)
                  << NV("Callee", Callee) << " will not be inlined into "
                  << NV("Caller", CS.getCaller()) << setIsVerbose());
      
      NV stands for named value and allows the YAML client to process a remark
      using its name (NotInlined) and the named arguments (Callee and Caller)
      without parsing the text of the message.
      
      Subsequent patches will update ORE users to use the new streaming API.
      
      * I am using YAML I/O for writing the YAML file.  YAML I/O requires you
      to specify reading and writing at once but reading is highly non-trivial
      for some of the more complex LLVM types.  Since it's not clear that we
      (ever) want to use LLVM to parse this YAML file, the code supports and
      asserts that we're writing only.
      
      On the other hand, I did experiment that the class hierarchy starting at
      DiagnosticInfoOptimizationBase can be mapped back from YAML generated
      here (see D24479).
      
      * The YAML stream is stored in the LLVM context.
      
      * In the example, we can probably further specify the IR value used,
      i.e. print "Function" rather than "Value".
      
      * As before hotness is computed in the analysis pass instead of
      DiganosticInfo.  This avoids the layering problem since BFI is in
      Analysis while DiagnosticInfo is in IR.
      
      [1] https://reviews.llvm.org/D19678#419445
      
      Differential Revision: https://reviews.llvm.org/D24587
      
      llvm-svn: 282539
      a62b7e1a
    • Adam Nemet's avatar
      Revert "Output optimization remarks in YAML" · cc2a3fa8
      Adam Nemet authored
      This reverts commit r282499.
      
      The GCC bots are failing
      
      llvm-svn: 282503
      cc2a3fa8
    • Adam Nemet's avatar
      Output optimization remarks in YAML · 92e928c1
      Adam Nemet authored
      This allows various presentation of this data using an external tool.
      This was first recommended here[1].
      
      As an example, consider this module:
      
        1 int foo();
        2 int bar();
        3
        4 int baz() {
        5   return foo() + bar();
        6 }
      
      The inliner generates these missed-optimization remarks today (the
      hotness information is pulled from PGO):
      
        remark: /tmp/s.c:5:10: foo will not be inlined into baz (hotness: 30)
        remark: /tmp/s.c:5:18: bar will not be inlined into baz (hotness: 30)
      
      Now with -pass-remarks-output=<yaml-file>, we generate this YAML file:
      
        --- !Missed
        Pass:            inline
        Name:            NotInlined
        DebugLoc:        { File: /tmp/s.c, Line: 5, Column: 10 }
        Function:        baz
        Hotness:         30
        Args:
          - Callee: foo
          - String:  will not be inlined into
          - Caller: baz
        ...
        --- !Missed
        Pass:            inline
        Name:            NotInlined
        DebugLoc:        { File: /tmp/s.c, Line: 5, Column: 18 }
        Function:        baz
        Hotness:         30
        Args:
          - Callee: bar
          - String:  will not be inlined into
          - Caller: baz
        ...
      
      This is a summary of the high-level decisions:
      
      * There is a new streaming interface to emit optimization remarks.
      E.g. for the inliner remark above:
      
         ORE.emit(DiagnosticInfoOptimizationRemarkMissed(
                      DEBUG_TYPE, "NotInlined", &I)
                  << NV("Callee", Callee) << " will not be inlined into "
                  << NV("Caller", CS.getCaller()) << setIsVerbose());
      
      NV stands for named value and allows the YAML client to process a remark
      using its name (NotInlined) and the named arguments (Callee and Caller)
      without parsing the text of the message.
      
      Subsequent patches will update ORE users to use the new streaming API.
      
      * I am using YAML I/O for writing the YAML file.  YAML I/O requires you
      to specify reading and writing at once but reading is highly non-trivial
      for some of the more complex LLVM types.  Since it's not clear that we
      (ever) want to use LLVM to parse this YAML file, the code supports and
      asserts that we're writing only.
      
      On the other hand, I did experiment that the class hierarchy starting at
      DiagnosticInfoOptimizationBase can be mapped back from YAML generated
      here (see D24479).
      
      * The YAML stream is stored in the LLVM context.
      
      * In the example, we can probably further specify the IR value used,
      i.e. print "Function" rather than "Value".
      
      * As before hotness is computed in the analysis pass instead of
      DiganosticInfo.  This avoids the layering problem since BFI is in
      Analysis while DiagnosticInfo is in IR.
      
      [1] https://reviews.llvm.org/D19678#419445
      
      Differential Revision: https://reviews.llvm.org/D24587
      
      llvm-svn: 282499
      92e928c1
    • Ivan Krasin's avatar
      Revert r277556. Add -lowertypetests-bitsets-level to control bitsets generation · 4ff4f21e
      Ivan Krasin authored
      Summary:
      We don't currently need this facility for CFI. Disabling individual hot methods proved
      to be a better strategy in Chrome.
      
      Also, the design of the feature is suboptimal, as pointed out by Peter Collingbourne.
      
      Reviewers: pcc
      
      Subscribers: kcc
      
      Differential Revision: https://reviews.llvm.org/D24948
      
      llvm-svn: 282461
      4ff4f21e
    • Peter Collingbourne's avatar
      LowerTypeTests: Remove unused variable. · 53a852b6
      Peter Collingbourne authored
      llvm-svn: 282456
      53a852b6
    • Peter Collingbourne's avatar
      LowerTypeTests: Create LowerTypeTestsModule class and move implementation... · 6ed92e3f
      Peter Collingbourne authored
      LowerTypeTests: Create LowerTypeTestsModule class and move implementation there. Related simplifications.
      
      llvm-svn: 282455
      6ed92e3f
  2. Sep 26, 2016
    • Piotr Padlewski's avatar
      [thinlto] Basic thinlto fdo heuristic · d9830eb7
      Piotr Padlewski authored
      Summary:
      This patch improves thinlto importer
      by importing 3x larger functions that are called from hot block.
      
      I compared performance with the trunk on spec, and there
      were about 2% on povray and 3.33% on milc. These results seems
      to be consistant and match the results Teresa got with her simple
      heuristic. Some benchmarks got slower but I think they are just
      noisy (mcf, xalancbmki, omnetpp)- running the benchmarks again with
      more iterations to confirm. Geomean of all benchmarks including the noisy ones
      were about +0.02%.
      
      I see much better improvement on google branch with Easwaran patch
      for pgo callsite inlining (the inliner actually inline those big functions)
      Over all I see +0.5% improvement, and I get +8.65% on povray.
      So I guess we will see much bigger change when Easwaran patch will land
      (it depends on new pass manager), but it is still worth putting this to trunk
      before it.
      
      Implementation details changes:
      - Removed CallsiteCount.
      - ProfileCount got replaced by Hotness
      - hot-import-multiplier is set to 3.0 for now,
      didn't have time to tune it up, but I see that we get most of the interesting
      functions with 3, so there is no much performance difference with higher, and
      binary size doesn't grow as much as with 10.0.
      
      Reviewers: eraman, mehdi_amini, tejohnson
      
      Subscribers: mehdi_amini, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D24638
      
      llvm-svn: 282437
      d9830eb7
  3. Sep 21, 2016
  4. Sep 19, 2016
    • Dehao Chen's avatar
      Handle early inline for hot callsites that reside in the same basic block. · 20866ed5
      Dehao Chen authored
      Summary: Callsites in the same basic block should share the same hotness. This patch checks for the hottest callsite in the same basic block, and use the hotness for all callsites in that basic block for early inline decisions. It also fixes the test to add "-S" so theat the "CHECK-NOT" is actually checking the content.
      
      Reviewers: dnovillo
      
      Subscribers: llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D24734
      
      llvm-svn: 281927
      20866ed5
    • Dehao Chen's avatar
      Only set branch weight during sample pgo annotation when max_weight of the... · 82667d04
      Dehao Chen authored
      Only set branch weight during sample pgo annotation when max_weight of the branch is non-zero. Otherwise use default static profile to set branch probability.
      
      Summary: It does not make sense to set equal weights for all unkown branches as we have static branch prediction available.
      
      Reviewers: dnovillo
      
      Subscribers: llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D24732
      
      llvm-svn: 281912
      82667d04
    • Dehao Chen's avatar
      Use call target count to derive the call instruction weight · 38e3731c
      Dehao Chen authored
      Summary: The call target count profile is directly derived from LBR branch->target data. This is more reliable than instruction frequency profiles that could be moved across basic block boundaries. This patches uses call target count profile to annotate call instructions.
      
      Reviewers: davidxl, dnovillo
      
      Subscribers: llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D24410
      
      llvm-svn: 281911
      38e3731c
    • Dehao Chen's avatar
      Handle Invoke during sample profiler annotation: make it inlinable. · 41cde0b9
      Dehao Chen authored
      Summary: Previously we reline on inst-combine to remove inlinable invoke instructions. This causes trouble because a few extra optimizations are schedule early that could introduce too much CFG change (e.g. simplifycfg removes too much control flow). This patch handles invoke instruction in-place during sample profile annotation, so that we do not rely on instcombine to remove those invoke instructions.
      
      Reviewers: davidxl, dnovillo
      
      Subscribers: llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D24409
      
      llvm-svn: 281870
      41cde0b9
  5. Sep 17, 2016
    • Teresa Johnson's avatar
      [ThinLTO] Ensure anonymous globals renamed even at -O0 · fbb431b2
      Teresa Johnson authored
      Summary:
      This fixes an issue when files are compiled with -flto=thin
      at default -O0. We need to rename anonymous globals before attempting
      to write the module summary because all values need names for
      the summary. This was happening at -O1 and above, but not before
      the early exit when constructing the pipeline for -O0.
      
      Also add an internal -prepare-for-thinlto option to enable this
      to be tested via opt.
      
      Fixes PR30419.
      
      Reviewers: mehdi_amini
      
      Subscribers: probinson, llvm-commits, mehdi_amini
      
      Differential Revision: https://reviews.llvm.org/D24701
      
      llvm-svn: 281840
      fbb431b2
    • Mehdi Amini's avatar
      Don't create a SymbolTable in Function when the LLVMContext discards value names (NFC) · a53d49e1
      Mehdi Amini authored
      The ValueSymbolTable is used to detect name conflict and rename
      instructions automatically. This is not needed when the value
      names are automatically discarded by the LLVMContext.
      No functional change intended, just saving a little bit of memory.
      
      This is a recommit of r281806 after fixing the accessor to return
      a pointer instead of a reference and updating all the call-sites.
      
      llvm-svn: 281813
      a53d49e1
  6. Sep 16, 2016
  7. Sep 15, 2016
    • Mehdi Amini's avatar
      [GlobalOpt] Dead Eliminate declarations · d8803098
      Mehdi Amini authored
      GlobalOpt is already dead-code-eliminating global definitions. With
      this change it also takes care of declarations.
      Hopefully this should make it now a strict superset of GlobalDCE.
      This is important for LTO/ThinLTO as we don't want the linker to see
      "undefined reference" when it processes the input files: it could
      prevent proper internalization (or even load an extra file from a
      static archive, changing the behavior of the program!).
      
      llvm-svn: 281653
      d8803098
  8. Sep 13, 2016
  9. Sep 12, 2016
  10. Aug 31, 2016
  11. Aug 30, 2016
    • Teresa Johnson's avatar
      [ThinLTO] Indirect call promotion fixes for promoted local functions · 8c1bc986
      Teresa Johnson authored
      Summary:
      Fix a couple issues limiting the application of indirect call promotion
      in ThinLTO mode:
      - Invoke indirect call promotion before globalopt, since it may
        eliminate imported functions which appear unreferenced.
      - Invoke indirect call promotion with InLTO=true so that the PGOFuncName
        metadata is used to get the name for locals which would have been
        renamed during promotion.
      
      Reviewers: davidxl, mehdi_amini
      
      Subscribers: Prazek, llvm-commits, mehdi_amini
      
      Differential Revision: https://reviews.llvm.org/D24004
      
      llvm-svn: 280024
      8c1bc986
  12. Aug 26, 2016
    • Adam Nemet's avatar
      [Inliner] Report when inlining fails because callee's def is unavailable · cef33141
      Adam Nemet authored
      Summary:
      This is obviously an interesting case because it may motivate code
      restructuring or LTO.
      
      Reporting this requires instantiation of ORE in the loop where the call
      sites are first gathered.  I've checked compile-time
      overhead *with* -Rpass-with-hotness and the worst slow-down was 6% in
      mcf and quickly tailing off.  As before without -Rpass-with-hotness
      there is no overhead.
      
      Because this could be a pretty noisy diagnostics, it is currently
      qualified as 'verbose'.  As of this patch, 'verbose' diagnostics are
      only emitted with -Rpass-with-hotness, i.e. when the output is expected
      to be filtered.
      
      Reviewers: eraman, chandlerc, davidxl, hfinkel
      
      Subscribers: tejohnson, Prazek, davide, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D23415
      
      llvm-svn: 279860
      cef33141
  13. Aug 24, 2016
    • Chandler Carruth's avatar
      [PM] Introduce basic update capabilities to the new PM's CGSCC pass · 88823468
      Chandler Carruth authored
      manager, including both plumbing and logic to handle function pass
      updates.
      
      There are three fundamentally tied changes here:
      1) Plumbing *some* mechanism for updating the CGSCC pass manager as the
         CG changes while passes are running.
      2) Changing the CGSCC pass manager infrastructure to have support for
         the underlying graph to mutate mid-pass run.
      3) Actually updating the CG after function passes run.
      
      I can separate them if necessary, but I think its really useful to have
      them together as the needs of #3 drove #2, and that in turn drove #1.
      
      The plumbing technique is to extend the "run" method signature with
      extra arguments. We provide the call graph that intrinsically is
      available as it is the basis of the pass manager's IR units, and an
      output parameter that records the results of updating the call graph
      during an SCC passes's run. Note that "...UpdateResult" isn't a *great*
      name here... suggestions very welcome.
      
      I tried a pretty frustrating number of different data structures and such
      for the innards of the update result. Every other one failed for one
      reason or another. Sometimes I just couldn't keep the layers of
      complexity right in my head. The thing that really worked was to just
      directly provide access to the underlying structures used to walk the
      call graph so that their updates could be informed by the *particular*
      nature of the change to the graph.
      
      The technique for how to make the pass management infrastructure cope
      with mutating graphs was also something that took a really, really large
      number of iterations to get to a place where I was happy. Here are some
      of the considerations that drove the design:
      
      - We operate at three levels within the infrastructure: RefSCC, SCC, and
        Node. In each case, we are working bottom up and so we want to
        continue to iterate on the "lowest" node as the graph changes. Look at
        how we iterate over nodes in an SCC running function passes as those
        function passes mutate the CG. We continue to iterate on the "lowest"
        SCC, which is the one that continues to contain the function just
        processed.
      
      - The call graph structure re-uses SCCs (and RefSCCs) during mutation
        events for the *highest* entry in the resulting new subgraph, not the
        lowest. This means that it is necessary to continually update the
        current SCC or RefSCC as it shifts. This is really surprising and
        subtle, and took a long time for me to work out. I actually tried
        changing the call graph to provide the opposite behavior, and it
        breaks *EVERYTHING*. The graph update algorithms are really deeply
        tied to this particualr pattern.
      
      - When SCCs or RefSCCs are split apart and refined and we continually
        re-pin our processing to the bottom one in the subgraph, we need to
        enqueue the newly formed SCCs and RefSCCs for subsequent processing.
        Queuing them presents a few challenges:
        1) SCCs and RefSCCs use wildly different iteration strategies at
           a high level. We end up needing to converge them on worklist
           approaches that can be extended in order to be able to handle the
           mutations.
        2) The order of the enqueuing need to remain bottom-up post-order so
           that we don't get surprising order of visitation for things like
           the inliner.
        3) We need the worklists to have set semantics so we don't duplicate
           things endlessly. We don't need a *persistent* set though because
           we always keep processing the bottom node!!!! This is super, super
           surprising to me and took a long time to convince myself this is
           correct, but I'm pretty sure it is... Once we sink down to the
           bottom node, we can't re-split out the same node in any way, and
           the postorder of the current queue is fixed and unchanging.
        4) We need to make sure that the "current" SCC or RefSCC actually gets
           enqueued here such that we re-visit it because we continue
           processing a *new*, *bottom* SCC/RefSCC.
      
      - We also need the ability to *skip* SCCs and RefSCCs that get merged
        into a larger component. We even need the ability to skip *nodes* from
        an SCC that are no longer part of that SCC.
      
      This led to the design you see in the patch which uses SetVector-based
      worklists. The RefSCC worklist is always empty until an update occurs
      and is just used to handle those RefSCCs created by updates as the
      others don't even exist yet and are formed on-demand during the
      bottom-up walk. The SCC worklist is pre-populated from the RefSCC, and
      we push new SCCs onto it and blacklist existing SCCs on it to get the
      desired processing.
      
      We then *directly* update these when updating the call graph as I was
      never able to find a satisfactory abstraction around the update
      strategy.
      
      Finally, we need to compute the updates for function passes. This is
      mostly used as an initial customer of all the update mechanisms to drive
      their design to at least cover some real set of use cases. There are
      a bunch of interesting things that came out of doing this:
      
      - It is really nice to do this a function at a time because that
        function is likely hot in the cache. This means we want even the
        function pass adaptor to support online updates to the call graph!
      
      - To update the call graph after arbitrary function pass mutations is
        quite hard. We have to build a fairly comprehensive set of
        data structures and then process them. Fortunately, some of this code
        is related to the code for building the cal graph in the first place.
        Unfortunately, very little of it makes any sense to share because the
        nature of what we're doing is so very different. I've factored out the
        one part that made sense at least.
      
      - We need to transfer these updates into the various structures for the
        CGSCC pass manager. Once those were more sanely worked out, this
        became relatively easier. But some of those needs necessitated changes
        to the LazyCallGraph interface to make it significantly easier to
        extract the changed SCCs from an update operation.
      
      - We also need to update the CGSCC analysis manager as the shape of the
        graph changes. When an SCC is merged away we need to clear analyses
        associated with it from the analysis manager which we didn't have
        support for in the analysis manager infrsatructure. New SCCs are easy!
        But then we have the case that the original SCC has its shape changed
        but remains in the call graph. There we need to *invalidate* the
        analyses associated with it.
      
      - We also need to invalidate analyses after we *finish* processing an
        SCC. But the analyses we need to invalidate here are *only those for
        the newly updated SCC*!!! Because we only continue processing the
        bottom SCC, if we split SCCs apart the original one gets invalidated
        once when its shape changes and is not processed farther so its
        analyses will be correct. It is the bottom SCC which continues being
        processed and needs to have the "normal" invalidation done based on
        the preserved analyses set.
      
      All of this is mostly background and context for the changes here.
      
      Many thanks to all the reviewers who helped here. Especially Sanjoy who
      caught several interesting bugs in the graph algorithms, David, Sean,
      and others who all helped with feedback.
      
      Differential Revision: http://reviews.llvm.org/D21464
      
      llvm-svn: 279618
      88823468
  14. Aug 22, 2016
  15. Aug 17, 2016
    • Justin Bogner's avatar
      Replace a few more "fall through" comments with LLVM_FALLTHROUGH · cd1d5aaf
      Justin Bogner authored
      Follow up to r278902. I had missed "fall through", with a space.
      
      llvm-svn: 278970
      cd1d5aaf
    • Chandler Carruth's avatar
      [PM] Port the always inliner to the new pass manager in a much more · 67fc52f0
      Chandler Carruth authored
      minimal and boring form than the old pass manager's version.
      
      This pass does the very minimal amount of work necessary to inline
      functions declared as always-inline. It doesn't support a wide array of
      things that the legacy pass manager did support, but is alse ... about
      20 lines of code. So it has that going for it. Notably things this
      doesn't support:
      
      - Array alloca merging
        - To support the above, bottom-up inlining with careful history
          tracking and call graph updates
      - DCE of the functions that become dead after this inlining.
      - Inlining through call instructions with the always_inline attribute.
        Instead, it focuses on inlining functions with that attribute.
      
      The first I've omitted because I'm hoping to just turn it off for the
      primary pass manager. If that doesn't pan out, I can add it here but it
      will be reasonably expensive to do so.
      
      The second should really be handled by running global-dce after the
      inliner. I don't want to re-implement the non-trivial logic necessary to
      do comdat-correct DCE of functions. This means the -O0 pipeline will
      have to be at least 'always-inline,global-dce', but that seems
      reasonable to me. If others are seriously worried about this I'd like to
      hear about it and understand why. Again, this is all solveable by
      factoring that logic into a utility and calling it here, but I'd like to
      wait to do that until there is a clear reason why the existing
      pass-based factoring won't work.
      
      The final point is a serious one. I can fairly easily add support for
      this, but it seems both costly and a confusing construct for the use
      case of the always inliner running at -O0. This attribute can of course
      still impact the normal inliner easily (although I find that
      a questionable re-use of the same attribute). I've started a discussion
      to sort out what semantics we want here and based on that can figure out
      if it makes sense ta have this complexity at O0 or not.
      
      One other advantage of this design is that it should be quite a bit
      faster due to checking for whether the function is a viable candidate
      for inlining exactly once per function instead of doing it for each call
      site.
      
      Anyways, hopefully a reasonable starting point for this pass.
      
      Differential Revision: https://reviews.llvm.org/D23299
      
      llvm-svn: 278896
      67fc52f0
    • Chandler Carruth's avatar
      [Inliner] Add a flag to disable manual alloca merging in the Inliner. · f702d8ec
      Chandler Carruth authored
      This is off for now while testing can take place to make sure that in
      fact we do sufficient stack coloring to fully obviate the manual alloca
      array merging.
      
      Some context on why we should be using stack coloring rather than
      merging allocas in this way:
      
      LLVM relies very heavily on analyzing pointers as coming from different
      allocas in order to make aliasing decisions. These are some of the most
      powerful aliasing signals available in LLVM. So merging allocas is an
      extremely destructive operation on the LLVM IR -- it takes away highly
      valuable and hard to reconstruct information.
      
      As a consequence, inlined functions which happen to have array allocas
      that this pattern matches will fail to be properly interleaved unless
      SROA manages to hoist everything to an SSA register. Instead, the
      inliner will have added an unnecessary dependence that one inlined
      function execute after the other because they will have been rewritten
      to refer to the same memory.
      
      All that said, folks will reasonably want some time to experiment here
      and make sure there are no significant regressions. A flag should give
      us an easy knob to test.
      
      For more context, see the thread here:
      http://lists.llvm.org/pipermail/llvm-dev/2016-July/103277.html
      http://lists.llvm.org/pipermail/llvm-dev/2016-August/103285.html
      
      Differential Revision: https://reviews.llvm.org/D23052
      
      llvm-svn: 278892
      f702d8ec
    • Duncan P. N. Exon Smith's avatar
      IPO: Swap || operands to avoid dereferencing end() · 9e3edad9
      Duncan P. N. Exon Smith authored
      IsOperandBundleUse conveniently indicates  whether
      std::next(F->arg_begin(),UseIndex) will get to (or past) end().  Check
      it first to avoid dereferencing end().
      
      llvm-svn: 278884
      9e3edad9
  16. Aug 16, 2016
  17. Aug 15, 2016
  18. Aug 12, 2016
  19. Aug 11, 2016
  20. Aug 10, 2016
    • Piotr Padlewski's avatar
      Changed sign of LastCallToStaticBouns · d89875ca
      Piotr Padlewski authored
      Summary:
      I think it is much better this way.
      When I firstly saw line:
        Cost += InlineConstants::LastCallToStaticBonus;
      I though that this is a bug, because everywhere where the cost is being reduced
      it is usuing -=.
      
      Reviewers: eraman, tejohnson, mehdi_amini
      
      Subscribers: llvm-commits, mehdi_amini
      
      Differential Revision: https://reviews.llvm.org/D23222
      
      llvm-svn: 278290
      d89875ca
Loading