2005-02-05 03:24:26 +01:00
|
|
|
//===- AlphaInstrFormats.td - Alpha Instruction Formats ----*- tablegen -*-===//
|
2005-01-23 00:41:55 +01:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 21:36:04 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-01-23 00:41:55 +01:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
//3.3:
|
|
|
|
//Memory
|
|
|
|
//Branch
|
|
|
|
//Operate
|
|
|
|
//Floating-point
|
|
|
|
//PALcode
|
|
|
|
|
2005-10-20 02:28:31 +02:00
|
|
|
def u8imm : Operand<i64>;
|
|
|
|
def s14imm : Operand<i64>;
|
|
|
|
def s16imm : Operand<i64>;
|
|
|
|
def s21imm : Operand<i64>;
|
2005-07-22 22:50:29 +02:00
|
|
|
def s64imm : Operand<i64>;
|
2006-10-31 17:49:55 +01:00
|
|
|
def u64imm : Operand<i64>;
|
2005-07-22 22:50:29 +02:00
|
|
|
|
2005-01-23 00:41:55 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Instruction format superclass
|
|
|
|
//===----------------------------------------------------------------------===//
|
2005-11-09 20:17:08 +01:00
|
|
|
// Alpha instruction baseline
|
2006-03-09 18:16:45 +01:00
|
|
|
class InstAlpha<bits<6> op, string asmstr, InstrItinClass itin> : Instruction {
|
2005-01-23 00:41:55 +01:00
|
|
|
field bits<32> Inst;
|
|
|
|
let Namespace = "Alpha";
|
|
|
|
let AsmString = asmstr;
|
|
|
|
let Inst{31-26} = op;
|
2006-03-09 18:16:45 +01:00
|
|
|
let Itinerary = itin;
|
2005-01-23 00:41:55 +01:00
|
|
|
}
|
|
|
|
|
2005-11-09 20:17:08 +01:00
|
|
|
|
2005-01-23 00:41:55 +01:00
|
|
|
//3.3.1
|
2008-01-06 07:44:58 +01:00
|
|
|
class MForm<bits<6> opcode, bit load, string asmstr, list<dag> pattern, InstrItinClass itin>
|
2006-03-09 18:16:45 +01:00
|
|
|
: InstAlpha<opcode, asmstr, itin> {
|
2005-12-24 04:41:56 +01:00
|
|
|
let Pattern = pattern;
|
2008-12-03 19:15:48 +01:00
|
|
|
let canFoldAsLoad = load;
|
2006-01-26 04:22:07 +01:00
|
|
|
let Defs = [R28]; //We may use this for frame index calculations, so reserve it here
|
2005-12-24 04:41:56 +01:00
|
|
|
|
|
|
|
bits<5> Ra;
|
|
|
|
bits<16> disp;
|
|
|
|
bits<5> Rb;
|
|
|
|
|
|
|
|
let Inst{25-21} = Ra;
|
|
|
|
let Inst{20-16} = Rb;
|
|
|
|
let Inst{15-0} = disp;
|
|
|
|
}
|
2006-03-09 18:16:45 +01:00
|
|
|
class MfcForm<bits<6> opcode, bits<16> fc, string asmstr, InstrItinClass itin>
|
|
|
|
: InstAlpha<opcode, asmstr, itin> {
|
2005-11-11 17:47:30 +01:00
|
|
|
bits<5> Ra;
|
|
|
|
|
2010-03-18 21:55:18 +01:00
|
|
|
let OutOperandList = (outs GPRC:$RA);
|
|
|
|
let InOperandList = (ins);
|
2005-11-11 17:47:30 +01:00
|
|
|
let Inst{25-21} = Ra;
|
2006-01-16 22:22:38 +01:00
|
|
|
let Inst{20-16} = 0;
|
2005-11-11 17:47:30 +01:00
|
|
|
let Inst{15-0} = fc;
|
|
|
|
}
|
2008-02-16 02:24:58 +01:00
|
|
|
class MfcPForm<bits<6> opcode, bits<16> fc, string asmstr, InstrItinClass itin>
|
|
|
|
: InstAlpha<opcode, asmstr, itin> {
|
2010-03-18 21:55:18 +01:00
|
|
|
let OutOperandList = (outs);
|
|
|
|
let InOperandList = (ins);
|
2008-02-16 02:24:58 +01:00
|
|
|
let Inst{25-21} = 0;
|
|
|
|
let Inst{20-16} = 0;
|
|
|
|
let Inst{15-0} = fc;
|
|
|
|
}
|
2005-07-22 22:50:29 +02:00
|
|
|
|
2006-03-09 18:16:45 +01:00
|
|
|
class MbrForm<bits<6> opcode, bits<2> TB, dag OL, string asmstr, InstrItinClass itin>
|
|
|
|
: InstAlpha<opcode, asmstr, itin> {
|
2005-07-22 22:50:29 +02:00
|
|
|
bits<5> Ra;
|
|
|
|
bits<5> Rb;
|
2006-06-12 20:09:24 +02:00
|
|
|
bits<14> disp;
|
|
|
|
|
2010-03-18 21:55:18 +01:00
|
|
|
let OutOperandList = (outs);
|
Change instruction description to split OperandList into OutOperandList and
InOperandList. This gives one piece of important information: # of results
produced by an instruction.
An example of the change:
def ADD32rr : I<0x01, MRMDestReg, (ops GR32:$dst, GR32:$src1, GR32:$src2),
"add{l} {$src2, $dst|$dst, $src2}",
[(set GR32:$dst, (add GR32:$src1, GR32:$src2))]>;
=>
def ADD32rr : I<0x01, MRMDestReg, (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
"add{l} {$src2, $dst|$dst, $src2}",
[(set GR32:$dst, (add GR32:$src1, GR32:$src2))]>;
llvm-svn: 40033
2007-07-19 03:14:50 +02:00
|
|
|
let InOperandList = OL;
|
2006-06-12 20:09:24 +02:00
|
|
|
|
|
|
|
let Inst{25-21} = Ra;
|
|
|
|
let Inst{20-16} = Rb;
|
|
|
|
let Inst{15-14} = TB;
|
|
|
|
let Inst{13-0} = disp;
|
|
|
|
}
|
|
|
|
class MbrpForm<bits<6> opcode, bits<2> TB, dag OL, string asmstr, list<dag> pattern, InstrItinClass itin>
|
|
|
|
: InstAlpha<opcode, asmstr, itin> {
|
|
|
|
let Pattern=pattern;
|
|
|
|
bits<5> Ra;
|
|
|
|
bits<5> Rb;
|
2005-07-22 22:50:29 +02:00
|
|
|
bits<14> disp;
|
|
|
|
|
2010-03-18 21:55:18 +01:00
|
|
|
let OutOperandList = (outs);
|
Change instruction description to split OperandList into OutOperandList and
InOperandList. This gives one piece of important information: # of results
produced by an instruction.
An example of the change:
def ADD32rr : I<0x01, MRMDestReg, (ops GR32:$dst, GR32:$src1, GR32:$src2),
"add{l} {$src2, $dst|$dst, $src2}",
[(set GR32:$dst, (add GR32:$src1, GR32:$src2))]>;
=>
def ADD32rr : I<0x01, MRMDestReg, (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
"add{l} {$src2, $dst|$dst, $src2}",
[(set GR32:$dst, (add GR32:$src1, GR32:$src2))]>;
llvm-svn: 40033
2007-07-19 03:14:50 +02:00
|
|
|
let InOperandList = OL;
|
2006-03-09 18:16:45 +01:00
|
|
|
|
2005-07-22 22:50:29 +02:00
|
|
|
let Inst{25-21} = Ra;
|
|
|
|
let Inst{20-16} = Rb;
|
|
|
|
let Inst{15-14} = TB;
|
|
|
|
let Inst{13-0} = disp;
|
|
|
|
}
|
|
|
|
|
2005-01-23 00:41:55 +01:00
|
|
|
//3.3.2
|
2005-12-25 18:36:48 +01:00
|
|
|
def target : Operand<OtherVT> {}
|
2006-01-01 23:16:14 +01:00
|
|
|
|
2007-07-21 02:34:19 +02:00
|
|
|
let isBranch = 1, isTerminator = 1, hasCtrlDep = 1 in {
|
2006-10-31 17:49:55 +01:00
|
|
|
class BFormN<bits<6> opcode, dag OL, string asmstr, InstrItinClass itin>
|
|
|
|
: InstAlpha<opcode, asmstr, itin> {
|
2010-03-18 21:55:18 +01:00
|
|
|
let OutOperandList = (outs);
|
Change instruction description to split OperandList into OutOperandList and
InOperandList. This gives one piece of important information: # of results
produced by an instruction.
An example of the change:
def ADD32rr : I<0x01, MRMDestReg, (ops GR32:$dst, GR32:$src1, GR32:$src2),
"add{l} {$src2, $dst|$dst, $src2}",
[(set GR32:$dst, (add GR32:$src1, GR32:$src2))]>;
=>
def ADD32rr : I<0x01, MRMDestReg, (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
"add{l} {$src2, $dst|$dst, $src2}",
[(set GR32:$dst, (add GR32:$src1, GR32:$src2))]>;
llvm-svn: 40033
2007-07-19 03:14:50 +02:00
|
|
|
let InOperandList = OL;
|
2006-10-31 17:49:55 +01:00
|
|
|
bits<64> Opc; //dummy
|
2006-01-01 23:16:14 +01:00
|
|
|
bits<5> Ra;
|
|
|
|
bits<21> disp;
|
|
|
|
|
|
|
|
let Inst{25-21} = Ra;
|
|
|
|
let Inst{20-0} = disp;
|
|
|
|
}
|
2006-10-31 17:49:55 +01:00
|
|
|
}
|
2005-07-22 22:50:29 +02:00
|
|
|
|
|
|
|
let isBranch = 1, isTerminator = 1 in
|
2006-10-31 17:49:55 +01:00
|
|
|
class BFormD<bits<6> opcode, string asmstr, list<dag> pattern, InstrItinClass itin>
|
2006-03-09 18:16:45 +01:00
|
|
|
: InstAlpha<opcode, asmstr, itin> {
|
2006-01-01 23:16:14 +01:00
|
|
|
let Pattern = pattern;
|
2010-03-18 21:55:18 +01:00
|
|
|
let OutOperandList = (outs);
|
|
|
|
let InOperandList = (ins target:$DISP);
|
2005-01-23 00:41:55 +01:00
|
|
|
bits<5> Ra;
|
|
|
|
bits<21> disp;
|
|
|
|
|
|
|
|
let Inst{25-21} = Ra;
|
|
|
|
let Inst{20-0} = disp;
|
|
|
|
}
|
|
|
|
|
|
|
|
//3.3.3
|
2006-03-09 18:16:45 +01:00
|
|
|
class OForm<bits<6> opcode, bits<7> fun, string asmstr, list<dag> pattern, InstrItinClass itin>
|
|
|
|
: InstAlpha<opcode, asmstr, itin> {
|
2005-10-20 02:28:31 +02:00
|
|
|
let Pattern = pattern;
|
Change instruction description to split OperandList into OutOperandList and
InOperandList. This gives one piece of important information: # of results
produced by an instruction.
An example of the change:
def ADD32rr : I<0x01, MRMDestReg, (ops GR32:$dst, GR32:$src1, GR32:$src2),
"add{l} {$src2, $dst|$dst, $src2}",
[(set GR32:$dst, (add GR32:$src1, GR32:$src2))]>;
=>
def ADD32rr : I<0x01, MRMDestReg, (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
"add{l} {$src2, $dst|$dst, $src2}",
[(set GR32:$dst, (add GR32:$src1, GR32:$src2))]>;
llvm-svn: 40033
2007-07-19 03:14:50 +02:00
|
|
|
let OutOperandList = (outs GPRC:$RC);
|
|
|
|
let InOperandList = (ins GPRC:$RA, GPRC:$RB);
|
2005-10-20 02:28:31 +02:00
|
|
|
|
2005-07-22 22:50:29 +02:00
|
|
|
bits<5> Rc;
|
|
|
|
bits<5> Ra;
|
|
|
|
bits<5> Rb;
|
|
|
|
bits<7> Function = fun;
|
|
|
|
|
|
|
|
let Inst{25-21} = Ra;
|
|
|
|
let Inst{20-16} = Rb;
|
|
|
|
let Inst{15-13} = 0;
|
|
|
|
let Inst{12} = 0;
|
|
|
|
let Inst{11-5} = Function;
|
|
|
|
let Inst{4-0} = Rc;
|
|
|
|
}
|
|
|
|
|
2006-03-09 18:16:45 +01:00
|
|
|
class OForm2<bits<6> opcode, bits<7> fun, string asmstr, list<dag> pattern, InstrItinClass itin>
|
|
|
|
: InstAlpha<opcode, asmstr, itin> {
|
2005-10-20 21:39:24 +02:00
|
|
|
let Pattern = pattern;
|
Change instruction description to split OperandList into OutOperandList and
InOperandList. This gives one piece of important information: # of results
produced by an instruction.
An example of the change:
def ADD32rr : I<0x01, MRMDestReg, (ops GR32:$dst, GR32:$src1, GR32:$src2),
"add{l} {$src2, $dst|$dst, $src2}",
[(set GR32:$dst, (add GR32:$src1, GR32:$src2))]>;
=>
def ADD32rr : I<0x01, MRMDestReg, (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
"add{l} {$src2, $dst|$dst, $src2}",
[(set GR32:$dst, (add GR32:$src1, GR32:$src2))]>;
llvm-svn: 40033
2007-07-19 03:14:50 +02:00
|
|
|
let OutOperandList = (outs GPRC:$RC);
|
|
|
|
let InOperandList = (ins GPRC:$RB);
|
2005-10-20 21:39:24 +02:00
|
|
|
|
|
|
|
bits<5> Rc;
|
|
|
|
bits<5> Rb;
|
|
|
|
bits<7> Function = fun;
|
|
|
|
|
2005-10-23 00:06:58 +02:00
|
|
|
let Inst{25-21} = 31;
|
2005-10-20 21:39:24 +02:00
|
|
|
let Inst{20-16} = Rb;
|
|
|
|
let Inst{15-13} = 0;
|
|
|
|
let Inst{12} = 0;
|
|
|
|
let Inst{11-5} = Function;
|
|
|
|
let Inst{4-0} = Rc;
|
|
|
|
}
|
|
|
|
|
2006-03-09 18:16:45 +01:00
|
|
|
class OForm4<bits<6> opcode, bits<7> fun, string asmstr, list<dag> pattern, InstrItinClass itin>
|
|
|
|
: InstAlpha<opcode, asmstr, itin> {
|
2005-12-06 00:19:44 +01:00
|
|
|
let Pattern = pattern;
|
Change instruction description to split OperandList into OutOperandList and
InOperandList. This gives one piece of important information: # of results
produced by an instruction.
An example of the change:
def ADD32rr : I<0x01, MRMDestReg, (ops GR32:$dst, GR32:$src1, GR32:$src2),
"add{l} {$src2, $dst|$dst, $src2}",
[(set GR32:$dst, (add GR32:$src1, GR32:$src2))]>;
=>
def ADD32rr : I<0x01, MRMDestReg, (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
"add{l} {$src2, $dst|$dst, $src2}",
[(set GR32:$dst, (add GR32:$src1, GR32:$src2))]>;
llvm-svn: 40033
2007-07-19 03:14:50 +02:00
|
|
|
let OutOperandList = (outs GPRC:$RDEST);
|
|
|
|
let InOperandList = (ins GPRC:$RCOND, GPRC:$RTRUE, GPRC:$RFALSE);
|
2007-04-17 06:07:59 +02:00
|
|
|
let Constraints = "$RFALSE = $RDEST";
|
|
|
|
let DisableEncoding = "$RFALSE";
|
2005-12-06 00:19:44 +01:00
|
|
|
|
|
|
|
bits<5> Rc;
|
|
|
|
bits<5> Ra;
|
2007-04-17 06:07:59 +02:00
|
|
|
bits<5> Rb;
|
2005-12-06 00:19:44 +01:00
|
|
|
bits<7> Function = fun;
|
|
|
|
|
2010-06-21 20:48:55 +02:00
|
|
|
// let Constraints = "$RFALSE = $RDEST";
|
2005-12-06 00:19:44 +01:00
|
|
|
let Inst{25-21} = Ra;
|
|
|
|
let Inst{20-16} = Rb;
|
|
|
|
let Inst{15-13} = 0;
|
|
|
|
let Inst{12} = 0;
|
|
|
|
let Inst{11-5} = Function;
|
|
|
|
let Inst{4-0} = Rc;
|
|
|
|
}
|
|
|
|
|
2005-01-23 00:41:55 +01:00
|
|
|
|
2006-03-09 18:16:45 +01:00
|
|
|
class OFormL<bits<6> opcode, bits<7> fun, string asmstr, list<dag> pattern, InstrItinClass itin>
|
|
|
|
: InstAlpha<opcode, asmstr, itin> {
|
2005-10-20 02:28:31 +02:00
|
|
|
let Pattern = pattern;
|
Change instruction description to split OperandList into OutOperandList and
InOperandList. This gives one piece of important information: # of results
produced by an instruction.
An example of the change:
def ADD32rr : I<0x01, MRMDestReg, (ops GR32:$dst, GR32:$src1, GR32:$src2),
"add{l} {$src2, $dst|$dst, $src2}",
[(set GR32:$dst, (add GR32:$src1, GR32:$src2))]>;
=>
def ADD32rr : I<0x01, MRMDestReg, (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
"add{l} {$src2, $dst|$dst, $src2}",
[(set GR32:$dst, (add GR32:$src1, GR32:$src2))]>;
llvm-svn: 40033
2007-07-19 03:14:50 +02:00
|
|
|
let OutOperandList = (outs GPRC:$RC);
|
|
|
|
let InOperandList = (ins GPRC:$RA, u8imm:$L);
|
2005-10-20 02:28:31 +02:00
|
|
|
|
2005-07-22 22:50:29 +02:00
|
|
|
bits<5> Rc;
|
|
|
|
bits<5> Ra;
|
|
|
|
bits<8> LIT;
|
|
|
|
bits<7> Function = fun;
|
|
|
|
|
|
|
|
let Inst{25-21} = Ra;
|
|
|
|
let Inst{20-13} = LIT;
|
|
|
|
let Inst{12} = 1;
|
|
|
|
let Inst{11-5} = Function;
|
|
|
|
let Inst{4-0} = Rc;
|
|
|
|
}
|
|
|
|
|
2006-03-09 18:16:45 +01:00
|
|
|
class OForm4L<bits<6> opcode, bits<7> fun, string asmstr, list<dag> pattern, InstrItinClass itin>
|
|
|
|
: InstAlpha<opcode, asmstr, itin> {
|
2006-02-01 20:37:33 +01:00
|
|
|
let Pattern = pattern;
|
Change instruction description to split OperandList into OutOperandList and
InOperandList. This gives one piece of important information: # of results
produced by an instruction.
An example of the change:
def ADD32rr : I<0x01, MRMDestReg, (ops GR32:$dst, GR32:$src1, GR32:$src2),
"add{l} {$src2, $dst|$dst, $src2}",
[(set GR32:$dst, (add GR32:$src1, GR32:$src2))]>;
=>
def ADD32rr : I<0x01, MRMDestReg, (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
"add{l} {$src2, $dst|$dst, $src2}",
[(set GR32:$dst, (add GR32:$src1, GR32:$src2))]>;
llvm-svn: 40033
2007-07-19 03:14:50 +02:00
|
|
|
let OutOperandList = (outs GPRC:$RDEST);
|
|
|
|
let InOperandList = (ins GPRC:$RCOND, s64imm:$RTRUE, GPRC:$RFALSE);
|
2007-04-17 06:07:59 +02:00
|
|
|
let Constraints = "$RFALSE = $RDEST";
|
|
|
|
let DisableEncoding = "$RFALSE";
|
|
|
|
|
2005-10-21 01:58:36 +02:00
|
|
|
bits<5> Rc;
|
|
|
|
bits<5> Ra;
|
2007-04-17 06:07:59 +02:00
|
|
|
bits<8> LIT;
|
2005-01-24 20:44:07 +01:00
|
|
|
bits<7> Function = fun;
|
2005-01-23 00:41:55 +01:00
|
|
|
|
2010-06-21 20:48:55 +02:00
|
|
|
// let Constraints = "$RFALSE = $RDEST";
|
2005-01-23 00:41:55 +01:00
|
|
|
let Inst{25-21} = Ra;
|
|
|
|
let Inst{20-13} = LIT;
|
|
|
|
let Inst{12} = 1;
|
|
|
|
let Inst{11-5} = Function;
|
|
|
|
let Inst{4-0} = Rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
//3.3.4
|
2006-03-09 18:16:45 +01:00
|
|
|
class FPForm<bits<6> opcode, bits<11> fun, string asmstr, list<dag> pattern, InstrItinClass itin>
|
|
|
|
: InstAlpha<opcode, asmstr, itin> {
|
2005-11-09 20:17:08 +01:00
|
|
|
let Pattern = pattern;
|
2005-07-28 20:14:47 +02:00
|
|
|
|
2005-01-23 00:41:55 +01:00
|
|
|
bits<5> Fc;
|
2005-07-28 20:14:47 +02:00
|
|
|
bits<5> Fa;
|
|
|
|
bits<5> Fb;
|
|
|
|
bits<11> Function = fun;
|
2005-01-23 00:41:55 +01:00
|
|
|
|
|
|
|
let Inst{25-21} = Fa;
|
|
|
|
let Inst{20-16} = Fb;
|
|
|
|
let Inst{15-5} = Function;
|
|
|
|
let Inst{4-0} = Fc;
|
|
|
|
}
|
|
|
|
|
|
|
|
//3.3.5
|
2006-03-09 18:16:45 +01:00
|
|
|
class PALForm<bits<6> opcode, dag OL, string asmstr, InstrItinClass itin>
|
|
|
|
: InstAlpha<opcode, asmstr, itin> {
|
2010-03-18 21:55:18 +01:00
|
|
|
let OutOperandList = (outs);
|
Change instruction description to split OperandList into OutOperandList and
InOperandList. This gives one piece of important information: # of results
produced by an instruction.
An example of the change:
def ADD32rr : I<0x01, MRMDestReg, (ops GR32:$dst, GR32:$src1, GR32:$src2),
"add{l} {$src2, $dst|$dst, $src2}",
[(set GR32:$dst, (add GR32:$src1, GR32:$src2))]>;
=>
def ADD32rr : I<0x01, MRMDestReg, (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
"add{l} {$src2, $dst|$dst, $src2}",
[(set GR32:$dst, (add GR32:$src1, GR32:$src2))]>;
llvm-svn: 40033
2007-07-19 03:14:50 +02:00
|
|
|
let InOperandList = OL;
|
2005-01-23 00:41:55 +01:00
|
|
|
bits<26> Function;
|
|
|
|
|
|
|
|
let Inst{25-0} = Function;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Pseudo instructions.
|
Change instruction description to split OperandList into OutOperandList and
InOperandList. This gives one piece of important information: # of results
produced by an instruction.
An example of the change:
def ADD32rr : I<0x01, MRMDestReg, (ops GR32:$dst, GR32:$src1, GR32:$src2),
"add{l} {$src2, $dst|$dst, $src2}",
[(set GR32:$dst, (add GR32:$src1, GR32:$src2))]>;
=>
def ADD32rr : I<0x01, MRMDestReg, (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
"add{l} {$src2, $dst|$dst, $src2}",
[(set GR32:$dst, (add GR32:$src1, GR32:$src2))]>;
llvm-svn: 40033
2007-07-19 03:14:50 +02:00
|
|
|
class PseudoInstAlpha<dag OOL, dag IOL, string nm, list<dag> pattern, InstrItinClass itin>
|
2006-03-09 18:16:45 +01:00
|
|
|
: InstAlpha<0, nm, itin> {
|
Change instruction description to split OperandList into OutOperandList and
InOperandList. This gives one piece of important information: # of results
produced by an instruction.
An example of the change:
def ADD32rr : I<0x01, MRMDestReg, (ops GR32:$dst, GR32:$src1, GR32:$src2),
"add{l} {$src2, $dst|$dst, $src2}",
[(set GR32:$dst, (add GR32:$src1, GR32:$src2))]>;
=>
def ADD32rr : I<0x01, MRMDestReg, (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
"add{l} {$src2, $dst|$dst, $src2}",
[(set GR32:$dst, (add GR32:$src1, GR32:$src2))]>;
llvm-svn: 40033
2007-07-19 03:14:50 +02:00
|
|
|
let OutOperandList = OOL;
|
|
|
|
let InOperandList = IOL;
|
2005-11-22 05:20:06 +01:00
|
|
|
let Pattern = pattern;
|
|
|
|
|
2005-01-23 00:41:55 +01:00
|
|
|
}
|