Home
last modified time | relevance | path

Searched refs:ByteVal (Results 1 – 5 of 5) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-mc/
H A DDisassembler.cpp113 unsigned ByteVal; in ByteArrayFromString() local
114 if (Value.getAsInteger(0, ByteVal) || ByteVal > 255) { in ByteArrayFromString()
124 ByteArray.first.push_back(ByteVal); in ByteArrayFromString()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZSelectionDAGInfo.cpp65 SDValue Dst, uint64_t ByteVal, uint64_t Size, in memsetStore() argument
67 uint64_t StoreVal = ByteVal; in memsetStore()
69 StoreVal |= ByteVal << (I * 8); in memsetStore()
94 uint64_t ByteVal = CByte->getZExtValue(); in EmitTargetCodeForMemset() local
95 if (ByteVal == 0 || ByteVal == 255 ? in EmitTargetCodeForMemset()
100 SDValue Chain1 = memsetStore(DAG, DL, Chain, Dst, ByteVal, Size1, in EmitTargetCodeForMemset()
108 DAG, DL, Chain, Dst, ByteVal, Size2, in EmitTargetCodeForMemset()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp371 Value *ByteVal) { in tryMergingIntoMemset() argument
440 if (isa<UndefValue>(ByteVal) && StoredByte) in tryMergingIntoMemset()
441 ByteVal = StoredByte; in tryMergingIntoMemset()
442 if (ByteVal != StoredByte) in tryMergingIntoMemset()
455 if (MSI->isVolatile() || ByteVal != MSI->getValue() || in tryMergingIntoMemset()
497 AMemSet = Builder.CreateMemSet(StartPtr, ByteVal, Range.End - Range.Start, in tryMergingIntoMemset()
815 if (Value *ByteVal = isBytewiseValue(V, DL)) { in processStore() local
817 ByteVal)) { in processStore()
829 auto *M = Builder.CreateMemSet(SI->getPointerOperand(), ByteVal, Size, in processStore()
1407 if (Value *ByteVal = isBytewiseValue(GV->getInitializer(), in processMemCpy() local
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/
H A DMemCpyOptimizer.h75 Value *ByteVal);
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBuiltin.cpp3440 Value *ByteVal = Builder.CreateTrunc(EmitScalarExpr(E->getArg(1)), in EmitBuiltinExpr() local
3445 Builder.CreateMemSet(Dest, ByteVal, SizeVal, false); in EmitBuiltinExpr()
3459 Value *ByteVal = Builder.CreateTrunc(EmitScalarExpr(E->getArg(1)), in EmitBuiltinExpr() local
3462 Builder.CreateMemSet(Dest, ByteVal, SizeVal, false); in EmitBuiltinExpr()