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

/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-mc/
H A DDisassembler.cpp113 unsigned ByteVal; local
114 if (Value.getAsInteger(0, ByteVal) || ByteVal > 255) {
124 ByteArray.first.push_back(ByteVal);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZSelectionDAGInfo.cpp62 // Chain, Dst, ByteVal and Size. These cases are expected to use
65 SDValue Dst, uint64_t ByteVal, uint64_t Size,
67 uint64_t StoreVal = ByteVal;
69 StoreVal |= ByteVal << (I * 8);
91 // used if ByteVal is all zeros or all ones; in other casees,
93 uint64_t ByteVal = CByte->getZExtValue(); local
94 if (ByteVal == 0 || ByteVal == 255 ?
99 SDValue Chain1 = memsetStore(DAG, DL, Chain, Dst, ByteVal, Size1,
107 DAG, DL, Chain, Dst, ByteVal, Size
64 memsetStore(SelectionDAG &DAG, const SDLoc &DL, SDValue Chain, SDValue Dst, uint64_t ByteVal, uint64_t Size, unsigned Align, MachinePointerInfo DstPtrInfo) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/
H A DMemCpyOptimizer.h70 Value *ByteVal);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp74 /// Represents a range of memset'd bytes with the ByteVal value.
306 Value *ByteVal) {
332 if (isa<UndefValue>(ByteVal) && StoredByte)
333 ByteVal = StoredByte;
334 if (ByteVal != StoredByte)
347 if (MSI->isVolatile() || ByteVal != MSI->getValue() ||
389 AMemSet = Builder.CreateMemSet(StartPtr, ByteVal, Range.End - Range.Start,
642 if (Value *ByteVal = isBytewiseValue(V, DL)) {
644 ByteVal)) {
656 auto *M = Builder.CreateMemSet(SI->getPointerOperand(), ByteVal, Siz
304 tryMergingIntoMemset(Instruction *StartInst, Value *StartPtr, Value *ByteVal) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBuiltin.cpp2713 Value *ByteVal = Builder.CreateTrunc(EmitScalarExpr(E->getArg(1)),
2718 Builder.CreateMemSet(Dest, ByteVal, SizeVal, false);
2732 Value *ByteVal = Builder.CreateTrunc(EmitScalarExpr(E->getArg(1)),
2735 Builder.CreateMemSet(Dest, ByteVal, SizeVal, false);

Completed in 99 milliseconds