Displaying 1 result from an estimated 1 matches for "movi2piec".
Did you mean:
movi2pieces
2009 Nov 25
1
[LLVMdev] Puzzled by "set" in target description file
Hello everyone,
I try to write target description by reference to existing backends.
Target description declares an instruction as below:
def MOVi2pieces : AI1x2<(outs GPR:$dst), (ins so_imm2part:$src), Pseudo,
"mov", " $dst, $src",
[(set GPR:$dst, so_imm2part:$src)]>;
I find 'set' declared in file TargetSelectDAG.td as
def set;
But if i modify it,
def...