Home
last modified time | relevance | path

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

12345678910>>...26

/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Transforms/Utils/
DSimplifyLibCalls.h25 class CallInst; variable
52 Value *optimizeCall(CallInst *CI);
55 Value *optimizeMemCpyChk(CallInst *CI, IRBuilder<> &B);
56 Value *optimizeMemMoveChk(CallInst *CI, IRBuilder<> &B);
57 Value *optimizeMemSetChk(CallInst *CI, IRBuilder<> &B);
60 Value *optimizeStrpCpyChk(CallInst *CI, IRBuilder<> &B, LibFunc Func);
61 Value *optimizeStrpNCpyChk(CallInst *CI, IRBuilder<> &B, LibFunc Func);
65 bool isFortifiedCallFoldable(CallInst *CI, unsigned ObjSizeOp,
103 Value *optimizeCall(CallInst *CI);
107 Value *optimizeStrCat(CallInst *CI, IRBuilder<> &B);
[all …]
/external/llvm/include/llvm/Transforms/Utils/
DSimplifyLibCalls.h25 class CallInst; variable
51 Value *optimizeCall(CallInst *CI);
54 Value *optimizeMemCpyChk(CallInst *CI, IRBuilder<> &B);
55 Value *optimizeMemMoveChk(CallInst *CI, IRBuilder<> &B);
56 Value *optimizeMemSetChk(CallInst *CI, IRBuilder<> &B);
59 Value *optimizeStrpCpyChk(CallInst *CI, IRBuilder<> &B, LibFunc::Func Func);
60 Value *optimizeStrpNCpyChk(CallInst *CI, IRBuilder<> &B, LibFunc::Func Func);
64 bool isFortifiedCallFoldable(CallInst *CI, unsigned ObjSizeOp,
100 Value *optimizeCall(CallInst *CI);
104 Value *optimizeStrCat(CallInst *CI, IRBuilder<> &B);
[all …]
/external/swiftshader/third_party/LLVM/lib/Analysis/
DMemoryBuiltins.cpp33 static bool isMallocCall(const CallInst *CI) { in isMallocCall()
60 const CallInst *llvm::extractMallocCall(const Value *I) { in extractMallocCall()
61 const CallInst *CI = dyn_cast<CallInst>(I); in extractMallocCall()
65 CallInst *llvm::extractMallocCall(Value *I) { in extractMallocCall()
66 CallInst *CI = dyn_cast<CallInst>(I); in extractMallocCall()
74 return isMallocCall(dyn_cast<CallInst>(BCI->getOperand(0))); in isBitCastOfMallocCall()
79 CallInst *llvm::extractMallocCallFromBitCast(Value *I) { in extractMallocCallFromBitCast()
81 return (isBitCastOfMallocCall(BCI)) ? cast<CallInst>(BCI->getOperand(0)) in extractMallocCallFromBitCast()
85 const CallInst *llvm::extractMallocCallFromBitCast(const Value *I) { in extractMallocCallFromBitCast()
87 return (isBitCastOfMallocCall(BCI)) ? cast<CallInst>(BCI->getOperand(0)) in extractMallocCallFromBitCast()
[all …]
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/
DMemoryBuiltins.h19 class CallInst; variable
36 const CallInst *extractMallocCall(const Value *I);
37 CallInst *extractMallocCall(Value *I);
41 const CallInst *extractMallocCallFromBitCast(const Value *I);
42 CallInst *extractMallocCallFromBitCast(Value *I);
47 const CallInst *isArrayMalloc(const Value *I, const TargetData *TD);
54 PointerType *getMallocType(const CallInst *CI);
61 Type *getMallocAllocatedType(const CallInst *CI);
68 Value *getMallocArraySize(CallInst *CI, const TargetData *TD,
76 const CallInst *isFreeCall(const Value *I);
[all …]
/external/spirv-llvm/lib/SPIRV/
DOCL20ToSPIRV.cpp84 virtual void visitCallInst(CallInst &CI);
94 void visitCallBarrier(CallInst *CI);
98 bool eraseUselessConvert(CallInst *Call, const std::string &MangledName,
103 void visitCallConvert(CallInst *CI, StringRef MangledName,
111 void visitCallAsyncWorkGroupCopy(CallInst *CI,
115 void transBuiltin(CallInst *CI, OCLBuiltinTransInfo &Info);
123 void transMemoryBarrier(CallInst *CI, AtomicWorkItemFenceLiterals);
127 void visitCallAllAny(spv::Op OC, CallInst *CI);
132 void transAtomicBuiltin(CallInst *CI, OCLBuiltinTransInfo &Info);
137 void visitCallAtomicWorkItemFence(CallInst *CI);
[all …]
DOCL21ToSPIRV.cpp67 virtual void visitCallInst(CallInst &CI);
73 void visitCallConvert(CallInst *CI, StringRef MangledName, Op OC);
80 void visitCallDecorate(CallInst *CI, StringRef MangledName);
85 void visitCallSubGroupBarrier(CallInst *CI);
90 void transBuiltin(CallInst *CI, Op OC);
142 OCL21ToSPIRV::visitCallInst(CallInst& CI) { in visitCallInst()
179 void OCL21ToSPIRV::visitCallConvert(CallInst* CI, in visitCallConvert()
182 mutateCallInstSPIRV(M, CI, [=](CallInst *, std::vector<Value *> &Args){ in visitCallConvert() argument
192 void OCL21ToSPIRV::visitCallDecorate(CallInst* CI, in visitCallDecorate()
194 auto Target = cast<CallInst>(CI->getArgOperand(0)); in visitCallDecorate()
[all …]
DSPIRVToOCL20.cpp73 void visitCallInst(CallInst &CI);
85 void visitCallSPRIVImageQuerySize(CallInst *CI);
90 void visitCallSPIRVAtomicBuiltin(CallInst *CI, Op OC);
107 void visitCallSPIRVGroupBuiltin(CallInst *CI, Op OC);
112 void visitCallSPIRVMemoryBarrier(CallInst *CI);
115 void visitCallSPIRVPipeBuiltin(CallInst *CI, Op OC);
119 void visitCallSPIRVBuiltin(CallInst *CI, Op OC);
128 std::string getGroupBuiltinPrefix(CallInst *CI);
159 SPIRVToOCL20::visitCallInst(CallInst& CI) { in visitCallInst()
199 void SPIRVToOCL20::visitCallSPIRVMemoryBarrier(CallInst* CI) { in visitCallSPIRVMemoryBarrier()
[all …]
DSPIRVInternal.h522 void removeFnAttr(LLVMContext *Context, CallInst *Call,
524 void addFnAttr(LLVMContext *Context, CallInst *Call,
550 std::vector<Value *> getArguments(CallInst* CI, unsigned Start = 0,
555 uint64_t getArgAsInt(CallInst *CI, unsigned I);
560 T getArgAs(CallInst *CI, unsigned I){ in getArgAs()
566 Scope getArgAsScope(CallInst *CI, unsigned I);
570 Decoration getArgAsDecoration(CallInst *CI, unsigned I);
642 CallInst *mutateCallInst(Module *M, CallInst *CI,
643 std::function<std::string (CallInst *, std::vector<Value *> &)>ArgMutate,
652 Instruction *mutateCallInst(Module *M, CallInst *CI,
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/
DLibCallsShrinkWrap.cpp78 void visitCallInst(CallInst &CI) { checkCandidate(CI); } in visitCallInst()
93 bool perform(CallInst *CI);
94 void checkCandidate(CallInst &CI);
95 void shrinkWrapCI(CallInst *CI, Value *Cond);
96 bool performCallDomainErrorOnly(CallInst *CI, const LibFunc &Func);
97 bool performCallErrors(CallInst *CI, const LibFunc &Func);
98 bool performCallRangeErrorOnly(CallInst *CI, const LibFunc &Func);
99 Value *generateOneRangeCond(CallInst *CI, const LibFunc &Func);
100 Value *generateTwoRangeCond(CallInst *CI, const LibFunc &Func);
101 Value *generateCondForPow(CallInst *CI, const LibFunc &Func);
[all …]
DSimplifyLibCalls.cpp56 static bool isCallingConvCCompatible(CallInst *CI) { in isCallingConvCCompatible()
100 static bool callHasFloatingPointArgument(const CallInst *CI) { in callHasFloatingPointArgument()
106 static Value *convertStrToNumber(CallInst *CI, StringRef &Str, int64_t Base) { in convertStrToNumber()
131 static bool isLocallyOpenedFile(Value *File, CallInst *CI, IRBuilder<> &B, in isLocallyOpenedFile()
133 CallInst *FOpen = dyn_cast<CallInst>(File); in isLocallyOpenedFile()
157 Value *LibCallSimplifier::optimizeStrCat(CallInst *CI, IRBuilder<> &B) { in optimizeStrCat()
195 Value *LibCallSimplifier::optimizeStrNCat(CallInst *CI, IRBuilder<> &B) { in optimizeStrNCat()
228 Value *LibCallSimplifier::optimizeStrChr(CallInst *CI, IRBuilder<> &B) { in optimizeStrChr()
268 Value *LibCallSimplifier::optimizeStrRChr(CallInst *CI, IRBuilder<> &B) { in optimizeStrRChr()
295 Value *LibCallSimplifier::optimizeStrCmp(CallInst *CI, IRBuilder<> &B) { in optimizeStrCmp()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
DIRBuilder.cpp74 static CallInst *createCallHelper(Value *Callee, ArrayRef<Value *> Ops, in createCallHelper()
78 CallInst *CI = CallInst::Create(Callee, Ops, Name); in createCallHelper()
99 CallInst *IRBuilderBase::
109 CallInst *CI = createCallHelper(TheFn, Ops, this); in CreateMemSet()
127 CallInst *IRBuilderBase::CreateElementUnorderedAtomicMemSet( in CreateElementUnorderedAtomicMemSet()
140 CallInst *CI = createCallHelper(TheFn, Ops, this); in CreateElementUnorderedAtomicMemSet()
157 CallInst *IRBuilderBase::
171 CallInst *CI = createCallHelper(TheFn, Ops, this); in CreateMemCpy()
196 CallInst *IRBuilderBase::CreateElementUnorderedAtomicMemCpy( in CreateElementUnorderedAtomicMemCpy()
213 CallInst *CI = createCallHelper(TheFn, Ops, this); in CreateElementUnorderedAtomicMemCpy()
[all …]
/external/llvm/include/llvm/Analysis/
DMemoryBuiltins.h28 class CallInst; variable
74 const CallInst *extractMallocCall(const Value *I, const TargetLibraryInfo *TLI);
75 static inline CallInst *extractMallocCall(Value *I, in extractMallocCall()
77 return const_cast<CallInst*>(extractMallocCall((const Value*)I, TLI)); in extractMallocCall()
85 PointerType *getMallocType(const CallInst *CI, const TargetLibraryInfo *TLI);
92 Type *getMallocAllocatedType(const CallInst *CI, const TargetLibraryInfo *TLI);
99 Value *getMallocArraySize(CallInst *CI, const DataLayout &DL,
109 const CallInst *extractCallocCall(const Value *I, const TargetLibraryInfo *TLI);
110 static inline CallInst *extractCallocCall(Value *I, in extractCallocCall()
112 return const_cast<CallInst*>(extractCallocCall((const Value*)I, TLI)); in extractCallocCall()
[all …]
/external/swiftshader/third_party/LLVM/lib/VMCore/
DAutoUpgrade.cpp171 void llvm::UpgradeIntrinsicCall(CallInst *CI, Function *NewFn) { in UpgradeIntrinsicCall()
316 CallInst *NewCI = CallInst::Create(NewFn, Operands, in UpgradeIntrinsicCall()
348 CallInst *AdjustCall = Builder.CreateCall(AdjustTrampolineFn, in UpgradeIntrinsicCall()
372 if (CallInst *CI = dyn_cast<CallInst>(*UI++)) in UpgradeCallsToIntrinsic()
387 cast<CallInst>(FuncStart->use_back())->eraseFromParent(); in CheckDebugInfoIntrinsics()
393 cast<CallInst>(StopPoint->use_back())->eraseFromParent(); in CheckDebugInfoIntrinsics()
399 cast<CallInst>(RegionStart->use_back())->eraseFromParent(); in CheckDebugInfoIntrinsics()
405 cast<CallInst>(RegionEnd->use_back())->eraseFromParent(); in CheckDebugInfoIntrinsics()
415 CallInst *CI = cast<CallInst>(Declare->use_back()); in CheckDebugInfoIntrinsics()
426 static void FindExnAndSelIntrinsics(BasicBlock *BB, CallInst *&Exn, in FindExnAndSelIntrinsics()
[all …]
DIRBuilder.cpp55 static CallInst *createCallHelper(Value *Callee, ArrayRef<Value *> Ops, in createCallHelper()
57 CallInst *CI = CallInst::Create(Callee, Ops, ""); in createCallHelper()
63 CallInst *IRBuilderBase::
72 CallInst *CI = createCallHelper(TheFn, Ops, this); in CreateMemSet()
81 CallInst *IRBuilderBase::
92 CallInst *CI = createCallHelper(TheFn, Ops, this); in CreateMemCpy()
101 CallInst *IRBuilderBase::
112 CallInst *CI = createCallHelper(TheFn, Ops, this); in CreateMemMove()
121 CallInst *IRBuilderBase::CreateLifetimeStart(Value *Ptr, ConstantInt *Size) { in CreateLifetimeStart()
136 CallInst *IRBuilderBase::CreateLifetimeEnd(Value *Ptr, ConstantInt *Size) { in CreateLifetimeEnd()
DInstruction.cpp209 if (const CallInst *CI = dyn_cast<CallInst>(this)) in isIdenticalToWhenDefined()
210 return CI->isTailCall() == cast<CallInst>(I)->isTailCall() && in isIdenticalToWhenDefined()
211 CI->getCallingConv() == cast<CallInst>(I)->getCallingConv() && in isIdenticalToWhenDefined()
212 CI->getAttributes() == cast<CallInst>(I)->getAttributes(); in isIdenticalToWhenDefined()
264 if (const CallInst *CI = dyn_cast<CallInst>(this)) in isSameOperationAs()
265 return CI->isTailCall() == cast<CallInst>(I)->isTailCall() && in isSameOperationAs()
266 CI->getCallingConv() == cast<CallInst>(I)->getCallingConv() && in isSameOperationAs()
267 CI->getAttributes() == cast<CallInst>(I)->getAttributes(); in isSameOperationAs()
325 return !cast<CallInst>(this)->doesNotAccessMemory(); in mayReadFromMemory()
345 return !cast<CallInst>(this)->onlyReadsMemory(); in mayWriteToMemory()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
DMemoryBuiltins.h33 class CallInst; variable
94 const CallInst *extractMallocCall(const Value *I, const TargetLibraryInfo *TLI);
95 inline CallInst *extractMallocCall(Value *I, const TargetLibraryInfo *TLI) { in extractMallocCall()
96 return const_cast<CallInst*>(extractMallocCall((const Value*)I, TLI)); in extractMallocCall()
104 PointerType *getMallocType(const CallInst *CI, const TargetLibraryInfo *TLI);
111 Type *getMallocAllocatedType(const CallInst *CI, const TargetLibraryInfo *TLI);
118 Value *getMallocArraySize(CallInst *CI, const DataLayout &DL,
128 const CallInst *extractCallocCall(const Value *I, const TargetLibraryInfo *TLI);
129 inline CallInst *extractCallocCall(Value *I, const TargetLibraryInfo *TLI) { in extractCallocCall()
130 return const_cast<CallInst*>(extractCallocCall((const Value*)I, TLI)); in extractCallocCall()
[all …]
/external/llvm/lib/Transforms/Utils/
DSimplifyLibCalls.cpp85 static bool callHasFloatingPointArgument(const CallInst *CI) { in callHasFloatingPointArgument()
110 Value *LibCallSimplifier::optimizeStrCat(CallInst *CI, IRBuilder<> &B) { in optimizeStrCat()
149 Value *LibCallSimplifier::optimizeStrNCat(CallInst *CI, IRBuilder<> &B) { in optimizeStrNCat()
182 Value *LibCallSimplifier::optimizeStrChr(CallInst *CI, IRBuilder<> &B) { in optimizeStrChr()
222 Value *LibCallSimplifier::optimizeStrRChr(CallInst *CI, IRBuilder<> &B) { in optimizeStrRChr()
249 Value *LibCallSimplifier::optimizeStrCmp(CallInst *CI, IRBuilder<> &B) { in optimizeStrCmp()
282 Value *LibCallSimplifier::optimizeStrNCmp(CallInst *CI, IRBuilder<> &B) { in optimizeStrNCmp()
321 Value *LibCallSimplifier::optimizeStrCpy(CallInst *CI, IRBuilder<> &B) { in optimizeStrCpy()
338 Value *LibCallSimplifier::optimizeStpCpy(CallInst *CI, IRBuilder<> &B) { in optimizeStpCpy()
362 Value *LibCallSimplifier::optimizeStrNCpy(CallInst *CI, IRBuilder<> &B) { in optimizeStrNCpy()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/
DAMDGPULibCalls.cpp79 bool replaceWithNative(CallInst *CI, const FuncInfo &FInfo);
84 bool TDOFold(CallInst *CI, const FuncInfo &FInfo);
89 bool fold_recip(CallInst *CI, IRBuilder<> &B, const FuncInfo &FInfo);
92 bool fold_divide(CallInst *CI, IRBuilder<> &B, const FuncInfo &FInfo);
95 bool fold_pow(CallInst *CI, IRBuilder<> &B, const FuncInfo &FInfo);
98 bool fold_rootn(CallInst *CI, IRBuilder<> &B, const FuncInfo &FInfo);
101 bool fold_fma_mad(CallInst *CI, IRBuilder<> &B, const FuncInfo &FInfo);
104 bool sincosUseNative(CallInst *aCI, const FuncInfo &FInfo);
109 bool evaluateCall(CallInst *aCI, FuncInfo &FInfo);
112 bool fold_exp(CallInst *CI, IRBuilder<> &B, const FuncInfo &FInfo);
[all …]
/external/llvm/lib/IR/
DIRBuilder.cpp59 static CallInst *createCallHelper(Value *Callee, ArrayRef<Value *> Ops, in createCallHelper()
62 CallInst *CI = CallInst::Create(Callee, Ops, Name); in createCallHelper()
81 CallInst *IRBuilderBase::
91 CallInst *CI = createCallHelper(TheFn, Ops, this); in CreateMemSet()
106 CallInst *IRBuilderBase::
118 CallInst *CI = createCallHelper(TheFn, Ops, this); in CreateMemCpy()
137 CallInst *IRBuilderBase::
149 CallInst *CI = createCallHelper(TheFn, Ops, this); in CreateMemMove()
164 CallInst *IRBuilderBase::CreateLifetimeStart(Value *Ptr, ConstantInt *Size) { in CreateLifetimeStart()
179 CallInst *IRBuilderBase::CreateLifetimeEnd(Value *Ptr, ConstantInt *Size) { in CreateLifetimeEnd()
[all …]
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
DTailRecursionElimination.cpp90 CallInst *FindTRECandidate(Instruction *I,
92 bool EliminateRecursiveTailCall(CallInst *CI, ReturnInst *Ret,
106 bool CanMoveAboveCall(Instruction *I, CallInst *CI);
107 Value *CanTransformAccumulatorRecursion(Instruction *I, CallInst *CI);
219 if (CallInst *CI = dyn_cast<CallInst>(I)) { in runOnFunction()
232 bool TailCallElim::CanMoveAboveCall(Instruction *I, CallInst *CI) { in CanMoveAboveCall()
270 static bool isDynamicConstant(Value *V, CallInst *CI, ReturnInst *RI) { in isDynamicConstant()
305 static Value *getCommonReturnValue(ReturnInst *IgnoreRI, CallInst *CI) { in getCommonReturnValue()
333 CallInst *CI) { in CanTransformAccumulatorRecursion()
359 CallInst*
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/ObjCARC/
DObjCARCOpts.cpp96 cast<CallInst>(Arg)->getArgOperand(0)); in FindSingleUseIdentifiedObject()
635 cast<CallInst>(RetainRV)->setCalledFunction(NewDecl); in OptimizeRetainRVCall()
682 CallInst *AutoreleaseRVCI = cast<CallInst>(AutoreleaseRV); in OptimizeAutoreleaseRVCall()
693 CloneCallInstForBB(CallInst &CI, BasicBlock &BB, in CloneCallInstForBB()
712 return CallInst::Create(&CI, OpBundles); in CloneCallInstForBB()
760 CallInst *CI = cast<CallInst>(Inst); in OptimizeIndividualCalls()
780 CallInst *CI = cast<CallInst>(Inst); in OptimizeIndividualCalls()
812 CallInst *Call = cast<CallInst>(Inst); in OptimizeIndividualCalls()
823 CallInst *NewCall = CallInst::Create(Decl, Call->getArgOperand(0), "", in OptimizeIndividualCalls()
847 cast<CallInst>(Inst)->setTailCall(); in OptimizeIndividualCalls()
[all …]
/external/llvm/lib/Transforms/Scalar/
DLowerExpectIntrinsic.cpp57 CallInst *CI = dyn_cast<CallInst>(SI.getCondition()); in handleSwitchExpect()
99 CallInst *CI; in handleBranchExpect()
103 CI = dyn_cast<CallInst>(BI.getCondition()); in handleBranchExpect()
107 CI = dyn_cast<CallInst>(CmpI->getOperand(0)); in handleBranchExpect()
156 CallInst *CI = dyn_cast<CallInst>(BI++); in lowerExpectIntrinsic()
/external/swiftshader/third_party/LLVM/lib/CodeGen/
DSjLjEHPrepare.cpp214 CallInst::Create(CallSiteFn, CallSiteNoC, "", II); in markInvokeCallSite()
437 SmallVector<CallInst*,16> EH_Selectors; in insertSjLjEHSupport()
438 SmallVector<CallInst*,16> EH_Exceptions; in insertSjLjEHSupport()
459 if (CallInst *CI = dyn_cast<CallInst>(I)) { in insertSjLjEHSupport()
538 CallInst *I = EH_Selectors[i]; in insertSjLjEHSupport()
547 CallInst *I = EH_Exceptions[i]; in insertSjLjEHSupport()
576 CallInst::Create(Intrinsic::getDeclaration(F.getParent(), Intrinsic::trap), in insertSjLjEHSupport()
600 Value *LSDA = CallInst::Create(LSDAAddrFn, "lsda_addr", in insertSjLjEHSupport()
621 Value *Val = CallInst::Create(FrameAddrFn, in insertSjLjEHSupport()
633 Val = CallInst::Create(StackAddrFn, "sp", EntryBB->getTerminator()); in insertSjLjEHSupport()
[all …]
/external/llvm/lib/Transforms/ObjCARC/
DObjCARCOpts.cpp64 cast<CallInst>(Arg)->getArgOperand(0)); in FindSingleUseIdentifiedObject()
633 cast<CallInst>(RetainRV)->setCalledFunction(NewDecl); in OptimizeRetainRVCall()
667 CallInst *AutoreleaseRVCI = cast<CallInst>(AutoreleaseRV); in OptimizeAutoreleaseRVCall()
716 CallInst *CI = cast<CallInst>(Inst); in OptimizeIndividualCalls()
734 CallInst *CI = cast<CallInst>(Inst); in OptimizeIndividualCalls()
764 CallInst *Call = cast<CallInst>(Inst); in OptimizeIndividualCalls()
775 CallInst *NewCall = CallInst::Create(Decl, Call->getArgOperand(0), "", in OptimizeIndividualCalls()
796 cast<CallInst>(Inst)->setTailCall(); in OptimizeIndividualCalls()
805 cast<CallInst>(Inst)->setTailCall(false); in OptimizeIndividualCalls()
813 cast<CallInst>(Inst)->setDoesNotThrow(); in OptimizeIndividualCalls()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.h49 class CallInst; variable
803 void LowerDeoptimizeCall(const CallInst *CI);
908 void visitMaskedLoad(const CallInst &I, bool IsExpanding = false);
909 void visitMaskedStore(const CallInst &I, bool IsCompressing = false);
910 void visitMaskedGather(const CallInst &I);
911 void visitMaskedScatter(const CallInst &I);
916 void visitCall(const CallInst &I);
917 bool visitMemCmpCall(const CallInst &I);
918 bool visitMemPCpyCall(const CallInst &I);
919 bool visitMemChrCall(const CallInst &I);
[all …]

12345678910>>...26