Home
last modified time | relevance | path

Searched refs:CreateMemSet (Results 1 – 11 of 11) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DMemCpyOptimizer.cpp395 AMemSet = Builder.CreateMemSet(StartPtr, ByteVal, Range.End - Range.Start, in INITIALIZE_PASS_DEPENDENCY()
682 Builder.CreateMemSet(SI->getPointerOperand(), ByteVal, Size, MA); in processStore()
1049 Builder.CreateMemSet( in processMemSetMemCpyDependence()
1120 Builder.CreateMemSet(MemCpy->getRawDest(), MemSet->getOperand(1), CopySize, in performMemCpyToMemSetOptzn()
1147 Builder.CreateMemSet(M->getRawDest(), ByteVal, M->getLength(), in processMemCpy()
DInferAddressSpaces.cpp794 B.CreateMemSet(NewV, MSI->getValue(), MSI->getLength(), in handleMemIntrinsicPtrUse()
DLoopIdiomRecognize.cpp949 NewCall = Builder.CreateMemSet(BasePtr, SplatValue, NumBytes, in processLoopStridedStore()
DSROA.cpp2803 CallInst *New = IRB.CreateMemSet( in visitMemSetInst()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/
DMemorySanitizer.cpp1630 EntryIRB.CreateMemSet( in getShadow()
3504 IRB.CreateMemSet(ShadowBase, PoisonValue, Len, in poisonAllocaUserspace()
3965 IRB.CreateMemSet(ShadowPtr, Constant::getNullValue(IRB.getInt8Ty()), in unpoisonVAListTagForInst()
4117 IRB.CreateMemSet(ShadowPtr, Constant::getNullValue(IRB.getInt8Ty()), in visitVAStartInst()
4129 IRB.CreateMemSet(ShadowPtr, Constant::getNullValue(IRB.getInt8Ty()), in visitVACopyInst()
4287 IRB.CreateMemSet(ShadowPtr, Constant::getNullValue(IRB.getInt8Ty()), in visitVAStartInst()
4299 IRB.CreateMemSet(ShadowPtr, Constant::getNullValue(IRB.getInt8Ty()), in visitVACopyInst()
4557 IRB.CreateMemSet(ShadowPtr, Constant::getNullValue(IRB.getInt8Ty()), in visitVAStartInst()
4570 IRB.CreateMemSet(ShadowPtr, Constant::getNullValue(IRB.getInt8Ty()), in visitVACopyInst()
DHWAddressSanitizer.cpp792 IRB.CreateMemSet(ShadowPtr, JustTag, ShadowSize, Align::None()); in tagAlloca()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DAMDGPUPromoteAlloca.cpp903 Builder.CreateMemSet( in handleAlloca()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DIRBuilder.cpp99 CallInst *IRBuilderBase::CreateMemSet(Value *Ptr, Value *Val, Value *Size, in CreateMemSet() function in IRBuilderBase
DCore.cpp3445 return wrap(unwrap(B)->CreateMemSet(unwrap(Ptr), unwrap(Val), unwrap(Len), in LLVMBuildMemSet()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DSimplifyLibCalls.cpp629 CallInst *NewCI = B.CreateMemSet(Dst, B.getInt8('\0'), Size, Align::None()); in optimizeStrNCpy()
1244 B.CreateMemSet(CI->getArgOperand(0), Val, Size, Align::None()); in optimizeMemSet()
3312 CallInst *NewCI = B.CreateMemSet(CI->getArgOperand(0), Val, in optimizeMemSetChk()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DIRBuilder.h452 CallInst *CreateMemSet(Value *Ptr, Value *Val, uint64_t Size,
456 return CreateMemSet(Ptr, Val, getInt64(Size), Align, isVolatile,
460 CallInst *CreateMemSet(Value *Ptr, Value *Val, Value *Size, MaybeAlign Align,