mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
[Hexagon] Simplify MCCodeEmitter, move data to tables
llvm-svn: 331883
This commit is contained in:
parent
64645f6c32
commit
eb411966ec
File diff suppressed because it is too large
Load Diff
@ -35,26 +35,20 @@ class raw_ostream;
|
||||
class HexagonMCCodeEmitter : public MCCodeEmitter {
|
||||
MCContext &MCT;
|
||||
MCInstrInfo const &MCII;
|
||||
std::unique_ptr<unsigned> Addend;
|
||||
std::unique_ptr<bool> Extended;
|
||||
std::unique_ptr<bool> SubInst1;
|
||||
std::unique_ptr<MCInst const *> CurrentBundle;
|
||||
std::unique_ptr<size_t> CurrentIndex;
|
||||
|
||||
// helper routine for getMachineOpValue()
|
||||
unsigned getExprOpValue(const MCInst &MI, const MCOperand &MO,
|
||||
const MCExpr *ME, SmallVectorImpl<MCFixup> &Fixups,
|
||||
const MCSubtargetInfo &STI) const;
|
||||
|
||||
Hexagon::Fixups getFixupNoBits(MCInstrInfo const &MCII, const MCInst &MI,
|
||||
const MCOperand &MO,
|
||||
const MCSymbolRefExpr::VariantKind kind) const;
|
||||
// A mutable state of the emitter when encoding bundles and duplexes.
|
||||
struct EmitterState {
|
||||
unsigned Addend = 0;
|
||||
bool Extended = false;
|
||||
bool SubInst1 = false;
|
||||
const MCInst *Bundle = nullptr;
|
||||
size_t Index = 0;
|
||||
};
|
||||
mutable EmitterState State;
|
||||
|
||||
public:
|
||||
HexagonMCCodeEmitter(MCInstrInfo const &aMII, MCContext &aMCT);
|
||||
|
||||
// Return parse bits for instruction `MCI' inside bundle `MCB'
|
||||
uint32_t parseBits(size_t Last, MCInst const &MCB, MCInst const &MCI) const;
|
||||
HexagonMCCodeEmitter(MCInstrInfo const &MII, MCContext &MCT)
|
||||
: MCT(MCT), MCII(MII) {}
|
||||
|
||||
void encodeInstruction(MCInst const &MI, raw_ostream &OS,
|
||||
SmallVectorImpl<MCFixup> &Fixups,
|
||||
@ -77,6 +71,18 @@ public:
|
||||
MCSubtargetInfo const &STI) const;
|
||||
|
||||
private:
|
||||
// helper routine for getMachineOpValue()
|
||||
unsigned getExprOpValue(const MCInst &MI, const MCOperand &MO,
|
||||
const MCExpr *ME, SmallVectorImpl<MCFixup> &Fixups,
|
||||
const MCSubtargetInfo &STI) const;
|
||||
|
||||
Hexagon::Fixups getFixupNoBits(MCInstrInfo const &MCII, const MCInst &MI,
|
||||
const MCOperand &MO,
|
||||
const MCSymbolRefExpr::VariantKind Kind) const;
|
||||
|
||||
// Return parse bits for instruction `MCI' inside bundle `MCB'
|
||||
uint32_t parseBits(size_t Last, MCInst const &MCB, MCInst const &MCI) const;
|
||||
|
||||
uint64_t computeAvailableFeatures(const FeatureBitset &FB) const;
|
||||
void verifyInstructionPredicates(const MCInst &MI,
|
||||
uint64_t AvailableFeatures) const;
|
||||
|
Loading…
Reference in New Issue
Block a user