X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FTarget%2FAlpha%2FAlphaInstrFormats.td;h=6d82875fad2d7d80ba86be1b27907d7cd2690170;hb=d62f1b4168d4327c119642d28c26c836ae6717ab;hp=efebfd49f479acaa07f8e164e62528b9e6f5b064;hpb=1f347a318c1fa9e542490bdf6f732ef803917fa1;p=oota-llvm.git diff --git a/lib/Target/Alpha/AlphaInstrFormats.td b/lib/Target/Alpha/AlphaInstrFormats.td index efebfd49f47..6d82875fad2 100644 --- a/lib/Target/Alpha/AlphaInstrFormats.td +++ b/lib/Target/Alpha/AlphaInstrFormats.td @@ -2,8 +2,8 @@ // // The LLVM Compiler Infrastructure // -// This file was developed by the LLVM research group and is distributed under -// the University of Illinois Open Source License. See LICENSE.TXT for details. +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // @@ -22,24 +22,28 @@ def s14imm : Operand; def s16imm : Operand; def s21imm : Operand; def s64imm : Operand; +def u64imm : Operand; //===----------------------------------------------------------------------===// // Instruction format superclass //===----------------------------------------------------------------------===// - -class InstAlpha op, dag OL, string asmstr> : Instruction { // Alpha instruction baseline +// Alpha instruction baseline +class InstAlpha op, string asmstr, InstrItinClass itin> : Instruction { field bits<32> Inst; let Namespace = "Alpha"; - let OperandList = OL; let AsmString = asmstr; - - let Inst{31-26} = op; + let Itinerary = itin; } + //3.3.1 -class MForm opcode, string asmstr> - : InstAlpha { +class MForm opcode, bit load, string asmstr, list pattern, InstrItinClass itin> + : InstAlpha { + let Pattern = pattern; + let canFoldAsLoad = load; + let Defs = [R28]; //We may use this for frame index calculations, so reserve it here + bits<5> Ra; bits<16> disp; bits<5> Rb; @@ -48,23 +52,49 @@ class MForm opcode, string asmstr> let Inst{20-16} = Rb; let Inst{15-0} = disp; } +class MfcForm opcode, bits<16> fc, string asmstr, InstrItinClass itin> + : InstAlpha { + bits<5> Ra; + + let OutOperandList = (ops GPRC:$RA); + let InOperandList = (ops); + let Inst{25-21} = Ra; + let Inst{20-16} = 0; + let Inst{15-0} = fc; +} +class MfcPForm opcode, bits<16> fc, string asmstr, InstrItinClass itin> + : InstAlpha { + let OutOperandList = (ops); + let InOperandList = (ops); + let Inst{25-21} = 0; + let Inst{20-16} = 0; + let Inst{15-0} = fc; +} -class MgForm opcode, string asmstr> - : InstAlpha { +class MbrForm opcode, bits<2> TB, dag OL, string asmstr, InstrItinClass itin> + : InstAlpha { bits<5> Ra; - bits<16> disp; bits<5> Rb; + bits<14> disp; + + let OutOperandList = (ops); + let InOperandList = OL; let Inst{25-21} = Ra; let Inst{20-16} = Rb; - let Inst{15-0} = disp; + let Inst{15-14} = TB; + let Inst{13-0} = disp; } - -class MbrForm opcode, bits<2> TB, dag OL, string asmstr> : InstAlpha { +class MbrpForm opcode, bits<2> TB, dag OL, string asmstr, list pattern, InstrItinClass itin> + : InstAlpha { + let Pattern=pattern; bits<5> Ra; bits<5> Rb; bits<14> disp; + let OutOperandList = (ops); + let InOperandList = OL; + let Inst{25-21} = Ra; let Inst{20-16} = Rb; let Inst{15-14} = TB; @@ -72,19 +102,28 @@ class MbrForm opcode, bits<2> TB, dag OL, string asmstr> : InstAlpha opcode, string asmstr> - : InstAlpha { +def target : Operand {} + +let isBranch = 1, isTerminator = 1, hasCtrlDep = 1 in { +class BFormN opcode, dag OL, string asmstr, InstrItinClass itin> + : InstAlpha { + let OutOperandList = (ops); + let InOperandList = OL; + bits<64> Opc; //dummy bits<5> Ra; bits<21> disp; let Inst{25-21} = Ra; let Inst{20-0} = disp; } +} let isBranch = 1, isTerminator = 1 in -class FBForm opcode, string asmstr> - : InstAlpha { +class BFormD opcode, string asmstr, list pattern, InstrItinClass itin> + : InstAlpha { + let Pattern = pattern; + let OutOperandList = (ops); + let InOperandList = (ops target:$DISP); bits<5> Ra; bits<21> disp; @@ -93,9 +132,11 @@ class FBForm opcode, string asmstr> } //3.3.3 -class OForm opcode, bits<7> fun, string asmstr, list pattern> - : InstAlpha { +class OForm opcode, bits<7> fun, string asmstr, list pattern, InstrItinClass itin> + : InstAlpha { let Pattern = pattern; + let OutOperandList = (outs GPRC:$RC); + let InOperandList = (ins GPRC:$RA, GPRC:$RB); bits<5> Rc; bits<5> Ra; @@ -110,15 +151,17 @@ class OForm opcode, bits<7> fun, string asmstr, list pattern> let Inst{4-0} = Rc; } -class OForm2 opcode, bits<7> fun, string asmstr, list pattern> - : InstAlpha { +class OForm2 opcode, bits<7> fun, string asmstr, list pattern, InstrItinClass itin> + : InstAlpha { let Pattern = pattern; + let OutOperandList = (outs GPRC:$RC); + let InOperandList = (ins GPRC:$RB); bits<5> Rc; bits<5> Rb; bits<7> Function = fun; - let Inst{25-21} = 0; + let Inst{25-21} = 31; let Inst{20-16} = Rb; let Inst{15-13} = 0; let Inst{12} = 0; @@ -126,14 +169,20 @@ class OForm2 opcode, bits<7> fun, string asmstr, list pattern> let Inst{4-0} = Rc; } -class OForm4 opcode, bits<7> fun, string asmstr> - : InstAlpha { +class OForm4 opcode, bits<7> fun, string asmstr, list pattern, InstrItinClass itin> + : InstAlpha { + let Pattern = pattern; + let OutOperandList = (outs GPRC:$RDEST); + let InOperandList = (ins GPRC:$RCOND, GPRC:$RTRUE, GPRC:$RFALSE); + let Constraints = "$RFALSE = $RDEST"; + let DisableEncoding = "$RFALSE"; + bits<5> Rc; - bits<5> Rb; bits<5> Ra; + bits<5> Rb; bits<7> Function = fun; - let isTwoAddress = 1; +// let isTwoAddress = 1; let Inst{25-21} = Ra; let Inst{20-16} = Rb; let Inst{15-13} = 0; @@ -143,9 +192,11 @@ class OForm4 opcode, bits<7> fun, string asmstr> } -class OFormL opcode, bits<7> fun, string asmstr, list pattern> - : InstAlpha { +class OFormL opcode, bits<7> fun, string asmstr, list pattern, InstrItinClass itin> + : InstAlpha { let Pattern = pattern; + let OutOperandList = (outs GPRC:$RC); + let InOperandList = (ins GPRC:$RA, u8imm:$L); bits<5> Rc; bits<5> Ra; @@ -159,14 +210,20 @@ class OFormL opcode, bits<7> fun, string asmstr, list pattern> let Inst{4-0} = Rc; } -class OForm4L opcode, bits<7> fun, string asmstr> - : InstAlpha { +class OForm4L opcode, bits<7> fun, string asmstr, list pattern, InstrItinClass itin> + : InstAlpha { + let Pattern = pattern; + let OutOperandList = (outs GPRC:$RDEST); + let InOperandList = (ins GPRC:$RCOND, s64imm:$RTRUE, GPRC:$RFALSE); + let Constraints = "$RFALSE = $RDEST"; + let DisableEncoding = "$RFALSE"; + bits<5> Rc; - bits<8> LIT; bits<5> Ra; + bits<8> LIT; bits<7> Function = fun; - let isTwoAddress = 1; +// let isTwoAddress = 1; let Inst{25-21} = Ra; let Inst{20-13} = LIT; let Inst{12} = 1; @@ -175,21 +232,10 @@ class OForm4L opcode, bits<7> fun, string asmstr> } //3.3.4 -class FPForm opcode, bits<11> fun, string asmstr> - : InstAlpha { - bits<5> Fc; - bits<5> Fa; - bits<5> Fb; - bits<11> Function = fun; - - let Inst{25-21} = Fa; - let Inst{20-16} = Fb; - let Inst{15-5} = Function; - let Inst{4-0} = Fc; -} +class FPForm opcode, bits<11> fun, string asmstr, list pattern, InstrItinClass itin> + : InstAlpha { + let Pattern = pattern; -class FPFormCM opcode, bits<11> fun, dag OL, string asmstr> - : InstAlpha { bits<5> Fc; bits<5> Fa; bits<5> Fb; @@ -202,7 +248,10 @@ class FPFormCM opcode, bits<11> fun, dag OL, string asmstr> } //3.3.5 -class PALForm opcode, dag OL, string asmstr> : InstAlpha { +class PALForm opcode, dag OL, string asmstr, InstrItinClass itin> + : InstAlpha { + let OutOperandList = (ops); + let InOperandList = OL; bits<26> Function; let Inst{25-0} = Function; @@ -210,5 +259,10 @@ class PALForm opcode, dag OL, string asmstr> : InstAlpha : InstAlpha<0, OL, nm> { +class PseudoInstAlpha pattern, InstrItinClass itin> + : InstAlpha<0, nm, itin> { + let OutOperandList = OOL; + let InOperandList = IOL; + let Pattern = pattern; + }