Searched refs:CalleeName (Results 1 - 12 of 12) sorted by relevance

/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Transforms/IPO/
H A DSampleContextTracker.h45 StringRef CalleeName);
48 StringRef CalleeName,
55 void removeChildContext(const LineLocation &CallSite, StringRef CalleeName);
99 StringRef CalleeName);
125 StringRef CalleeName);
132 StringRef CalleeName);
H A DProfiledCallGraph.h95 void addProfiledCall(StringRef CallerName, StringRef CalleeName) { argument
97 auto CalleeIt = ProfiledFunctions.find(CalleeName);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
H A DSampleContextTracker.cpp31 StringRef CalleeName) {
32 if (CalleeName.empty())
35 uint32_t Hash = nodeHash(CalleeName, CallSite);
110 StringRef CalleeName) {
111 uint32_t Hash = nodeHash(CalleeName, CallSite);
162 const LineLocation &CallSite, StringRef CalleeName, bool AllowCreate) {
163 uint32_t Hash = nodeHash(CalleeName, CallSite);
166 assert(It->second.getFuncName() == CalleeName &&
174 AllChildContext[Hash] = ContextTrieNode(this, CalleeName, nullptr, CallSite);
196 StringRef CalleeName) {
30 getChildContext(const LineLocation &CallSite, StringRef CalleeName) argument
109 removeChildContext(const LineLocation &CallSite, StringRef CalleeName) argument
161 getOrCreateChildContext( const LineLocation &CallSite, StringRef CalleeName, bool AllowCreate) argument
195 getCalleeContextSamplesFor(const CallBase &Inst, StringRef CalleeName) argument
333 promoteMergeContextSamplesTree( const Instruction &Inst, StringRef CalleeName) argument
411 getCalleeContextFor(const DILocation *DIL, StringRef CalleeName) argument
452 StringRef &CalleeName = S[I].second; local
468 StringRef CalleeName; local
[all...]
H A DSampleProfile.cpp633 StringRef CalleeName; local
635 CalleeName = Callee->getName();
638 return ContextTracker->getCalleeContextSamplesFor(Inst, CalleeName);
645 CalleeName, Reader->getRemapper());
995 StringRef CalleeName = CalleeSample->getFuncName(TS.getKey()); local
996 const Function *Callee = SymbolMap.lookup(CalleeName);
998 InlinedGUIDs.insert(FunctionSamples::getGUID(CalleeName));
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
H A DWebAssemblyLowerEmscriptenEHSjLj.cpp509 StringRef CalleeName = Callee->getName();
513 if (CalleeName == "setjmp" || CalleeName == "malloc" || CalleeName == "free")
517 if (CalleeName == "__resumeException" || CalleeName == "llvm_eh_typeid_for" ||
518 CalleeName == "saveSetjmp" || CalleeName == "testSetjmp" ||
519 CalleeName == "getTempRet0" || CalleeName
538 StringRef CalleeName = Callee->getName(); local
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/ProfileData/
H A DSampleProf.cpp264 const LineLocation &Loc, StringRef CalleeName,
266 CalleeName = getCanonicalFnName(CalleeName);
269 CalleeName = getRepInFormat(CalleeName, UseMD5, CalleeGUID);
274 auto FS = iter->second.find(CalleeName);
278 if (auto NameInProfile = Remapper->lookUpNameInProfile(CalleeName)) {
285 // the max total count. Only do this when CalleeName is not provided,
287 if (!CalleeName.empty())
263 findFunctionSamplesAt( const LineLocation &Loc, StringRef CalleeName, SampleProfileReaderItaniumRemapper *Remapper) const argument
H A DSampleProfReader.cpp129 uint32_t &Discriminator, StringRef &CalleeName,
217 CalleeName = Rest.substr(0, n3);
127 ParseLine(const StringRef &Input, LineType &LineTy, uint32_t &Depth, uint64_t &NumSamples, uint32_t &LineOffset, uint32_t &Discriminator, StringRef &CalleeName, DenseMap<StringRef, uint64_t> &TargetCountMap, uint64_t &FunctionHash, uint32_t &Attributes) argument
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-profgen/
H A DProfileGenerator.cpp309 StringRef CalleeName = FunctionSamples::getCanonicalFnName( local
311 if (CalleeName.size() == 0)
320 CalleeName, Count);
328 OCalleeCtxStr << getCallSite(*LeafLoc) << " @ " << CalleeName.str();
589 StringRef CalleeName = FunctionSamples::getCanonicalFnName( local
591 if (CalleeName.size() == 0)
593 FunctionProfile.addCalledTargetSamples(CallProbe->Index, 0, CalleeName,
/netbsd-current/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaChecking.cpp10453 void CheckFreeArgumentsOnLvalue(Sema &S, const std::string &CalleeName, argument
10457 << CalleeName << 0 /*object: */ << cast<NamedDecl>(D);
10462 void CheckFreeArgumentsAddressof(Sema &S, const std::string &CalleeName, argument
10467 return CheckFreeArgumentsOnLvalue(S, CalleeName, UnaryExpr, D);
10471 return CheckFreeArgumentsOnLvalue(S, CalleeName, UnaryExpr,
10475 void CheckFreeArgumentsPlus(Sema &S, const std::string &CalleeName, argument
10483 << CalleeName << 2 /*object: lambda expression*/;
10486 void CheckFreeArgumentsStackArray(Sema &S, const std::string &CalleeName, argument
10493 << CalleeName << 0 /*object: */ << Var;
10496 void CheckFreeArgumentsCast(Sema &S, const std::string &CalleeName, argument
10529 const std::string CalleeName = local
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp1297 StringRef CalleeName = CalleeFn->getName();
1302 CallerName.size() == (CalleeName.size() + 1) &&
1303 CallerName.startswith(CalleeName))
1320 R = isBinary ? emitBinaryFloatFnCall(V[0], V[1], CalleeName, B, CalleeAttrs)
1321 : emitUnaryFloatFnCall(V[0], CalleeName, B, CalleeAttrs);
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/
H A DSampleProf.h635 /// \p Loc with callee \p CalleeName. If no callsite can be found, relax
639 /// as \p CalleeName.
641 findFunctionSamplesAt(const LineLocation &Loc, StringRef CalleeName,
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/Sparc/
H A DSparcISelLowering.cpp704 const char *CalleeName = E->getSymbol(); local
705 CalleeFn = M->getFunction(CalleeName);

Completed in 488 milliseconds