Home
last modified time | relevance | path

Searched refs:CallProbe (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-profgen/
H A DPseudoProbe.cpp305 const PseudoProbe *CallProbe = nullptr; in getCallProbeForAddr() local
308 assert(!CallProbe && in getCallProbeForAddr()
311 CallProbe = &Probe; in getCallProbeForAddr()
314 return CallProbe; in getCallProbeForAddr()
H A DProfileGenerator.cpp582 const PseudoProbe *CallProbe = Binary->getCallProbeForAddr(SourceAddress); in populateBoundarySamplesWithProbes() local
583 if (CallProbe == nullptr) in populateBoundarySamplesWithProbes()
586 getFunctionProfileForLeafProbe(ContextStrStack, CallProbe, Binary); in populateBoundarySamplesWithProbes()
587 FunctionProfile.addBodySamples(CallProbe->Index, 0, Count); in populateBoundarySamplesWithProbes()
593 FunctionProfile.addCalledTargetSamples(CallProbe->Index, 0, CalleeName, in populateBoundarySamplesWithProbes()
H A DPerfReader.h404 const PseudoProbe *CallProbe = Binary->getCallProbeForAddr(Cur->Address); in pushFrame() local
409 if (!CallProbe) in pushFrame()
411 Stack.push_back(CallProbe); in pushFrame()
H A DPerfReader.cpp107 for (auto CallProbe : Stack) { in getContextKey() local
108 ProbeBasedKey->Probes.emplace_back(CallProbe); in getContextKey()