Lines Matching refs:Program
61 Program = std::move(M); in setNewProgram()
81 Program(nullptr), Interpreter(nullptr), SafeInterpreter(nullptr), in BugDriver()
122 std::unique_ptr<Module> OldProgram = std::move(Program); in swapProgramIn()
123 Program = std::move(M); in swapProgramIn()
133 assert(!Program && "Cannot call addSources multiple times!"); in addSources()
137 Program = parseInputFile(Filenames[0], Context); in addSources()
138 if (!Program) in addSources()
149 if (Linker::linkModules(*Program, std::move(M))) in addSources()
178 if (runPasses(*Program, PassesToRun)) in run()
188 if (Error E = compileProgram(*Program)) { in run()
201 if (Error E = createReferenceFile(*Program)) { in run()
217 Expected<bool> Diff = diffProgram(*Program, "", "", false); in run()