Lines Matching refs:TheModule
803 TheModule = parseInputIR(InputIR, Context); in JITHelper()
805 TheModule = new Module("my cool jit", Context); in JITHelper()
810 TheExecutionEngine = EngineBuilder(TheModule).setErrorStr(&ErrStr).create(); in JITHelper()
816 TheFPM = new FunctionPassManager(TheModule); in JITHelper()
845 assert(TheModule); in getFunction()
846 return TheModule->getFunction(FnName); in getFunction()
850 assert(TheModule); in getModuleForNewFunction()
851 return TheModule; in getModuleForNewFunction()
874 assert(TheModule); in dump()
875 TheModule->dump(); in dump()
879 Module *TheModule; member in JITHelper