| /freebsd-12.1/contrib/llvm/lib/Target/RISCV/AsmParser/ |
| H A D | RISCVAsmParser.cpp | 64 uint64_t &ErrorInfo, 763 if (ErrorInfo != ~0U) { in MatchAndEmitInstruction() 764 if (ErrorInfo >= Operands.size()) in MatchAndEmitInstruction() 780 if (ErrorInfo != ~0U && ErrorInfo >= Operands.size()) in MatchAndEmitInstruction() 814 Operands, ErrorInfo, 1, (1 << 5) - 1, in MatchAndEmitInstruction() 818 Operands, ErrorInfo, 0, (1 << 7) - 4, in MatchAndEmitInstruction() 822 Operands, ErrorInfo, 0, (1 << 8) - 4, in MatchAndEmitInstruction() 826 Operands, ErrorInfo, 0, (1 << 8) - 8, in MatchAndEmitInstruction() 834 Operands, ErrorInfo, 0, (1 << 9) - 8, in MatchAndEmitInstruction() 838 Operands, ErrorInfo, 4, (1 << 10) - 4, in MatchAndEmitInstruction() [all …]
|
| /freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | CodeViewError.h | 44 class CodeViewError : public ErrorInfo<CodeViewError, StringError> { 46 using ErrorInfo<CodeViewError, 47 StringError>::ErrorInfo; // inherit constructors 48 CodeViewError(const Twine &S) : ErrorInfo(S, cv_error_code::unspecified) {}
|
| /freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/ |
| H A D | DIAError.h | 43 class DIAError : public ErrorInfo<DIAError, StringError> { 45 using ErrorInfo<DIAError, StringError>::ErrorInfo; 46 DIAError(const Twine &S) : ErrorInfo(S, dia_error_code::unspecified) {}
|
| /freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/MSF/ |
| H A D | MSFError.h | 44 class MSFError : public ErrorInfo<MSFError, StringError> { 46 using ErrorInfo<MSFError, StringError>::ErrorInfo; // inherit constructors 47 MSFError(const Twine &S) : ErrorInfo(S, msf_error_code::unspecified) {}
|
| /freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/PDB/ |
| H A D | GenericError.h | 44 class PDBError : public ErrorInfo<PDBError, StringError> { 46 using ErrorInfo<PDBError, StringError>::ErrorInfo; // inherit constructors 47 PDBError(const Twine &S) : ErrorInfo(S, pdb_error_code::unspecified) {}
|
| /freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/PDB/Native/ |
| H A D | RawError.h | 51 class RawError : public ErrorInfo<RawError, StringError> { 53 using ErrorInfo<RawError, StringError>::ErrorInfo; // inherit constructors 54 RawError(const Twine &S) : ErrorInfo(S, raw_error_code::unspecified) {}
|
| /freebsd-12.1/contrib/llvm/lib/Target/AVR/AsmParser/ |
| H A D | AVRAsmParser.cpp | 52 uint64_t &ErrorInfo, 83 uint64_t const &ErrorInfo); 84 bool missingFeature(SMLoc const &Loc, uint64_t const &ErrorInfo); 263 uint64_t const &ErrorInfo) { in invalidOperand() argument 267 if (ErrorInfo != ~0U) { in invalidOperand() 268 if (ErrorInfo >= Operands.size()) { in invalidOperand() 271 AVROperand const &Op = (AVROperand const &)*Operands[ErrorInfo]; in invalidOperand() 288 uint64_t const &ErrorInfo) { in missingFeature() argument 305 MatchInstructionImpl(Operands, Inst, ErrorInfo, MatchingInlineAsm); in MatchAndEmitInstruction() 309 case Match_MissingFeature: return missingFeature(Loc, ErrorInfo); in MatchAndEmitInstruction() [all …]
|
| /freebsd-12.1/contrib/llvm/lib/Target/BPF/AsmParser/ |
| H A D | BPFAsmParser.cpp | 38 uint64_t &ErrorInfo, 285 MCStreamer &Out, uint64_t &ErrorInfo, in MatchAndEmitInstruction() argument 293 switch (MatchInstructionImpl(Operands, Inst, ErrorInfo, MatchingInlineAsm)) { in MatchAndEmitInstruction() 307 if (ErrorInfo != ~0U) { in MatchAndEmitInstruction() 308 if (ErrorInfo >= Operands.size()) in MatchAndEmitInstruction() 311 ErrorLoc = ((BPFOperand &)*Operands[ErrorInfo]).getStartLoc(); in MatchAndEmitInstruction()
|
| /freebsd-12.1/contrib/llvm/include/llvm/ExecutionEngine/Orc/ |
| H A D | OrcError.h | 44 class DuplicateDefinition : public ErrorInfo<DuplicateDefinition> { 56 class JITSymbolNotFound : public ErrorInfo<JITSymbolNotFound> {
|
| /freebsd-12.1/contrib/llvm/include/llvm/Object/ |
| H A D | Error.h | 52 class BinaryError : public ErrorInfo<BinaryError, ECError> { 66 class GenericBinaryError : public ErrorInfo<GenericBinaryError, BinaryError> {
|
| /freebsd-12.1/contrib/llvm/lib/Target/MSP430/AsmParser/ |
| H A D | MSP430AsmParser.cpp | 45 uint64_t &ErrorInfo, 255 uint64_t &ErrorInfo, in MatchAndEmitInstruction() argument 259 MatchInstructionImpl(Operands, Inst, ErrorInfo, MatchingInlineAsm); in MatchAndEmitInstruction() 270 if (ErrorInfo != ~0U) { in MatchAndEmitInstruction() 271 if (ErrorInfo >= Operands.size()) in MatchAndEmitInstruction() 274 ErrorLoc = ((MSP430Operand &)*Operands[ErrorInfo]).getStartLoc(); in MatchAndEmitInstruction()
|
| /freebsd-12.1/contrib/llvm/lib/Target/X86/AsmParser/ |
| H A D | X86AsmParser.cpp | 872 uint64_t &ErrorInfo, 878 bool ErrorMissingFeature(SMLoc IDLoc, uint64_t ErrorInfo, 883 uint64_t &ErrorInfo, 888 uint64_t &ErrorInfo, 2911 assert(ErrorInfo && "Unknown missing feature!"); in ErrorMissingFeature() 2917 if (ErrorInfo & Mask) in ErrorMissingFeature() 3070 if (ErrorInfo != ~0ULL) { in MatchAndEmitATTInstruction() 3071 if (ErrorInfo >= Operands.size()) in MatchAndEmitATTInstruction() 3091 ErrorInfo = ErrorInfoMissingFeature; in MatchAndEmitATTInstruction() 3214 ErrorInfoMissingFeature = ErrorInfo; in MatchAndEmitIntelInstruction() [all …]
|
| /freebsd-12.1/contrib/llvm/lib/Target/SystemZ/AsmParser/ |
| H A D | SystemZAsmParser.cpp | 456 uint64_t &ErrorInfo, 1242 uint64_t &ErrorInfo, in MatchAndEmitInstruction() argument 1247 MatchResult = MatchInstructionImpl(Operands, Inst, ErrorInfo, in MatchAndEmitInstruction() 1256 assert(ErrorInfo && "Unknown missing feature!"); in MatchAndEmitInstruction() 1261 for (unsigned I = 0; I < sizeof(ErrorInfo) * 8 - 1; ++I) { in MatchAndEmitInstruction() 1262 if (ErrorInfo & Mask) { in MatchAndEmitInstruction() 1264 Msg += getSubtargetFeatureName(ErrorInfo & Mask); in MatchAndEmitInstruction() 1273 if (ErrorInfo != ~0ULL) { in MatchAndEmitInstruction() 1274 if (ErrorInfo >= Operands.size()) in MatchAndEmitInstruction() 1277 ErrorLoc = ((SystemZOperand &)*Operands[ErrorInfo]).getStartLoc(); in MatchAndEmitInstruction()
|
| /freebsd-12.1/contrib/llvm/lib/Target/WebAssembly/AsmParser/ |
| H A D | WebAssemblyAsmParser.cpp | 654 uint64_t &ErrorInfo, in MatchAndEmitInstruction() argument 658 MatchInstructionImpl(Operands, Inst, ErrorInfo, MatchingInlineAsm); in MatchAndEmitInstruction() 684 if (ErrorInfo != ~0ULL) { in MatchAndEmitInstruction() 685 if (ErrorInfo >= Operands.size()) in MatchAndEmitInstruction() 687 ErrorLoc = Operands[ErrorInfo]->getStartLoc(); in MatchAndEmitInstruction()
|
| /freebsd-12.1/contrib/llvm/lib/Target/Mips/AsmParser/ |
| H A D | MipsAsmParser.cpp | 171 uint64_t &ErrorInfo, 5299 uint64_t ErrorInfo) { in RefineErrorLoc() argument 5300 if (ErrorInfo != ~0ULL && ErrorInfo < Operands.size()) { in RefineErrorLoc() 5301 SMLoc ErrorLoc = Operands[ErrorInfo]->getStartLoc(); in RefineErrorLoc() 5328 if (ErrorInfo != ~0ULL) { in MatchAndEmitInstruction() 5329 if (ErrorInfo >= Operands.size()) in MatchAndEmitInstruction() 5332 ErrorLoc = Operands[ErrorInfo]->getStartLoc(); in MatchAndEmitInstruction() 5355 return Error(RefineErrorLoc(IDLoc, Operands, ErrorInfo), in MatchAndEmitInstruction() 5360 return Error(RefineErrorLoc(IDLoc, Operands, ErrorInfo), in MatchAndEmitInstruction() 5363 return Error(RefineErrorLoc(IDLoc, Operands, ErrorInfo), in MatchAndEmitInstruction() [all …]
|
| /freebsd-12.1/contrib/llvm/include/llvm/WindowsManifest/ |
| H A D | WindowsManifestMerger.h | 39 class WindowsManifestError : public ErrorInfo<WindowsManifestError, ECError> {
|
| /freebsd-12.1/contrib/llvm/include/llvm/Support/ |
| H A D | BinaryStreamError.h | 28 class BinaryStreamError : public ErrorInfo<BinaryStreamError> {
|
| H A D | SymbolRemappingReader.h | 70 class SymbolRemappingParseError : public ErrorInfo<SymbolRemappingParseError> {
|
| H A D | Error.h | 345 class ErrorInfo : public ParentErrT { 360 class ErrorList final : public ErrorInfo<ErrorList> { 1066 class ECError : public ErrorInfo<ECError> { 1141 class StringError : public ErrorInfo<StringError> { 1178 class FileError final : public ErrorInfo<FileError> {
|
| /freebsd-12.1/contrib/llvm/tools/lld/include/lld/Core/ |
| H A D | Error.h | 47 class GenericError : public llvm::ErrorInfo<GenericError> {
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/ |
| H A D | DiagnosticError.h | 21 class DiagnosticError : public llvm::ErrorInfo<DiagnosticError> {
|
| /freebsd-12.1/contrib/llvm/lib/Target/Lanai/AsmParser/ |
| H A D | LanaiAsmParser.cpp | 73 uint64_t &ErrorInfo, 652 uint64_t &ErrorInfo, in MatchAndEmitInstruction() argument 657 switch (MatchInstructionImpl(Operands, Inst, ErrorInfo, MatchingInlineAsm)) { in MatchAndEmitInstruction() 668 if (ErrorInfo != ~0U) { in MatchAndEmitInstruction() 669 if (ErrorInfo >= Operands.size()) in MatchAndEmitInstruction() 672 ErrorLoc = ((LanaiOperand &)*Operands[ErrorInfo]).getStartLoc(); in MatchAndEmitInstruction()
|
| /freebsd-12.1/contrib/llvm/include/llvm/MCA/ |
| H A D | Support.h | 27 class InstructionError : public ErrorInfo<InstructionError<T>> {
|
| /freebsd-12.1/sys/dev/smartpqi/ |
| H A D | smartpqi_ioctl.h | 112 DWORD ErrorInfo; member
|
| /freebsd-12.1/contrib/llvm/lib/Target/AArch64/AsmParser/ |
| H A D | AArch64AsmParser.cpp | 186 uint64_t &ErrorInfo, 4174 uint64_t ErrorInfo, in showMatchError() argument 4790 auto ShortFormNEONErrorInfo = ErrorInfo; in MatchAndEmitInstruction() 4803 ErrorInfo = ShortFormNEONErrorInfo; in MatchAndEmitInstruction() 4822 assert(ErrorInfo && "Unknown missing feature!"); in MatchAndEmitInstruction() 4827 for (unsigned i = 0; i < (sizeof(ErrorInfo)*8-1); ++i) { in MatchAndEmitInstruction() 4828 if (ErrorInfo & Mask) { in MatchAndEmitInstruction() 4830 Msg += getSubtargetFeatureName(ErrorInfo & Mask); in MatchAndEmitInstruction() 4841 if (ErrorInfo != ~0ULL) { in MatchAndEmitInstruction() 4842 if (ErrorInfo >= Operands.size()) in MatchAndEmitInstruction() [all …]
|