Home
last modified time | relevance | path

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

/llvm-project/llvm/examples/Kaleidoscope/Chapter2/
H A Dtoy.cpp190 std::unique_ptr<PrototypeAST> LogErrorP(const char *Str) { in LogErrorP() function
322 return LogErrorP("Expected function name in prototype"); in ParsePrototype()
328 return LogErrorP("Expected '(' in prototype"); in ParsePrototype()
334 return LogErrorP("Expected ')' in prototype"); in ParsePrototype()
/llvm-project/llvm/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp310 std::unique_ptr<PrototypeAST> LogErrorP(const char *Str) { in LogErrorP() function
548 return LogErrorP("Expected function name in prototype"); in ParsePrototype()
557 return LogErrorP("Expected unary operator"); in ParsePrototype()
566 return LogErrorP("Expected binary operator"); in ParsePrototype()
575 return LogErrorP("Invalid precedence: must be 1..100"); in ParsePrototype()
583 return LogErrorP("Expected '(' in prototype"); in ParsePrototype()
589 return LogErrorP("Expected ')' in prototype"); in ParsePrototype()
596 return LogErrorP("Invalid number of operands for operator"); in ParsePrototype()
/llvm-project/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
H A Dtoy.cpp306 std::unique_ptr<PrototypeAST> LogErrorP(const char *Str) { in LogErrorP() function
595 return LogErrorP("Expected function name in prototype"); in ParsePrototype()
604 return LogErrorP("Expected unary operator"); in ParsePrototype()
613 return LogErrorP("Expected binary operator"); in ParsePrototype()
622 return LogErrorP("Invalid precedecnce: must be 1..100"); in ParsePrototype()
630 return LogErrorP("Expected '(' in prototype"); in ParsePrototype()
636 return LogErrorP("Expected ')' in prototype"); in ParsePrototype()
643 return LogErrorP("Invalid number of operands for operator"); in ParsePrototype()
/llvm-project/llvm/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp332 std::unique_ptr<PrototypeAST> LogErrorP(const char *Str) { in LogErrorP() function
621 return LogErrorP("Expected function name in prototype"); in ParsePrototype()
630 return LogErrorP("Expected unary operator"); in ParsePrototype()
639 return LogErrorP("Expected binary operator"); in ParsePrototype()
648 return LogErrorP("Invalid precedence: must be 1..100"); in ParsePrototype()
656 return LogErrorP("Expected '(' in prototype"); in ParsePrototype()
662 return LogErrorP("Expected ')' in prototype"); in ParsePrototype()
669 return LogErrorP("Invalid number of operands for operator"); in ParsePrototype()
/llvm-project/llvm/examples/Kaleidoscope/Chapter8/
H A Dtoy.cpp328 std::unique_ptr<PrototypeAST> LogErrorP(const char *Str) { in LogErrorP() function
617 return LogErrorP("Expected function name in prototype"); in ParsePrototype()
626 return LogErrorP("Expected unary operator"); in ParsePrototype()
635 return LogErrorP("Expected binary operator"); in ParsePrototype()
644 return LogErrorP("Invalid precedence: must be 1..100"); in ParsePrototype()
652 return LogErrorP("Expected '(' in prototype"); in ParsePrototype()
658 return LogErrorP("Expected ')' in prototype"); in ParsePrototype()
665 return LogErrorP("Invalid number of operands for operator"); in ParsePrototype()
/llvm-project/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
H A Dtoy.cpp323 std::unique_ptr<PrototypeAST> LogErrorP(const char *Str) { in LogErrorP() function
612 return LogErrorP("Expected function name in prototype"); in ParsePrototype()
621 return LogErrorP("Expected unary operator"); in ParsePrototype()
630 return LogErrorP("Expected binary operator"); in ParsePrototype()
639 return LogErrorP("Invalid precedecnce: must be 1..100"); in ParsePrototype()
647 return LogErrorP("Expected '(' in prototype"); in ParsePrototype()
653 return LogErrorP("Expected ')' in prototype"); in ParsePrototype()
660 return LogErrorP("Invalid number of operands for operator"); in ParsePrototype()
/llvm-project/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
H A Dtoy.cpp323 std::unique_ptr<PrototypeAST> LogErrorP(const char *Str) { in LogErrorP() function
612 return LogErrorP("Expected function name in prototype"); in ParsePrototype()
621 return LogErrorP("Expected unary operator"); in ParsePrototype()
630 return LogErrorP("Expected binary operator"); in ParsePrototype()
639 return LogErrorP("Invalid precedecnce: must be 1..100"); in ParsePrototype()
647 return LogErrorP("Expected '(' in prototype"); in ParsePrototype()
653 return LogErrorP("Expected ')' in prototype"); in ParsePrototype()
660 return LogErrorP("Invalid number of operands for operator"); in ParsePrototype()
/llvm-project/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
H A Dtoy.cpp323 std::unique_ptr<PrototypeAST> LogErrorP(const char *Str) { in LogErrorP() function
612 return LogErrorP("Expected function name in prototype"); in ParsePrototype()
621 return LogErrorP("Expected unary operator"); in ParsePrototype()
630 return LogErrorP("Expected binary operator"); in ParsePrototype()
639 return LogErrorP("Invalid precedecnce: must be 1..100"); in ParsePrototype()
647 return LogErrorP("Expected '(' in prototype"); in ParsePrototype()
653 return LogErrorP("Expected ')' in prototype"); in ParsePrototype()
660 return LogErrorP("Invalid number of operands for operator"); in ParsePrototype()
/llvm-project/llvm/examples/Kaleidoscope/Chapter3/
H A Dtoy.cpp217 std::unique_ptr<PrototypeAST> LogErrorP(const char *Str) { in LogErrorP() function
349 return LogErrorP("Expected function name in prototype"); in ParsePrototype()
355 return LogErrorP("Expected '(' in prototype"); in ParsePrototype()
361 return LogErrorP("Expected ')' in prototype"); in ParsePrototype()
/llvm-project/llvm/examples/Kaleidoscope/Chapter9/
H A Dtoy.cpp436 std::unique_ptr<PrototypeAST> LogErrorP(const char *Str) { in LogErrorP() function
732 return LogErrorP("Expected function name in prototype"); in ParsePrototype()
741 return LogErrorP("Expected unary operator"); in ParsePrototype()
750 return LogErrorP("Expected binary operator"); in ParsePrototype()
759 return LogErrorP("Invalid precedence: must be 1..100"); in ParsePrototype()
767 return LogErrorP("Expected '(' in prototype"); in ParsePrototype()
773 return LogErrorP("Expected ')' in prototype"); in ParsePrototype()
780 return LogErrorP("Invalid number of operands for operator"); in ParsePrototype()
/llvm-project/llvm/examples/Kaleidoscope/Chapter4/
H A Dtoy.cpp231 std::unique_ptr<PrototypeAST> LogErrorP(const char *Str) { in LogErrorP() function
363 return LogErrorP("Expected function name in prototype"); in ParsePrototype()
369 return LogErrorP("Expected '(' in prototype"); in ParsePrototype()
375 return LogErrorP("Expected ')' in prototype"); in ParsePrototype()
/llvm-project/llvm/docs/tutorial/MyFirstLanguageFrontend/
H A DLangImpl06.rst180 return LogErrorP("Expected function name in prototype");
189 return LogErrorP("Expected binary operator");
198 return LogErrorP("Invalid precedence: must be 1..100");
206 return LogErrorP("Expected '(' in prototype");
212 return LogErrorP("Expected ')' in prototype");
219 return LogErrorP("Invalid number of operands for operator");
407 return LogErrorP("Expected function name in prototype");
416 return LogErrorP("Expected unary operator");
H A DLangImpl02.rst186 std::unique_ptr<PrototypeAST> LogErrorP(const char *Str) {
576 return LogErrorP("Expected function name in prototype");
582 return LogErrorP("Expected '(' in prototype");
589 return LogErrorP("Expected ')' in prototype");
/llvm-project/llvm/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp276 std::unique_ptr<PrototypeAST> LogErrorP(const char *Str) { in LogErrorP() function
490 return LogErrorP("Expected function name in prototype"); in ParsePrototype()
496 return LogErrorP("Expected '(' in prototype"); in ParsePrototype()
502 return LogErrorP("Expected ')' in prototype"); in ParsePrototype()