Home
last modified time | relevance | path

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

/frameworks/rs/rsov/compiler/
DRSAllocationUtils.h26 class CallInst; variable
51 llvm::CallInst *FCall;
DRSAllocationUtils.cpp110 if (auto *FCall = dyn_cast<CallInst>(U)) { in getRSAllocAccesses()
DGlobalMergePass.cpp205 CallInst::Create(Func, {}, "", &EntryBlk.front()); in CreateInitFunction()
/frameworks/compile/libbcc/lib/
DRSInvokeHelperPass.cpp121 bool insertSetObjectHelper(llvm::CallInst *Call, llvm::Value *V, enum RsDataType DT) { in insertSetObjectHelper()
156 llvm::CallInst::Create(SetObj, SetObjParams, "", Call); in insertSetObjectHelper()
198 if (llvm::CallInst *call = llvm::dyn_cast<llvm::CallInst>(&Inst)) { in runOnFunction()
DRSX86CallConvPass.cpp147 llvm::CallInst *CI = llvm::cast<llvm::CallInst>(CS.getInstruction()); in ReplaceCallInsn()
149 auto NewCI = llvm::CallInst::Create(NewFn, Args, "", CI); in ReplaceCallInsn()
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/
DBitcodeReader.cpp49 void FindExnAndSelIntrinsics(BasicBlock *BB, CallInst *&Exn, in FindExnAndSelIntrinsics()
50 CallInst *&Sel, in FindExnAndSelIntrinsics()
56 if (CallInst *CI = dyn_cast<CallInst>(I)) { in FindExnAndSelIntrinsics()
86 CallInst *EHSel) { in TransferClausesToLandingPadInst()
169 CallInst *Exn = 0; in UpgradeExceptionHandling()
170 CallInst *Sel = 0; in UpgradeExceptionHandling()
188 CallInst *Exn = cast<CallInst>(EHIntrinsics.first); in UpgradeExceptionHandling()
189 CallInst *Sel = cast<CallInst>(EHIntrinsics.second); in UpgradeExceptionHandling()
245 CallInst *Exn = cast<CallInst>(EHIntrinsics.first); in UpgradeExceptionHandling()
246 CallInst *Sel = cast<CallInst>(EHIntrinsics.second); in UpgradeExceptionHandling()
[all …]
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
DBitcodeReader.cpp58 cast<CallInst>(*FuncStart->use_begin())->eraseFromParent(); in StripDebugInfoOfFunction()
79 CallInst *CI = cast<CallInst>(*Declare->use_begin()); in CheckDebugInfoIntrinsics()
3103 I = CallInst::CreateMalloc(CurBB, Int32Ty, Ty->getElementType(), in ParseFunctionBody()
3117 I = CallInst::CreateFree(Op, CurBB); in ParseFunctionBody()
3223 I = CallInst::Create(Callee, Args); in ParseFunctionBody()
3225 cast<CallInst>(I)->setCallingConv( in ParseFunctionBody()
3227 cast<CallInst>(I)->setTailCall(CCInfo & 1); in ParseFunctionBody()
3228 cast<CallInst>(I)->setAttributes(PAL); in ParseFunctionBody()
3344 if (CallInst* CI = dyn_cast<CallInst>(*UI++)) in materialize()
3396 if (CallInst* CI = dyn_cast<CallInst>(*UI++)) in materializeModule()
/frameworks/compile/slang/BitWriter_2_9/
DValueEnumerator.cpp101 if (const CallInst *CI = dyn_cast<CallInst>(&I)) in ValueEnumerator()
DBitcodeWriter.cpp1261 const CallInst &CI = cast<CallInst>(I); in WriteInstruction()
/frameworks/compile/slang/BitWriter_3_2/
DValueEnumerator.cpp101 if (const CallInst *CI = dyn_cast<CallInst>(&I)) in ValueEnumerator()
DBitcodeWriter.cpp1357 const CallInst &CI = cast<CallInst>(I); in WriteInstruction()
/frameworks/compile/slang/BitWriter_2_9_func/
DValueEnumerator.cpp101 if (const CallInst *CI = dyn_cast<CallInst>(&I)) in ValueEnumerator()
DBitcodeWriter.cpp1323 const CallInst &CI = cast<CallInst>(I); in WriteInstruction()
/frameworks/compile/slang/
Dslang_backend.cpp1026 llvm::CallInst *CI = IB->CreateCall(F, Params); in dumpExportFunctionInfo()