[llvm] [MCA] Extend -instruction-tables option with verbosity levels (PR #130574)

Simon Pilgrim via llvm-commits llvm-commits at lists.llvm.org
Fri Mar 21 04:19:59 PDT 2025


================
@@ -12,15 +12,47 @@
 //===----------------------------------------------------------------------===//
 
 #include "Views/InstructionInfoView.h"
+#include "llvm/ADT/StringExtras.h"
 #include "llvm/Support/FormattedStream.h"
 #include "llvm/Support/JSON.h"
+#include "llvm/Support/WithColor.h"
 
 namespace llvm {
 namespace mca {
 
+void InstructionInfoView::getComment(const MCInst &MCI,
+                                     std::string &CommentString) const {
----------------
RKSimon wrote:

Would it be better just to write to a raw_ostream (like we do for dump calls)?

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


More information about the llvm-commits mailing list