search for: insert_subregrm

Displaying 2 results from an estimated 2 matches for "insert_subregrm".

Did you mean: insert_subreg
2008 Mar 19
2
[LLVMdev] SUBREG instructions and mayLoad/mayStore/etc.
...<(i64 (anyext (loadi32 addr:$src))), (INSERT_SUBREG (i64 (IMPLICIT_DEF)), (MOV32rm addr:$src), x86_subreg_32bit)>; This isn't currently being reflected in the InstrInfo tables. Naively, it seems like we should add a separate INSERT_SUBREGrm instruction, and so on, or something like that, in order to be able to have accurate InstrInfo tables. Does anyone familiar with the new subregs infastructure have an opinion on this? Dan
2008 Mar 19
0
[LLVMdev] SUBREG instructions and mayLoad/mayStore/etc.
...c))), > (INSERT_SUBREG (i64 (IMPLICIT_DEF)), (MOV32rm addr:$src), > > x86_subreg_32bit)>; > > > This isn't currently being reflected in the InstrInfo tables. > Naively, it seems like we should add a separate INSERT_SUBREGrm > instruction, and so on, or something like that, in order to be able > to have accurate InstrInfo tables. Does anyone familiar with the > new subregs infastructure have an opinion on this? This is saying the pattern should be isel into two instructions. MOV32rm is obviously a load, but...