Searched defs:gcc (Results 1 - 5 of 5) sorted by relevance

/external/clang/lib/Driver/
H A DTools.h75 /// gcc - Generic GCC tool implementations.
76 namespace gcc { namespace in namespace:clang::driver::tools
97 Preprocess(const ToolChain &TC) : Common("gcc::Preprocess",
98 "gcc preprocessor", TC) {}
109 Precompile(const ToolChain &TC) : Common("gcc::Precompile",
110 "gcc precompile", TC) {}
121 Compile(const ToolChain &TC) : Common("gcc::Compile",
122 "gcc frontend", TC) {}
133 Assemble(const ToolChain &TC) : Common("gcc::Assemble",
134 "assembler (via gcc)", T
[all...]
/external/llvm/tools/bugpoint/
H A DBugDriver.h54 GCC *gcc; member in class:llvm::BugDriver
H A DToolRunner.h40 sys::Path GCCPath; // The path to the gcc executable.
159 GCC *gcc; member in class:llvm::CBE
163 : LLCPath(llcPath), gcc(Gcc) {
167 ~CBE() { delete gcc; }
204 GCC *gcc; member in class:llvm::LLC
210 : LLCPath(llcPath), gcc(Gcc),
215 ~LLC() { delete gcc; }
H A DToolRunner.cpp512 return gcc->ExecuteProgram(OutputAsmFile.str(), Args, FileKind,
533 GCC *gcc = GCC::create(Message, GCCBinary, GCCArgs); local
534 if (!gcc) {
538 return new LLC(LLCPath, gcc, Args, UseIntegratedAssembler);
683 return gcc->ExecuteProgram(OutputCFile.str(), Args, GCC::CFile,
704 GCC *gcc = GCC::create(Message, GCCBinary, GCCArgs); local
705 if (!gcc) {
709 return new CBE(LLCPath, gcc, Args);
760 // it from gcc flags
771 sys::Path OutputBinary (ProgramFile+".gcc
[all...]
/external/llvm/tools/llvm-ld/
H A Dllvm-ld.cpp317 /// gcc - The pathname to use for GGC.
328 const sys::Path &gcc, char ** const envp,
354 args.push_back(gcc.c_str());
403 gcc, &Args[0], const_cast<const char **>(clean_env), 0, 0, 0, &ErrMsg);
439 // gcc accepts -l<lib> and implicitly searches /lib and /usr/lib.
663 // Determine the locations of the llc and gcc programs.
669 sys::Path gcc = sys::Program::FindProgramByName("gcc"); local
670 if (gcc.isEmpty())
671 PrintAndExit("Failed to find gcc", Composit
325 GenerateNative(const std::string &OutputFilename, const std::string &InputFilename, const Linker::ItemList &LinkItems, const sys::Path &gcc, char ** const envp, std::string& ErrMsg) argument
696 sys::Path gcc = sys::Program::FindProgramByName("gcc"); local
[all...]

Completed in 121 milliseconds