Home | History | Annotate | Download | only in bugpoint

Lines Matching defs:gcc

37 // GCC abstraction
39 class GCC {
40 sys::Path GCCPath; // The path to the gcc executable.
42 std::vector<std::string> gccArgs; // GCC-specific arguments.
43 GCC(const sys::Path &gccPath, const sys::Path &RemotePath,
51 static GCC *create(std::string &Message,
124 /// understood by the GCC driver (either C or asm). If the code generator
127 virtual GCC::FileType OutputCode(const std::string &Bitcode,
132 return GCC::AsmFile;
159 GCC *gcc;
161 CBE(const sys::Path &llcPath, GCC *Gcc,
163 : LLCPath(llcPath), gcc(Gcc) {
167 ~CBE() { delete gcc; }
188 /// understood by the GCC driver (either C or asm). If the code generator
191 virtual GCC::FileType OutputCode(const std::string &Bitcode,
204 GCC *gcc;
207 LLC(const std::string &llcPath, GCC *Gcc,
210 : LLCPath(llcPath), gcc(Gcc),
215 ~LLC() { delete gcc; }
236 /// understood by the GCC driver (either C or asm). If the code generator
239 virtual GCC::FileType OutputCode(const std::string &Bitcode,