Home
last modified time | relevance | path

Searched refs:DK_Error (Results 1 – 25 of 28) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/tools/llvm-mca/
H A DCodeRegion.cpp54 SM.PrintMessage(Loc, llvm::SourceMgr::DK_Error, in beginRegion()
62 SM.PrintMessage(Loc, llvm::SourceMgr::DK_Error, in beginRegion()
104 SM.PrintMessage(Loc, llvm::SourceMgr::DK_Error, in endRegion()
120 SM.PrintMessage(Loc, llvm::SourceMgr::DK_Error, in beginRegion()
130 Loc, llvm::SourceMgr::DK_Error, in beginRegion()
153 SM.PrintMessage(Loc, llvm::SourceMgr::DK_Error, in endRegion()
H A DCodeRegionGenerator.cpp150 Loc, llvm::SourceMgr::DK_Error, in HandleComment()
153 SM.PrintMessage(Loc, llvm::SourceMgr::DK_Error, in HandleComment()
163 SM.PrintMessage(Loc, llvm::SourceMgr::DK_Error, in HandleComment()
167 SM.PrintMessage(Loc, llvm::SourceMgr::DK_Error, in HandleComment()
/freebsd/contrib/llvm-project/llvm/lib/TableGen/
H A DError.cpp31 if (Kind == SourceMgr::DK_Error) in PrintMessage()
104 PrintMessage(ErrorLoc, SourceMgr::DK_Error, Msg); in PrintError()
108 SrcMgr.PrintMessage(SMLoc::getFromPointer(Loc), SourceMgr::DK_Error, Msg); in PrintError()
114 PrintMessage(Rec->getLoc(), SourceMgr::DK_Error, Msg); in PrintError()
120 PrintMessage(RecVal->getLoc(), SourceMgr::DK_Error, Msg); in PrintError()
/freebsd/contrib/llvm-project/llvm/lib/IRReader/
H A DIRReader.cpp42 Err = SMDiagnostic(Buffer->getBufferIdentifier(), SourceMgr::DK_Error, in getLazyIRModule()
60 Err = SMDiagnostic(Filename, SourceMgr::DK_Error, in getLazyIRFileModule()
81 Err = SMDiagnostic(Buffer.getBufferIdentifier(), SourceMgr::DK_Error, in parseIR()
100 Err = SMDiagnostic(Filename, SourceMgr::DK_Error, in parseIRFile()
/freebsd/contrib/llvm-project/llvm/tools/llvm-mc/
H A DDisassembler.cpp114 SM.PrintMessage(SMLoc::getFromPointer(Value.data()), SourceMgr::DK_Error, in ByteArrayFromString()
172 SM.PrintMessage(SMLoc::getFromPointer(Str.data()), SourceMgr::DK_Error, in disassemble()
181 SM.PrintMessage(SMLoc::getFromPointer(Str.data()), SourceMgr::DK_Error, in disassemble()
199 SM.PrintMessage(SMLoc::getFromPointer(Str.data()), SourceMgr::DK_Error, in disassemble()
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/
H A DParser.cpp66 Err = SMDiagnostic(Filename, SourceMgr::DK_Error, in parseAssemblyFile()
109 Err = SMDiagnostic(Filename, SourceMgr::DK_Error, in parseAssemblyFileWithIndex()
174 Err = SMDiagnostic(Filename, SourceMgr::DK_Error, in parseSummaryIndexAssemblyFile()
211 SourceMgr::DK_Error, "expected end of string"); in parseType()
H A DLLLexer.cpp29 ErrorInfo = SM.GetMessage(ErrorLoc, SourceMgr::DK_Error, Msg); in Error()
/freebsd/contrib/llvm-project/llvm/lib/FileCheck/
H A DFileCheck.cpp777 SM.PrintMessage(PatternLoc, SourceMgr::DK_Error, in parsePattern()
784 PatternLoc, SourceMgr::DK_Error, in parsePattern()
828 SourceMgr::DK_Error, in parsePattern()
872 SourceMgr::DK_Error, in parsePattern()
898 SourceMgr::DK_Error, "unexpected whitespace"); in parsePattern()
918 SourceMgr::DK_Error, in parsePattern()
927 SMLoc::getFromPointer(Name.data()), SourceMgr::DK_Error, in parsePattern()
940 SourceMgr::DK_Error, in parsePattern()
1020 SourceMgr::DK_Error, in parsePattern()
1061 SM.PrintMessage(SMLoc::getFromPointer(RS.data()), SourceMgr::DK_Error, in AddRegExToRegEx()
[all …]
H A DFileCheckImpl.h511 SM.GetMessage(Loc, SourceMgr::DK_Error, ErrMsg), Range);
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DSourceMgr.h34 DK_Error, enumerator
287 SourceMgr::DiagKind Kind = SourceMgr::DK_Error;
H A DYAMLParser.h107 SourceMgr::DiagKind Kind = SourceMgr::DK_Error);
109 SourceMgr::DiagKind Kind = SourceMgr::DK_Error);
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/
H A DMIRParser.cpp206 DS_Error, SMDiagnostic(Filename, SourceMgr::DK_Error, Message.str()))); in error()
212 DS_Error, SM.GetMessage(Loc, SourceMgr::DK_Error, Message))); in error()
217 assert(Error.getKind() == SourceMgr::DK_Error && "Expected an error"); in error()
225 case SourceMgr::DK_Error: in reportDiagnostic()
1134 Error = SMDiagnostic(Filename, SourceMgr::DK_Error, in createMIRParserFromFile()
1151 Filename, SourceMgr::DK_Error, in createMIRParser()
H A DMIParser.cpp596 Error = SM.GetMessage(SMLoc::getFromPointer(Loc), SourceMgr::DK_Error, Msg); in error()
601 Loc - Source.data(), SourceMgr::DK_Error, Msg.str(), in error()
/freebsd/contrib/llvm-project/llvm/lib/LTO/
H A DThinLTOCodeGenerator.cpp205 SourceMgr::DK_Error, EIB.message()); in loadModuleFromInput()
231 SourceMgr::DK_Error, EIB.message()); in crossImportIntoModule()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DSourceMgr.cpp511 case SourceMgr::DK_Error: in print()
H A DYAMLParser.cpp277 printError(SMLoc::getFromPointer(Position), SourceMgr::DK_Error, Message); in setError()
/freebsd/contrib/llvm-project/clang/tools/clang-format/
H A DClangFormat.cpp367 WarningsAsErrors ? SourceMgr::DiagKind::DK_Error in emitReplacementWarnings()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DDiagnosticInfo.h1056 case llvm::SourceMgr::DK_Error: in getDiagnosticSeverity()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIMachineFunctionInfo.cpp742 SourceMgr::DK_Error, toString(FIOrErr.takeError()), in initializeBaseYamlFields()
H A DAMDGPUTargetMachine.cpp1583 RegName.Value.size(), SourceMgr::DK_Error, in parseMachineFunctionInfo()
/freebsd/contrib/llvm-project/clang/utils/TableGen/
H A DClangDiagnosticsEmitter.cpp216 SrcMgr.PrintMessage(Loc, SourceMgr::DK_Error, in groupDiagnostics()
231 SrcMgr.PrintMessage(Loc, SourceMgr::DK_Error, in groupDiagnostics()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCContext.cpp1070 D = SMP->GetMessage(Loc, SourceMgr::DK_Error, Msg); in reportError()
/freebsd/contrib/llvm-project/llvm/tools/llvm-lto/
H A Dllvm-lto.cpp578 SourceMgr::DK_Error, EIB.message()); in loadModuleFromInput()
/freebsd/contrib/llvm-project/clang/lib/APINotes/
H A DAPINotesYAMLCompiler.cpp660 llvm::SMDiagnostic("", llvm::SourceMgr::DK_Error, Message.str()), in emitError()
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/AsmParser/
H A DHexagonAsmParser.cpp1379 IDLoc, SourceMgr::DK_Error, in processInstruction()

12