Home | History | Annotate | Download | only in bugpoint

Lines Matching refs:LLC

431 // LLC Implementation of AbstractIntepreter interface
433 Expected<CC::FileType> LLC::OutputCode(const std::string &Bitcode,
436 const char *Suffix = (UseIntegratedAssembler ? ".llc.o" : ".llc.s");
449 // Add any extra LLC args.
460 outs() << (UseIntegratedAssembler ? "<llc-ia>" : "<llc>");
471 Error LLC::compileProgram(const std::string &Bitcode, unsigned Timeout,
482 Expected<int> LLC::ExecuteProgram(const std::string &Bitcode,
500 // Assuming LLC worked, compile the result with CC and run it.
505 /// createLLC - Try to find the LLC executable
507 LLC *AbstractInterpreter::createLLC(const char *Argv0, std::string &Message,
513 FindProgramByName("llc", Argv0, (void *)(intptr_t)&createLLC);
524 Message = "Found llc: " + *LLCPath + "\n";
525 return new LLC(*LLCPath, cc, Args, UseIntegratedAssembler);