summaryrefslogtreecommitdiff
path: root/lib/Target/Hexagon/HexagonInstrFormatsV4.td
blob: 49741a3d1b206403ac5702fe29921d0a71280744 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
//==- 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.
//
//===----------------------------------------------------------------------===//

//----------------------------------------------------------------------------//
//                         Hexagon Intruction Flags +
//
//                        *** Must match BaseInfo.h ***
//----------------------------------------------------------------------------//

def TypeMEMOP  : Type<9>;
def TypeNV     : Type<10>;
def TypePREFIX : Type<30>;

//----------------------------------------------------------------------------//
//                         Intruction Classes Definitions +
//----------------------------------------------------------------------------//

//
// NV type instructions.
//
class NVInst_V4<dag outs, dag ins, string asmstr, list<dag> pattern>
  : InstHexagon<outs, ins, asmstr, pattern, "", NV_V4, TypeNV> {
  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>
  : InstHexagon<outs, ins, asmstr, pattern, cstr, NV_V4, TypeNV> {
  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>
  : InstHexagon<outs, ins, asmstr, pattern, "", MEM_V4, TypeMEMOP> {
  bits<5> rd;
  bits<5> rs;
  bits<6> imm6;
}

class Immext<dag outs, dag ins, string asmstr, list<dag> pattern>
  : InstHexagon<outs, ins, asmstr, pattern, "", PREFIX, TypePREFIX> {
  let isCodeGenOnly = 1;

  bits<26> imm26;
}