Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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()
93 uint64_t ByteVal = CByte->getZExtValue(); in EmitTargetCodeForMemset() local
94 if (ByteVal == 0 || ByteVal == 255 ? in EmitTargetCodeForMemset()
99 SDValue Chain1 = memsetStore(DAG, DL, Chain, Dst, ByteVal, Size1, in EmitTargetCodeForMemset()
107 DAG, DL, Chain, Dst, ByteVal, Size2, in EmitTargetCodeForMemset()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-ml/
H A DDisassembler.cpp107 unsigned ByteVal; in ByteArrayFromString() local
108 if (Value.getAsInteger(0, ByteVal) || ByteVal > 255) { in ByteArrayFromString()
118 ByteArray.first.push_back(ByteVal); in ByteArrayFromString()
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp371 Value *ByteVal) { in tryMergingIntoMemset() argument
431 if (isa<UndefValue>(ByteVal) && StoredByte) in tryMergingIntoMemset()
432 ByteVal = StoredByte; in tryMergingIntoMemset()
433 if (ByteVal != StoredByte) in tryMergingIntoMemset()
446 if (MSI->isVolatile() || ByteVal != MSI->getValue() || in tryMergingIntoMemset()
488 AMemSet = Builder.CreateMemSet(StartPtr, ByteVal, Range.End - Range.Start, in tryMergingIntoMemset()
806 if (Value *ByteVal = isBytewiseValue(V, DL)) { in processStore() local
808 ByteVal)) { in processStore()
820 auto *M = Builder.CreateMemSet(SI->getPointerOperand(), ByteVal, Size, in processStore()
1384 if (Value *ByteVal = isBytewiseValue(GV->getInitializer(), in processMemCpy() local
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Scalar/
H A DMemCpyOptimizer.h75 Value *ByteVal);
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGBuiltin.cpp3359 Value *ByteVal = Builder.CreateTrunc(EmitScalarExpr(E->getArg(1)), in EmitBuiltinExpr() local
3364 Builder.CreateMemSet(Dest, ByteVal, SizeVal, false); in EmitBuiltinExpr()
3378 Value *ByteVal = Builder.CreateTrunc(EmitScalarExpr(E->getArg(1)), in EmitBuiltinExpr() local
3381 Builder.CreateMemSet(Dest, ByteVal, SizeVal, false); in EmitBuiltinExpr()