/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
D | AMDGPULowerIntrinsics.cpp | 86 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/ |
D | AMDGPULowerIntrinsics.cpp | 94 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/ |
D | NVPTXLowerAggrCopies.cpp | 315 } 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/ |
D | LowerMemIntrinsics.cpp | 433 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/ |
D | LowerMemIntrinsics.cpp | 449 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/ |
D | NVPTXLowerAggrCopies.cpp | 129 } else if (MemMoveInst *Memmove = dyn_cast<MemMoveInst>(MemCall)) { in runOnFunction() local 130 expandMemMoveAsLoop(Memmove); in runOnFunction()
|
/external/llvm-project/llvm/lib/Target/NVPTX/ |
D | NVPTXLowerAggrCopies.cpp | 129 } else if (MemMoveInst *Memmove = dyn_cast<MemMoveInst>(MemCall)) { in runOnFunction() local 130 expandMemMoveAsLoop(Memmove); in runOnFunction()
|
/external/swiftshader/third_party/subzero/src/ |
D | IceIntrinsics.h | 50 Memmove, enumerator
|
D | IceTargetLoweringMIPS32.cpp | 776 case Intrinsics::Memmove: { in genTargetHelperCallFor() 5124 case Intrinsics::Memmove: { in lowerIntrinsic()
|
D | IceTargetLoweringARM32.cpp | 773 case Intrinsics::Memmove: { in genTargetHelperCallFor() 5279 case Intrinsics::Memmove: { in lowerIntrinsic()
|
D | IceTargetLoweringX86BaseImpl.h | 4414 case Intrinsics::Memmove: { 7609 case Intrinsics::Memmove:
|
/external/llvm-project/clang-tools-extra/clang-tidy/bugprone/ |
D | NotNullTerminatedResultCheck.cpp | 759 auto Memmove = Match({"memmove", 0, 1, 2, false}); in registerMatchers() local 774 auto AnyOfMatchers = anyOf(Memcpy, Memcpy_s, Memmove, Memmove_s, StrncmpRHS, in registerMatchers()
|