Displaying 2 results from an estimated 2 matches for "771eb834".
2013 Nov 07
0
[LLVMdev] Register allocation limitations
...> LLVM Developers mailing list
> LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20131107/771eb834/attachment.html>
2013 Nov 07
2
[LLVMdev] Register allocation limitations
Hi all.
if there is limitation for the registers to be used together in an
instruction, should i try to change it in the register allocation pass
or should i try it somewhere else??
example.
lets say we have to add 2 registers
addu rx ,ry ,rz
there is a limitation that says that the two regs that will be added they
can not have the same mod4
so we can add r1 , r2 but cannot add r1,r5.