Home
last modified time | relevance | path

Searched refs:IndirectCall (Results 1 – 5 of 5) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/ARM/
DARMSLSHardening.cpp255 MachineInstr &IndirectCall = *MBBI; in ConvertIndirectCallToIndirectJump() local
256 assert(isIndirectCall(IndirectCall) && !IndirectCall.isReturn()); in ConvertIndirectCallToIndirectJump()
259 switch (IndirectCall.getOpcode()) { in ConvertIndirectCallToIndirectJump()
274 Register Reg = IndirectCall.getOperand(RegOpIdxOnIndirectCall).getReg(); in ConvertIndirectCallToIndirectJump()
282 bool RegIsKilled = IndirectCall.getOperand(RegOpIdxOnIndirectCall).isKill(); in ConvertIndirectCallToIndirectJump()
284 DebugLoc DL = IndirectCall.getDebugLoc(); in ConvertIndirectCallToIndirectJump()
296 .addImm(IndirectCall.getOperand(0).getImm()) in ConvertIndirectCallToIndirectJump()
297 .addReg(IndirectCall.getOperand(1).getReg()) in ConvertIndirectCallToIndirectJump()
328 BL->copyImplicitOps(MF, IndirectCall); in ConvertIndirectCallToIndirectJump()
329 MF.moveCallSiteInfo(&IndirectCall, BL); in ConvertIndirectCallToIndirectJump()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
DSpeculateAnalyses.cpp27 bool IndirectCall = false) { in findBBwithCalls() argument
30 auto findCallInst = [&IndirectCall](const Instruction &I) { in findBBwithCalls()
32 return Call->isIndirectCall() ? IndirectCall : true; in findBBwithCalls()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/IR/
DPseudoProbe.h28 enum class PseudoProbeType { Block = 0, IndirectCall, DirectCall }; enumerator
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
DSampleProfileProbe.cpp353 : (uint32_t)PseudoProbeType::IndirectCall; in instrumentOneFunc()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
DCoroSplit.cpp1936 auto *IndirectCall = CallInst::Create(FnTy, DevirtFnAddr, Null, "", InsertPt); in prepareForSplit() local
1939 CG[&F]->addCalledFunction(IndirectCall, CG.getCallsExternalNode()); in prepareForSplit()