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

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

Completed in 36 milliseconds