@@ -280,7 +280,7 @@ void MCPseudoProbeFuncDesc::print(raw_ostream &OS) {
280
280
}
281
281
282
282
void MCDecodedPseudoProbe::getInlineContext (
283
- SmallVectorImpl<MCPseduoProbeFrameLocation > &ContextStack,
283
+ SmallVectorImpl<MCPseudoProbeFrameLocation > &ContextStack,
284
284
const GUIDProbeFunctionMap &GUID2FuncMAP) const {
285
285
uint32_t Begin = ContextStack.size ();
286
286
MCDecodedPseudoProbeInlineTree *Cur = InlineTree;
@@ -289,7 +289,7 @@ void MCDecodedPseudoProbe::getInlineContext(
289
289
while (Cur->hasInlineSite ()) {
290
290
StringRef FuncName = getProbeFNameForGUID (GUID2FuncMAP, Cur->Parent ->Guid );
291
291
ContextStack.emplace_back (
292
- MCPseduoProbeFrameLocation (FuncName, std::get<1 >(Cur->ISite )));
292
+ MCPseudoProbeFrameLocation (FuncName, std::get<1 >(Cur->ISite )));
293
293
Cur = static_cast <MCDecodedPseudoProbeInlineTree *>(Cur->Parent );
294
294
}
295
295
// Make the ContextStack in caller-callee order
@@ -299,7 +299,7 @@ void MCDecodedPseudoProbe::getInlineContext(
299
299
std::string MCDecodedPseudoProbe::getInlineContextStr (
300
300
const GUIDProbeFunctionMap &GUID2FuncMAP) const {
301
301
std::ostringstream OContextStr;
302
- SmallVector<MCPseduoProbeFrameLocation , 16 > ContextStack;
302
+ SmallVector<MCPseudoProbeFrameLocation , 16 > ContextStack;
303
303
getInlineContext (ContextStack, GUID2FuncMAP);
304
304
for (auto &Cxt : ContextStack) {
305
305
if (OContextStr.str ().size ())
@@ -616,7 +616,7 @@ MCPseudoProbeDecoder::getFuncDescForGUID(uint64_t GUID) const {
616
616
617
617
void MCPseudoProbeDecoder::getInlineContextForProbe (
618
618
const MCDecodedPseudoProbe *Probe,
619
- SmallVectorImpl<MCPseduoProbeFrameLocation > &InlineContextStack,
619
+ SmallVectorImpl<MCPseudoProbeFrameLocation > &InlineContextStack,
620
620
bool IncludeLeaf) const {
621
621
Probe->getInlineContext (InlineContextStack, GUID2FuncDescMap);
622
622
if (!IncludeLeaf)
@@ -625,7 +625,7 @@ void MCPseudoProbeDecoder::getInlineContextForProbe(
625
625
// hence we need to retrieve and prepend leaf if requested.
626
626
const auto *FuncDesc = getFuncDescForGUID (Probe->getGuid ());
627
627
InlineContextStack.emplace_back (
628
- MCPseduoProbeFrameLocation (FuncDesc->FuncName , Probe->getIndex ()));
628
+ MCPseudoProbeFrameLocation (FuncDesc->FuncName , Probe->getIndex ()));
629
629
}
630
630
631
631
const MCPseudoProbeFuncDesc *MCPseudoProbeDecoder::getInlinerDescForProbe (
0 commit comments