Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DMemProfContextDisambiguation.cpp913 struct IndexCall : public PointerUnion<CallsiteInfo *, AllocInfo *> { struct
914 IndexCall() : PointerUnion() {} in IndexCall() function
915 IndexCall(std::nullptr_t) : IndexCall() {} in IndexCall() argument
916 IndexCall(CallsiteInfo *StackNode) : PointerUnion(StackNode) {} in IndexCall() argument
917 IndexCall(AllocInfo *AllocNode) : PointerUnion(AllocNode) {} in IndexCall() argument
918 IndexCall(PointerUnion PT) : PointerUnion(PT) {} in IndexCall() function
920 IndexCall *operator->() { return this; } in operator ->() argument
936 template <> struct simplify_type<IndexCall> {
938 static SimpleType getSimplifiedValue(IndexCall &Val) { return Val; } in getSimplifiedValue()
940 template <> struct simplify_type<const IndexCall> {
[all …]