[PATCH] D12004: [RewriteStatepointsForGC] Reduce the number of new instructions for base pointers

Philip Reames via llvm-commits llvm-commits at lists.llvm.org
Wed Aug 12 17:45:33 PDT 2015


reames created this revision.
reames added reviewers: sanjoy, chenli, igor-laevsky.
reames added a subscriber: llvm-commits.
Herald added a subscriber: sanjoy.

When computing base pointers, we introduce new instructions to propagate the base of existing instructions which might not be bases.  However, the algorithm doesn't make any effort to recognize when the new instruction to be inserted is the same as an existing one already in the IR.  Since this is happening immediately before rewriting, we don't really have a chance to fix it after the pass runs without teaching loop passes about statepoints.

I'm really not thrilled with this patch.  I've rewritten it 4 different ways now, but this is the best I've come up with.  The case where the new instruction is just the original base defining value could be merged into the existing algorithm with some complexity.  The problem is that we might have something like an extractelement from a phi of two vectors.  It may be trivially obvious that the base of the 0th element is an existing instruction, but I can't see how to make the algorithm itself figure that out.  Thus, I resort to the call to SimplifyInstruction instead.  

Note that we can only adjust the instructions we've inserted ourselves.  The live sets are still being tracked in side structures at this point in the code.  We can't easily muck with instructions which might be in them.  Long term, I'm really thinking we need to materialize the live pointer sets explicitly in the IR somehow rather than using side structures to track them.

http://reviews.llvm.org/D12004

Files:
  lib/Transforms/Scalar/RewriteStatepointsForGC.cpp
  test/Transforms/RewriteStatepointsForGC/base-pointers-4.ll
  test/Transforms/RewriteStatepointsForGC/base-pointers.ll
  test/Transforms/RewriteStatepointsForGC/base-vector.ll
  test/Transforms/RewriteStatepointsForGC/live-vector.ll

-------------- next part --------------
A non-text attachment was scrubbed...
Name: D12004.32014.patch
Type: text/x-patch
Size: 7527 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20150813/ef22acbe/attachment.bin>


More information about the llvm-commits mailing list