| /openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/Chapter4/ |
| H A D | toy.cpp | 418 static std::map<std::string, std::unique_ptr<PrototypeAST>> FunctionProtos; variable 433 auto FI = FunctionProtos.find(Name); in getFunction() 434 if (FI != FunctionProtos.end()) in getFunction() 516 FunctionProtos[Proto->getName()] = std::move(Proto); in codegen() 598 FunctionProtos[ProtoAST->getName()] = std::move(ProtoAST); in HandleExtern()
|
| /openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/Chapter5/ |
| H A D | toy.cpp | 545 static std::map<std::string, std::unique_ptr<PrototypeAST>> FunctionProtos; variable 560 auto FI = FunctionProtos.find(Name); in getFunction() 561 if (FI != FunctionProtos.end()) in getFunction() 790 FunctionProtos[Proto->getName()] = std::move(Proto); in codegen() 872 FunctionProtos[ProtoAST->getName()] = std::move(ProtoAST); in HandleExtern()
|
| /openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/ |
| H A D | toy.cpp | 687 static std::map<std::string, std::unique_ptr<PrototypeAST>> FunctionProtos; variable 702 auto FI = FunctionProtos.find(Name); in getFunction() 703 if (FI != FunctionProtos.end()) in getFunction() 1048 FunctionProtos[Proto->getName()] = std::move(Proto); in codegen() 1120 FunctionProtos[FnAST->getProto().getName()] = in HandleDefinition() 1135 FunctionProtos[ProtoAST->getName()] = std::move(ProtoAST); in HandleExtern()
|
| /openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/Chapter6/ |
| H A D | toy.cpp | 637 static std::map<std::string, std::unique_ptr<PrototypeAST>> FunctionProtos; variable 652 auto FI = FunctionProtos.find(Name); in getFunction() 653 if (FI != FunctionProtos.end()) in getFunction() 902 FunctionProtos[Proto->getName()] = std::move(Proto); in codegen() 991 FunctionProtos[ProtoAST->getName()] = std::move(ProtoAST); in HandleExtern()
|
| /openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/Chapter7/ |
| H A D | toy.cpp | 710 static std::map<std::string, std::unique_ptr<PrototypeAST>> FunctionProtos; variable 725 auto FI = FunctionProtos.find(Name); in getFunction() 726 if (FI != FunctionProtos.end()) in getFunction() 1063 FunctionProtos[Proto->getName()] = std::move(Proto); in codegen() 1162 FunctionProtos[ProtoAST->getName()] = std::move(ProtoAST); in HandleExtern()
|
| /openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/ |
| H A D | toy.cpp | 704 static std::map<std::string, std::unique_ptr<PrototypeAST>> FunctionProtos; variable 719 auto FI = FunctionProtos.find(Name); in getFunction() 720 if (FI != FunctionProtos.end()) in getFunction() 1057 FunctionProtos[Proto->getName()] = std::move(Proto); in codegen() 1137 FunctionProtos[ProtoAST->getName()] = std::move(ProtoAST); in HandleExtern()
|
| /openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/Chapter8/ |
| H A D | toy.cpp | 708 static std::map<std::string, std::unique_ptr<PrototypeAST>> FunctionProtos; variable 723 auto FI = FunctionProtos.find(Name); in getFunction() 724 if (FI != FunctionProtos.end()) in getFunction() 1061 FunctionProtos[Proto->getName()] = std::move(Proto); in codegen() 1137 FunctionProtos[ProtoAST->getName()] = std::move(ProtoAST); in HandleExtern()
|
| /openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/ |
| H A D | toy.cpp | 704 static std::map<std::string, std::unique_ptr<PrototypeAST>> FunctionProtos; variable 719 auto FI = FunctionProtos.find(Name); in getFunction() 720 if (FI != FunctionProtos.end()) in getFunction() 1057 FunctionProtos[Proto->getName()] = std::move(Proto); in codegen() 1137 FunctionProtos[ProtoAST->getName()] = std::move(ProtoAST); in HandleExtern()
|
| /openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/ |
| H A D | toy.cpp | 704 static std::map<std::string, std::unique_ptr<PrototypeAST>> FunctionProtos; variable 719 auto FI = FunctionProtos.find(Name); in getFunction() 720 if (FI != FunctionProtos.end()) in getFunction() 1057 FunctionProtos[Proto->getName()] = std::move(Proto); in codegen() 1137 FunctionProtos[ProtoAST->getName()] = std::move(ProtoAST); in HandleExtern()
|
| /openbsd-src/gnu/llvm/llvm/docs/tutorial/MyFirstLanguageFrontend/ |
| H A D | LangImpl04.rst | 451 auto FI = FunctionProtos.find(Name); 452 if (FI != FunctionProtos.end()) 468 // Transfer ownership of the prototype to the FunctionProtos map, but keep a 471 FunctionProtos[Proto->getName()] = std::move(Proto); 477 To enable this, we'll start by adding a new global, ``FunctionProtos``, that 481 declaration, falling back to generating a new declaration from FunctionProtos if 484 update the FunctionProtos map first, then call ``getFunction()``. With this 513 FunctionProtos[ProtoAST->getName()] = std::move(ProtoAST); 523 add the prototype to FunctionProtos.
|
| H A D | LangImpl06.rst | 281 // Transfer ownership of the prototype to the FunctionProtos map, but keep a 284 FunctionProtos[Proto->getName()] = std::move(Proto);
|
| /openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/Chapter9/ |
| H A D | toy.cpp | 827 static std::map<std::string, std::unique_ptr<PrototypeAST>> FunctionProtos; variable 884 auto FI = FunctionProtos.find(Name); in getFunction() 885 if (FI != FunctionProtos.end()) in getFunction() 1235 FunctionProtos[Proto->getName()] = std::move(Proto); in codegen() 1347 FunctionProtos[ProtoAST->getName()] = std::move(ProtoAST); in HandleExtern()
|