llvm-6502/lib/Target/MSP430/MSP430InstrFormats.td
Anton Korobeynikov f2c3e179ec Dummy MSP430 backend
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@70694 91177308-0d34-0410-b5e6-96231b3b80d8
2009-05-03 12:57:15 +00:00

68 lines
1.8 KiB
TableGen

//===- MSP430InstrFormats.td - MSP430 Instruction Formats-----*- tblgen -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//===----------------------------------------------------------------------===//
// Describe MSP430 instructions format here
//
// Generic MSP430 Format
class MSP430Inst<dag outs, dag ins, string asmstr> : Instruction {
field bits<16> Inst;
let Namespace = "MSP430";
dag OutOperandList = outs;
dag InOperandList = ins;
let AsmString = asmstr;
}
// FIXME: Create different classes for different addressing modes.
// MSP430 Double Operand (Format I) Instructions
class IForm<bits<4> opcode, bit ad, bit bw, bits<2> as,
dag outs, dag ins, string asmstr, list<dag> pattern>
: MSP430Inst<outs, ins, asmstr> {
let Pattern = pattern;
let Inst{12-15} = opcode;
let Inst{7} = ad;
let Inst{6} = bw;
let Inst{4-5} = as;
}
// MSP430 Single Operand (Format II) Instructions
class IIForm<bits<9> opcode, bit bw, bits<2> ad,
dag outs, dag ins, string asmstr, list<dag> pattern>
: MSP430Inst<outs, ins, asmstr> {
let Pattern = pattern;
let Inst{7-15} = opcode;
let Inst{6} = bw;
let Inst{4-5} = ad;
}
// MSP430 Conditional Jumps Instructions
class CJForm<bits<3> opcode, bits<3> cond, bit s,
dag outs, dag ins, string asmstr, list<dag> pattern>
: MSP430Inst<outs, ins, asmstr> {
let Pattern = pattern;
let Inst{13-15} = opcode;
let Inst{10-12} = cond;
let Inst{9} = s;
}
// Pseudo instructions
class Pseudo<dag outs, dag ins, string asmstr, list<dag> pattern>
: MSP430Inst<outs, ins, asmstr> {
let Pattern = pattern;
let Inst{15-0} = 0;
}