Home
last modified time | relevance | path

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

/external/llvm/include/llvm/IR/
DCallSite.h49 class CallSiteBase {
53 CallSiteBase() : I(nullptr, false) {} in CallSiteBase() function
54 CallSiteBase(CallTy *CI) : I(CI, true) { assert(CI); } in CallSiteBase() function
55 CallSiteBase(InvokeTy *II) : I(II, false) { assert(II); } in CallSiteBase() function
56 explicit CallSiteBase(ValTy *II) { *this = get(II); } in CallSiteBase() function
64 static CallSiteBase get(ValTy *V) { in get()
67 return CallSiteBase(static_cast<CallTy*>(II)); in get()
69 return CallSiteBase(static_cast<InvokeTy*>(II)); in get()
71 return CallSiteBase(); in get()
601 class CallSite : public CallSiteBase<Function, BasicBlock, Value, User, Use,
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DCallSite.h61 class CallSiteBase {
65 CallSiteBase() = default;
66 CallSiteBase(CallTy *CI) : I(CI, true) { assert(CI); } in CallSiteBase() function
67 CallSiteBase(InvokeTy *II) : I(II, false) { assert(II); } in CallSiteBase() function
68 explicit CallSiteBase(ValTy *II) { *this = get(II); } in CallSiteBase() function
74 static CallSiteBase get(ValTy *V) { in get()
77 return CallSiteBase(static_cast<CallTy*>(II)); in get()
79 return CallSiteBase(static_cast<InvokeTy*>(II)); in get()
81 return CallSiteBase(); in get()
666 class CallSite : public CallSiteBase<Function, BasicBlock, Value, User, Use,
[all …]
/external/swiftshader/third_party/LLVM/include/llvm/Support/
DCallSite.h47 class CallSiteBase {
51 CallSiteBase() : I(0, false) {} in CallSiteBase() function
52 CallSiteBase(CallTy *CI) : I(CI, true) { assert(CI); } in CallSiteBase() function
53 CallSiteBase(InvokeTy *II) : I(II, false) { assert(II); } in CallSiteBase() function
54 CallSiteBase(ValTy *II) { *this = get(II); } in CallSiteBase() function
61 static CallSiteBase get(ValTy *V) { in get()
64 return CallSiteBase(static_cast<CallTy*>(II)); in get()
66 return CallSiteBase(static_cast<InvokeTy*>(II)); in get()
68 return CallSiteBase(); in get()
266 class CallSite : public CallSiteBase<Function, Value, User, Instruction,
[all …]