Home
last modified time | relevance | path

Searched refs:ErrorInfo (Results 1 – 25 of 64) sorted by relevance

123

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/CSKY/AsmParser/
H A DCSKYAsmParser.cpp35 bool generateImmOutOfRangeError(OperandVector &Operands, uint64_t ErrorInfo,
42 uint64_t &ErrorInfo,
282 OperandVector &Operands, uint64_t ErrorInfo, int64_t Lower, int64_t Upper, in generateImmOutOfRangeError() argument
284 SMLoc ErrorLoc = ((CSKYOperand &)*Operands[ErrorInfo]).getStartLoc(); in generateImmOutOfRangeError()
291 uint64_t &ErrorInfo, in MatchAndEmitInstruction() argument
296 auto Result = MatchInstructionImpl(Operands, Inst, ErrorInfo, MissingFeatures, in MatchAndEmitInstruction()
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()
[all …]
/netbsd-src/external/apache2/llvm/dist/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) {}
/netbsd-src/external/apache2/llvm/dist/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) {}
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/MSF/
H A DMSFError.h44 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) {}
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/
H A DGenericError.h42 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) {}
/netbsd-src/external/apache2/llvm/dist/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) {}
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/AsmParser/
H A DRISCVAsmParser.cpp78 bool generateImmOutOfRangeError(OperandVector &Operands, uint64_t ErrorInfo,
83 uint64_t &ErrorInfo,
957 OperandVector &Operands, uint64_t ErrorInfo, int64_t Lower, int64_t Upper, in generateImmOutOfRangeError() argument
959 SMLoc ErrorLoc = ((RISCVOperand &)*Operands[ErrorInfo]).getStartLoc(); in generateImmOutOfRangeError()
970 uint64_t &ErrorInfo, in MatchAndEmitInstruction() argument
975 auto Result = MatchInstructionImpl(Operands, Inst, ErrorInfo, MissingFeatures, in MatchAndEmitInstruction()
1005 if (ErrorInfo != ~0U) { in MatchAndEmitInstruction()
1006 if (ErrorInfo >= Operands.size()) in MatchAndEmitInstruction()
1009 ErrorLoc = ((RISCVOperand &)*Operands[ErrorInfo]).getStartLoc(); in MatchAndEmitInstruction()
1022 if (ErrorInfo != ~0U && ErrorInfo >= Operands.size()) in MatchAndEmitInstruction()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AVR/AsmParser/
H A DAVRAsmParser.cpp51 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
318 MCStreamer &Out, uint64_t &ErrorInfo, in MatchAndEmitInstruction() argument
322 MatchInstructionImpl(Operands, Inst, ErrorInfo, MatchingInlineAsm); in MatchAndEmitInstruction()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/M68k/AsmParser/
H A DM68kAsmParser.cpp42 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
827 MatchInstructionImpl(Operands, Inst, ErrorInfo, MatchingInlineAsm); in MatchAndEmitInstruction()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/BPF/AsmParser/
H A DBPFAsmParser.cpp38 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()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
H A DError.h26 class ClusteringError : public ErrorInfo<ClusteringError> {
41 class SnippetCrash : public ErrorInfo<SnippetCrash> {
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/Shared/
H A DOrcError.h47 class DuplicateDefinition : public ErrorInfo<DuplicateDefinition> {
59 class JITSymbolNotFound : public ErrorInfo<JITSymbolNotFound> {
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Object/
H A DError.h53 class BinaryError : public ErrorInfo<BinaryError, ECError> {
67 class GenericBinaryError : public ErrorInfo<GenericBinaryError, BinaryError> {
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/Symbolize/
H A DDIPrinter.h54 const ErrorInfoBase &ErrorInfo,
99 bool printError(const Request &Request, const ErrorInfoBase &ErrorInfo,
150 bool printError(const Request &Request, const ErrorInfoBase &ErrorInfo,
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/MSP430/AsmParser/
H A DMSP430AsmParser.cpp44 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()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/FileCheck/
H A DFileCheckImpl.h109 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> {
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/Symbolize/
H A DDIPrinter.cpp267 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()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp177 uint64_t &ErrorInfo,
5915 uint64_t ErrorInfo) { in RefineErrorLoc() argument
5916 if (ErrorInfo != ~0ULL && ErrorInfo < Operands.size()) { in RefineErrorLoc()
5917 SMLoc ErrorLoc = Operands[ErrorInfo]->getStartLoc(); in RefineErrorLoc()
5928 uint64_t &ErrorInfo, in MatchAndEmitInstruction() argument
5932 MatchInstructionImpl(Operands, Inst, ErrorInfo, MatchingInlineAsm); in MatchAndEmitInstruction()
5944 if (ErrorInfo != ~0ULL) { in MatchAndEmitInstruction()
5945 if (ErrorInfo >= Operands.size()) in MatchAndEmitInstruction()
5948 ErrorLoc = Operands[ErrorInfo]->getStartLoc(); in MatchAndEmitInstruction()
5971 return Error(RefineErrorLoc(IDLoc, Operands, ErrorInfo), in MatchAndEmitInstruction()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/examples/OrcV2Examples/LLJITWithThinLTOSummaries/
H A DLLJITWithThinLTOSummaries.cpp66 : public ErrorInfo<DuplicateDefinitionInSummary> {
99 : public ErrorInfo<DefinitionNotFoundInSummary> {
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-dwp/
H A DDWPError.h9 class DWPError : public ErrorInfo<DWPError> {
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/Interp/
H A DByteCodeGenError.h21 struct ByteCodeGenError : public llvm::ErrorInfo<ByteCodeGenError> {
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/WindowsManifest/
H A DWindowsManifestMerger.h38 class WindowsManifestError : public ErrorInfo<WindowsManifestError, ECError> {
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DBinaryStreamError.h27 class BinaryStreamError : public ErrorInfo<BinaryStreamError> {
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DDiagnosticError.h20 class DiagnosticError : public llvm::ErrorInfo<DiagnosticError> {
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Lanai/AsmParser/
H A DLanaiAsmParser.cpp75 uint64_t &ErrorInfo,
655 uint64_t &ErrorInfo, in MatchAndEmitInstruction() argument
660 switch (MatchInstructionImpl(Operands, Inst, ErrorInfo, MatchingInlineAsm)) { in MatchAndEmitInstruction()
671 if (ErrorInfo != ~0U) { in MatchAndEmitInstruction()
672 if (ErrorInfo >= Operands.size()) in MatchAndEmitInstruction()
675 ErrorLoc = ((LanaiOperand &)*Operands[ErrorInfo]).getStartLoc(); in MatchAndEmitInstruction()

123