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