Displaying 1 result from an estimated 1 matches for "moverrty".
Did you mean:
coverity
2015 Nov 25
2
need help for customized backend LowerFormalArguments
...6,P7,P8,P9,P10,P11,P12,P13,P14,P15]>>" is
used.
Also I define a move instruction which move the value from PRegs to GRRegs
because my add instruction's source registers should belong to GRRegs or
GRRegsAdditional.
I define 'move' and 'add' instructions like this:
def MoveRRTy : SDTypeProfile<1, 1, [SDTCisSameAs<0, 1>, SDTCisInt<0>]>;
def moverr : SDNode<"FOOISD::MOVERR", MoveRRTy>;
def MOVE : InstFOO<(outs GRRegsAdditional:$dst),
(ins PRegs:$src),
"move $dst, $src",[(set i32:$dst, (mo...