| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/CSKY/AsmParser/ |
| H A D | CSKYAsmParser.cpp | 35 bool generateImmOutOfRangeError(OperandVector &Operands, uint64_t ErrorInfo, 42 uint64_t &ErrorInfo, 284 SMLoc ErrorLoc = ((CSKYOperand &)*Operands[ErrorInfo]).getStartLoc(); in generateImmOutOfRangeError() 291 uint64_t &ErrorInfo, in MatchAndEmitInstruction() argument 326 if (ErrorInfo != ~0U) { in MatchAndEmitInstruction() 327 if (ErrorInfo >= Operands.size()) in MatchAndEmitInstruction() 330 ErrorLoc = ((CSKYOperand &)*Operands[ErrorInfo]).getStartLoc(); in MatchAndEmitInstruction() 343 if (ErrorInfo != ~0U && ErrorInfo >= Operands.size()) in MatchAndEmitInstruction() 351 return generateImmOutOfRangeError(Operands, ErrorInfo, 1, (1 << 12)); in MatchAndEmitInstruction() 362 Operands, ErrorInfo, 0, (1 << 12) - 2, in MatchAndEmitInstruction() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | CodeViewError.h | 41 class CodeViewError : public ErrorInfo<CodeViewError, StringError> { 43 using ErrorInfo<CodeViewError, 44 StringError>::ErrorInfo; // inherit constructors 45 CodeViewError(const Twine &S) : ErrorInfo(S, cv_error_code::unspecified) {}
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/ |
| H A D | GenericError.h | 42 class PDBError : public ErrorInfo<PDBError, StringError> { 44 using ErrorInfo<PDBError, StringError>::ErrorInfo; // inherit constructors 45 PDBError(const Twine &S) : ErrorInfo(S, pdb_error_code::unspecified) {}
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/MSF/ |
| H A D | MSFError.h | 42 class MSFError : public ErrorInfo<MSFError, StringError> { 44 using ErrorInfo<MSFError, StringError>::ErrorInfo; // inherit constructors 45 MSFError(const Twine &S) : ErrorInfo(S, msf_error_code::unspecified) {}
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/DIA/ |
| H A D | DIAError.h | 42 class DIAError : public ErrorInfo<DIAError, StringError> { 44 using ErrorInfo<DIAError, StringError>::ErrorInfo; 45 DIAError(const Twine &S) : ErrorInfo(S, dia_error_code::unspecified) {}
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/ |
| H A D | RawError.h | 48 class RawError : public ErrorInfo<RawError, StringError> { 50 using ErrorInfo<RawError, StringError>::ErrorInfo; // inherit constructors 51 RawError(const Twine &S) : ErrorInfo(S, raw_error_code::unspecified) {}
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/RISCV/AsmParser/ |
| H A D | RISCVAsmParser.cpp | 83 uint64_t &ErrorInfo, 1005 if (ErrorInfo != ~0U) { in MatchAndEmitInstruction() 1006 if (ErrorInfo >= Operands.size()) in MatchAndEmitInstruction() 1022 if (ErrorInfo != ~0U && ErrorInfo >= Operands.size()) in MatchAndEmitInstruction() 1067 Operands, ErrorInfo, 1, (1 << 5) - 1, in MatchAndEmitInstruction() 1071 Operands, ErrorInfo, 0, (1 << 7) - 4, in MatchAndEmitInstruction() 1075 Operands, ErrorInfo, 0, (1 << 8) - 4, in MatchAndEmitInstruction() 1079 Operands, ErrorInfo, 0, (1 << 8) - 8, in MatchAndEmitInstruction() 1087 Operands, ErrorInfo, 0, (1 << 9) - 8, in MatchAndEmitInstruction() 1091 Operands, ErrorInfo, 4, (1 << 10) - 4, in MatchAndEmitInstruction() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AVR/AsmParser/ |
| H A D | AVRAsmParser.cpp | 51 uint64_t &ErrorInfo, 84 uint64_t const &ErrorInfo); 85 bool missingFeature(SMLoc const &Loc, uint64_t const &ErrorInfo); 280 uint64_t const &ErrorInfo) { in invalidOperand() argument 284 if (ErrorInfo != ~0U) { in invalidOperand() 285 if (ErrorInfo >= Operands.size()) { in invalidOperand() 288 AVROperand const &Op = (AVROperand const &)*Operands[ErrorInfo]; in invalidOperand() 305 uint64_t const &ErrorInfo) { in missingFeature() argument 322 MatchInstructionImpl(Operands, Inst, ErrorInfo, MatchingInlineAsm); in MatchAndEmitInstruction() 326 case Match_MissingFeature: return missingFeature(Loc, ErrorInfo); in MatchAndEmitInstruction() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/M68k/AsmParser/ |
| H A D | M68kAsmParser.cpp | 42 const uint64_t &ErrorInfo); 43 bool missingFeature(const SMLoc &Loc, const uint64_t &ErrorInfo); 76 uint64_t &ErrorInfo, 785 uint64_t const &ErrorInfo) { in invalidOperand() argument 789 if (ErrorInfo != ~0U) { in invalidOperand() 790 if (ErrorInfo >= Operands.size()) { in invalidOperand() 793 auto const &Op = (M68kOperand const &)*Operands[ErrorInfo]; in invalidOperand() 808 uint64_t const &ErrorInfo) { in missingFeature() argument 823 uint64_t &ErrorInfo, in MatchAndEmitInstruction() argument 833 return missingFeature(Loc, ErrorInfo); in MatchAndEmitInstruction() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Shared/ |
| H A D | OrcError.h | 47 class DuplicateDefinition : public ErrorInfo<DuplicateDefinition> { 59 class JITSymbolNotFound : public ErrorInfo<JITSymbolNotFound> {
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Object/ |
| H A D | Error.h | 53 class BinaryError : public ErrorInfo<BinaryError, ECError> { 67 class GenericBinaryError : public ErrorInfo<GenericBinaryError, BinaryError> {
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/BPF/AsmParser/ |
| H A D | BPFAsmParser.cpp | 38 uint64_t &ErrorInfo, 287 MCStreamer &Out, uint64_t &ErrorInfo, in MatchAndEmitInstruction() argument 295 switch (MatchInstructionImpl(Operands, Inst, ErrorInfo, MatchingInlineAsm)) { in MatchAndEmitInstruction() 309 if (ErrorInfo != ~0U) { in MatchAndEmitInstruction() 310 if (ErrorInfo >= Operands.size()) in MatchAndEmitInstruction() 313 ErrorLoc = ((BPFOperand &)*Operands[ErrorInfo]).getStartLoc(); in MatchAndEmitInstruction()
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/scudo/standalone/fuzz/ |
| H A D | get_error_info_fuzzer.cpp | 55 scudo_error_info ErrorInfo; in LLVMFuzzerTestOneInput() local 56 AllocatorT::getErrorInfo(&ErrorInfo, FaultAddr, StackDepot.data(), in LLVMFuzzerTestOneInput()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/Symbolize/ |
| H A D | DIPrinter.h | 55 const ErrorInfoBase &ErrorInfo, 100 bool printError(const Request &Request, const ErrorInfoBase &ErrorInfo, 151 bool printError(const Request &Request, const ErrorInfoBase &ErrorInfo,
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/MSP430/AsmParser/ |
| H A D | MSP430AsmParser.cpp | 44 uint64_t &ErrorInfo, 256 uint64_t &ErrorInfo, in MatchAndEmitInstruction() argument 260 MatchInstructionImpl(Operands, Inst, ErrorInfo, MatchingInlineAsm); in MatchAndEmitInstruction() 271 if (ErrorInfo != ~0U) { in MatchAndEmitInstruction() 272 if (ErrorInfo >= Operands.size()) in MatchAndEmitInstruction() 275 ErrorLoc = ((MSP430Operand &)*Operands[ErrorInfo]).getStartLoc(); in MatchAndEmitInstruction()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/FileCheck/ |
| H A D | FileCheckImpl.h | 109 class OverflowError : public ErrorInfo<OverflowError> { 215 class UndefVarError : public ErrorInfo<UndefVarError> { 536 class ErrorDiagnostic : public ErrorInfo<ErrorDiagnostic> { 570 class NotFoundError : public ErrorInfo<NotFoundError> { 594 class ErrorReported final : public ErrorInfo<ErrorReported> {
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/ |
| H A D | DIPrinter.cpp | 267 const ErrorInfoBase &ErrorInfo, in printError() argument 270 ErrorInfo.log(ES); in printError() 376 const ErrorInfoBase &ErrorInfo, in printError() argument 378 json::Object Json = toJSON(Request, ErrorInfo.message()); in printError()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Utility/ |
| H A D | UnimplementedError.h | 16 class UnimplementedError : public llvm::ErrorInfo<UnimplementedError> {
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DWP/ |
| H A D | DWPError.h | 9 class DWPError : public ErrorInfo<DWPError> {
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
| H A D | combined.h | 916 static void getErrorInfo(struct scudo_error_info *ErrorInfo, in getErrorInfo() argument 921 *ErrorInfo = {}; in getErrorInfo() 932 getInlineErrorInfo(ErrorInfo, NextErrorReport, FaultAddr, Depot, in getErrorInfo() 938 getRingBufferErrorInfo(ErrorInfo, NextErrorReport, FaultAddr, Depot, in getErrorInfo() 944 getInlineErrorInfo(ErrorInfo, NextErrorReport, FaultAddr, Depot, in getErrorInfo() 1267 static void getInlineErrorInfo(struct scudo_error_info *ErrorInfo, in getInlineErrorInfo() argument 1329 auto *R = &ErrorInfo->reports[NextErrorReport++]; in getInlineErrorInfo() 1349 static void getRingBufferErrorInfo(struct scudo_error_info *ErrorInfo, in getRingBufferErrorInfo() argument 1394 if (ErrorInfo->reports[J].allocation_address == UntaggedEntryPtr) { in getRingBufferErrorInfo() 1403 auto *R = &ErrorInfo->reports[NextErrorReport++]; in getRingBufferErrorInfo()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/AST/Interp/ |
| H A D | ByteCodeGenError.h | 21 struct ByteCodeGenError : public llvm::ErrorInfo<ByteCodeGenError> {
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/WindowsManifest/ |
| H A D | WindowsManifestMerger.h | 38 class WindowsManifestError : public ErrorInfo<WindowsManifestError, ECError> {
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | BinaryStreamError.h | 27 class BinaryStreamError : public ErrorInfo<BinaryStreamError> {
|
| /freebsd-13.1/contrib/llvm-project/lld/include/lld/Core/ |
| H A D | Error.h | 46 class GenericError : public llvm::ErrorInfo<GenericError> {
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | DiagnosticError.h | 20 class DiagnosticError : public llvm::ErrorInfo<DiagnosticError> {
|