[PATCH] D96487: Restore diagnostic handler after CodeGenAction::ExecuteAction
Marco Antognini via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Thu Feb 11 03:54:41 PST 2021
mantognini created this revision.
Herald added a subscriber: dexonsmith.
mantognini published this revision for review.
mantognini added inline comments.
Herald added projects: clang, LLVM.
Herald added subscribers: llvm-commits, cfe-commits.
================
Comment at: llvm/include/llvm/IR/LLVMContext.h:196
+ /// argument is unique_ptr of object of type DiagnosticHandler or a derived
+ /// of that. The second argument should be set to true if the handler only
+ /// expects enabled diagnostics.
----------------
Had to run clang-format. The change is replacing "third" with "second".
Fix dangling pointer to local variable and address some typos.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D96487
Files:
clang/lib/CodeGen/CodeGenAction.cpp
llvm/include/llvm/IR/LLVMContext.h
Index: llvm/include/llvm/IR/LLVMContext.h
===================================================================
--- llvm/include/llvm/IR/LLVMContext.h
+++ llvm/include/llvm/IR/LLVMContext.h
@@ -190,10 +190,11 @@
DiagnosticHandler::DiagnosticHandlerTy DiagHandler,
void *DiagContext = nullptr, bool RespectFilters = false);
- /// setDiagnosticHandler - This method sets unique_ptr to object of DiagnosticHandler
- /// to provide custom diagnostic handling. The first argument is unique_ptr of object
- /// of type DiagnosticHandler or a derived of that. The third argument should be
- /// set to true if the handler only expects enabled diagnostics.
+ /// setDiagnosticHandler - This method sets unique_ptr to object of
+ /// DiagnosticHandler to provide custom diagnostic handling. The first
+ /// argument is unique_ptr of object of type DiagnosticHandler or a derived
+ /// of that. The second argument should be set to true if the handler only
+ /// expects enabled diagnostics.
///
/// Ownership of this pointer is moved to LLVMContextImpl.
void setDiagnosticHandler(std::unique_ptr<DiagnosticHandler> &&DH,
@@ -211,7 +212,7 @@
/// setDiagnosticHandler.
const DiagnosticHandler *getDiagHandlerPtr() const;
- /// getDiagnosticHandler - transfers owenership of DiagnosticHandler unique_ptr
+ /// getDiagnosticHandler - transfers ownership of DiagnosticHandler unique_ptr
/// to caller.
std::unique_ptr<DiagnosticHandler> getDiagnosticHandler();
Index: clang/lib/CodeGen/CodeGenAction.cpp
===================================================================
--- clang/lib/CodeGen/CodeGenAction.cpp
+++ clang/lib/CodeGen/CodeGenAction.cpp
@@ -1115,6 +1115,14 @@
LLVMContext &Ctx = TheModule->getContext();
Ctx.setInlineAsmDiagnosticHandler(BitcodeInlineAsmDiagHandler, &Diagnostics);
+ // Restore any diagnostic handler previously set before returning from this
+ // function.
+ struct RAII {
+ LLVMContext &Ctx;
+ std::unique_ptr<DiagnosticHandler> PrevHandler = Ctx.getDiagnosticHandler();
+ ~RAII() { Ctx.setDiagnosticHandler(std::move(PrevHandler)); }
+ } _{Ctx};
+
// Set clang diagnostic handler. To do this we need to create a fake
// BackendConsumer.
BackendConsumer Result(BA, CI.getDiagnostics(), CI.getHeaderSearchOpts(),
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D96487.322944.patch
Type: text/x-patch
Size: 2314 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20210211/5096cb08/attachment.bin>
More information about the cfe-commits
mailing list