Home
last modified time | relevance | path

Searched refs:Memmove (Results 1 – 12 of 12) sorted by relevance

/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DAMDGPULowerIntrinsics.cpp86 auto *Memmove = cast<MemMoveInst>(Inst); in expandMemIntrinsicUses() local
87 if (shouldExpandOperationWithSize(Memmove->getLength())) { in expandMemIntrinsicUses()
88 expandMemMoveAsLoop(Memmove); in expandMemIntrinsicUses()
90 Memmove->eraseFromParent(); in expandMemIntrinsicUses()
/external/llvm-project/llvm/lib/Target/AMDGPU/
DAMDGPULowerIntrinsics.cpp94 auto *Memmove = cast<MemMoveInst>(Inst); in expandMemIntrinsicUses() local
95 if (shouldExpandOperationWithSize(Memmove->getLength())) { in expandMemIntrinsicUses()
96 expandMemMoveAsLoop(Memmove); in expandMemIntrinsicUses()
98 Memmove->eraseFromParent(); in expandMemIntrinsicUses()
/external/llvm/lib/Target/NVPTX/
DNVPTXLowerAggrCopies.cpp315 } else if (MemMoveInst *Memmove = dyn_cast<MemMoveInst>(MemCall)) { in runOnFunction() local
316 convertMemMoveToLoop(/* ConvertedInst */ Memmove, in runOnFunction()
317 /* SrcAddr */ Memmove->getRawSource(), in runOnFunction()
318 /* DstAddr */ Memmove->getRawDest(), in runOnFunction()
319 /* CopyLen */ Memmove->getLength(), in runOnFunction()
320 /* SrcIsVolatile */ Memmove->isVolatile(), in runOnFunction()
321 /* DstIsVolatile */ Memmove->isVolatile(), in runOnFunction()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DLowerMemIntrinsics.cpp433 void llvm::expandMemMoveAsLoop(MemMoveInst *Memmove) { in expandMemMoveAsLoop() argument
434 createMemMoveLoop(/* InsertBefore */ Memmove, in expandMemMoveAsLoop()
435 /* SrcAddr */ Memmove->getRawSource(), in expandMemMoveAsLoop()
436 /* DstAddr */ Memmove->getRawDest(), in expandMemMoveAsLoop()
437 /* CopyLen */ Memmove->getLength(), in expandMemMoveAsLoop()
438 /* SrcAlign */ Memmove->getSourceAlignment(), in expandMemMoveAsLoop()
439 /* DestAlign */ Memmove->getDestAlignment(), in expandMemMoveAsLoop()
440 /* SrcIsVolatile */ Memmove->isVolatile(), in expandMemMoveAsLoop()
441 /* DstIsVolatile */ Memmove->isVolatile()); in expandMemMoveAsLoop()
/external/llvm-project/llvm/lib/Transforms/Utils/
DLowerMemIntrinsics.cpp449 void llvm::expandMemMoveAsLoop(MemMoveInst *Memmove) { in expandMemMoveAsLoop() argument
450 createMemMoveLoop(/* InsertBefore */ Memmove, in expandMemMoveAsLoop()
451 /* SrcAddr */ Memmove->getRawSource(), in expandMemMoveAsLoop()
452 /* DstAddr */ Memmove->getRawDest(), in expandMemMoveAsLoop()
453 /* CopyLen */ Memmove->getLength(), in expandMemMoveAsLoop()
454 /* SrcAlign */ Memmove->getSourceAlign().valueOrOne(), in expandMemMoveAsLoop()
455 /* DestAlign */ Memmove->getDestAlign().valueOrOne(), in expandMemMoveAsLoop()
456 /* SrcIsVolatile */ Memmove->isVolatile(), in expandMemMoveAsLoop()
457 /* DstIsVolatile */ Memmove->isVolatile()); in expandMemMoveAsLoop()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/
DNVPTXLowerAggrCopies.cpp129 } else if (MemMoveInst *Memmove = dyn_cast<MemMoveInst>(MemCall)) { in runOnFunction() local
130 expandMemMoveAsLoop(Memmove); in runOnFunction()
/external/llvm-project/llvm/lib/Target/NVPTX/
DNVPTXLowerAggrCopies.cpp129 } else if (MemMoveInst *Memmove = dyn_cast<MemMoveInst>(MemCall)) { in runOnFunction() local
130 expandMemMoveAsLoop(Memmove); in runOnFunction()
/external/swiftshader/third_party/subzero/src/
DIceIntrinsics.h50 Memmove, enumerator
DIceTargetLoweringMIPS32.cpp776 case Intrinsics::Memmove: { in genTargetHelperCallFor()
5124 case Intrinsics::Memmove: { in lowerIntrinsic()
DIceTargetLoweringARM32.cpp773 case Intrinsics::Memmove: { in genTargetHelperCallFor()
5279 case Intrinsics::Memmove: { in lowerIntrinsic()
DIceTargetLoweringX86BaseImpl.h4414 case Intrinsics::Memmove: {
7609 case Intrinsics::Memmove:
/external/llvm-project/clang-tools-extra/clang-tidy/bugprone/
DNotNullTerminatedResultCheck.cpp759 auto Memmove = Match({"memmove", 0, 1, 2, false}); in registerMatchers() local
774 auto AnyOfMatchers = anyOf(Memcpy, Memcpy_s, Memmove, Memmove_s, StrncmpRHS, in registerMatchers()