Home | History | Annotate | Download | only in initial

Lines Matching refs:FnName

517   std::string FnName;
526 FnName = IdentifierStr;
534 FnName = "unary";
535 FnName += (char)CurTok;
543 FnName = "binary";
544 FnName += (char)CurTok;
574 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence);
655 Function *getFunction(const std::string FnName);
720 Function *MCJITHelper::getFunction(const std::string FnName) {
725 Function *F = (*it)->getFunction(FnName);
734 Function *PF = OpenModule->getFunction(FnName);
744 FnName,
1164 std::string FnName = MakeLegalFunctionName(Name);
1168 Function *F = Function::Create(FT, Function::ExternalLinkage, FnName, M);
1170 // If F conflicted, there was already something named 'FnName'. If it has a
1172 if (F->getName() != FnName) {