Lines Matching refs:AtomicMemcpy
605 void llvm::expandAtomicMemCpyAsLoop(AtomicMemCpyInst *AtomicMemcpy, in expandAtomicMemCpyAsLoop() argument
608 if (ConstantInt *CI = dyn_cast<ConstantInt>(AtomicMemcpy->getLength())) { in expandAtomicMemCpyAsLoop()
610 /* InsertBefore */ AtomicMemcpy, in expandAtomicMemCpyAsLoop()
611 /* SrcAddr */ AtomicMemcpy->getRawSource(), in expandAtomicMemCpyAsLoop()
612 /* DstAddr */ AtomicMemcpy->getRawDest(), in expandAtomicMemCpyAsLoop()
614 /* SrcAlign */ AtomicMemcpy->getSourceAlign().valueOrOne(), in expandAtomicMemCpyAsLoop()
615 /* DestAlign */ AtomicMemcpy->getDestAlign().valueOrOne(), in expandAtomicMemCpyAsLoop()
616 /* SrcIsVolatile */ AtomicMemcpy->isVolatile(), in expandAtomicMemCpyAsLoop()
617 /* DstIsVolatile */ AtomicMemcpy->isVolatile(), in expandAtomicMemCpyAsLoop()
620 /* AtomicCpySize */ AtomicMemcpy->getElementSizeInBytes()); in expandAtomicMemCpyAsLoop()
623 /* InsertBefore */ AtomicMemcpy, in expandAtomicMemCpyAsLoop()
624 /* SrcAddr */ AtomicMemcpy->getRawSource(), in expandAtomicMemCpyAsLoop()
625 /* DstAddr */ AtomicMemcpy->getRawDest(), in expandAtomicMemCpyAsLoop()
626 /* CopyLen */ AtomicMemcpy->getLength(), in expandAtomicMemCpyAsLoop()
627 /* SrcAlign */ AtomicMemcpy->getSourceAlign().valueOrOne(), in expandAtomicMemCpyAsLoop()
628 /* DestAlign */ AtomicMemcpy->getDestAlign().valueOrOne(), in expandAtomicMemCpyAsLoop()
629 /* SrcIsVolatile */ AtomicMemcpy->isVolatile(), in expandAtomicMemCpyAsLoop()
630 /* DstIsVolatile */ AtomicMemcpy->isVolatile(), in expandAtomicMemCpyAsLoop()
633 /* AtomicCpySize */ AtomicMemcpy->getElementSizeInBytes()); in expandAtomicMemCpyAsLoop()