LLVM
13.0.0git
include
llvm
DebugInfo
PDB
Native
RawError.h
Go to the documentation of this file.
1
//===- RawError.h - Error extensions for raw PDB implementation -*- 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_DEBUGINFO_PDB_NATIVE_RAWERROR_H
10
#define LLVM_DEBUGINFO_PDB_NATIVE_RAWERROR_H
11
12
#include "
llvm/Support/Error.h
"
13
14
#include <string>
15
16
namespace
llvm
{
17
namespace
pdb {
18
enum class
raw_error_code
{
19
unspecified
= 1,
20
feature_unsupported
,
21
invalid_format
,
22
corrupt_file
,
23
insufficient_buffer
,
24
no_stream
,
25
index_out_of_bounds
,
26
invalid_block_address
,
27
duplicate_entry
,
28
no_entry
,
29
not_writable
,
30
stream_too_long
,
31
invalid_tpi_hash
,
32
};
33
}
// namespace pdb
34
}
// namespace llvm
35
36
namespace
std
{
37
template
<>
38
struct
is_error_code_enum<
llvm
::
pdb::raw_error_code
> : std::true_type {};
39
}
// namespace std
40
41
namespace
llvm
{
42
namespace
pdb {
43
const
std::error_category
&
RawErrCategory
();
44
45
inline
std::error_code
make_error_code
(
raw_error_code
E
) {
46
return
std::error_code(
static_cast<
int
>
(
E
),
RawErrCategory
());
47
}
48
49
/// Base class for errors originating when parsing raw PDB files
50
class
RawError
:
public
ErrorInfo
<RawError, StringError> {
51
public
:
52
using
ErrorInfo<RawError, StringError>::ErrorInfo
;
// inherit constructors
53
RawError
(
const
Twine
&
S
) :
ErrorInfo
(
S
,
raw_error_code
::unspecified) {}
54
static
char
ID
;
55
};
56
}
// namespace pdb
57
}
// namespace llvm
58
#endif
llvm::pdb::raw_error_code::no_stream
@ no_stream
llvm
This class represents lattice values for constants.
Definition:
AllocatorList.h:23
llvm::pdb::RawError
Base class for errors originating when parsing raw PDB files.
Definition:
RawError.h:50
llvm::pdb::RawErrCategory
const std::error_category & RawErrCategory()
Definition:
RawError.cpp:51
llvm::pdb::raw_error_code::index_out_of_bounds
@ index_out_of_bounds
Error.h
llvm::pdb::RawError::RawError
RawError(const Twine &S)
Definition:
RawError.h:53
llvm::pdb::raw_error_code::invalid_format
@ invalid_format
llvm::pdb::raw_error_code
raw_error_code
Definition:
RawError.h:18
llvm::pdb::raw_error_code::corrupt_file
@ corrupt_file
E
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
llvm::pdb::raw_error_code::unspecified
@ unspecified
llvm::pdb::raw_error_code::invalid_block_address
@ invalid_block_address
llvm::pdb::RawError::ID
static char ID
Definition:
RawError.h:54
llvm::pdb::make_error_code
std::error_code make_error_code(dia_error_code E)
Definition:
DIAError.h:37
llvm::pdb::raw_error_code::feature_unsupported
@ feature_unsupported
llvm::ErrorInfo
Base class for user error types.
Definition:
Error.h:350
S
add sub stmia L5 ldr r0 bl L_printf $stub Instead of a and a wouldn t it be better to do three moves *Return an aggregate type is even return S
Definition:
README.txt:210
llvm::Twine
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
Definition:
Twine.h:80
std
Definition:
BitVector.h:941
llvm::pdb::raw_error_code::not_writable
@ not_writable
llvm::pdb::raw_error_code::invalid_tpi_hash
@ invalid_tpi_hash
llvm::pdb::raw_error_code::insufficient_buffer
@ insufficient_buffer
llvm::pdb::raw_error_code::no_entry
@ no_entry
llvm::pdb::raw_error_code::stream_too_long
@ stream_too_long
llvm::pdb::raw_error_code::duplicate_entry
@ duplicate_entry
error_category
static ManagedStatic< _object_error_category > error_category
Definition:
Error.cpp:76
Generated on Fri Mar 5 2021 21:22:11 for LLVM by
1.8.17