summaryrefslogtreecommitdiff
path: root/include/llvm/DebugInfo/CodeView/CodeViewRecordIO.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/DebugInfo/CodeView/CodeViewRecordIO.h')
-rw-r--r--include/llvm/DebugInfo/CodeView/CodeViewRecordIO.h13
1 files changed, 11 insertions, 2 deletions
diff --git a/include/llvm/DebugInfo/CodeView/CodeViewRecordIO.h b/include/llvm/DebugInfo/CodeView/CodeViewRecordIO.h
index 00fb0cf4cc90..60829a51dc25 100644
--- a/include/llvm/DebugInfo/CodeView/CodeViewRecordIO.h
+++ b/include/llvm/DebugInfo/CodeView/CodeViewRecordIO.h
@@ -33,6 +33,9 @@ public:
virtual void EmitIntValue(uint64_t Value, unsigned Size) = 0;
virtual void EmitBinaryData(StringRef Data) = 0;
virtual void AddComment(const Twine &T) = 0;
+ virtual void AddRawComment(const Twine &T) = 0;
+ virtual bool isVerboseAsm() = 0;
+ virtual std::string getTypeName(TypeIndex TI) = 0;
virtual ~CodeViewRecordStreamer() = default;
};
@@ -206,6 +209,11 @@ public:
return 0;
}
+ void emitRawComment(const Twine &T) {
+ if (isStreaming() && Streamer->isVerboseAsm())
+ Streamer->AddRawComment(T);
+ }
+
private:
void emitEncodedSignedInteger(const int64_t &Value,
const Twine &Comment = "");
@@ -225,9 +233,10 @@ private:
}
void emitComment(const Twine &Comment) {
- if (isStreaming()) {
+ if (isStreaming() && Streamer->isVerboseAsm()) {
Twine TComment(Comment);
- Streamer->AddComment(TComment);
+ if (!TComment.isTriviallyEmpty())
+ Streamer->AddComment(TComment);
}
}