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.cpp111 unsigned ByteVal; in ByteArrayFromString()
112 if (Value.getAsInteger(0, ByteVal) || ByteVal > 255) { in ByteArrayFromString()
122 ByteArray.first.push_back(ByteVal); in ByteArrayFromString()
113 unsigned ByteVal; ByteArrayFromString() local
/freebsd/contrib/llvm-project/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()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp360 Value *ByteVal) { in tryMergingIntoMemset() argument
420 if (isa<UndefValue>(ByteVal) && StoredByte) in tryMergingIntoMemset()
421 ByteVal = StoredByte; in tryMergingIntoMemset()
422 if (ByteVal != StoredByte) in tryMergingIntoMemset()
435 if (MSI->isVolatile() || ByteVal != MSI->getValue() || in tryMergingIntoMemset()
479 AMemSet = Builder.CreateMemSet(StartPtr, ByteVal, Range.End - Range.Start, in tryMergingIntoMemset()
800 if (Value *ByteVal = isBytewiseValue(V, DL)) { in processStore() local
802 tryMergingIntoMemset(SI, SI->getPointerOperand(), ByteVal)) { in processStore()
814 auto *M = Builder.CreateMemSet(SI->getPointerOperand(), ByteVal, Size, in processStore()
1752 if (Value *ByteVal = isBytewiseValue(GV->getInitializer(), in processMemCpy() local
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/
H A DMemCpyOptimizer.h83 Value *ByteVal);
/freebsd/contrib/llvm-project/llvm/tools/llvm-objcopy/
H A DObjcopyOptions.cpp849 uint8_t ByteVal = Val.get(); in parseObjcopyOptions() local
850 if (ByteVal != Val.get()) in parseObjcopyOptions()
854 Config.GapFill = ByteVal; in parseObjcopyOptions()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBuiltin.cpp4293 Value *ByteVal = Builder.CreateTrunc(EmitScalarExpr(E->getArg(1)), in EmitBuiltinExpr() local
4298 Builder.CreateMemSet(Dest, ByteVal, SizeVal, false); in EmitBuiltinExpr()
4303 Value *ByteVal = in EmitBuiltinExpr() local
4310 Builder.CreateMemSetInline(Dest, ByteVal, Size); in EmitBuiltinExpr()
4324 Value *ByteVal = Builder.CreateTrunc(EmitScalarExpr(E->getArg(1)), in EmitBuiltinExpr() local
4327 Builder.CreateMemSet(Dest, ByteVal, SizeVal, false); in EmitBuiltinExpr()