Home | History | Annotate | Download | only in bugpoint

Lines Matching refs:LLC

473 // LLC Implementation of AbstractIntepreter interface
475 GCC::FileType LLC::OutputCode(const std::string &Bitcode,
478 const char *Suffix = (UseIntegratedAssembler ? ".llc.o" : ".llc.s");
491 // Add any extra LLC args.
504 outs() << (UseIntegratedAssembler ? "<llc-ia>" : "<llc>");
519 void LLC::compileProgram(const std::string &Bitcode, std::string *Error,
526 int LLC::ExecuteProgram(const std::string &Bitcode,
544 // Assuming LLC worked, compile the result with GCC and run it.
550 /// createLLC - Try to find the LLC executable
552 LLC *AbstractInterpreter::createLLC(const char *Argv0,
559 PrependMainExecutablePath("llc", Argv0, (void *)(intptr_t) & createLLC);
561 Message = "Cannot find `llc' in executable directory!\n";
570 Message = "Found llc: " + LLCPath + "\n";
571 return new LLC(LLCPath, gcc, Args, UseIntegratedAssembler);