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

  /src/external/apache2/llvm/dist/llvm/lib/ProfileData/
InstrProf.cpp 249 // Return the PGOFuncName. This function has some special handling when called
258 // PGOFuncName meta data are created and attached to the original internal
285 StringRef getFuncNameWithoutPrefix(StringRef PGOFuncName, StringRef FileName) {
287 return PGOFuncName;
289 if (PGOFuncName.startswith(FileName))
290 PGOFuncName = PGOFuncName.drop_front(FileName.size() + 1);
291 return PGOFuncName;
316 StringRef PGOFuncName) {
329 ConstantDataArray::getString(M.getContext(), PGOFuncName, false)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/
InstrProf.h 189 GlobalVariable *createPGOFuncNameVar(Function &F, StringRef PGOFuncName);
197 StringRef PGOFuncName);
204 StringRef getFuncNameWithoutPrefix(StringRef PGOFuncName,
266 inline StringRef getPGOFuncNameMetadataName() { return "PGOFuncName"; }
268 /// Return the PGOFuncName meta data associated with a function.
271 /// Create the PGOFuncName meta data if PGOFuncName is different from
274 void createPGOFuncNameMetadata(Function &F, StringRef PGOFuncName);

Completed in 16 milliseconds