Lines Matching refs:FnName
517 std::string FnName; in ParsePrototype() local
526 FnName = IdentifierStr; in ParsePrototype()
534 FnName = "unary"; in ParsePrototype()
535 FnName += (char)CurTok; in ParsePrototype()
543 FnName = "binary"; in ParsePrototype()
544 FnName += (char)CurTok; in ParsePrototype()
574 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence); in ParsePrototype()
655 Function *getFunction(const std::string FnName);
720 Function *MCJITHelper::getFunction(const std::string FnName) { in getFunction() argument
725 Function *F = (*it)->getFunction(FnName); in getFunction()
734 Function *PF = OpenModule->getFunction(FnName); in getFunction()
744 FnName, in getFunction()
1163 std::string FnName = MakeLegalFunctionName(Name); in Codegen() local
1167 Function *F = Function::Create(FT, Function::ExternalLinkage, FnName, M); in Codegen()
1171 if (F->getName() != FnName) { in Codegen()