llvm-6502/test/Transforms/MemCpyOpt
Chris Lattner b3f0673d52 Teach valuetracking that byval arguments with a specified alignment are
aligned.

Teach memcpyopt to not give up all hope when confonted with an underaligned
memcpy feeding an overaligned byval.  If the *source* of the memcpy can be
determined to be adequeately aligned, or if it can be forced to be, we can
eliminate the memcpy.

This addresses PR9794.  We now compile the example into:

define i32 @f(%struct.p* nocapture byval align 8 %q) nounwind ssp {
entry:
  %call = call i32 @g(%struct.p* byval align 8 %q) nounwind
  ret i32 %call
}

in both x86-64 and x86-32 mode.  We still don't get a tailcall though,
because tailcalls apparently can't handle byval.



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@131884 91177308-0d34-0410-b5e6-96231b3b80d8
2011-05-23 00:03:39 +00:00
..
2008-02-24-MultipleUseofSRet.ll
2008-03-13-ReturnSlotBitcast.ll
align.ll fix typo 2011-01-10 02:33:34 +00:00
crash.ll
dg.exp
form-memset.ll revert 123144, reenabling the rest of memset formation. 2011-01-12 03:25:15 +00:00
loadstore-sret.ll
memcpy-to-memset.ll
memcpy.ll Teach valuetracking that byval arguments with a specified alignment are 2011-05-23 00:03:39 +00:00
memmove.ll
smaller.ll Actually check memcpy lengths, instead of just commenting about 2011-01-21 22:07:57 +00:00
sret.ll