summaryrefslogtreecommitdiff
path: root/utils/TableGen/InstrInfoEmitter.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/TableGen/InstrInfoEmitter.h')
-rw-r--r--utils/TableGen/InstrInfoEmitter.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/utils/TableGen/InstrInfoEmitter.h b/utils/TableGen/InstrInfoEmitter.h
index 5893d4473b..b6d02459a5 100644
--- a/utils/TableGen/InstrInfoEmitter.h
+++ b/utils/TableGen/InstrInfoEmitter.h
@@ -39,18 +39,24 @@ public:
void run(std::ostream &OS);
private:
+ typedef std::map<std::vector<std::string>, unsigned> OperandInfoMapTy;
+
void printDefList(const std::vector<Record*> &Uses, unsigned Num,
std::ostream &OS) const;
void emitRecord(const CodeGenInstruction &Inst, unsigned Num,
Record *InstrInfo,
std::map<std::vector<Record*>, unsigned> &EL,
- std::map<std::vector<std::string>, unsigned> &OpInfo,
+ const OperandInfoMapTy &OpInfo,
std::ostream &OS);
+
void GatherItinClasses();
unsigned getItinClassNumber(const Record *InstRec);
+
+ void EmitOperandInfo(std::ostream &OS, OperandInfoMapTy &OperandInfoIDs);
+ std::vector<std::string> GetOperandInfo(const CodeGenInstruction &Inst);
+
void emitShiftedValue(Record *R, StringInit *Val, IntInit *Shift,
std::ostream &OS);
- std::vector<std::string> GetOperandInfo(const CodeGenInstruction &Inst);
};
} // End llvm namespace