[llvm] [NFC][TableGen] Adopt `Emitter::OptClass` in InstrInfoEmitter (PR #125971)
via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 6 05:14:48 PST 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-tablegen
Author: Rahul Joshi (jurahul)
<details>
<summary>Changes</summary>
- Use `Emitter::OptClass` to invoke `InstrInfoEmitter::run` and eliminate the `EmitInstrInfo` function.
---
Full diff: https://github.com/llvm/llvm-project/pull/125971.diff
1 Files Affected:
- (modified) llvm/utils/TableGen/InstrInfoEmitter.cpp (+8-11)
``````````diff
diff --git a/llvm/utils/TableGen/InstrInfoEmitter.cpp b/llvm/utils/TableGen/InstrInfoEmitter.cpp
index 97c00ad4924197..7c46890a49c81c 100644
--- a/llvm/utils/TableGen/InstrInfoEmitter.cpp
+++ b/llvm/utils/TableGen/InstrInfoEmitter.cpp
@@ -890,6 +890,9 @@ void InstrInfoEmitter::emitTIIHelperMethods(raw_ostream &OS,
// run - Emit the main instruction description records for the target...
void InstrInfoEmitter::run(raw_ostream &OS) {
+ TGTimer &Timer = Records.getTimer();
+ Timer.startTimer("Analyze DAG patterns");
+
emitSourceFileHeader("Target Instruction Enum Values and Descriptors", OS);
emitEnums(OS);
@@ -898,7 +901,6 @@ void InstrInfoEmitter::run(raw_ostream &OS) {
const Record *InstrInfo = Target.getInstructionSet();
// Collect all of the operand info records.
- TGTimer &Timer = Records.getTimer();
Timer.startTimer("Collect operand info");
OperandInfoListTy OperandInfoList;
OperandInfoMapTy OperandInfoMap;
@@ -1138,6 +1140,9 @@ void InstrInfoEmitter::run(raw_ostream &OS) {
Timer.startTimer("Emit verifier methods");
emitFeatureVerifier(OS, Target);
+
+ Timer.startTimer("Emit map table");
+ EmitMapTable(Records, OS);
}
void InstrInfoEmitter::emitRecord(
@@ -1314,13 +1319,5 @@ void InstrInfoEmitter::emitEnums(raw_ostream &OS) {
OS << "#endif // GET_INSTRINFO_SCHED_ENUM\n\n";
}
-static void EmitInstrInfo(const RecordKeeper &Records, raw_ostream &OS) {
- TGTimer &Timer = Records.getTimer();
- Timer.startTimer("Analyze DAG patterns");
- InstrInfoEmitter(Records).run(OS);
- Timer.startTimer("Emit map table");
- EmitMapTable(Records, OS);
-}
-
-static TableGen::Emitter::Opt X("gen-instr-info", EmitInstrInfo,
- "Generate instruction descriptions");
+static TableGen::Emitter::OptClass<InstrInfoEmitter>
+ X("gen-instr-info", "Generate instruction descriptions");
``````````
</details>
https://github.com/llvm/llvm-project/pull/125971
More information about the llvm-commits
mailing list