Home | History | Annotate | Download | only in complete

Lines Matching refs:FnName

559   std::string FnName;
568 FnName = IdentifierStr;
576 FnName = "unary";
577 FnName += (char)CurTok;
585 FnName = "binary";
586 FnName += (char)CurTok;
616 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence);
781 virtual Function *getFunction(const std::string FnName) = 0;
807 Function *getFunction(const std::string FnName);
887 Function *MCJITHelper::getFunction(const std::string FnName) {
892 Function *F = (*it)->getFunction(FnName);
901 Function *PF = CurrentModule->getFunction(FnName);
911 FnName,
1003 std::string FnName = F->getName();
1005 Function *MF = (*it)->getFunction(FnName);
1383 std::string FnName;
1384 FnName = MakeLegalFunctionName(Name);
1387 Function *F = Function::Create(FT, Function::ExternalLinkage, FnName, M);
1393 if (F->getName() != FnName) {
1396 F = M->getFunction(FnName);