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

/freebsd-10.1-release/contrib/llvm/tools/llvm-mc/
H A DDisassembler.cpp137 unsigned ByteVal; local
138 if (Value.getAsInteger(0, ByteVal) || ByteVal > 255) {
147 ByteArray.push_back(std::make_pair((unsigned char)ByteVal, Value.data()));
/freebsd-10.1-release/contrib/llvm/lib/Target/SystemZ/
H A DSystemZSelectionDAGInfo.cpp72 // Chain, Dst, ByteVal and Size. These cases are expected to use
75 SDValue Dst, uint64_t ByteVal, uint64_t Size,
78 uint64_t StoreVal = ByteVal;
80 StoreVal |= ByteVal << (I * 8);
103 // used if ByteVal is all zeros or all ones; in other casees,
105 uint64_t ByteVal = CByte->getZExtValue(); local
106 if (ByteVal == 0 || ByteVal == 255 ?
111 SDValue Chain1 = memsetStore(DAG, DL, Chain, Dst, ByteVal, Size1,
118 SDValue Chain2 = memsetStore(DAG, DL, Chain, Dst, ByteVal, Size
74 memsetStore(SelectionDAG &DAG, SDLoc DL, SDValue Chain, SDValue Dst, uint64_t ByteVal, uint64_t Size, unsigned Align, MachinePointerInfo DstPtrInfo) argument
[all...]
/freebsd-10.1-release/contrib/llvm/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp118 /// MemsetRange - Represents a range of memset'd bytes with the ByteVal value.
343 Value *ByteVal);
368 Value *StartPtr, Value *ByteVal) {
393 if (ByteVal != isBytewiseValue(NextStore->getOperand(0)))
406 if (MSI->isVolatile() || ByteVal != MSI->getValue() ||
460 Builder.CreateMemSet(StartPtr, ByteVal, Range.End-Range.Start, Alignment);
545 if (Value *ByteVal = isBytewiseValue(SI->getOperand(0)))
547 ByteVal)) {
833 if (Value *ByteVal = isBytewiseValue(GV->getInitializer())) {
835 Builder.CreateMemSet(M->getRawDest(), ByteVal, CopySiz
367 tryMergingIntoMemset(Instruction *StartInst, Value *StartPtr, Value *ByteVal) argument
[all...]
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGBuiltin.cpp693 Value *ByteVal = Builder.CreateTrunc(EmitScalarExpr(E->getArg(1)), local
696 Builder.CreateMemSet(Dest.first, ByteVal, SizeVal, Dest.second, false);
709 Value *ByteVal = Builder.CreateTrunc(EmitScalarExpr(E->getArg(1)), local
712 Builder.CreateMemSet(Dest.first, ByteVal, SizeVal, Dest.second, false);

Completed in 78 milliseconds