Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/tools/llvm-mc/
H A DDisassembler.cpp114 unsigned ByteVal; in byteArrayFromString() local
131 ByteVal = C0 * 16 + C1; in byteArrayFromString()
132 } else if (Value.getAsInteger(0, ByteVal) || ByteVal > 255) { in byteArrayFromString()
142 ByteArray.first.push_back(ByteVal); in byteArrayFromString()
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZSelectionDAGInfo.cpp88 SDValue Dst, uint64_t ByteVal, uint64_t Size, in memsetStore() argument
90 uint64_t StoreVal = ByteVal; in memsetStore()
92 StoreVal |= ByteVal << (I * 8); in memsetStore()
117 uint64_t ByteVal = CByte->getZExtValue(); in EmitTargetCodeForMemset() local
118 if (ByteVal == 0 || ByteVal == 255 in EmitTargetCodeForMemset()
123 SDValue Chain1 = memsetStore(DAG, DL, Chain, Dst, ByteVal, Size1, in EmitTargetCodeForMemset()
131 memsetStore(DAG, DL, Chain, Dst, ByteVal, Size2, in EmitTargetCodeForMemset()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp353 Value *ByteVal) { in tryMergingIntoMemset() argument
413 if (isa<UndefValue>(ByteVal) && StoredByte) in tryMergingIntoMemset()
414 ByteVal = StoredByte; in tryMergingIntoMemset()
415 if (ByteVal != StoredByte) in tryMergingIntoMemset()
428 if (MSI->isVolatile() || ByteVal != MSI->getValue() || in tryMergingIntoMemset()
472 AMemSet = Builder.CreateMemSet(StartPtr, ByteVal, Range.End - Range.Start, in tryMergingIntoMemset()
785 Value *ByteVal = isBytewiseValue(V, DL); in processStore() local
786 if (!ByteVal) in processStore()
790 tryMergingIntoMemset(SI, SI->getPointerOperand(), ByteVal)) { in processStore()
807 auto *M = Builder.CreateMemSet(SI->getPointerOperand(), ByteVal, Size, in processStore()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/
H A DMemCpyOptimizer.h85 Value *ByteVal);
/freebsd/contrib/llvm-project/llvm/tools/llvm-objcopy/
H A DObjcopyOptions.cpp948 uint8_t ByteVal = Val.get(); in parseObjcopyOptions() local
949 if (ByteVal != Val.get()) in parseObjcopyOptions()
953 Config.GapFill = ByteVal; in parseObjcopyOptions()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBuiltin.cpp4502 Value *ByteVal = Builder.CreateTrunc(EmitScalarExpr(E->getArg(1)), in EmitBuiltinExpr() local
4507 auto *I = Builder.CreateMemSet(Dest, ByteVal, SizeVal, false); in EmitBuiltinExpr()
4508 addInstToNewSourceAtom(I, ByteVal); in EmitBuiltinExpr()
4513 Value *ByteVal = in EmitBuiltinExpr() local
4520 auto *I = Builder.CreateMemSetInline(Dest, ByteVal, Size); in EmitBuiltinExpr()
4535 Value *ByteVal = Builder.CreateTrunc(EmitScalarExpr(E->getArg(1)), in EmitBuiltinExpr() local
4538 auto *I = Builder.CreateMemSet(Dest, ByteVal, SizeVal, false); in EmitBuiltinExpr()