Lines Matching refs:Alloc
146 if (Alloc) { in addCallStack()
148 Alloc->AllocTypes |= static_cast<uint8_t>(AllocType); in addCallStack()
149 Alloc->TotalSize += TotalSize; in addCallStack()
152 Alloc = new CallStackTrieNode(AllocType, TotalSize); in addCallStack()
154 Curr = Alloc; in addCallStack()
256 if (hasSingleAllocType(Alloc->AllocTypes)) { in buildAndAttachMIBMetadata()
257 addAllocTypeAttribute(Ctx, CI, (AllocationType)Alloc->AllocTypes); in buildAndAttachMIBMetadata()
259 assert(Alloc->TotalSize); in buildAndAttachMIBMetadata()
262 << getAllocTypeAttributeString((AllocationType)Alloc->AllocTypes) in buildAndAttachMIBMetadata()
263 << ": " << Alloc->TotalSize << "\n"; in buildAndAttachMIBMetadata()
270 assert(!Alloc->Callers.empty() && "addCallStack has not been called yet"); in buildAndAttachMIBMetadata()
274 if (buildMIBNodes(Alloc, Ctx, MIBCallStack, MIBNodes, false)) { in buildAndAttachMIBMetadata()