13 #ifndef MLIR_IR_DIAGNOSTICS_H
14 #define MLIR_IR_DIAGNOSTICS_H
27 class DiagnosticEngine;
32 class OpPrintingFlags;
37 struct DiagnosticEngineImpl;
66 T val, std::enable_if_t<std::is_signed<T>::value &&
67 std::numeric_limits<T>::is_integer &&
68 sizeof(T) <=
sizeof(int64_t)> * =
nullptr)
73 T val, std::enable_if_t<std::is_unsigned<T>::value &&
74 std::numeric_limits<T>::is_integer &&
75 sizeof(T) <=
sizeof(uint64_t)> * =
nullptr)
95 void print(raw_ostream &os)
const;
157 using NoteVector = std::vector<std::unique_ptr<Diagnostic>>;
161 : loc(loc), severity(severity) {}
176 template <
typename Arg>
177 std::enable_if_t<!std::is_convertible<Arg, StringRef>::value &&
178 std::is_constructible<DiagnosticArgument, Arg>::value,
210 template <
typename T,
typename ValueT = llvm::detail::ValueOfRange<T>>
211 std::enable_if_t<!std::is_constructible<DiagnosticArgument, T>::value,
219 template <
typename T>
222 c, [
this](
const auto &a) { *
this << a; }, [&]() { *
this << delim; });
227 template <
typename Arg1,
typename Arg2,
typename... Args>
229 append(std::forward<Arg1>(arg1));
230 return append(std::forward<Arg2>(arg2), std::forward<Args>(args)...);
233 template <
typename Arg>
235 *this << std::forward<Arg>(arg);
240 void print(raw_ostream &os)
const;
243 std::string
str()
const;
252 llvm::pointee_iterator<NoteVector::const_iterator>;
256 return llvm::make_pointee_range(notes);
259 return llvm::make_pointee_range(notes);
270 template <
typename T>
290 std::vector<std::unique_ptr<char[]>> strings;
312 : owner(rhs.owner),
impl(std::move(rhs.
impl)) {
323 template <
typename Arg>
325 return append(std::forward<Arg>(arg));
327 template <
typename Arg>
329 return std::move(
append(std::forward<Arg>(arg)));
333 template <
typename... Args>
335 assert(isActive() &&
"diagnostic not active");
337 impl->append(std::forward<Args>(args)...);
340 template <
typename... Args>
342 return std::move(
append(std::forward<Args>(args)...));
347 assert(isActive() &&
"diagnostic not active");
348 return impl->attachNote(noteLoc);
372 template <
typename T>
381 : owner(owner),
impl(std::move(rhs)) {}
385 bool isActive()
const {
return impl.has_value(); }
388 bool isInFlight()
const {
return owner; }
391 friend DiagnosticEngine;
394 DiagnosticEngine *owner =
nullptr;
397 std::optional<Diagnostic>
impl;
440 template <typename FuncTy, typename RetT = decltype(std::declval<FuncTy>()(
441 std::declval<Diagnostic &>()))>
442 std::enable_if_t<std::is_same<RetT, void>::value,
HandlerID>
456 "notes should not be emitted directly");
470 std::unique_ptr<detail::DiagnosticEngineImpl>
impl;
490 template <
typename... Args>
496 template <
typename... Args>
502 template <
typename... Args>
519 template <
typename FuncTy>
521 : handlerID(0), ctx(ctx) {
528 template <
typename FuncTy>
533 handlerID = diagEngine.registerHandler(std::forward<FuncTy>(handler));
549 struct SourceMgrDiagnosticHandlerImpl;
573 bool displaySourceLine =
true);
595 SMLoc convertLocToSMLoc(FileLineColLoc loc);
599 std::optional<Location> findLocToShow(
Location loc);
603 unsigned callStackLimit = 10;
605 std::unique_ptr<detail::SourceMgrDiagnosticHandlerImpl>
impl;
613 struct SourceMgrDiagnosticVerifierHandlerImpl;
638 std::unique_ptr<detail::SourceMgrDiagnosticVerifierHandlerImpl>
impl;
646 struct ParallelDiagnosticHandlerImpl;
676 std::unique_ptr<detail::ParallelDiagnosticHandlerImpl>
impl;
static std::string diag(const llvm::Value &value)
Attributes are known-constant values of operations.
A variant type that holds a single argument for a diagnostic.
DiagnosticArgumentKind
Enum that represents the different kinds of diagnostic arguments supported.
StringRef getAsString() const
Returns this argument as a string.
double getAsDouble() const
Returns this argument as a double.
DiagnosticArgument(Attribute attr)
Note: The constructors below are only exposed due to problems accessing constructors from type traits...
Type getAsType() const
Returns this argument as a Type.
int64_t getAsInteger() const
Returns this argument as a signed integer.
DiagnosticArgument(double val)
DiagnosticArgumentKind getKind() const
Returns the kind of this argument.
Attribute getAsAttribute() const
Returns this argument as an Attribute.
DiagnosticArgument(T val, std::enable_if_t< std::is_unsigned< T >::value &&std::numeric_limits< T >::is_integer &&sizeof(T)<=sizeof(uint64_t)> *=nullptr)
void print(raw_ostream &os) const
Outputs this argument to a stream.
DiagnosticArgument(float val)
uint64_t getAsUnsigned() const
Returns this argument as an unsigned integer.
DiagnosticArgument(StringRef val)
DiagnosticArgument(T val, std::enable_if_t< std::is_signed< T >::value &&std::numeric_limits< T >::is_integer &&sizeof(T)<=sizeof(int64_t)> *=nullptr)
This class is the main interface for diagnostics.
uint64_t HandlerID
A handle to a specific registered handler object.
InFlightDiagnostic emit(Location loc, DiagnosticSeverity severity)
Create a new inflight diagnostic with the given location and severity.
std::enable_if_t< std::is_same< RetT, void >::value, HandlerID > registerHandler(FuncTy &&handler)
Set the diagnostic handler with a function that returns void.
void eraseHandler(HandlerID id)
Erase the registered diagnostic handler with the given identifier.
llvm::unique_function< LogicalResult(Diagnostic &)> HandlerTy
The handler type for MLIR diagnostics.
HandlerID registerHandler(HandlerTy handler)
Register a new handler for diagnostics to the engine.
This class contains all of the information necessary to report a diagnostic to the DiagnosticEngine.
DiagnosticSeverity getSeverity() const
Returns the severity of this diagnostic.
std::string str() const
Converts the diagnostic to a string.
iterator_range< note_iterator > getNotes()
Returns the notes held by this diagnostic.
Diagnostic & operator<<(Operation *op)
Diagnostic & append(Arg1 &&arg1, Arg2 &&arg2, Args &&...args)
Append arguments to the diagnostic.
Location getLocation() const
Returns the source location for this diagnostic.
Diagnostic & attachNote(std::optional< Location > noteLoc=std::nullopt)
Attaches a note to this diagnostic.
Diagnostic & appendRange(const T &c, const char *delim=", ")
Append a range to the diagnostic.
Diagnostic & operator=(Diagnostic &&)=default
llvm::pointee_iterator< NoteVector::iterator > note_iterator
MutableArrayRef< DiagnosticArgument > getArguments()
Returns the current list of diagnostic arguments.
Diagnostic(Location loc, DiagnosticSeverity severity)
std::enable_if_t<!std::is_constructible< DiagnosticArgument, T >::value, Diagnostic & > operator<<(T &&range)
Stream in a range.
llvm::pointee_iterator< NoteVector::const_iterator > const_note_iterator
Diagnostic & append(Arg &&arg)
Append one argument to the diagnostic.
iterator_range< const_note_iterator > getNotes() const
std::enable_if_t<!std::is_convertible< Arg, StringRef >::value &&std::is_constructible< DiagnosticArgument, Arg >::value, Diagnostic & > operator<<(Arg &&val)
Stream operator for inserting new diagnostic arguments.
ArrayRef< DiagnosticArgument > getArguments() const
Diagnostic & operator<<(const char *val)
Stream in a string literal.
Diagnostic(Diagnostic &&)=default
void print(raw_ostream &os) const
Outputs this diagnostic to a stream.
Diagnostic & appendOp(Operation &op, const OpPrintingFlags &flags)
Append an operation with the given printing flags.
This class provides support for representing a failure result, or a valid value of type T.
This class represents a diagnostic that is inflight and set to be reported.
InFlightDiagnostic && operator<<(Arg &&arg) &&
Diagnostic & attachNote(std::optional< Location > noteLoc=std::nullopt)
Attaches a note to this diagnostic.
InFlightDiagnostic & operator<<(Arg &&arg) &
Stream operator for new diagnostic arguments.
InFlightDiagnostic & append(Args &&...args) &
Append arguments to the diagnostic.
InFlightDiagnostic && append(Args &&...args) &&
InFlightDiagnostic()=default
void report()
Reports the diagnostic to the engine.
Diagnostic * getUnderlyingDiagnostic()
Returns the underlying diagnostic or nullptr if this diagnostic isn't active.
InFlightDiagnostic(InFlightDiagnostic &&rhs)
void abandon()
Abandons this diagnostic so that it will no longer be reported.
This class defines the main interface for locations in MLIR and acts as a non-nullable wrapper around...
This is the implementation of the MLIRContext class, using the pImpl idiom.
MLIRContext is the top-level object for a collection of MLIR operations.
DiagnosticEngine & getDiagEngine()
Returns the diagnostic engine for this context.
Set of flags used to control the behavior of the various IR print methods (e.g.
Operation is the basic unit of execution within MLIR.
This class is a utility diagnostic handler for use when multi-threading some part of the compiler whe...
void eraseOrderIDForThread()
Remove the order id for the current thread.
~ParallelDiagnosticHandler()
ParallelDiagnosticHandler(MLIRContext *ctx)
void setOrderIDForThread(size_t orderID)
Set the order id for the current thread.
This class represents success/failure for parsing-like operations that find it important to chain tog...
This diagnostic handler is a simple RAII class that registers and erases a diagnostic handler on a gi...
~ScopedDiagnosticHandler()
ScopedDiagnosticHandler(MLIRContext *ctx)
ScopedDiagnosticHandler(MLIRContext *ctx, FuncTy &&handler)
void setHandler(FuncTy &&handler)
Set the handler to manage via RAII.
This class is a utility diagnostic handler for use with llvm::SourceMgr.
void emitDiagnostic(Location loc, Twine message, DiagnosticSeverity kind, bool displaySourceLine=true)
Emit the given diagnostic information with the held source manager.
raw_ostream & os
The output stream to use when printing diagnostics.
SourceMgrDiagnosticHandler(llvm::SourceMgr &mgr, MLIRContext *ctx, raw_ostream &os, ShouldShowLocFn &&shouldShowLocFn={})
~SourceMgrDiagnosticHandler()
ShouldShowLocFn shouldShowLocFn
A functor used when determining if a location for a diagnostic should be shown.
const llvm::MemoryBuffer * getBufferForFile(StringRef filename)
Get a memory buffer for the given file, or nullptr if no file is available.
llvm::SourceMgr & mgr
The source manager that we are wrapping.
llvm::unique_function< bool(Location)> ShouldShowLocFn
This type represents a functor used to filter out locations when printing a diagnostic.
This class is a utility diagnostic handler for use with llvm::SourceMgr that verifies that emitted di...
~SourceMgrDiagnosticVerifierHandler()
LogicalResult verify()
Returns the status of the handler and verifies that all expected diagnostics were emitted.
SourceMgrDiagnosticVerifierHandler(llvm::SourceMgr &srcMgr, MLIRContext *ctx, raw_ostream &out)
Instances of the Type class are uniqued, have an immutable identifier and an optional mutable compone...
This class represents an instance of an SSA value in the MLIR system, representing a computable value...
Include the generated interface declarations.
@ Type
An inlay hint that for a type annotation.
This header declares functions that assist transformations in the MemRef dialect.
LogicalResult failure(bool isFailure=true)
Utility function to generate a LogicalResult.
InFlightDiagnostic emitWarning(Location loc)
Utility method to emit a warning message using this location.
DiagnosticSeverity
Defines the different supported severity of a diagnostic.
LogicalResult emitOptionalRemark(std::optional< Location > loc, Args &&...args)
LogicalResult emitOptionalError(std::optional< Location > loc, Args &&...args)
Overloads of the above emission functions that take an optionally null location.
InFlightDiagnostic emitError(Location loc)
Utility method to emit an error message using this location.
LogicalResult success(bool isSuccess=true)
Utility function to generate a LogicalResult.
InFlightDiagnostic emitRemark(Location loc)
Utility method to emit a remark message using this location.
LogicalResult emitOptionalWarning(std::optional< Location > loc, Args &&...args)
raw_ostream & operator<<(raw_ostream &os, const AliasResult &result)
This class represents an efficient way to signal success or failure.