2011-12-12 21:14:40 +00:00
|
|
|
//==- HexagonInstrFormats.td - Hexagon Instruction Formats --*- tablegen -*-==//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file describes the Hexagon V4 instruction classes in TableGen format.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2012-05-03 16:18:50 +00:00
|
|
|
//----------------------------------------------------------------------------//
|
|
|
|
// Hexagon Intruction Flags +
|
|
|
|
//
|
|
|
|
// *** Must match BaseInfo.h ***
|
|
|
|
//----------------------------------------------------------------------------//
|
|
|
|
|
|
|
|
def TypeMEMOP : Type<9>;
|
|
|
|
def TypeNV : Type<10>;
|
|
|
|
def TypePREFIX : Type<30>;
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------//
|
|
|
|
// Intruction Classes Definitions +
|
|
|
|
//----------------------------------------------------------------------------//
|
|
|
|
|
2011-12-12 21:14:40 +00:00
|
|
|
//
|
|
|
|
// NV type instructions.
|
|
|
|
//
|
|
|
|
class NVInst_V4<dag outs, dag ins, string asmstr, list<dag> pattern>
|
2012-05-03 16:18:50 +00:00
|
|
|
: InstHexagon<outs, ins, asmstr, pattern, "", NV_V4, TypeNV> {
|
2011-12-12 21:14:40 +00:00
|
|
|
bits<5> rd;
|
|
|
|
bits<5> rs;
|
|
|
|
bits<13> imm13;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Definition of Post increment new value store.
|
|
|
|
class NVInstPost_V4<dag outs, dag ins, string asmstr, list<dag> pattern,
|
|
|
|
string cstr>
|
2012-05-03 16:18:50 +00:00
|
|
|
: InstHexagon<outs, ins, asmstr, pattern, cstr, NV_V4, TypeNV> {
|
2011-12-12 21:14:40 +00:00
|
|
|
bits<5> rd;
|
|
|
|
bits<5> rs;
|
|
|
|
bits<5> rt;
|
|
|
|
bits<13> imm13;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Post increment ST Instruction.
|
|
|
|
class NVInstPI_V4<dag outs, dag ins, string asmstr, list<dag> pattern,
|
|
|
|
string cstr>
|
|
|
|
: NVInstPost_V4<outs, ins, asmstr, pattern, cstr> {
|
|
|
|
let rt{0-4} = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
class MEMInst_V4<dag outs, dag ins, string asmstr, list<dag> pattern>
|
2012-05-03 16:18:50 +00:00
|
|
|
: InstHexagon<outs, ins, asmstr, pattern, "", MEM_V4, TypeMEMOP> {
|
2011-12-12 21:14:40 +00:00
|
|
|
bits<5> rd;
|
|
|
|
bits<5> rs;
|
|
|
|
bits<6> imm6;
|
|
|
|
}
|
2012-05-03 16:18:50 +00:00
|
|
|
|
2012-12-20 06:45:39 +00:00
|
|
|
let isCodeGenOnly = 1 in
|
|
|
|
class EXTENDERInst<dag outs, dag ins, string asmstr, list<dag> pattern = []>
|
|
|
|
: InstHexagon<outs, ins, asmstr, pattern, "", PREFIX, TypePREFIX>;
|