Home
last modified time | relevance | path

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

/external/llvm/include/llvm/Support/
DCallSite.h46 class CallSiteBase {
50 CallSiteBase() : I(0, false) {} in CallSiteBase() function
51 CallSiteBase(CallTy *CI) : I(CI, true) { assert(CI); } in CallSiteBase() function
52 CallSiteBase(InvokeTy *II) : I(II, false) { assert(II); } in CallSiteBase() function
53 CallSiteBase(ValTy *II) { *this = get(II); } in CallSiteBase() function
60 static CallSiteBase get(ValTy *V) { in get()
63 return CallSiteBase(static_cast<CallTy*>(II)); in get()
65 return CallSiteBase(static_cast<InvokeTy*>(II)); in get()
67 return CallSiteBase(); in get()
295 class CallSite : public CallSiteBase<Function, Value, User, Instruction,
[all …]