Searched refs:DestBits (Results 1 - 3 of 3) sorted by relevance

/macosx-10.10/llvmCore-3425.0.34/lib/VMCore/
H A DInstructions.cpp2465 unsigned DestBits = DestTy->getPrimitiveSizeInBits(); // 0 for ptr local
2474 return DestBits == SrcBits;
2484 return DestBits == SrcBits;
2489 return DestBits == SrcBits;
2500 return DestBits == SrcBits; // 64-bit vector to MMX
2538 unsigned DestBits = DestTy->getPrimitiveSizeInBits(); // 0 for ptr local
2543 if (DestBits < SrcBits)
2545 else if (DestBits > SrcBits) { // its an extension
2559 assert(DestBits == SrcBits &&
2574 if (DestBits < SrcBit
[all...]
/macosx-10.10/llvmCore-3425.0.34/lib/Transforms/InstCombine/
H A DInstCombineShifts.cpp787 uint32_t DestBits = ZI->getType()->getScalarSizeInBits(); local
788 if (Op1C->getZExtValue() == DestBits-SrcBits)
/macosx-10.10/llvmCore-3425.0.34/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp1513 unsigned DestBits = VT.getScalarType().getSizeInBits(); local
1517 if (NumSignBits == DestBits && AndOp1 && AndOp1->isOne()) {
4280 unsigned DestBits = VT.getScalarType().getSizeInBits(); local
4283 if (OpBits == DestBits) {
4286 if (NumSignBits > DestBits-MidBits)
4288 } else if (OpBits < DestBits) {
4303 if (OpBits < DestBits)
4305 else if (OpBits > DestBits)

Completed in 134 milliseconds