Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/llvm-mc/
H A DDisassembler.cpp114 unsigned ByteVal; in ByteArrayFromString() local
115 if (Value.getAsInteger(0, ByteVal) || ByteVal > 255) { in ByteArrayFromString()
125 ByteArray.first.push_back(ByteVal); in ByteArrayFromString()
/freebsd-12.1/contrib/llvm/lib/Target/SystemZ/
H A DSystemZSelectionDAGInfo.cpp66 SDValue Dst, uint64_t ByteVal, uint64_t Size, in memsetStore() argument
68 uint64_t StoreVal = ByteVal; in memsetStore()
70 StoreVal |= ByteVal << (I * 8); in memsetStore()
94 uint64_t ByteVal = CByte->getZExtValue(); in EmitTargetCodeForMemset() local
95 if (ByteVal == 0 || ByteVal == 255 ? in EmitTargetCodeForMemset()
100 SDValue Chain1 = memsetStore(DAG, DL, Chain, Dst, ByteVal, Size1, in EmitTargetCodeForMemset()
107 SDValue Chain2 = memsetStore(DAG, DL, Chain, Dst, ByteVal, Size2, in EmitTargetCodeForMemset()
/freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp391 Value *ByteVal) { in INITIALIZE_PASS_DEPENDENCY()
417 if (isa<UndefValue>(ByteVal) && StoredByte) in INITIALIZE_PASS_DEPENDENCY()
418 ByteVal = StoredByte; in INITIALIZE_PASS_DEPENDENCY()
419 if (ByteVal != StoredByte) in INITIALIZE_PASS_DEPENDENCY()
432 if (MSI->isVolatile() || ByteVal != MSI->getValue() || in INITIALIZE_PASS_DEPENDENCY()
483 Builder.CreateMemSet(StartPtr, ByteVal, Range.End-Range.Start, Alignment); in INITIALIZE_PASS_DEPENDENCY()
753 if (Value *ByteVal = isBytewiseValue(V)) { in processStore() local
755 ByteVal)) { in processStore()
771 Builder.CreateMemSet(SI->getPointerOperand(), ByteVal, Size, Align); in processStore()
1231 if (Value *ByteVal = isBytewiseValue(GV->getInitializer())) { in processMemCpy() local
[all …]
/freebsd-12.1/contrib/llvm/include/llvm/Transforms/Scalar/
H A DMemCpyOptimizer.h72 Value *ByteVal);
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGBuiltin.cpp2302 Value *ByteVal = Builder.CreateTrunc(EmitScalarExpr(E->getArg(1)), in EmitBuiltinExpr() local
2307 Builder.CreateMemSet(Dest, ByteVal, SizeVal, false); in EmitBuiltinExpr()
2321 Value *ByteVal = Builder.CreateTrunc(EmitScalarExpr(E->getArg(1)), in EmitBuiltinExpr() local
2324 Builder.CreateMemSet(Dest, ByteVal, SizeVal, false); in EmitBuiltinExpr()