Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/llvm/lib/Target/SystemZ/
H A DSystemZSelectionDAGInfo.cpp78 SDValue Dst, uint64_t ByteVal, uint64_t Size, in memsetStore() argument
80 uint64_t StoreVal = ByteVal; in memsetStore()
82 StoreVal |= ByteVal << (I * 8); in memsetStore()
107 uint64_t ByteVal = CByte->getZExtValue(); in EmitTargetCodeForMemset() local
108 if (ByteVal == 0 || ByteVal == 255 in EmitTargetCodeForMemset()
113 SDValue Chain1 = memsetStore(DAG, DL, Chain, Dst, ByteVal, Size1, in EmitTargetCodeForMemset()
121 memsetStore(DAG, DL, Chain, Dst, ByteVal, Size2, in EmitTargetCodeForMemset()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp392 Value *ByteVal) { in tryMergingIntoMemset() argument
459 if (isa<UndefValue>(ByteVal) && StoredByte) in tryMergingIntoMemset()
460 ByteVal = StoredByte; in tryMergingIntoMemset()
461 if (ByteVal != StoredByte) in tryMergingIntoMemset()
474 if (MSI->isVolatile() || ByteVal != MSI->getValue() || in tryMergingIntoMemset()
517 AMemSet = Builder.CreateMemSet(StartPtr, ByteVal, Range.End - Range.Start, in tryMergingIntoMemset()
826 if (Value *ByteVal = isBytewiseValue(V, DL)) { in processStore() local
828 ByteVal)) { in processStore()
840 auto *M = Builder.CreateMemSet(SI->getPointerOperand(), ByteVal, Size, in processStore()
1462 if (Value *ByteVal = isBytewiseValue(GV->getInitializer(), in processMemCpy() local
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/Transforms/Scalar/
H A DMemCpyOptimizer.h77 Value *ByteVal);
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGBuiltin.cpp3543 Value *ByteVal = Builder.CreateTrunc(EmitScalarExpr(E->getArg(1)), in EmitBuiltinExpr() local
3548 Builder.CreateMemSet(Dest, ByteVal, SizeVal, false); in EmitBuiltinExpr()
3553 Value *ByteVal = in EmitBuiltinExpr() local
3559 Builder.CreateMemSetInline(Dest, ByteVal, Size); in EmitBuiltinExpr()
3573 Value *ByteVal = Builder.CreateTrunc(EmitScalarExpr(E->getArg(1)), in EmitBuiltinExpr() local
3576 Builder.CreateMemSet(Dest, ByteVal, SizeVal, false); in EmitBuiltinExpr()