//===-- XCoreInstrFormats.td - XCore Instruction Formats ---*- tablegen -*-===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===// // Instruction format superclass //===----------------------------------------------------------------------===// class InstXCore pattern> : Instruction { field bits<32> Inst; let Namespace = "XCore"; dag OutOperandList = outs; dag InOperandList = ins; let AsmString = asmstr; let Pattern = pattern; let Size = sz; field bits<32> SoftFail = 0; } // XCore pseudo instructions format class PseudoInstXCore pattern> : InstXCore<0, outs, ins, asmstr, pattern> { let isPseudo = 1; } //===----------------------------------------------------------------------===// // Instruction formats //===----------------------------------------------------------------------===// class _F3R pattern> : InstXCore<2, outs, ins, asmstr, pattern> { } class _FL3R pattern> : InstXCore<4, outs, ins, asmstr, pattern> { } class _F2RUS pattern> : InstXCore<2, outs, ins, asmstr, pattern> { } class _FL2RUS pattern> : InstXCore<4, outs, ins, asmstr, pattern> { } class _FRU6 pattern> : InstXCore<2, outs, ins, asmstr, pattern> { } class _FLRU6 pattern> : InstXCore<4, outs, ins, asmstr, pattern> { } class _FU6 pattern> : InstXCore<2, outs, ins, asmstr, pattern> { } class _FLU6 pattern> : InstXCore<4, outs, ins, asmstr, pattern> { } class _FU10 pattern> : InstXCore<2, outs, ins, asmstr, pattern> { } class _FLU10 pattern> : InstXCore<4, outs, ins, asmstr, pattern> { } class _F2R opc, dag outs, dag ins, string asmstr, list pattern> : InstXCore<2, outs, ins, asmstr, pattern> { let Inst{15-11} = opc{5-1}; let Inst{4} = opc{0}; let DecoderMethod = "Decode2RInstruction"; } // 2R with first operand as both a source and a destination. class _F2RSrcDst opc, dag outs, dag ins, string asmstr, list pattern> : _F2R { let DecoderMethod = "Decode2RSrcDstInstruction"; } // Same as 2R with last two operands swapped class _FR2R opc, dag outs, dag ins, string asmstr, list pattern> : _F2R { let DecoderMethod = "DecodeR2RInstruction"; } class _FRUS opc, dag outs, dag ins, string asmstr, list pattern> : InstXCore<2, outs, ins, asmstr, pattern> { let Inst{15-11} = opc{5-1}; let Inst{4} = opc{0}; let DecoderMethod = "DecodeRUSInstruction"; } // RUS with bitp operand class _FRUSBitp opc, dag outs, dag ins, string asmstr, list pattern> : _FRUS { let DecoderMethod = "DecodeRUSBitpInstruction"; } // RUS with first operand as both a source and a destination and a bitp second // operand class _FRUSSrcDstBitp opc, dag outs, dag ins, string asmstr, list pattern> : _FRUS { let DecoderMethod = "DecodeRUSSrcDstBitpInstruction"; } class _FL2R opc, dag outs, dag ins, string asmstr, list pattern> : InstXCore<4, outs, ins, asmstr, pattern> { let Inst{31-27} = opc{9-5}; let Inst{26-20} = 0b1111110; let Inst{19-16} = opc{4-1}; let Inst{15-11} = 0b11111; let Inst{4} = opc{0}; let DecoderMethod = "DecodeL2RInstruction"; } // Same as L2R with last two operands swapped class _FLR2R opc, dag outs, dag ins, string asmstr, list pattern> : _FL2R { let DecoderMethod = "DecodeLR2RInstruction"; } class _F1R opc, dag outs, dag ins, string asmstr, list pattern> : InstXCore<2, outs, ins, asmstr, pattern> { bits<4> a; let Inst{15-11} = opc{5-1}; let Inst{10-5} = 0b111111; let Inst{4} = opc{0}; let Inst{3-0} = a; } class _F0R opc, dag outs, dag ins, string asmstr, list pattern> : InstXCore<2, outs, ins, asmstr, pattern> { let Inst{15-11} = opc{9-5}; let Inst{10-5} = 0b111111; let Inst{4-0} = opc{4-0}; } class _L4R pattern> : InstXCore<4, outs, ins, asmstr, pattern> { } class _L5R pattern> : InstXCore<4, outs, ins, asmstr, pattern> { } class _L6R pattern> : InstXCore<4, outs, ins, asmstr, pattern> { }