Searched defs:IndexCall (Results 1 – 1 of 1) sorted by relevance
694 struct IndexCall : public PointerUnion<CallsiteInfo *, AllocInfo *> { struct695 IndexCall() : PointerUnion() {} in IndexCall() function696 IndexCall(std::nullptr_t) : IndexCall() {} in IndexCall() function697 IndexCall(CallsiteInfo *StackNode) : PointerUnion(StackNode) {} in IndexCall() argument698 IndexCall(AllocInfo *AllocNode) : PointerUnion(AllocNode) {} in IndexCall() function699 IndexCall(PointerUnion PT) : PointerUnion(PT) {} in IndexCall() function701 IndexCall *operator->() { return this; } in operator ->()703 PointerUnion<CallsiteInfo *, AllocInfo *> getBase() const { return *this; } in getBase()705 void print(raw_ostream &OS) const { in print()2088 std::vector<std::pair<IndexCall, FunctionSummary *>> &FoundCalleeChain, in findProfiledCalleeThroughTailCalls()[all …]