Displaying 2 results from an estimated 2 matches for "returndefs".
2014 Aug 22
2
[LLVMdev] Help with definition of subregisters; spill, rematerialization and implicit uses
..._iterator
RI = MRI.use_bundle_nodbg_begin(Reg), E =
MRI.use_bundle_nodbg_end();
RI != E; ) {
anyRemat |= reMaterializeFor(LI, MI);
}
and
MachineRegisterInfo::defusechain_instr_iterator::advance
seems to skip all def operands for use_bundle_nodbg_iterator since
ReturnDefs is false. So it will happily advance past the instruction
setting lo16.)
Then after the remats it does
spillAroundUses %vreg1954
and there I get
reload: 5052r %vreg1957<def> = Load40FI <fi#2>
rewrite: 5056r %vreg1957:lo16<def> = mv_nimm6_ar16 0
since no remat was inser...
2014 Aug 19
2
[LLVMdev] Help with definition of subregisters; spill, rematerialization and implicit uses
Hi Quentin,
On 08/15/14 19:01, Quentin Colombet wrote:
[...]
>> The question is: How should true subregister definitions be
>> expressed so that they do not interfere with each other? See the
>> detailed problem description below.
>
> We do have a limitation in our current liveness tracking for
> sub-register. Therefore, I am not sure that is possible.
>
>