Skip to content
  1. Oct 23, 2020
    • Arthur Eubanks's avatar
      [Inliner] Run always-inliner in inliner-wrapper · 0291e2c9
      Arthur Eubanks authored
      An alwaysinline function may not get inlined in inliner-wrapper due to
      the inlining order.
      
      Previously for the following, the inliner would first inline @a() into @b(),
      
      ```
      define void @a() {
      entry:
        call void @b()
        ret void
      }
      
      define void @b() alwaysinline {
      entry:
        br label %for.cond
      
      for.cond:
        call void @a()
        br label %for.cond
      }
      ```
      
      making @b() recursive and unable to be inlined into @a(), ending at
      
      ```
      define void @a() {
      entry:
        call void @b()
        ret void
      }
      
      define void @b() alwaysinline {
      entry:
        br label %for.cond
      
      for.cond:
        call void @b()
        br label %for.cond
      }
      ```
      
      Running always-inliner first makes sure that we respect alwaysinline in more cases.
      
      Fixes https://bugs.llvm.org/show_bug.cgi?id=46945.
      
      Reviewed By: davidxl, rnk
      
      Differential Revision: https://reviews.llvm.org/D86988
      0291e2c9
    • Han Shen's avatar
      Revert "[MBP] Add whole chain to BlockFilterSet instead of individual BB" · e42f6c0a
      Han Shen authored
      This reverts commit adfb5415.
      
      This is reverted because it caused an chrome error: https://crbug.com/1140168
      e42f6c0a
    • Wei Mi's avatar
      [NFC][SampleFDO] Move some common stuff from SampleProfileReaderExtBinary/WriterExtBinary · 93953d41
      Wei Mi authored
      to their parent classes.
      
      SampleProfileReaderExtBinary/SampleProfileWriterExtBinary specify the typical
      section layout currently used by SampleFDO. Currently a lot of section
      reader/writer stay in the two classes. However, as we expect to have more
      types of SampleFDO profiles, we hope those new types of profiles can share
      the common sections while configuring their own sections easily with minimal
      change. That is why I move some common stuff from
      SampleProfileReaderExtBinary/SampleProfileWriterExtBinary to
      SampleProfileReaderExtBinaryBase/SampleProfileWriterExtBinaryBase so new
      profiles class inheriting from the base class can reuse them.
      
      Differential Revision: https://reviews.llvm.org/D89524
      93953d41
    • Jessica Paquette's avatar
      [AArch64][GlobalISel] Move imm adjustment for G_ICMP to post-legalizer lowering · 19dc9c97
      Jessica Paquette authored
      Move the code which adjusts the immediate/predicate on a G_ICMP to
      AArch64PostLegalizerLowering.
      
      This
      
      - Reduces the number of places we need to test for optimized compares in the
      selector. We know that the compare should have been simplified by the time it
      hits the selector, so we can avoid testing this in selects, brconds, etc.
      
      - Allows us to potentially fold more compares (previously, this optimization
      was only done after calling `tryFoldCompare`, this may allow us to hit some more
      TST cases)
      
      - Simplifies the selection code in `emitIntegerCompare` significantly; we can
      just use an emitSUBS function.
      
      - Allows us to avoid checking that the predicate has been updated after
      `emitIntegerCompare`.
      
      Also add a utility header file for things that may be useful in the selector
      and various combiners. No need for an implementation file at this point, since
      it's just one constexpr function for now. I've run into a couple cases where
      having one of these would be handy, so might as well add it here. There are
      a couple functions in the selector that can probably be factored out into
      here.
      
      Differential Revision: https://reviews.llvm.org/D89823
      19dc9c97
  2. Oct 22, 2020
Loading