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

/external/llvm/include/llvm/IR/
H A DCallSite.h14 // extremes, CallSiteBase<> can be supplied with fine-tuned parameters.
46 class CallSiteBase { class in namespace:llvm
50 CallSiteBase() : I(nullptr, false) {} function in class:llvm::CallSiteBase
51 CallSiteBase(CallTy *CI) : I(CI, true) { assert(CI); } function in class:llvm::CallSiteBase
52 CallSiteBase(InvokeTy *II) : I(II, false) { assert(II); } function in class:llvm::CallSiteBase
53 CallSiteBase(ValTy *II) { *this = get(II); } function in class:llvm::CallSiteBase
55 /// CallSiteBase::get - This static method is sort of like a constructor. It
57 /// it can also create a null initialized CallSiteBase object for something
60 static CallSiteBase get(ValTy *V) {
63 return CallSiteBase(static_cas
[all...]

Completed in 128 milliseconds