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

  /external/llvm/include/llvm/Analysis/
ProfileInfo.h 73 // FunctionInformation - Count the number of times a function is executed.
74 std::map<const FType*, double> FunctionInformation;
182 for (typename std::map<const FType*, double>::iterator fi = FunctionInformation.begin(),
183 fe = FunctionInformation.end(); fi != fe; ++fi) {
  /external/llvm/lib/Analysis/
ProfileInfoLoaderPass.cpp 247 FunctionInformation.clear();
258 FunctionInformation[F] = (double)Counters[ReadCount++];
ProfileInfo.cpp 140 FunctionInformation.find(F);
141 if (J != FunctionInformation.end())
149 if (Count != MissingValue) FunctionInformation[F] = Count;
157 FunctionInformation.find(MF);
158 if (J != FunctionInformation.end())
162 if (Count != MissingValue) FunctionInformation[MF] = Count;
489 FunctionInformation.erase(Old);
    [all...]
ProfileEstimatorPass.cpp 323 FunctionInformation.erase(&F);
398 FunctionInformation[&F] = 0;

Completed in 989 milliseconds