Displaying 1 result from an estimated 1 matches for "subopv".
Did you mean:
subop
2011 Jun 23
2
[LLVMdev] Instr Description Problem of MCore Backend
...mstr, list<dag> pattern>
: MCoreInst<outs, ins, asmstr, pattern> {
bits<2> subOp;
bits<4> Rx;
let Inst{15-6}= { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1 };
let Inst{5-4} = subOp;
let Inst{3-0} = Rx;
}
// Load/Store Register Quadrant Mode
class QuadR<bits<2> subOpVal, dag outs, dag ins, string asmstr,
list<dag> pattern> : MABase<outs, ins, asmstr, pattern> {
let subOp = subOpVal;
}
// Load/Store Multiple Register Mode
class MultR<bits<2> subOpVal, dag outs, dag ins, string asmstr,
list<dag> patte...