summaryrefslogtreecommitdiff
path: root/utils/TableGen/InstrInfoEmitter.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2008-01-06 01:21:51 +0000
committerChris Lattner <sabre@nondot.org>2008-01-06 01:21:51 +0000
commit5fbe27530415dcacd7afd591c4ba1d6df4374873 (patch)
tree4f1cb61cece4ec8365799ecb82cf5890bc9a9a9d /utils/TableGen/InstrInfoEmitter.h
parentef8339b11a0180c6df6ade4e9f4fd75a76ebc419 (diff)
downloadllvm-5fbe27530415dcacd7afd591c4ba1d6df4374873.tar.gz
llvm-5fbe27530415dcacd7afd591c4ba1d6df4374873.tar.bz2
llvm-5fbe27530415dcacd7afd591c4ba1d6df4374873.tar.xz
final cleanups.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45644 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/InstrInfoEmitter.h')
-rw-r--r--utils/TableGen/InstrInfoEmitter.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/utils/TableGen/InstrInfoEmitter.h b/utils/TableGen/InstrInfoEmitter.h
index b6d02459a5..2dd3a0f44f 100644
--- a/utils/TableGen/InstrInfoEmitter.h
+++ b/utils/TableGen/InstrInfoEmitter.h
@@ -41,22 +41,21 @@ public:
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,
const OperandInfoMapTy &OpInfo,
std::ostream &OS);
+ void emitShiftedValue(Record *R, StringInit *Val, IntInit *Shift,
+ std::ostream &OS);
+ // Itinerary information.
void GatherItinClasses();
unsigned getItinClassNumber(const Record *InstRec);
+ // Operand information.
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);
};
} // End llvm namespace