Home
last modified time | relevance | path

Searched refs:ErrorP (Results 1 – 19 of 19) sorted by relevance

/external/llvm/examples/Kaleidoscope/Chapter2/
Dtoy.cpp195 std::unique_ptr<PrototypeAST> ErrorP(const char *Str) { in ErrorP() function
327 return ErrorP("Expected function name in prototype"); in ParsePrototype()
333 return ErrorP("Expected '(' in prototype"); in ParsePrototype()
339 return ErrorP("Expected ')' in prototype"); in ParsePrototype()
/external/llvm/examples/Kaleidoscope/Chapter6/
Dtoy.cpp279 std::unique_ptr<PrototypeAST> ErrorP(const char *Str) { in ErrorP() function
517 return ErrorP("Expected function name in prototype"); in ParsePrototype()
526 return ErrorP("Expected unary operator"); in ParsePrototype()
535 return ErrorP("Expected binary operator"); in ParsePrototype()
544 return ErrorP("Invalid precedecnce: must be 1..100"); in ParsePrototype()
552 return ErrorP("Expected '(' in prototype"); in ParsePrototype()
558 return ErrorP("Expected ')' in prototype"); in ParsePrototype()
565 return ErrorP("Invalid number of operands for operator"); in ParsePrototype()
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
Dtoy-jit.cpp264 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; } in ErrorP() function
525 return ErrorP("Expected function name in prototype"); in ParsePrototype()
534 return ErrorP("Expected unary operator"); in ParsePrototype()
543 return ErrorP("Expected binary operator"); in ParsePrototype()
552 return ErrorP("Invalid precedecnce: must be 1..100"); in ParsePrototype()
560 return ErrorP("Expected '(' in prototype"); in ParsePrototype()
566 return ErrorP("Expected ')' in prototype"); in ParsePrototype()
573 return ErrorP("Invalid number of operands for operator"); in ParsePrototype()
Dtoy.cpp265 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; } in ErrorP() function
526 return ErrorP("Expected function name in prototype"); in ParsePrototype()
535 return ErrorP("Expected unary operator"); in ParsePrototype()
544 return ErrorP("Expected binary operator"); in ParsePrototype()
553 return ErrorP("Invalid precedecnce: must be 1..100"); in ParsePrototype()
561 return ErrorP("Expected '(' in prototype"); in ParsePrototype()
567 return ErrorP("Expected ')' in prototype"); in ParsePrototype()
574 return ErrorP("Invalid number of operands for operator"); in ParsePrototype()
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
Dtoy-jit.cpp279 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; } in ErrorP() function
540 return ErrorP("Expected function name in prototype"); in ParsePrototype()
549 return ErrorP("Expected unary operator"); in ParsePrototype()
558 return ErrorP("Expected binary operator"); in ParsePrototype()
567 return ErrorP("Invalid precedecnce: must be 1..100"); in ParsePrototype()
575 return ErrorP("Expected '(' in prototype"); in ParsePrototype()
581 return ErrorP("Expected ')' in prototype"); in ParsePrototype()
588 return ErrorP("Invalid number of operands for operator"); in ParsePrototype()
Dtoy.cpp286 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; } in ErrorP() function
547 return ErrorP("Expected function name in prototype"); in ParsePrototype()
556 return ErrorP("Expected unary operator"); in ParsePrototype()
565 return ErrorP("Expected binary operator"); in ParsePrototype()
574 return ErrorP("Invalid precedecnce: must be 1..100"); in ParsePrototype()
582 return ErrorP("Expected '(' in prototype"); in ParsePrototype()
588 return ErrorP("Expected ')' in prototype"); in ParsePrototype()
595 return ErrorP("Invalid number of operands for operator"); in ParsePrototype()
/external/llvm/examples/Kaleidoscope/Chapter7/
Dtoy.cpp298 std::unique_ptr<PrototypeAST> ErrorP(const char *Str) { in ErrorP() function
587 return ErrorP("Expected function name in prototype"); in ParsePrototype()
596 return ErrorP("Expected unary operator"); in ParsePrototype()
605 return ErrorP("Expected binary operator"); in ParsePrototype()
614 return ErrorP("Invalid precedecnce: must be 1..100"); in ParsePrototype()
622 return ErrorP("Expected '(' in prototype"); in ParsePrototype()
628 return ErrorP("Expected ')' in prototype"); in ParsePrototype()
635 return ErrorP("Invalid number of operands for operator"); in ParsePrototype()
/external/llvm/examples/Kaleidoscope/Chapter3/
Dtoy.cpp198 std::unique_ptr<PrototypeAST> ErrorP(const char *Str) { in ErrorP() function
330 return ErrorP("Expected function name in prototype"); in ParsePrototype()
336 return ErrorP("Expected '(' in prototype"); in ParsePrototype()
342 return ErrorP("Expected ')' in prototype"); in ParsePrototype()
/external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/
Dtoy.cpp284 T* ErrorP(const std::string &Str) { in ErrorP() function
762 return ErrorP<Value>("Unknown variable name '" + Name + "'"); in IRGen()
773 return ErrorP<Value>("Unknown unary operator"); in IRGen()
794 return ErrorP<Value>("Unknown variable name"); in IRGen()
822 return ErrorP<Value>("Unknown binary operator"); in IRGen()
830 return ErrorP<Value>("Incorrect # arguments passed"); in IRGen()
841 return ErrorP<Value>("Unknown function referenced"); in IRGen()
1058 ErrorP<Function>("redefinition of function"); in IRGen()
1064 ErrorP<Function>("redefinition of function with different # args"); in IRGen()
/external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/
Dtoy.cpp284 T* ErrorP(const std::string &Str) { in ErrorP() function
762 return ErrorP<Value>("Unknown variable name '" + Name + "'"); in IRGen()
773 return ErrorP<Value>("Unknown unary operator"); in IRGen()
794 return ErrorP<Value>("Unknown variable name"); in IRGen()
822 return ErrorP<Value>("Unknown binary operator"); in IRGen()
830 return ErrorP<Value>("Incorrect # arguments passed"); in IRGen()
841 return ErrorP<Value>("Unknown function referenced"); in IRGen()
1058 ErrorP<Function>("redefinition of function"); in IRGen()
1064 ErrorP<Function>("redefinition of function with different # args"); in IRGen()
/external/llvm/examples/Kaleidoscope/Orc/initial/
Dtoy.cpp284 T* ErrorP(const std::string &Str) { in ErrorP() function
762 return ErrorP<Value>("Unknown variable name '" + Name + "'"); in IRGen()
773 return ErrorP<Value>("Unknown unary operator"); in IRGen()
794 return ErrorP<Value>("Unknown variable name"); in IRGen()
822 return ErrorP<Value>("Unknown binary operator"); in IRGen()
830 return ErrorP<Value>("Incorrect # arguments passed"); in IRGen()
841 return ErrorP<Value>("Unknown function referenced"); in IRGen()
1058 ErrorP<Function>("redefinition of function"); in IRGen()
1064 ErrorP<Function>("redefinition of function with different # args"); in IRGen()
/external/llvm/examples/Kaleidoscope/MCJIT/initial/
Dtoy.cpp263 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; } in ErrorP() function
524 return ErrorP("Expected function name in prototype"); in ParsePrototype()
533 return ErrorP("Expected unary operator"); in ParsePrototype()
542 return ErrorP("Expected binary operator"); in ParsePrototype()
551 return ErrorP("Invalid precedecnce: must be 1..100"); in ParsePrototype()
559 return ErrorP("Expected '(' in prototype"); in ParsePrototype()
565 return ErrorP("Expected ')' in prototype"); in ParsePrototype()
572 return ErrorP("Invalid number of operands for operator"); in ParsePrototype()
/external/llvm/examples/Kaleidoscope/Chapter4/
Dtoy.cpp204 std::unique_ptr<PrototypeAST> ErrorP(const char *Str) { in ErrorP() function
336 return ErrorP("Expected function name in prototype"); in ParsePrototype()
342 return ErrorP("Expected '(' in prototype"); in ParsePrototype()
348 return ErrorP("Expected ')' in prototype"); in ParsePrototype()
/external/llvm/examples/Kaleidoscope/Orc/fully_lazy/
Dtoy.cpp285 T* ErrorP(const std::string &Str) { in ErrorP() function
763 return ErrorP<Value>("Unknown variable name '" + Name + "'"); in IRGen()
774 return ErrorP<Value>("Unknown unary operator"); in IRGen()
795 return ErrorP<Value>("Unknown variable name"); in IRGen()
823 return ErrorP<Value>("Unknown binary operator"); in IRGen()
831 return ErrorP<Value>("Incorrect # arguments passed"); in IRGen()
842 return ErrorP<Value>("Unknown function referenced"); in IRGen()
1059 ErrorP<Function>("redefinition of function"); in IRGen()
1065 ErrorP<Function>("redefinition of function with different # args"); in IRGen()
/external/llvm/examples/Kaleidoscope/Chapter8/
Dtoy.cpp435 std::unique_ptr<PrototypeAST> ErrorP(const char *Str) { in ErrorP() function
731 return ErrorP("Expected function name in prototype"); in ParsePrototype()
740 return ErrorP("Expected unary operator"); in ParsePrototype()
749 return ErrorP("Expected binary operator"); in ParsePrototype()
758 return ErrorP("Invalid precedecnce: must be 1..100"); in ParsePrototype()
766 return ErrorP("Expected '(' in prototype"); in ParsePrototype()
772 return ErrorP("Expected ')' in prototype"); in ParsePrototype()
779 return ErrorP("Invalid number of operands for operator"); in ParsePrototype()
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
Dtoy.cpp305 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; } in ErrorP() function
566 return ErrorP("Expected function name in prototype"); in ParsePrototype()
575 return ErrorP("Expected unary operator"); in ParsePrototype()
584 return ErrorP("Expected binary operator"); in ParsePrototype()
593 return ErrorP("Invalid precedecnce: must be 1..100"); in ParsePrototype()
601 return ErrorP("Expected '(' in prototype"); in ParsePrototype()
607 return ErrorP("Expected ')' in prototype"); in ParsePrototype()
614 return ErrorP("Invalid number of operands for operator"); in ParsePrototype()
/external/llvm/examples/Kaleidoscope/Chapter5/
Dtoy.cpp246 std::unique_ptr<PrototypeAST> ErrorP(const char *Str) { in ErrorP() function
460 return ErrorP("Expected function name in prototype"); in ParsePrototype()
466 return ErrorP("Expected '(' in prototype"); in ParsePrototype()
472 return ErrorP("Expected ')' in prototype"); in ParsePrototype()
/external/llvm/docs/tutorial/
DLangImpl6.rst179 return ErrorP("Expected function name in prototype");
188 return ErrorP("Expected binary operator");
197 return ErrorP("Invalid precedecnce: must be 1..100");
205 return ErrorP("Expected '(' in prototype");
211 return ErrorP("Expected ')' in prototype");
218 return ErrorP("Invalid number of operands for operator");
406 return ErrorP("Expected function name in prototype");
415 return ErrorP("Expected unary operator");
DLangImpl2.rst184 std::unique_ptr<PrototypeAST> ErrorP(const char *Str) {
574 return ErrorP("Expected function name in prototype");
580 return ErrorP("Expected '(' in prototype");
587 return ErrorP("Expected ')' in prototype");