Lines Matching refs:Program
62 Program = std::move(M); in setNewProgram()
82 Program(nullptr), Interpreter(nullptr), SafeInterpreter(nullptr), in BugDriver()
123 std::unique_ptr<Module> OldProgram = std::move(Program); in swapProgramIn()
124 Program = std::move(M); in swapProgramIn()
134 assert(!Program && "Cannot call addSources multiple times!"); in addSources()
138 Program = parseInputFile(Filenames[0], Context); in addSources()
139 if (!Program) in addSources()
150 if (Linker::linkModules(*Program, std::move(M))) in addSources()
179 if (runPasses(*Program, PassesToRun)) in run()
189 if (Error E = compileProgram(*Program)) { in run()
202 if (Error E = createReferenceFile(*Program)) { in run()
218 Expected<bool> Diff = diffProgram(*Program, "", "", false); in run()