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

/macosx-10.10/llvmCore-3425.0.34/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()));
/macosx-10.10/llvmCore-3425.0.34/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);
542 if (Value *ByteVal = isBytewiseValue(SI->getOperand(0)))
544 ByteVal)) {
824 if (Value *ByteVal = isBytewiseValue(GV->getInitializer())) {
826 Builder.CreateMemSet(M->getRawDest(), ByteVal, CopySiz
364 tryMergingIntoMemset(Instruction *StartInst, Value *StartPtr, Value *ByteVal) argument
[all...]
/macosx-10.10/llvmCore-3425.0.34/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp2422 /// SplatByte - Distribute ByteVal over NumBits bits.
2424 static APInt SplatByte(unsigned NumBits, uint8_t ByteVal) {
2425 APInt Val = APInt(NumBits, ByteVal);
H A DSelectionDAG.cpp3328 /// SplatByte - Distribute ByteVal over NumBits bits.
3329 static APInt SplatByte(unsigned NumBits, uint8_t ByteVal) { argument
3330 APInt Val = APInt(NumBits, ByteVal);

Completed in 195 milliseconds