Lines Matching refs:inFile
52 std::string inFile; variable
99 inFile = argv[optind]; in parseOption()
101 int l = inFile.length(); in parseOption()
102 if (l > 3 && inFile[l-3] == '.' && inFile[l-2] == 'b' && inFile[l-1] == 'c') { in parseOption()
103 outFile = std::string(inFile.begin(), inFile.end() - 3) + ".ll"; in parseOption()
104 infoFile = std::string(inFile.begin(), inFile.end() - 3) + ".bcinfo"; in parseOption()
106 outFile = inFile + ".ll"; in parseOption()
107 infoFile = inFile + ".bcinfo"; in parseOption()
253 if (!inFile.length()) { in readBitcode()
259 if (stat(inFile.c_str(), &statInFile) < 0) { in readBitcode()
269 FILE *in = fopen(inFile.c_str(), "r"); in readBitcode()
271 fprintf(stderr, "Could not open input file %s\n", inFile.c_str()); in readBitcode()
281 fprintf(stderr, "Could not read all of file %s\n", inFile.c_str()); in readBitcode()
352 inFile.c_str(), false); in main()