Lines Matching refs:opcode
15 class Inst<bits<8> opcode, dag oopnds, dag iopnds, string asmstr,
17 bits<8> Opcode = opcode;
65 multiclass scalar<bits<8> opcode, string asmstr = "", list<list<dag>> patterns = []> {
66 def SSrr : Inst<opcode, (outs FR32:$dst), (ins FR32:$src),
69 def SSrm : Inst<opcode, (outs FR32:$dst), (ins FR32:$src),
74 multiclass vscalar<bits<8> opcode, string asmstr = "", list<list<dag>> patterns = []> {
75 def V#NAME#SSrr : Inst<opcode, (outs FR32:$dst), (ins FR32:$src),
78 def V#NAME#SSrm : Inst<opcode, (outs FR32:$dst), (ins FR32:$src),
83 multiclass myscalar<bits<8> opcode, string asmstr = "", list<list<dag>> patterns = []> :
84 scalar<opcode, asmstr, patterns>,
85 vscalar<opcode, asmstr, patterns>;