[llvm] [llvm-exegesis] Add HasNoSchedulingInfo flag to MCInstDesc. (PR #143840)

Jason Eckhardt via llvm-commits llvm-commits at lists.llvm.org
Thu Jun 12 07:55:04 PDT 2025


================
@@ -430,6 +431,11 @@ class MCInstrDesc {
     return Flags & (1ULL << MCID::Authenticated);
   }
 
+  /// Return true if this instruction has no scheduling info.
+  bool hasNoSchedulingInfo() const {
+    return Flags & (1ULL << MCID::HasNoSchedulingInfo);
+  }
+
----------------
nvjle wrote:

Does the existing `MCInstrDesc::getSchedClass() == 0` have the same effect? 

https://github.com/llvm/llvm-project/pull/143840


More information about the llvm-commits mailing list