HomeSort by relevance Sort by last modified time
    Searched full:functionprotos (Results 1 - 12 of 12) sorted by null

  /external/llvm/docs/tutorial/
LangImpl04.rst 416 auto FI = FunctionProtos.find(Name);
417 if (FI != FunctionProtos.end())
433 // Transfer ownership of the prototype to the FunctionProtos map, but keep a
436 FunctionProtos[Proto->getName()] = std::move(Proto);
442 To enable this, we'll start by adding a new global, ``FunctionProtos``, that
446 declaration, falling back to generating a new declaration from FunctionProtos if
449 update the FunctionProtos map first, then call ``getFunction()``. With this
476 FunctionProtos[ProtoAST->getName()] = std::move(ProtoAST);
486 add the prototype to FunctionProtos.
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 406 static std::map<std::string, std::unique_ptr<PrototypeAST>> FunctionProtos;
420 auto FI = FunctionProtos.find(Name);
421 if (FI != FunctionProtos.end())
500 // Transfer ownership of the prototype to the FunctionProtos map, but keep a
503 FunctionProtos[Proto->getName()] = std::move(Proto);
578 FunctionProtos[ProtoAST->getName()] = std::move(ProtoAST);
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 531 static std::map<std::string, std::unique_ptr<PrototypeAST>> FunctionProtos;
545 auto FI = FunctionProtos.find(Name);
546 if (FI != FunctionProtos.end())
772 // Transfer ownership of the prototype to the FunctionProtos map, but keep a
775 FunctionProtos[Proto->getName()] = std::move(Proto);
850 FunctionProtos[ProtoAST->getName()] = std::move(ProtoAST);
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 622 static std::map<std::string, std::unique_ptr<PrototypeAST>> FunctionProtos;
636 auto FI = FunctionProtos.find(Name);
637 if (FI != FunctionProtos.end())
883 // Transfer ownership of the prototype to the FunctionProtos map, but keep a
886 FunctionProtos[Proto->getName()] = std::move(Proto);
968 FunctionProtos[ProtoAST->getName()] = std::move(ProtoAST);
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/
toy.cpp 702 static std::map<std::string, std::unique_ptr<PrototypeAST>> FunctionProtos;
717 auto FI = FunctionProtos.find(Name);
718 if (FI != FunctionProtos.end())
1059 // Transfer ownership of the prototype to the FunctionProtos map, but keep a
1129 FunctionProtos[FnAST->getProto().getName()] =
1143 FunctionProtos[ProtoAST->getName()] = std::move(ProtoAST);
1154 FunctionProtos[FnAST->getName()] =
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
toy.cpp 680 static std::map<std::string, std::unique_ptr<PrototypeAST>> FunctionProtos;
695 auto FI = FunctionProtos.find(Name);
696 if (FI != FunctionProtos.end())
1037 // Transfer ownership of the prototype to the FunctionProtos map, but keep a
1107 FunctionProtos[FnAST->getProto().getName()] =
1121 FunctionProtos[ProtoAST->getName()] = std::move(ProtoAST);
1132 FunctionProtos[FnAST->getName()] =
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
toy.cpp 692 static std::map<std::string, std::unique_ptr<PrototypeAST>> FunctionProtos;
706 auto FI = FunctionProtos.find(Name);
707 if (FI != FunctionProtos.end())
1040 // Transfer ownership of the prototype to the FunctionProtos map, but keep a
1043 FunctionProtos[Proto->getName()] = std::move(Proto);
1116 FunctionProtos[ProtoAST->getName()] = std::move(ProtoAST);
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
toy.cpp 692 static std::map<std::string, std::unique_ptr<PrototypeAST>> FunctionProtos;
706 auto FI = FunctionProtos.find(Name);
707 if (FI != FunctionProtos.end())
1040 // Transfer ownership of the prototype to the FunctionProtos map, but keep a
1043 FunctionProtos[Proto->getName()] = std::move(Proto);
1116 FunctionProtos[ProtoAST->getName()] = std::move(ProtoAST);
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
toy.cpp 692 static std::map<std::string, std::unique_ptr<PrototypeAST>> FunctionProtos;
706 auto FI = FunctionProtos.find(Name);
707 if (FI != FunctionProtos.end())
1040 // Transfer ownership of the prototype to the FunctionProtos map, but keep a
1043 FunctionProtos[Proto->getName()] = std::move(Proto);
1116 FunctionProtos[ProtoAST->getName()] = std::move(ProtoAST);
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 693 static std::map<std::string, std::unique_ptr<PrototypeAST>> FunctionProtos;
707 auto FI = FunctionProtos.find(Name);
708 if (FI != FunctionProtos.end())
1041 // Transfer ownership of the prototype to the FunctionProtos map, but keep a
1044 FunctionProtos[Proto->getName()] = std::move(Proto);
1134 FunctionProtos[ProtoAST->getName()] = std::move(ProtoAST);
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 688 static std::map<std::string, std::unique_ptr<PrototypeAST>> FunctionProtos;
702 auto FI = FunctionProtos.find(Name);
703 if (FI != FunctionProtos.end())
1036 // Transfer ownership of the prototype to the FunctionProtos map, but keep a
1039 FunctionProtos[Proto->getName()] = std::move(Proto);
1109 FunctionProtos[ProtoAST->getName()] = std::move(ProtoAST);
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter9/
toy.cpp 862 static std::map<std::string, std::unique_ptr<PrototypeAST>> FunctionProtos;
876 auto FI = FunctionProtos.find(Name);
877 if (FI != FunctionProtos.end())
    [all...]

Completed in 273 milliseconds