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

/external/llvm/tools/llvm-mc/
H A DDisassembler.cpp126 unsigned ByteVal; local
127 if (Value.getAsInteger(0, ByteVal) || ByteVal > 255) {
136 ByteArray.push_back(std::make_pair((unsigned char)ByteVal, Value.data()));
/external/llvm/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp118 /// MemsetRange - Represents a range of memset'd bytes with the ByteVal value.
340 Value *ByteVal);
365 Value *StartPtr, Value *ByteVal) {
390 if (ByteVal != isBytewiseValue(NextStore->getOperand(0)))
403 if (MSI->isVolatile() || ByteVal != MSI->getValue() ||
457 Builder.CreateMemSet(StartPtr, ByteVal, Range.End-Range.Start, Alignment);
534 if (Value *ByteVal = isBytewiseValue(SI->getOperand(0)))
536 ByteVal)) {
799 if (Value *ByteVal = isBytewiseValue(GV->getInitializer())) {
801 Builder.CreateMemSet(M->getRawDest(), ByteVal, CopySiz
364 tryMergingIntoMemset(Instruction *StartInst, Value *StartPtr, Value *ByteVal) argument
[all...]
/external/clang/lib/CodeGen/
H A DCGBuiltin.cpp655 Value *ByteVal = Builder.CreateTrunc(EmitScalarExpr(E->getArg(1)), local
658 Builder.CreateMemSet(Dest.first, ByteVal, SizeVal, Dest.second, false);
671 Value *ByteVal = Builder.CreateTrunc(EmitScalarExpr(E->getArg(1)), local
674 Builder.CreateMemSet(Dest.first, ByteVal, SizeVal, Dest.second, false);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp3325 /// SplatByte - Distribute ByteVal over NumBits bits.
3326 static APInt SplatByte(unsigned NumBits, uint8_t ByteVal) { argument
3327 APInt Val = APInt(NumBits, ByteVal);

Completed in 242 milliseconds