HomeSort by: relevance | last modified time | path
    Searched refs:Fname (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/
SampleProfReader.h 366 /// Print the profile for \p FName on stream \p OS.
367 void dumpFunctionProfile(StringRef FName, raw_ostream &OS = dbgs());
397 virtual FunctionSamples *getSamplesFor(StringRef Fname) {
399 Fname = getRepInFormat(Fname, useMD5(), FGUID);
400 auto It = Profiles.find(Fname);
405 if (auto NameInProfile = Remapper->lookUpNameInProfile(Fname)) {
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
IntrinsicLowering.cpp 202 static void ReplaceFPIntrinsicWithCall(CallInst *CI, const char *Fname,
208 ReplaceCallWith(Fname, CI, CI->arg_begin(), CI->arg_end(),
MachineOutliner.cpp 940 std::string Fname = std::string(F.getName());
945 auto It = FunctionToInstrCount.find(Fname);
  /src/external/apache2/llvm/dist/llvm/lib/IR/
LegacyPassManager.cpp 168 &PassName](StringRef Fname) {
170 std::pair<unsigned, unsigned> &Change = FunctionToInstrCount[Fname];
188 << DiagnosticInfoOptimizationBase::Argument("Function", Fname)
  /src/external/apache2/llvm/dist/llvm/lib/ProfileData/
SampleProfReader.cpp 48 /// Dump the function profile for \p FName.
50 /// \param FName Name of the function to print.
52 void SampleProfileReader::dumpFunctionProfile(StringRef FName,
54 OS << "Function: " << FName << ": " << Profiles[FName];
65 /// Parse one line of \p Input, and update function name in \p FName,
70 static bool ParseHead(const StringRef &Input, StringRef &FName,
76 FName = Input.substr(0, n1);
258 StringRef FName;
259 if (!ParseHead(*LineIt, FName, NumSamples, NumHeadSamples))
    [all...]

Completed in 19 milliseconds