<div dir="ltr">Ah, I see. That means I should just skip the setting of the alignment if it matches the ABI (this one is produced by a custom pass). Thanks.<div><br></div><div>Note that the default ABI alignment might be bigger than 1!</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Jan 24, 2018 at 7:40 PM, Daniel Neilson <span dir="ltr"><<a href="mailto:dneilson@azul.com" target="_blank">dneilson@azul.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">



<div style="word-wrap:break-word;line-break:after-white-space">
Good question. AFAIK, the IR-printer doesn’t understand the semantics of parameter attributes. In this case, it only knows that there is an attribute on the parameter that is integer valued (with value 1) and that has the name “align”, so it prints it out.
 If we don’t want it printing out ‘align 1’ then it’s up to us to not set the alignment parameter attribute to a value if that value would be 1.
<div><br>
</div>
<div>If preferred, it would be easy enough to change the behaviour for the memory intrinsics to only set the attribute to a value if an alignment greater than 1 is supplied. It’d keep the text in the IR a little cleaner/cleaner, and not change functionality…</div>
<div><br>
</div>
<div>Thoughts/opinions, anyone?</div><span class="HOEnZb"><font color="#888888">
<div><br>
</div>
</font></span><div><span class="HOEnZb"><font color="#888888">-Daniel</font></span><div><div class="h5"><br>
<div><br>
<blockquote type="cite">
<div>On Jan 24, 2018, at 9:24 PM, Alexandre Isoard <<a href="mailto:alexandre.isoard@gmail.com" target="_blank">alexandre.isoard@gmail.com</a>> wrote:</div>
<br class="m_4105360534281460580Apple-interchange-newline">
<div>
<div dir="ltr" style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px">
Yes, all that is correct.
<div><br>
</div>
<div>My question is more a long term question: why do the .ll printer specify the alignment if it is equivalent to the default one?</div>
<div>That is, it seems the sed script expect the printer to not specify it (this would match the load/store behavior), but the ll-printer does specify it, which either means the printer is not ideal on this case and I should fix it, or in this case
 the ABI alignment is not what I think it is, then I should fix the test-cases.</div>
<div><br>
</div>
<div>I'm not sure which side is correct.</div>
</div>
<div class="gmail_extra" style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px">
<br>
<div class="gmail_quote">On Wed, Jan 24, 2018 at 7:11 PM, Daniel Neilson<span class="m_4105360534281460580Apple-converted-space"> </span><span dir="ltr"><<a href="mailto:dneilson@azul.com" target="_blank">dneilson@azul.com</a>></span><span class="m_4105360534281460580Apple-converted-space"> </span>wr<wbr>ote:<br>
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex">
<div style="word-wrap:break-word;line-break:after-white-space">Hi Alexandre,
<div> Before the change you would have been expecting one of the following, correct?</div>
<div>a) call void @llvm.memcpy.p3i8.p1i8.i64(i8 addrspace(3)* bitcast ([512 x float] addrspace(3)* [[SPM0]] to i8 addrspace(3)*), i8 addrspace(1)* [[APTR]], i64 2048, i32 0, i1 false)</div>
<div>b) call void @llvm.memcpy.p3i8.p1i8.i64(i8 addrspace(3)* bitcast ([512 x float] addrspace(3)* [[SPM0]] to i8 addrspace(3)*), i8 addrspace(1)* [[APTR]], i64 2048, i32 1, i1 false)</div>
<div><br>
</div>
<div> Functionally, (a) & (b) are both saying that the src & dest pointers are 1-byte aligned; i.e. they’re both basically saying “I don’t really have any better information on alignment, so we’ll go with 1-byte aligned since it can’t be less aligned
 than that”</div>
<div><br>
</div>
<div>After the patch, you’re seeing:</div>
<div> i) call void @llvm.memcpy.p3i8.p1i8.i64(i8 addrspace(3)* align 1 bitcast ([512 x float] addrspace(3)* [[SPM0]] to i8 addrspace(3)*), i8 align 1 addrspace(1)* [[APTR]], i64 2048, i1 false)</div>
<div>but your IR test, that you ran the sed script on, is saying to expect:</div>
<div> ii) call void @llvm.memcpy.p3i8.p1i8.i64(i8 addrspace(3)* bitcast ([512 x float] addrspace(3)* [[SPM0]] to i8 addrspace(3)*), i8 addrspace(1)* [[APTR]], i64 2048, i1 false)</div>
<div><br>
</div>
<div> Is that correct? Just like (a) & (b), both (i) & (ii) are functionally equivalent.</div>
<div><br>
</div>
<div> The script rule that would have changed that was:</div>
<div><span style="font-family:"Segoe UI","Segoe UI Emoji","Segoe UI Symbol",Lato,"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)">s~call void </span><span class="m_4105360534281460580m_8764828501418912939phabricator-remarkup-mention-unknown" style="font-family:"Segoe UI","Segoe UI Emoji","Segoe UI Symbol",Lato,"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px">@llvm</span><span style="font-family:"Segoe UI","Segoe UI Emoji","Segoe UI Symbol",Lato,"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)">\.mem(cpy|move)\.p([<wbr>^(]*)i64\(i8([^*]*)\*
 (.*), i8([^*]*)\* (.*), i64 (.*), i32 [01], i1 ([^)]*)\)~call void </span><span class="m_4105360534281460580m_8764828501418912939phabricator-remarkup-mention-unknown" style="font-family:"Segoe UI","Segoe UI Emoji","Segoe UI Symbol",Lato,"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px">@llvm.mem</span><span style="font-family:"Segoe UI","Segoe UI Emoji","Segoe UI Symbol",Lato,"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)">\1.p\2i64(i8\3*
 \4, i8\5* \6, i64 \7, i1 \8)~g</span></div>
<div><span style="font-family:"Segoe UI","Segoe UI Emoji","Segoe UI Symbol",Lato,"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)"><br>
</span></div>
<div><span style="background-color:rgb(255,255,255)"><font face="Segoe UI, Segoe UI Emoji, Segoe UI Symbol, Lato, Helvetica Neue, Helvetica, Arial, sans-serif" size="2"> It was converting both (a) and (b) into (ii). If that’s
 not what you’re seeing/wanting, then you can just add the ‘align 1’s into your test’s CHECK pattern, or alter the sed script by changing “...</font></span><span style="background-color:rgb(255,255,255)"><font face="Segoe UI, Segoe UI Emoji, Segoe UI Symbol, Lato, Helvetica Neue, Helvetica, Arial, sans-serif" size="2">,
 i32 [01], i1...” into “...</font></span><span style="background-color:rgb(255,255,255)"><font face="Segoe UI, Segoe UI Emoji, Segoe UI Symbol, Lato, Helvetica Neue, Helvetica, Arial, sans-serif" size="2">, i32 0, i1…"</font></span></div>
<span class="m_4105360534281460580HOEnZb"><font color="#888888">
<div><span style="font-family:"Segoe UI","Segoe UI Emoji","Segoe UI Symbol",Lato,"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)"><br>
</span></div>
<div><span style="font-family:"Segoe UI","Segoe UI Emoji","Segoe UI Symbol",Lato,"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)">-Daniel</span></div>
</font></span>
<div>
<div class="m_4105360534281460580h5">
<div>
<div>
<div><br>
<blockquote type="cite">
<div>On Jan 24, 2018, at 8:47 PM, Alexandre Isoard <<a href="mailto:alexandre.isoard@gmail.com" target="_blank">alexandre.isoard@gmail.com</a>> wrote:</div>
<br class="m_4105360534281460580m_8764828501418912939Apple-interchange-newline">
<div>
<div dir="ltr" style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px">
Thanks, that worked like a charm except for the following:
<div><br>
</div>
<div>llvm generate:</div>
<div><br>
</div>
<div>
<div> call void @llvm.memcpy.p3i8.p1i8.i64(i8 addrspace(3)* align 1 bitcast ([512 x float] addrspace(3)* @a_scratchpad to i8 addrspace(3)*), i8 addrspace(1)* align 1 %0, i64 2048, i1 false)</div>
</div>
<div><br>
</div>
<div>And we expected:</div>
<div><br>
</div>
<div>
<div>call void @llvm.memcpy.p3i8.p1i8.i64(i8 addrspace(3)* bitcast ([512 x float] addrspace(3)* [[SPM0]] to i8 addrspace(3)*), i8 addrspace(1)* [[APTR]], i64 2048, i1 false)</div>
</div>
<div><br>
</div>
<div>Notice the presence of "align 1". I'm not sure which side is correct, isn't it equivalent (that is, this is the natural ABI alignment of that type)?</div>
<div><br>
</div>
<div>Here is my datalayout:</div>
<div><br>
</div>
<div>
<div>target datalayout = "e-m:e-i64:64-n8:16:32:64-S128<wbr>-v16:16-v24:32-v32:32-v48:64-<wbr>v96:128-v192:256-v256:256-v512<wbr>:512-v1024:1024"</div>
</div>
<div><br>
</div>
<div class="gmail_extra"><br>
<div class="gmail_quote">2018-01-23 20:14 GMT-08:00 Daniel Neilson<span class="m_4105360534281460580m_8764828501418912939Apple-converted-space"> </span><span dir="ltr"><<a href="mailto:dneilson@azul.com" target="_blank">dneilson@azul.com</a>></span>:<br>
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex">
<div style="word-wrap:break-word">Hi Alexandre,
<div> The script uses extended-sed syntax, so you need to run sed with the -E option.</div>
<div><br>
</div>
<div> For example, when preparing the patch I created a file ( script.sed ) containing all of the lines that I copied into the commit message. Then, I ran this bash one-liner from the test directory:</div>
<div>for f in $(find . -name '*.ll'); do sed -E -i ‘.sedbak' -f script.sed $f; done<br>
<div> </div>
<div> When I was happy with the results, then: find . -name ‘*.sedbak’ --exec rm -f {} \;</div>
<div><br>
</div>
<div> Please let me know if that doesn’t work for you.</div>
<div><br>
</div>
<div>-Daniel</div>
<div><br>
<blockquote type="cite">
<div>
<div class="m_4105360534281460580m_8764828501418912939gmail-m_8918637086329142092h5">
<div>On Jan 23, 2018, at 8:33 PM, Alexandre Isoard via llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a>> wrote:</div>
<br class="m_4105360534281460580m_8764828501418912939gmail-m_8918637086329142092m_-1925848526291612611Apple-interchange-newline">
</div>
</div>
<div>
<div>
<div class="m_4105360534281460580m_8764828501418912939gmail-m_8918637086329142092h5">
<div dir="ltr">Hello,
<div><br>
</div>
<div>Is there a script to update those test cases? I see mention of a sed script in the commit message but when I try it (see attached) on sed I get the following error:</div>
<div><br>
</div>
<div>sed: file script line 2: invalid reference \3 on `s' command's RHS</div>
<div><br>
</div>
<div>Did I lose something in a copy-paste? Is it not really a sed script? How do I run it?</div>
<div><br>
</div>
<div class="gmail_extra"><br>
<div class="gmail_quote">On Fri, Jan 19, 2018 at 9:15 AM, Daniel Neilson via Phabricator via llvm-commits<span class="m_4105360534281460580m_8764828501418912939Apple-converted-space"> </span><span dir="ltr"><<a href="mailto:llvm-commits@lists.llvm.org" target="_blank">llvm-commits@lis<wbr>ts.llvm.org</a>></span><span class="m_4105360534281460580m_8764828501418912939Apple-converted-space"> </span>wrote:<br>
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex">
This revision was automatically updated to reflect the committed changes.<br>
Closed by commit rL322965: Remove alignment argument from memcpy/memmove/memset in favour of alignment… (authored by dneilson, committed by ).<br>
<span><br>
Repository:<br>
  rL LLVM<br>
<br>
<a href="https://reviews.llvm.org/D41675" rel="noreferrer" target="_blank">https://reviews.llvm.org/D4167<wbr>5</a><br>
<br>
Files:<br>
</span>  llvm/trunk/docs/LangRef.rst<br>
  llvm/trunk/include/llvm/IR/Int<wbr>rinsicInst.h<br>
  llvm/trunk/include/llvm/IR/Int<a href="http://rinsics.td/" target="_blank"><wbr>rinsics.td</a><br>
  llvm/trunk/lib/CodeGen/Selecti<wbr>onDAG/SelectionDAGBuilder.cpp<br>
  llvm/trunk/lib/IR/AutoUpgrade.<wbr>cpp<br>
  llvm/trunk/lib/IR/IRBuilder.cp<wbr>p<br>
  llvm/trunk/lib/IR/Verifier.cpp<br>
  llvm/trunk/lib/Target/AArch64/<wbr>AArch64FastISel.cpp<br>
  llvm/trunk/lib/Target/ARM/ARMF<wbr>astISel.cpp<br>
  llvm/trunk/lib/Target/Mips/Mip<wbr>sFastISel.cpp<br>
  llvm/trunk/lib/Target/X86/X86F<wbr>astISel.cpp<br>
  llvm/trunk/lib/Transforms/Inst<wbr>Combine/InstCombineCalls.cpp<br>
  llvm/trunk/lib/Transforms/Inst<wbr>rumentation/DataFlowSanitizer.<wbr>cpp<br>
  llvm/trunk/test/Analysis/Alias<wbr>Set/memtransfer.ll<br>
  llvm/trunk/test/Analysis/Basic<wbr>AA/assume.ll<br>
  llvm/trunk/test/Analysis/Basic<wbr>AA/cs-cs.ll<br>
  llvm/trunk/test/Analysis/Basic<wbr>AA/gep-and-alias.ll<br>
  llvm/trunk/test/Analysis/Basic<wbr>AA/getmodrefinfo-cs-cs.ll<br>
  llvm/trunk/test/Analysis/Basic<wbr>AA/guards.ll<br>
  llvm/trunk/test/Analysis/Basic<wbr>AA/modref.ll<br>
  llvm/trunk/test/Analysis/CallG<wbr>raph/no-intrinsics.ll<br>
  llvm/trunk/test/Analysis/Const<wbr>antFolding/gep-constanfolding-<wbr>error.ll<br>
  llvm/trunk/test/Analysis/Depen<wbr>denceAnalysis/Preliminary.ll<br>
  llvm/trunk/test/Analysis/Globa<wbr>lsModRef/memset-escape.ll<br>
  llvm/trunk/test/Analysis/Globa<wbr>lsModRef/no-escape.ll<br>
  llvm/trunk/test/Analysis/Globa<wbr>lsModRef/pr12351.ll<br>
  llvm/trunk/test/Analysis/Globa<wbr>lsModRef/volatile-instrs.ll<br>
  llvm/trunk/test/Analysis/Lint/<wbr>noalias-byval.ll<br>
  llvm/trunk/test/Analysis/Memor<wbr>ySSA/basicaa-memcpy.ll<br>
  llvm/trunk/test/Analysis/Scala<wbr>rEvolution/avoid-smax-1.ll<br>
  llvm/trunk/test/Analysis/Scala<wbr>rEvolution/trip-count.ll<br>
  llvm/trunk/test/Analysis/Scala<wbr>rEvolution/trip-count3.ll<br>
  llvm/trunk/test/Analysis/TypeB<wbr>asedAliasAnalysis/functionattr<wbr>s.ll<br>
  llvm/trunk/test/Analysis/TypeB<wbr>asedAliasAnalysis/memcpyopt.ll<br>
  llvm/trunk/test/Bitcode/standa<wbr>rdCIntrinsic.3.2.ll<br>
  llvm/trunk/test/Bitcode/upgrad<wbr>e-memory-intrinsics.ll<br>
  llvm/trunk/test/CodeGen/AArch6<wbr>4/GlobalISel/arm64-irtranslato<wbr>r.ll<br>
  llvm/trunk/test/CodeGen/AArch6<wbr>4/PBQP-csr.ll<br>
  llvm/trunk/test/CodeGen/AArch6<wbr>4/aarch64-DAGCombine-findBette<wbr>rNeighborChains-crash.ll<br>
  llvm/trunk/test/CodeGen/AArch6<wbr>4/arm64-2012-05-07-MemcpyAlign<wbr>Bug.ll<br>
  llvm/trunk/test/CodeGen/AArch6<wbr>4/arm64-abi-varargs.ll<br>
  llvm/trunk/test/CodeGen/AArch6<wbr>4/arm64-abi_align.ll<br>
  llvm/trunk/test/CodeGen/AArch6<wbr>4/arm64-fast-isel-intrinsic.ll<br>
  llvm/trunk/test/CodeGen/AArch6<wbr>4/arm64-memcpy-inline.ll<br>
  llvm/trunk/test/CodeGen/AArch6<wbr>4/arm64-memset-inline.ll<br>
  llvm/trunk/test/CodeGen/AArch6<wbr>4/arm64-memset-to-bzero.ll<br>
  llvm/trunk/test/CodeGen/AArch6<wbr>4/arm64-misaligned-memcpy-inli<wbr>ne.ll<br>
  llvm/trunk/test/CodeGen/AArch6<wbr>4/arm64-misched-basic-A53.ll<br>
  llvm/trunk/test/CodeGen/AArch6<wbr>4/arm64-misched-basic-A57.ll<br>
  llvm/trunk/test/CodeGen/AArch6<wbr>4/arm64-stur.ll<br>
  llvm/trunk/test/CodeGen/AArch6<wbr>4/arm64-virtual_base.ll<br>
  llvm/trunk/test/CodeGen/AArch6<wbr>4/fast-isel-memcpy.ll<br>
  llvm/trunk/test/CodeGen/AArch6<wbr>4/func-argpassing.ll<br>
  llvm/trunk/test/CodeGen/AArch6<wbr>4/ldp-stp-scaled-unscaled-pair<wbr>s.ll<br>
  llvm/trunk/test/CodeGen/AArch6<wbr>4/ldst-paired-aliasing.ll<br>
  llvm/trunk/test/CodeGen/AArch6<wbr>4/ldst-zero.ll<br>
  llvm/trunk/test/CodeGen/AArch6<wbr>4/machine-combiner-madd.ll<br>
  llvm/trunk/test/CodeGen/AArch6<wbr>4/memcpy-f128.ll<br>
  llvm/trunk/test/CodeGen/AArch6<wbr>4/merge-store-dependency.ll<br>
  llvm/trunk/test/CodeGen/AArch6<wbr>4/mergestores_noimplicitfloat.<wbr>ll<br>
  llvm/trunk/test/CodeGen/AArch6<wbr>4/misched-stp.ll<br>
  llvm/trunk/test/CodeGen/AArch6<wbr>4/pr33172.ll<br>
  llvm/trunk/test/CodeGen/AArch6<wbr>4/tailcall-mem-intrinsics.ll<br>
  llvm/trunk/test/CodeGen/AArch6<wbr>4/tailcall-string-rvo.ll<br>
  llvm/trunk/test/CodeGen/AMDGPU<wbr>/addrspacecast-constantexpr.ll<br>
  llvm/trunk/test/CodeGen/AMDGPU<wbr>/lds-alignment.ll<br>
  llvm/trunk/test/CodeGen/AMDGPU<wbr>/llvm.memcpy.ll<br>
  llvm/trunk/test/CodeGen/AMDGPU<wbr>/lower-mem-intrinsics.ll<br>
  llvm/trunk/test/CodeGen/AMDGPU<wbr>/promote-alloca-mem-intrinsics<wbr>.ll<br>
  llvm/trunk/test/CodeGen/AMDGPU<wbr>/stack-size-overflow.ll<br>
  llvm/trunk/test/CodeGen/ARM/20<wbr>09-03-07-SpillerBug.ll<br>
  llvm/trunk/test/CodeGen/ARM/20<wbr>11-03-10-DAGCombineCrash.ll<br>
  llvm/trunk/test/CodeGen/ARM/20<wbr>11-10-26-memset-inline.ll<br>
  llvm/trunk/test/CodeGen/ARM/20<wbr>11-10-26-memset-with-neon.ll<br>
  llvm/trunk/test/CodeGen/ARM/20<wbr>12-04-24-SplitEHCriticalEdge.l<wbr>l<br>
  llvm/trunk/test/CodeGen/ARM/Wi<wbr>ndows/memset.ll<br>
  llvm/trunk/test/CodeGen/ARM/Wi<wbr>ndows/no-aeabi.ll<br>
  llvm/trunk/test/CodeGen/ARM/ar<wbr>m-eabi.ll<br>
  llvm/trunk/test/CodeGen/ARM/co<wbr>nstantpool-promote-ldrh.ll<br>
  llvm/trunk/test/CodeGen/ARM/co<wbr>nstantpool-promote.ll<br>
  llvm/trunk/test/CodeGen/ARM/cr<wbr>ash-O0.ll<br>
  llvm/trunk/test/CodeGen/ARM/de<wbr>bug-info-blocks.ll<br>
  llvm/trunk/test/CodeGen/ARM/dy<wbr>n-stackalloc.ll<br>
  llvm/trunk/test/CodeGen/ARM/fa<wbr>st-isel-intrinsic.ll<br>
  llvm/trunk/test/CodeGen/ARM/in<wbr>terval-update-remat.ll<br>
  llvm/trunk/test/CodeGen/ARM/ld<wbr>m-stm-base-materialization.ll<br>
  llvm/trunk/test/CodeGen/ARM/ma<wbr>chine-cse-cmp.ll<br>
  llvm/trunk/test/CodeGen/ARM/me<wbr>mcpy-inline.ll<br>
  llvm/trunk/test/CodeGen/ARM/me<wbr>mcpy-ldm-stm.ll<br>
  llvm/trunk/test/CodeGen/ARM/me<wbr>mcpy-no-inline.ll<br>
  llvm/trunk/test/CodeGen/ARM/me<wbr>mfunc.ll<br>
  llvm/trunk/test/CodeGen/ARM/me<wbr>mset-inline.ll<br>
  llvm/trunk/test/CodeGen/ARM/st<wbr>ack-protector-bmovpcb_call.ll<br>
  llvm/trunk/test/CodeGen/ARM/st<wbr>ruct-byval-frame-index.ll<br>
  llvm/trunk/test/CodeGen/ARM/ta<wbr>ilcall-mem-intrinsics.ll<br>
  llvm/trunk/test/CodeGen/AVR/st<wbr>d-ldd-immediate-overflow.ll<br>
  llvm/trunk/test/CodeGen/BPF/by<wbr>val.ll<br>
  llvm/trunk/test/CodeGen/BPF/ex<wbr>1.ll<br>
  llvm/trunk/test/CodeGen/BPF/fi<wbr>_ri.ll<br>
  llvm/trunk/test/CodeGen/BPF/re<wbr>loc.ll<br>
  llvm/trunk/test/CodeGen/BPF/ro<wbr>data_1.ll<br>
  llvm/trunk/test/CodeGen/BPF/ro<wbr>data_2.ll<br>
  llvm/trunk/test/CodeGen/BPF/ro<wbr>data_3.ll<br>
  llvm/trunk/test/CodeGen/BPF/ro<wbr>data_4.ll<br>
  llvm/trunk/test/CodeGen/BPF/sa<wbr>nity.ll<br>
  llvm/trunk/test/CodeGen/BPF/un<wbr>def.ll<br>
  llvm/trunk/test/CodeGen/BPF/wa<wbr>rn-call.ll<br>
  llvm/trunk/test/CodeGen/Generi<wbr>c/ForceStackAlign.ll<br>
  llvm/trunk/test/CodeGen/Generi<wbr>c/invalid-memcpy.ll<br>
  llvm/trunk/test/CodeGen/Hexago<wbr>n/adjust-latency-stackST.ll<br>
  llvm/trunk/test/CodeGen/Hexago<wbr>n/branchfolder-keep-impdef.ll<br>
  llvm/trunk/test/CodeGen/Hexago<wbr>n/early-if-conversion-bug1.ll<br>
  llvm/trunk/test/CodeGen/Hexago<wbr>n/mem-fi-add.ll<br>
  llvm/trunk/test/CodeGen/Hexago<wbr>n/memcpy-likely-aligned.ll<br>
  llvm/trunk/test/CodeGen/Hexago<wbr>n/rdf-filter-defs.ll<br>
  llvm/trunk/test/CodeGen/Hexago<wbr>n/store-imm-stack-object.ll<br>
  llvm/trunk/test/CodeGen/Hexago<wbr>n/tail-call-mem-intrinsics.ll<br>
  llvm/trunk/test/CodeGen/MSP430<wbr>/memset.ll<br>
  llvm/trunk/test/CodeGen/Mips/2<wbr>012-12-12-ExpandMemcpy.ll<br>
  llvm/trunk/test/CodeGen/Mips/F<wbr>ast-ISel/memtest1.ll<br>
  llvm/trunk/test/CodeGen/Mips/b<wbr>iggot.ll<br>
  llvm/trunk/test/CodeGen/Mips/c<wbr>conv/arguments-small-structure<wbr>s-bigger-than-32bits.ll<br>
  llvm/trunk/test/CodeGen/Mips/c<wbr>conv/arguments-varargs-small-s<wbr>tructs-byte.ll<br>
  llvm/trunk/test/CodeGen/Mips/c<wbr>conv/arguments-varargs-small-s<wbr>tructs-combinations.ll<br>
  llvm/trunk/test/CodeGen/Mips/c<wbr>conv/return-struct.ll<br>
  llvm/trunk/test/CodeGen/Mips/l<wbr>argeimmprinting.ll<br>
  llvm/trunk/test/CodeGen/Mips/l<wbr>ong-calls.ll<br>
  llvm/trunk/test/CodeGen/Mips/m<wbr>emcpy.ll<br>
  llvm/trunk/test/CodeGen/Mips/p<wbr>r33978.ll<br>
  llvm/trunk/test/CodeGen/Mips/t<wbr>ailcall/tailcall.ll<br>
  llvm/trunk/test/CodeGen/NVPTX/<wbr>lower-aggr-copies.ll<br>
  llvm/trunk/test/CodeGen/PowerP<wbr>C/2011-12-05-NoSpillDupCR.ll<br>
  llvm/trunk/test/CodeGen/PowerP<wbr>C/2011-12-06-SpillAndRestoreCR<wbr>.ll<br>
  llvm/trunk/test/CodeGen/PowerP<wbr>C/MMO-flags-assertion.ll<br>
  llvm/trunk/test/CodeGen/PowerP<wbr>C/aantidep-inline-asm-use.ll<br>
  llvm/trunk/test/CodeGen/PowerP<wbr>C/ctrloop-reg.ll<br>
  llvm/trunk/test/CodeGen/PowerP<wbr>C/emptystruct.ll<br>
  llvm/trunk/test/CodeGen/PowerP<wbr>C/fsl-e500mc.ll<br>
  llvm/trunk/test/CodeGen/PowerP<wbr>C/fsl-e5500.ll<br>
  llvm/trunk/test/CodeGen/PowerP<wbr>C/glob-comp-aa-crash.ll<br>
  llvm/trunk/test/CodeGen/PowerP<wbr>C/isel-rc-nox0.ll<br>
  llvm/trunk/test/CodeGen/PowerP<wbr>C/licm-remat.ll<br>
  llvm/trunk/test/CodeGen/PowerP<wbr>C/lxv-aligned-stack-slots.ll<br>
  llvm/trunk/test/CodeGen/PowerP<wbr>C/memcpy-vec.ll<br>
  llvm/trunk/test/CodeGen/PowerP<wbr>C/memcpy_dereferenceable.ll<br>
  llvm/trunk/test/CodeGen/PowerP<wbr>C/memset-nc-le.ll<br>
  llvm/trunk/test/CodeGen/PowerP<wbr>C/memset-nc.ll<br>
  llvm/trunk/test/CodeGen/PowerP<wbr>C/merge-st-chain-op.ll<br>
  llvm/trunk/test/CodeGen/PowerP<wbr>C/ppc-empty-fs.ll<br>
  llvm/trunk/test/CodeGen/PowerP<wbr>C/pr27350.ll<br>
  llvm/trunk/test/CodeGen/PowerP<wbr>C/resolvefi-basereg.ll<br>
  llvm/trunk/test/CodeGen/PowerP<wbr>C/resolvefi-disp.ll<br>
  llvm/trunk/test/CodeGen/PowerP<wbr>C/structsinmem.ll<br>
  llvm/trunk/test/CodeGen/PowerP<wbr>C/structsinregs.ll<br>
  llvm/trunk/test/CodeGen/PowerP<wbr>C/stwu8.ll<br>
  llvm/trunk/test/CodeGen/PowerP<wbr>C/tailcall-string-rvo.ll<br>
  llvm/trunk/test/CodeGen/PowerP<wbr>C/toc-load-sched-bug.ll<br>
  llvm/trunk/test/CodeGen/RISCV/<wbr>frame.ll<br>
  llvm/trunk/test/CodeGen/System<wbr>Z/dag-combine-02.ll<br>
  llvm/trunk/test/CodeGen/System<wbr>Z/loop-01.ll<br>
  llvm/trunk/test/CodeGen/System<wbr>Z/loop-03.ll<br>
  llvm/trunk/test/CodeGen/System<wbr>Z/memcpy-01.ll<br>
  llvm/trunk/test/CodeGen/System<wbr>Z/memset-01.ll<br>
  llvm/trunk/test/CodeGen/System<wbr>Z/memset-02.ll<br>
  llvm/trunk/test/CodeGen/System<wbr>Z/memset-03.ll<br>
  llvm/trunk/test/CodeGen/System<wbr>Z/memset-04.ll<br>
  llvm/trunk/test/CodeGen/System<wbr>Z/tail-call-mem-intrinsics.ll<br>
  llvm/trunk/test/CodeGen/Thumb/<wbr>2011-05-11-DAGLegalizer.ll<br>
  llvm/trunk/test/CodeGen/Thumb/<wbr>dyn-stackalloc.ll<br>
  llvm/trunk/test/CodeGen/Thumb/<wbr>ldm-stm-base-materialization-t<wbr>humb2.ll<br>
  llvm/trunk/test/CodeGen/Thumb/<wbr>ldm-stm-base-materialization.l<wbr>l<br>
  llvm/trunk/test/CodeGen/Thumb/<wbr>stack-coloring-without-frame-p<wbr>tr.ll<br>
  llvm/trunk/test/CodeGen/Thumb2<wbr>/2009-08-04-SubregLoweringBug.<wbr>ll<br>
  llvm/trunk/test/CodeGen/Thumb2<wbr>/2012-01-13-CBNZBug.ll<br>
  llvm/trunk/test/CodeGen/WebAss<wbr>embly/global.ll<br>
  llvm/trunk/test/CodeGen/WebAss<wbr>embly/mem-intrinsics.ll<br>
  llvm/trunk/test/CodeGen/X86/20<wbr>07-10-15-CoalescerCrash.ll<br>
  llvm/trunk/test/CodeGen/X86/20<wbr>09-01-25-NoSSE.ll<br>
  llvm/trunk/test/CodeGen/X86/20<wbr>09-11-16-UnfoldMemOpBug.ll<br>
  llvm/trunk/test/CodeGen/X86/20<wbr>10-04-08-CoalescerBug.ll<br>
  llvm/trunk/test/CodeGen/X86/20<wbr>10-04-21-CoalescerBug.ll<br>
  llvm/trunk/test/CodeGen/X86/20<wbr>10-06-25-CoalescerSubRegDefDea<wbr>d.ll<br>
  llvm/trunk/test/CodeGen/X86/20<wbr>10-09-17-SideEffectsInChain.ll<br>
  llvm/trunk/test/CodeGen/X86/20<wbr>12-01-10-UndefExceptionEdge.ll<br>
  llvm/trunk/test/CodeGen/X86/al<wbr>ignment-2.ll<br>
  llvm/trunk/test/CodeGen/X86/bu<wbr>g26810.ll<br>
  llvm/trunk/test/CodeGen/X86/da<wbr>rwin-bzero.ll<br>
  llvm/trunk/test/CodeGen/X86/fa<wbr>st-isel-call.ll<br>
  llvm/trunk/test/CodeGen/X86/fa<wbr>st-isel-deadcode.ll<br>
  llvm/trunk/test/CodeGen/X86/fa<wbr>st-isel-x86-64.ll<br>
  llvm/trunk/test/CodeGen/X86/fo<wbr>rce-align-stack-alloca.ll<br>
  llvm/trunk/test/CodeGen/X86/im<wbr>mediate_merging.ll<br>
  llvm/trunk/test/CodeGen/X86/im<wbr>mediate_merging64.ll<br>
  llvm/trunk/test/CodeGen/X86/le<wbr>a-opt-memop-check-1.ll<br>
  llvm/trunk/test/CodeGen/X86/lo<wbr>ad-slice.ll<br>
  llvm/trunk/test/CodeGen/X86/ls<wbr>r-normalization.ll<br>
  llvm/trunk/test/CodeGen/X86/mc<wbr>u-abi.ll<br>
  llvm/trunk/test/CodeGen/X86/me<wbr>m-intrin-base-reg.ll<br>
  llvm/trunk/test/CodeGen/X86/me<wbr>mcpy-2.ll<br>
  llvm/trunk/test/CodeGen/X86/me<wbr>mcpy-from-string.ll<br>
  llvm/trunk/test/CodeGen/X86/me<wbr>mcpy.ll<br>
  llvm/trunk/test/CodeGen/X86/me<wbr>mset-2.ll<br>
  llvm/trunk/test/CodeGen/X86/me<wbr>mset-3.ll<br>
  llvm/trunk/test/CodeGen/X86/me<wbr>mset-nonzero.ll<br>
  llvm/trunk/test/CodeGen/X86/me<wbr>mset-sse-stack-realignment.ll<br>
  llvm/trunk/test/CodeGen/X86/me<wbr>mset.ll<br>
  llvm/trunk/test/CodeGen/X86/me<wbr>mset64-on-x86-32.ll<br>
  llvm/trunk/test/CodeGen/X86/mi<wbr>saligned-memset.ll<br>
  llvm/trunk/test/CodeGen/X86/mi<wbr>sched-new.ll<br>
  llvm/trunk/test/CodeGen/X86/ne<wbr>gate-add-zero.ll<br>
  llvm/trunk/test/CodeGen/X86/op<wbr>timize-max-0.ll<br>
  llvm/trunk/test/CodeGen/X86/pr<wbr>11985.ll<br>
  llvm/trunk/test/CodeGen/X86/pr<wbr>14333.ll<br>
  llvm/trunk/test/CodeGen/X86/pr<wbr>34088.ll<br>
  llvm/trunk/test/CodeGen/X86/ra<wbr>greedy-hoist-spill.ll<br>
  llvm/trunk/test/CodeGen/X86/re<wbr>gparm.ll<br>
  llvm/trunk/test/CodeGen/X86/re<wbr>mat-fold-load.ll<br>
  llvm/trunk/test/CodeGen/X86/sl<wbr>ow-unaligned-mem.ll<br>
  llvm/trunk/test/CodeGen/X86/sm<wbr>all-byval-memcpy.ll<br>
  llvm/trunk/test/CodeGen/X86/st<wbr>ack-align.ll<br>
  llvm/trunk/test/CodeGen/X86/st<wbr>ack-protector.ll<br>
  llvm/trunk/test/CodeGen/X86/ta<wbr>il-dup-merge-loop-headers.ll<br>
  llvm/trunk/test/CodeGen/X86/ta<wbr>ilcall-mem-intrinsics.ll<br>
  llvm/trunk/test/CodeGen/X86/tl<wbr>v-1.ll<br>
  llvm/trunk/test/CodeGen/X86/un<wbr>aligned-load.ll<br>
  llvm/trunk/test/CodeGen/X86/un<wbr>used_stackslots.ll<br>
  llvm/trunk/test/CodeGen/X86/un<wbr>windraise.ll<br>
  llvm/trunk/test/CodeGen/X86/va<wbr>riable-sized-darwin-bzero.ll<br>
  llvm/trunk/test/CodeGen/X86/ve<wbr>ctorcall.ll<br>
  llvm/trunk/test/CodeGen/X86/x8<wbr>6-64-static-relo-movl.ll<br>
  llvm/trunk/test/CodeGen/X86/x8<wbr>6-repmov-copy-eflags.ll<br>
  llvm/trunk/test/CodeGen/XCore/<wbr>memcpy.ll<br>
  llvm/trunk/test/DebugInfo/AArc<wbr>h64/frameindices.ll<br>
  llvm/trunk/test/DebugInfo/COFF<wbr>/types-array.ll<br>
  llvm/trunk/test/DebugInfo/Gene<wbr>ric/2010-10-01-crash.ll<br>
  llvm/trunk/test/DebugInfo/X86/<wbr>array.ll<br>
  llvm/trunk/test/DebugInfo/X86/<wbr>array2.ll<br>
  llvm/trunk/test/DebugInfo/X86/<wbr>debug-ranges-offset.ll<br>
  llvm/trunk/test/DebugInfo/X86/<wbr>pieces-2.ll<br>
  llvm/trunk/test/DebugInfo/X86/<wbr>pieces-3.ll<br>
  llvm/trunk/test/DebugInfo/X86/<wbr>safestack-byval.ll<br>
  llvm/trunk/test/DebugInfo/X86/<wbr>split-dwarf-cross-unit-referen<wbr>ce.ll<br>
  llvm/trunk/test/DebugInfo/X86/<wbr>sroasplit-1.ll<br>
  llvm/trunk/test/DebugInfo/X86/<wbr>sroasplit-2.ll<br>
  llvm/trunk/test/DebugInfo/X86/<wbr>sroasplit-4.ll<br>
  llvm/trunk/test/DebugInfo/X86/<wbr>sroasplit-5.ll<br>
  llvm/trunk/test/DebugInfo/X86/<wbr>sroasplit-dbg-declare.ll<br>
  llvm/trunk/test/Instrumentatio<wbr>n/AddressSanitizer/basic.ll<br>
  llvm/trunk/test/Instrumentatio<wbr>n/AddressSanitizer/stack-poiso<wbr>ning-byval-args.ll<br>
  llvm/trunk/test/Instrumentatio<wbr>n/DataFlowSanitizer/memset.ll<br>
<div class="m_4105360534281460580m_8764828501418912939gmail-m_8918637086329142092m_-1925848526291612611m_-5178115176931570710HOEnZb">
<div class="m_4105360534281460580m_8764828501418912939gmail-m_8918637086329142092m_-1925848526291612611m_-5178115176931570710h5">
  (145 more files...)<br>
<br>
<br>
<br>
______________________________<wbr>_________________<br>
llvm-commits mailing list<br>
<a href="mailto:llvm-commits@lists.llvm.org" target="_blank">llvm-commits@lists.llvm.org</a><br>
<a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-commits" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/<wbr>mailman/listinfo/llvm-commits</a><br>
</div>
</div>
</blockquote>
</div>
<br>
<br clear="all">
<div><br>
</div>
--<span class="m_4105360534281460580m_8764828501418912939Apple-converted-space"> </span><br>
<div class="m_4105360534281460580m_8764828501418912939gmail-m_8918637086329142092m_-1925848526291612611m_-5178115176931570710gmail_signature">
<div dir="ltr"><b>Alexandre Isoard</b><br>
</div>
</div>
</div>
</div>
</div>
</div>
<span id="m_4105360534281460580m_8764828501418912939gmail-m_8918637086329142092m_-1925848526291612611cid:009DC7CD-6738-4EB8-9B95-00F29D23CDC4@hitronhub.home"><memcopy.sed></span>_________________<wbr>______________________________<br>
LLVM Developers mailing list<br>
<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a><br>
<a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev" target="_blank">http://lists.llvm.org/cgi-bin/<wbr>mailman/listinfo/llvm-dev</a><br>
</div>
</blockquote>
</div>
<br>
</div>
</div>
</blockquote>
</div>
<br>
<br clear="all">
<div><br>
</div>
--<span class="m_4105360534281460580m_8764828501418912939Apple-converted-space"> </span><br>
<div class="m_4105360534281460580m_8764828501418912939gmail-m_8918637086329142092gmail_signature">
<div dir="ltr"><b>Alexandre Isoard</b></div>
</div>
</div>
</div>
</div>
</blockquote>
</div>
<br>
</div>
</div>
</div>
</div>
</div>
</blockquote>
</div>
<br>
<br clear="all">
<div><br>
</div>
--<span class="m_4105360534281460580Apple-converted-space"> </span><br>
<div class="m_4105360534281460580gmail_signature" data-smartmail="gmail_signature">
<div dir="ltr"><b>Alexandre Isoard</b></div>
</div>
</div>
</div>
</blockquote>
</div>
<br>
</div></div></div>
</div>

</blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><b>Alexandre Isoard</b><br></div></div>
</div>