Lines Matching defs:fname

115     void printProgram(const std::string& fname, const std::string& modName );
116 void printModule(const std::string& fname, const std::string& modName );
117 void printContents(const std::string& fname, const std::string& modName );
118 void printFunction(const std::string& fname, const std::string& funcName );
120 void printInline(const std::string& fname, const std::string& funcName );
121 void printVariable(const std::string& fname, const std::string& varName );
122 void printType(const std::string& fname, const std::string& typeName );
1832 void CppWriter::printInline(const std::string& fname,
1843 nl(Out) << "BasicBlock* " << fname << "(Module* mod, Function *"
1912 void CppWriter::printProgram(const std::string& fname,
1934 Out << "Module* " << fname << "();\n\n";
1936 Out << " Module* Mod = " << fname << "();\n";
1943 printModule(fname,mName);
1946 void CppWriter::printModule(const std::string& fname,
1948 nl(Out) << "Module* " << fname << "() {";
1974 void CppWriter::printContents(const std::string& fname,
1976 Out << "\nModule* " << fname << "(Module *mod) {\n";
1985 void CppWriter::printFunction(const std::string& fname,
1992 Out << "\nFunction* " << fname << "(Module *mod) {\n";
2015 void CppWriter::printVariable(const std::string& fname,
2023 Out << "\nGlobalVariable* " << fname << "(Module *mod) {\n";
2031 void CppWriter::printType(const std::string &fname,
2038 Out << "\nType* " << fname << "(Module *mod) {\n";
2051 std::string fname = FuncName.getValue();
2070 if (fname.empty())
2071 fname = "makeLLVMModule";
2072 printProgram(fname,tgtname);
2075 if (fname.empty())
2076 fname = "makeLLVMModule";
2077 printModule(fname,tgtname);
2080 if (fname.empty())
2081 fname = "makeLLVMModuleContents";
2082 printContents(fname,tgtname);
2085 if (fname.empty())
2086 fname = "makeLLVMFunction";
2087 printFunction(fname,tgtname);
2093 if (fname.empty())
2094 fname = "makeLLVMInline";
2095 printInline(fname,tgtname);
2098 if (fname.empty())
2099 fname = "makeLLVMVariable";
2100 printVariable(fname,tgtname);
2103 if (fname.empty())
2104 fname = "makeLLVMType";
2105 printType(fname,tgtname);