Home | History | Annotate | Download | only in bugpoint

Lines Matching defs:cc

36 // CC abstraction
38 class CC {
39 std::string CCPath; // The path to the cc executable.
41 std::vector<std::string> ccArgs; // CC-specific arguments.
42 CC(StringRef ccPath, StringRef RemotePath,
50 static CC *create(std::string &Message,
122 /// understood by the CC driver (either C or asm). If the code generator
125 virtual CC::FileType OutputCode(const std::string &Bitcode,
130 return CC::AsmFile;
157 CC *cc;
160 LLC(const std::string &llcPath, CC *cc,
163 : LLCPath(llcPath), cc(cc),
168 ~LLC() override { delete cc; }
189 /// understood by the CC driver (either C or asm). If the code generator
192 CC::FileType OutputCode(const std::string &Bitcode,