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