Skip to content

Commit c69cb76

Browse files
authored
Merge pull request #80228 from DougGregor/serialized-category-documentation-url
[Serialized diagnostics] Emit category documentation URL
2 parents b032d70 + fc508da commit c69cb76

File tree

2 files changed

+22
-5
lines changed

2 files changed

+22
-5
lines changed

lib/Frontend/SerializedDiagnosticConsumer.cpp

+20-5
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ class SerializedDiagnosticConsumer : public DiagnosticConsumer {
194194
);
195195

196196
// Record identifier for the category.
197-
unsigned getEmitCategory(StringRef Category);
197+
unsigned getEmitCategory(StringRef Category, StringRef CategoryURL);
198198

199199
/// Emit a flag record that contains a semi-colon separated
200200
/// list of all of the educational notes associated with the
@@ -308,7 +308,9 @@ unsigned SerializedDiagnosticConsumer::getEmitFile(
308308
return entry;
309309
}
310310

311-
unsigned SerializedDiagnosticConsumer::getEmitCategory(StringRef Category) {
311+
unsigned SerializedDiagnosticConsumer::getEmitCategory(
312+
StringRef Category, StringRef CategoryURL
313+
) {
312314
unsigned &entry = State->Categories[Category.data()];
313315
if (entry)
314316
return entry;
@@ -319,8 +321,15 @@ unsigned SerializedDiagnosticConsumer::getEmitCategory(StringRef Category) {
319321
Record.push_back(RECORD_CATEGORY);
320322
Record.push_back(entry);
321323
Record.push_back(Category.size());
322-
State->Stream.EmitRecordWithBlob(State->Abbrevs.get(RECORD_CATEGORY), Record,
323-
Category);
324+
325+
if (CategoryURL.empty()) {
326+
State->Stream.EmitRecordWithBlob(State->Abbrevs.get(RECORD_CATEGORY),
327+
Record, Category);
328+
} else {
329+
std::string encodedCategory = (Category + "@" + CategoryURL).str();
330+
State->Stream.EmitRecordWithBlob(State->Abbrevs.get(RECORD_CATEGORY),
331+
Record, encodedCategory);
332+
}
324333

325334
return entry;
326335
}
@@ -601,14 +610,20 @@ emitDiagnosticMessage(SourceManager &SM,
601610

602611
// Emit the category.
603612
if (!Info.Category.empty()) {
604-
Record.push_back(getEmitCategory(Info.Category));
613+
std::string categoryURL;
614+
if (!Info.EducationalNotePaths.empty()) {
615+
categoryURL = Info.EducationalNotePaths[0];
616+
}
617+
Record.push_back(getEmitCategory(Info.Category, categoryURL));
605618
} else {
606619
Record.push_back(0);
607620
}
608621

609622
// Use "flags" slot to emit a semi-colon separated list of
610623
// educational notes. If there are no notes associated with
611624
// this diagnostic `0` placeholder would be emitted instead.
625+
// FIXME: This is a bit of a kludge. We're moving toward putting the
626+
// educational note into the category field instead.
612627
Record.push_back(emitEducationalNotes(Info));
613628

614629
// Emit the message.

test/diagnostics/diagnostic-group-serialization.swift

+2
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,5 @@ func test() {
2121
beCareful()
2222
// CHECK: [[@LINE-1]]:3: warning: expression uses unsafe constructs but is not marked with 'unsafe' [StrictMemorySafety] [-W{{.*}}strict-memory-safety.md] [StrictMemorySafety]
2323
}
24+
25+
// CHECK: [StrictMemorySafety]: <{{.*}}strict-memory-safety.md>

0 commit comments

Comments
 (0)