Home
last modified time | relevance | path

Searched refs:CCPath (Results 1 – 4 of 4) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/tools/bugpoint/
DToolRunner.cpp647 CCArgs.push_back(CCPath); in ExecuteProgram()
707 if (RunProgramWithTimeout(CCPath, CCArgs, "", "", "")) in ExecuteProgram()
708 return ProcessFailure(CCPath, CCArgs); in ExecuteProgram()
795 CCArgs.push_back(CCPath); in MakeSharedObject()
851 if (RunProgramWithTimeout(CCPath, CCArgs, "", "", "")) in MakeSharedObject()
852 return ProcessFailure(CCPath, CCArgs); in MakeSharedObject()
860 auto CCPath = sys::findProgramByName(CCBinary); in create() local
861 if (!CCPath) { in create()
863 CCPath.getError().message() + "\n"; in create()
878 Message = "Found CC: " + *CCPath + "\n"; in create()
[all …]
DToolRunner.h39 std::string CCPath; // The path to the cc executable. variable
44 : CCPath(ccPath), RemoteClientPath(RemotePath) { in CC()
/external/llvm/tools/bugpoint/
DToolRunner.cpp668 CCArgs.push_back(CCPath.c_str()); in ExecuteProgram()
731 if (RunProgramWithTimeout(CCPath, &CCArgs[0], "", "", "")) { in ExecuteProgram()
732 *Error = ProcessFailure(CCPath, &CCArgs[0]); in ExecuteProgram()
821 CCArgs.push_back(CCPath.c_str()); in MakeSharedObject()
881 if (RunProgramWithTimeout(CCPath, &CCArgs[0], "", "", "")) { in MakeSharedObject()
882 Error = ProcessFailure(CCPath, &CCArgs[0]); in MakeSharedObject()
893 auto CCPath = sys::findProgramByName(CCBinary); in create() local
894 if (!CCPath) { in create()
896 CCPath.getError().message() + "\n"; in create()
911 Message = "Found CC: " + *CCPath + "\n"; in create()
[all …]
DToolRunner.h39 std::string CCPath; // The path to the cc executable. variable
44 : CCPath(ccPath), RemoteClientPath(RemotePath) { in CC()