Home | History | Annotate | Download | only in bugpoint

Lines Matching refs:LLC

455 // LLC Implementation of AbstractIntepreter interface
457 CC::FileType LLC::OutputCode(const std::string &Bitcode,
460 const char *Suffix = (UseIntegratedAssembler ? ".llc.o" : ".llc.s");
473 // Add any extra LLC args.
486 outs() << (UseIntegratedAssembler ? "<llc-ia>" : "<llc>");
501 void LLC::compileProgram(const std::string &Bitcode, std::string *Error,
508 int LLC::ExecuteProgram(const std::string &Bitcode,
526 // Assuming LLC worked, compile the result with CC and run it.
532 /// createLLC - Try to find the LLC executable
534 LLC *AbstractInterpreter::createLLC(const char *Argv0,
541 PrependMainExecutablePath("llc", Argv0, (void *)(intptr_t) & createLLC);
543 Message = "Cannot find `llc' in executable directory!\n";
552 Message = "Found llc: " + LLCPath + "\n";
553 return new LLC(LLCPath, cc, Args, UseIntegratedAssembler);