Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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()
/llvm-project-15.0.7/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()
/llvm-project-15.0.7/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 DAG, DL, Chain, Dst, ByteVal, Size2, in EmitTargetCodeForMemset()
/llvm-project-15.0.7/llvm/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp381 Value *ByteVal) { in tryMergingIntoMemset() argument
448 if (isa<UndefValue>(ByteVal) && StoredByte) in tryMergingIntoMemset()
449 ByteVal = StoredByte; in tryMergingIntoMemset()
450 if (ByteVal != StoredByte) in tryMergingIntoMemset()
463 if (MSI->isVolatile() || ByteVal != MSI->getValue() || in tryMergingIntoMemset()
505 AMemSet = Builder.CreateMemSet(StartPtr, ByteVal, Range.End - Range.Start, in tryMergingIntoMemset()
800 if (Value *ByteVal = isBytewiseValue(V, DL)) { in processStore() local
802 ByteVal)) { in processStore()
814 auto *M = Builder.CreateMemSet(SI->getPointerOperand(), ByteVal, Size, in processStore()
1411 if (Value *ByteVal = isBytewiseValue(GV->getInitializer(), in processMemCpy() local
[all …]
/llvm-project-15.0.7/llvm/include/llvm/Transforms/Scalar/
H A DMemCpyOptimizer.h70 Value *ByteVal);
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGBuiltin.cpp3504 Value *ByteVal = Builder.CreateTrunc(EmitScalarExpr(E->getArg(1)), in EmitBuiltinExpr() local
3509 Builder.CreateMemSet(Dest, ByteVal, SizeVal, false); in EmitBuiltinExpr()
3514 Value *ByteVal = in EmitBuiltinExpr() local
3520 Builder.CreateMemSetInline(Dest, ByteVal, Size); in EmitBuiltinExpr()
3534 Value *ByteVal = Builder.CreateTrunc(EmitScalarExpr(E->getArg(1)), in EmitBuiltinExpr() local
3537 Builder.CreateMemSet(Dest, ByteVal, SizeVal, false); in EmitBuiltinExpr()