Home
last modified time | relevance | path

Searched refs:printError (Results 1 – 14 of 14) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSymbolRewriter.cpp279 YS.printError(Document.getRoot(), "DescriptorList node must be a map"); in parse()
300 YS.printError(Entry.getKey(), "rewrite type must be a scalar"); in parseEntry()
306 YS.printError(Entry.getValue(), "rewrite descriptor must be a map"); in parseEntry()
318 YS.printError(Entry.getKey(), "unknown rewrite type"); in parseEntry()
340 YS.printError(Field.getKey(), "descriptor key must be a scalar"); in parseRewriteFunctionDescriptor()
346 YS.printError(Field.getValue(), "descriptor value must be a scalar"); in parseRewriteFunctionDescriptor()
356 YS.printError(Field.getKey(), "invalid regex: " + Error); in parseRewriteFunctionDescriptor()
369 YS.printError(Field.getKey(), "unknown key for function"); in parseRewriteFunctionDescriptor()
375 YS.printError(Descriptor, in parseRewriteFunctionDescriptor()
409 YS.printError(Field.getKey(), "descriptor Key must be a scalar"); in parseRewriteGlobalVariableDescriptor()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/Symbolize/
H A DDIPrinter.h53 virtual bool printError(const Request &Request,
100 bool printError(const Request &Request,
152 bool printError(const Request &Request,
/freebsd/contrib/llvm-project/llvm/tools/llvm-symbolizer/
H A Dllvm-symbolizer.cpp83 static void printError(const ErrorInfoBase &EI, StringRef AuxInfo) { in printError() function
104 PrintEmpty = Printer.printError(Request, EI); in print()
352 printError(EI, InputString); in symbolizeInput()
558 Printer = std::make_unique<GNUPrinter>(outs(), printError, Config); in llvm_symbolizer_main()
562 Printer = std::make_unique<LLVMPrinter>(outs(), printError, Config); in llvm_symbolizer_main()
572 Printer->printError(SymRequest, EI); in llvm_symbolizer_main()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/
H A DDIPrinter.cpp274 bool PlainPrinterBase::printError(const Request &Request,
391 bool JSONPrinter::printError(const Request &Request,
268 bool PlainPrinterBase::printError(const Request &Request, printError() function in llvm::symbolize::PlainPrinterBase
377 bool JSONPrinter::printError(const Request &Request, printError() function in llvm::symbolize::JSONPrinter
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/MCParser/
H A DMCAsmParser.h232 virtual bool printError(SMLoc L, const Twine &Msg,
240 printError(Err.Loc, Twine(Err.Msg), Err.Range); in printPendingErrors()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DYAMLTraits.cpp372 Strm->printError(node, message); in setError()
377 Strm->printError(range, message); in setError()
383 Strm->printError(hnode->_node, message, SourceMgr::DK_Warning); in reportWarning()
387 Strm->printError(node, message, SourceMgr::DK_Warning); in reportWarning()
391 Strm->printError(range, message, SourceMgr::DK_Warning); in reportWarning()
H A DYAMLParser.cpp260 void printError(SMLoc Loc, SourceMgr::DiagKind Kind, const Twine &Message, in printError() function in llvm::yaml::Scanner
277 printError(SMLoc::getFromPointer(Position), SourceMgr::DK_Error, Message); in setError()
1927 void Stream::printError(Node *N, const Twine &Msg, SourceMgr::DiagKind Kind) { in begin()
1928 printError(N ? N->getSourceRange() : SMRange(), Msg, Kind); in begin()
1931 void Stream::printError(const SMRange &Range, const Twine &Msg, in end()
1933 scanner->printError(Range.Start, Kind, Msg, Range);
1910 void Stream::printError(Node *N, const Twine &Msg, SourceMgr::DiagKind Kind) { printError() function in Stream
1914 void Stream::printError(const SMRange &Range, const Twine &Msg, printError() function in Stream
H A DVirtualFileSystem.cpp1619 void error(yaml::Node *N, const Twine &Msg) { Stream.printError(N, Msg); } in error()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DYAMLParser.h106 void printError(Node *N, const Twine &Msg,
108 void printError(const SMRange &Range, const Twine &Msg,
/freebsd/contrib/llvm-project/llvm/lib/Remarks/
H A DYAMLRemarkParser.cpp49 Stream.printError(&Node, Twine(Msg) + Twine('\n')); in YAMLParseError()
/freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DAsmParser.cpp245 bool printError(SMLoc L, const Twine &Msg,
858 bool AsmParser::printError(SMLoc L, const Twine &Msg, SMRange Range) { in printError() function in AsmParser
1028 printError(getTok().getLoc(), "unmatched .ifs or .elses"); in Run()
1035 printError(getTok().getLoc(), "unassigned file number: " + in Run()
1058 printError(getTok().getLoc(), "assembler local symbol '" + in Run()
1070 printError(std::get<0>(LocSym), "directional label undefined"); in Run()
5640 printError(DirectiveLoc, "no matching '.endr' in definition"); in parseMacroLikeBody()
5655 printError(getTok().getLoc(), "expected newline"); in parseMacroLikeBody()
H A DMasmParser.cpp514 bool printError(SMLoc L, const Twine &Msg,
1158 bool MasmParser::printError(SMLoc L, const Twine &Msg, SMRange Range) { in printError() function in MasmParser
1403 printError(getTok().getLoc(), "unmatched .ifs or .elses"); in Run()
1410 printError(getTok().getLoc(), "unassigned file number: " + in Run()
1433 printError(getTok().getLoc(), "assembler local symbol '" + in Run()
1445 printError(std::get<0>(LocSym), "directional label undefined"); in Run()
6813 printError(DirectiveLoc, "no matching 'endm' in definition"); in parseMacroLikeBody()
6827 printError(getTok().getLoc(), "unexpected token in 'endm' directive"); in parseMacroLikeBody()
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/AsmParser/
H A DHexagonAsmParser.cpp1343 return Parser.printError(IDLoc, ES.str()); in OutOfRange()
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp1152 AsmParser.getParser().printError( in addFGR32AsmRegOperands()