1 //===- HexagonMCChecker.h - Instruction bundle checking ---------*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This implements the checking of insns inside a bundle according to the
10 // packet constraint rules of the Hexagon ISA.
12 //===----------------------------------------------------------------------===//
14 #ifndef LLVM_LIB_TARGET_HEXAGON_MCTARGETDESC_HEXAGONMCCHECKER_H
15 #define LLVM_LIB_TARGET_HEXAGON_MCTARGETDESC_HEXAGONMCCHECKER_H
17 #include "MCTargetDesc/HexagonMCInstrInfo.h"
18 #include "MCTargetDesc/HexagonMCTargetDesc.h"
19 #include "llvm/ADT/DenseMap.h"
20 #include "llvm/ADT/SmallVector.h"
21 #include "llvm/Support/SMLoc.h"
31 class MCSubtargetInfo
;
33 /// Check for a valid bundle.
34 class HexagonMCChecker
{
37 const MCRegisterInfo
&RI
;
38 MCInstrInfo
const &MCII
;
39 MCSubtargetInfo
const &STI
;
42 /// Set of definitions: register #, if predicated, if predicated true.
43 using PredSense
= std::pair
<unsigned, bool>;
44 static const PredSense Unconditional
;
45 using PredSet
= std::multiset
<PredSense
>;
46 using PredSetIterator
= std::multiset
<PredSense
>::iterator
;
48 using DefsIterator
= DenseMap
<unsigned, PredSet
>::iterator
;
49 DenseMap
<unsigned, PredSet
> Defs
;
51 /// Set of weak definitions whose clashes should be enforced selectively.
52 using SoftDefsIterator
= std::set
<unsigned>::iterator
;
53 std::set
<unsigned> SoftDefs
;
55 /// Set of temporary definitions not committed to the register file.
56 using TmpDefsIterator
= std::set
<unsigned>::iterator
;
57 std::set
<unsigned> TmpDefs
;
59 /// Set of new predicates used.
60 using NewPredsIterator
= std::set
<unsigned>::iterator
;
61 std::set
<unsigned> NewPreds
;
63 /// Set of predicates defined late.
64 using LatePredsIterator
= std::multiset
<unsigned>::iterator
;
65 std::multiset
<unsigned> LatePreds
;
68 using UsesIterator
= std::set
<unsigned>::iterator
;
69 std::set
<unsigned> Uses
;
71 /// Pre-defined set of read-only registers.
72 using ReadOnlyIterator
= std::set
<unsigned>::iterator
;
73 std::set
<unsigned> ReadOnly
;
75 // Contains the vector-pair-registers with the even number
76 // first ("v0:1", e.g.) used/def'd in this packet.
77 std::set
<unsigned> ReversePairs
;
80 void init(MCInst
const &);
81 void initReg(MCInst
const &, unsigned, unsigned &PredReg
, bool &isTrue
);
83 bool registerUsed(unsigned Register
);
84 std::tuple
<MCInst
const *, unsigned, HexagonMCInstrInfo::PredicateInfo
>
85 registerProducer(unsigned Register
,
86 HexagonMCInstrInfo::PredicateInfo Predicated
);
90 bool checkPredicates();
91 bool checkNewValues();
92 bool checkRegisters();
93 bool checkRegistersReadOnly();
94 void checkRegisterCurDefs();
101 bool checkLegalVecRegPair();
103 static void compoundRegisterMap(unsigned &);
105 bool isPredicateRegister(unsigned R
) const {
106 return (Hexagon::P0
== R
|| Hexagon::P1
== R
|| Hexagon::P2
== R
||
110 bool isLoopRegister(unsigned R
) const {
111 return (Hexagon::SA0
== R
|| Hexagon::LC0
== R
|| Hexagon::SA1
== R
||
116 explicit HexagonMCChecker(MCContext
&Context
, MCInstrInfo
const &MCII
,
117 MCSubtargetInfo
const &STI
, MCInst
&mcb
,
118 const MCRegisterInfo
&ri
, bool ReportErrors
= true);
119 explicit HexagonMCChecker(HexagonMCChecker
const &Check
,
120 MCSubtargetInfo
const &STI
, bool CopyReportErrors
);
122 bool check(bool FullCheck
= true);
123 void reportErrorRegisters(unsigned Register
);
124 void reportErrorNewValue(unsigned Register
);
125 void reportError(SMLoc Loc
, Twine
const &Msg
);
126 void reportNote(SMLoc Loc
, Twine
const &Msg
);
127 void reportError(Twine
const &Msg
);
128 void reportWarning(Twine
const &Msg
);
129 void reportBranchErrors();
132 } // end namespace llvm
134 #endif // LLVM_LIB_TARGET_HEXAGON_MCTARGETDESC_HEXAGONMCCHECKER_H