Displaying 1 result from an estimated 1 matches for "set_try".
Did you mean:
set_tr
2009 Nov 25
1
[LLVMdev] Puzzled by "set" in target description file
...es : 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 set_try;
def MOVi2pieces : AI1x2<(outs GPR:$dst), (ins so_imm2part:$src), Pseudo,
"mov", " $dst, $src",
[(set_try GPR:$dst, so_imm2part:$src)]>;
tblgen will give a message: Unrecognized node set_try.
Why 'set ' is a node...