Searched refs:IndexCall (Results 1 – 1 of 1) sorted by relevance
913 struct IndexCall : public PointerUnion<CallsiteInfo *, AllocInfo *> { struct914 IndexCall() : PointerUnion() {} in IndexCall() function915 IndexCall(std::nullptr_t) : IndexCall() {} in IndexCall() argument916 IndexCall(CallsiteInfo *StackNode) : PointerUnion(StackNode) {} in IndexCall() argument917 IndexCall(AllocInfo *AllocNode) : PointerUnion(AllocNode) {} in IndexCall() argument918 IndexCall(PointerUnion PT) : PointerUnion(PT) {} in IndexCall() function920 IndexCall *operator->() { return this; } in operator ->() argument936 template <> struct simplify_type<IndexCall> {938 static SimpleType getSimplifiedValue(IndexCall &Val) { return Val; } in getSimplifiedValue()940 template <> struct simplify_type<const IndexCall> {[all …]