LLVM 19.0.0git
BinaryStreamError.h
Go to the documentation of this file.
1//===- BinaryStreamError.h - Error extensions for Binary Streams *- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef LLVM_SUPPORT_BINARYSTREAMERROR_H
10#define LLVM_SUPPORT_BINARYSTREAMERROR_H
11
12#include "llvm/ADT/StringRef.h"
13#include "llvm/Support/Error.h"
14
15#include <string>
16
17namespace llvm {
24};
25
26/// Base class for errors originating when parsing raw PDB files
27class BinaryStreamError : public ErrorInfo<BinaryStreamError> {
28public:
29 static char ID;
31 explicit BinaryStreamError(StringRef Context);
33
34 void log(raw_ostream &OS) const override;
35 std::error_code convertToErrorCode() const override;
36
38
39 stream_error_code getErrorCode() const { return Code; }
40
41private:
42 std::string ErrMsg;
44};
45} // namespace llvm
46
47#endif // LLVM_SUPPORT_BINARYSTREAMERROR_H
raw_pwrite_stream & OS
Base class for errors originating when parsing raw PDB files.
std::error_code convertToErrorCode() const override
Convert this error to a std::error_code.
void log(raw_ostream &OS) const override
Print an error message to an output stream.
StringRef getErrorMessage() const
stream_error_code getErrorCode() const
Base class for user error types.
Definition: Error.h:352
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:50
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition: raw_ostream.h:52
@ C
The default llvm calling convention, compatible with C.
Definition: CallingConv.h:34
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18