Home
last modified time | relevance | path

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

/aosp_15_r20/external/llvm/include/llvm/IR/
H A DCallSite.h53 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
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
H A DCallSite.h63 CallSiteBase(CallTy *CI) : I(CI, 1) { assert(CI); } in CallSiteBase() function
64 CallSiteBase(InvokeTy *II) : I(II, 0) { assert(II); } in CallSiteBase() function
65 CallSiteBase(CallBrTy *CBI) : I(CBI, 2) { assert(CBI); } in CallSiteBase() function
66 explicit CallSiteBase(ValTy *II) { *this = get(II); } in CallSiteBase() function