Searched refs:ErrorInfo (Results 1 - 25 of 58) sorted by relevance

123

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DCodeViewError.h43 class CodeViewError : public ErrorInfo<CodeViewError, StringError> {
45 using ErrorInfo<CodeViewError,
46 StringError>::ErrorInfo; // inherit constructors
47 CodeViewError(const Twine &S) : ErrorInfo(S, cv_error_code::unspecified) {}
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/MSF/
H A DMSFError.h43 class MSFError : public ErrorInfo<MSFError, StringError> {
45 using ErrorInfo<MSFError, StringError>::ErrorInfo; // inherit constructors
46 MSFError(const Twine &S) : ErrorInfo(S, msf_error_code::unspecified) {}
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/DIA/
H A DDIAError.h42 class DIAError : public ErrorInfo<DIAError, StringError> {
44 using ErrorInfo<DIAError, StringError>::ErrorInfo;
45 DIAError(const Twine &S) : ErrorInfo(S, dia_error_code::unspecified) {}
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DRawError.h50 class RawError : public ErrorInfo<RawError, StringError> {
52 using ErrorInfo<RawError, StringError>::ErrorInfo; // inherit constructors
53 RawError(const Twine &S) : ErrorInfo(S, raw_error_code::unspecified) {}
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/
H A DGenericError.h43 class PDBError : public ErrorInfo<PDBError, StringError> {
45 using ErrorInfo<PDBError, StringError>::ErrorInfo; // inherit constructors
46 PDBError(const Twine &S) : ErrorInfo(S, pdb_error_code::unspecified) {}
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServer.h81 : public llvm::ErrorInfo<PacketUnimplementedError, llvm::StringError> {
84 using llvm::ErrorInfo<PacketUnimplementedError,
85 llvm::StringError>::ErrorInfo; // inherit constructors
87 : ErrorInfo(S, llvm::errc::not_supported) {}
89 PacketUnimplementedError() : ErrorInfo(llvm::errc::not_supported) {}
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-dwp/
H A DDWPError.h9 class DWPError : public ErrorInfo<DWPError> {
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/WindowsManifest/
H A DWindowsManifestMerger.h38 class WindowsManifestError : public ErrorInfo<WindowsManifestError, ECError> {
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DBinaryStreamError.h27 class BinaryStreamError : public ErrorInfo<BinaryStreamError> {
H A DSymbolRemappingReader.h69 class SymbolRemappingParseError : public ErrorInfo<SymbolRemappingParseError> {
H A DFileUtilities.h85 class AtomicFileWriteError : public llvm::ErrorInfo<AtomicFileWriteError> {
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/Interp/
H A DByteCodeGenError.h21 struct ByteCodeGenError : public llvm::ErrorInfo<ByteCodeGenError> {
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DError.h51 class BinaryError : public ErrorInfo<BinaryError, ECError> {
65 class GenericBinaryError : public ErrorInfo<GenericBinaryError, BinaryError> {
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DOrcError.h45 class DuplicateDefinition : public ErrorInfo<DuplicateDefinition> {
57 class JITSymbolNotFound : public ErrorInfo<JITSymbolNotFound> {
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DDiagnosticError.h20 class DiagnosticError : public llvm::ErrorInfo<DiagnosticError> {
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Core/
H A DError.h46 class GenericError : public llvm::ErrorInfo<GenericError> {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/AsmParser/
H A DRISCVAsmParser.cpp68 bool generateImmOutOfRangeError(OperandVector &Operands, uint64_t ErrorInfo,
73 uint64_t &ErrorInfo,
798 OperandVector &Operands, uint64_t ErrorInfo, int64_t Lower, int64_t Upper,
800 SMLoc ErrorLoc = ((RISCVOperand &)*Operands[ErrorInfo]).getStartLoc();
811 uint64_t &ErrorInfo,
817 MatchInstructionImpl(Operands, Inst, ErrorInfo, MissingFeatures,
845 if (ErrorInfo != ~0U) {
846 if (ErrorInfo >= Operands.size())
849 ErrorLoc = ((RISCVOperand &)*Operands[ErrorInfo]).getStartLoc();
862 if (ErrorInfo !
797 generateImmOutOfRangeError( OperandVector &Operands, uint64_t ErrorInfo, int64_t Lower, int64_t Upper, Twine Msg = �) argument
808 MatchAndEmitInstruction(SMLoc IDLoc, unsigned &Opcode, OperandVector &Operands, MCStreamer &Out, uint64_t &ErrorInfo, bool MatchingInlineAsm) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/
H A DSupport.h26 class InstructionError : public ErrorInfo<InstructionError<T>> {
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Remarks/
H A DRemarkParser.h26 class EndOfFileError : public ErrorInfo<EndOfFileError> {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/AsmParser/
H A DBPFAsmParser.cpp38 uint64_t &ErrorInfo,
285 MCStreamer &Out, uint64_t &ErrorInfo,
293 switch (MatchInstructionImpl(Operands, Inst, ErrorInfo, MatchingInlineAsm)) {
307 if (ErrorInfo != ~0U) {
308 if (ErrorInfo >= Operands.size())
311 ErrorLoc = ((BPFOperand &)*Operands[ErrorInfo]).getStartLoc();
283 MatchAndEmitInstruction(SMLoc IDLoc, unsigned &Opcode, OperandVector &Operands, MCStreamer &Out, uint64_t &ErrorInfo, bool MatchingInlineAsm) argument
/freebsd-11-stable/sys/dev/smartpqi/
H A Dsmartpqi_ioctl.h112 DWORD ErrorInfo; member in struct:_MoreErrInfo_struct::__anon7843
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DRemarkStreamer.h61 struct RemarkSetupErrorInfo : public ErrorInfo<ThisError> {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/AsmParser/
H A DAVRAsmParser.cpp52 uint64_t &ErrorInfo,
83 uint64_t const &ErrorInfo);
84 bool missingFeature(SMLoc const &Loc, uint64_t const &ErrorInfo);
279 uint64_t const &ErrorInfo) {
283 if (ErrorInfo != ~0U) {
284 if (ErrorInfo >= Operands.size()) {
287 AVROperand const &Op = (AVROperand const &)*Operands[ErrorInfo];
304 uint64_t const &ErrorInfo) {
317 MCStreamer &Out, uint64_t &ErrorInfo,
321 MatchInstructionImpl(Operands, Inst, ErrorInfo, MatchingInlineAs
277 invalidOperand(SMLoc const &Loc, OperandVector const &Operands, uint64_t const &ErrorInfo) argument
303 missingFeature(llvm::SMLoc const &Loc, uint64_t const &ErrorInfo) argument
315 MatchAndEmitInstruction(SMLoc Loc, unsigned &Opcode, OperandVector &Operands, MCStreamer &Out, uint64_t &ErrorInfo, bool MatchingInlineAsm) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/AsmParser/
H A DMSP430AsmParser.cpp45 uint64_t &ErrorInfo,
255 uint64_t &ErrorInfo,
259 MatchInstructionImpl(Operands, Inst, ErrorInfo, MatchingInlineAsm);
270 if (ErrorInfo != ~0U) {
271 if (ErrorInfo >= Operands.size())
274 ErrorLoc = ((MSP430Operand &)*Operands[ErrorInfo]).getStartLoc();
252 MatchAndEmitInstruction(SMLoc Loc, unsigned &Opcode, OperandVector &Operands, MCStreamer &Out, uint64_t &ErrorInfo, bool MatchingInlineAsm) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLLexer.h31 SMDiagnostic &ErrorInfo; member in class:llvm::LLLexer

Completed in 176 milliseconds

123