[PATCH] D28693: [InlineCost] Use TTI to check if GEP is free.

Haicheng Wu via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Jan 18 12:54:00 PST 2017


haicheng added inline comments.


================
Comment at: test/Transforms/Inline/gep-cost.ll:1
+; RUN: opt -inline < %s -S -debug-only=inline-cost 2>&1 | FileCheck %s
+
----------------
mcrosier wrote:
> I apologize for my lack of understanding.  Assuming this isn't obvious to someone more familiar with the inliner cost model, would you mind adding a few comments to this test case explaining exactly what you're testing?
> 
> I diffed the output from this test with and without your change and the only cost that was changed was for inner1.  Thus, I'm trying to understand the significance of inner2.
Thank you, Chad.  I will add appropriate comments.

The GEP in inner2() is reg+imm+reg which is not legal addressing mode for AArch64.  I expect to see only ret  can be simplified.  The current implementation only considers GEP with all constant indices are foldable, so the GEP in inner2() is considered not foldable even without my patch.  I add this test for completeness.

The GEP in inner1(), however, is reg+reg and is legal for AArch64.  It can be detected only with my patch.


Repository:
  rL LLVM

https://reviews.llvm.org/D28693





More information about the llvm-commits mailing list