HomeSort by relevance Sort by last modified time
    Searched refs:ProfileFile (Results 1 - 3 of 3) sorted by null

  /external/swiftshader/third_party/LLVM/utils/
profile.pl 24 my $ProfileFile = "";
38 $ProfileFile = $ARGV[0];
74 system "llvm-prof $LLVMProfOpts $BytecodeFile $ProfileFile";
  /external/compiler-rt/lib/profile/
InstrProfilingFile.c 118 /* Read profile data in \c ProfileFile and merge with in-memory
122 static int doProfileMerging(FILE *ProfileFile) {
126 if (fseek(ProfileFile, 0L, SEEK_END) == -1) {
131 ProfileFileSize = ftell(ProfileFile);
134 if (fseek(ProfileFile, 0L, SEEK_SET) == -1) {
149 fileno(ProfileFile), 0);
179 FILE *ProfileFile;
182 ProfileFile = lprofOpenFileEx(ProfileFileName);
183 if (!ProfileFile)
186 rc = doProfileMerging(ProfileFile);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/opt/
NewPMDriver.cpp 108 static cl::opt<std::string> ProfileFile(
202 P = PGOOptions(ProfileFile, "", "", true);
205 P = PGOOptions("", ProfileFile, "", false);
208 P = PGOOptions("", "", ProfileFile, false);

Completed in 64 milliseconds