Home | History | Annotate | Download | only in bugpoint

Lines Matching refs:LLC

456 // LLC Implementation of AbstractIntepreter interface
458 CC::FileType LLC::OutputCode(const std::string &Bitcode,
461 const char *Suffix = (UseIntegratedAssembler ? ".llc.o" : ".llc.s");
474 // Add any extra LLC args.
487 outs() << (UseIntegratedAssembler ? "<llc-ia>" : "<llc>");
502 void LLC::compileProgram(const std::string &Bitcode, std::string *Error,
509 int LLC::ExecuteProgram(const std::string &Bitcode,
527 // Assuming LLC worked, compile the result with CC and run it.
533 /// createLLC - Try to find the LLC executable
535 LLC *AbstractInterpreter::createLLC(const char *Argv0,
542 PrependMainExecutablePath("llc", Argv0, (void *)(intptr_t) & createLLC);
544 Message = "Cannot find `llc' in executable directory!\n";
553 Message = "Found llc: " + LLCPath + "\n";
554 return new LLC(LLCPath, cc, Args, UseIntegratedAssembler);