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

/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineShifts.cpp791 uint32_t DestBits = ZI->getType()->getScalarSizeInBits(); local
792 if (Op1C->getZExtValue() == DestBits-SrcBits)
/external/llvm/lib/VMCore/
H A DInstructions.cpp2459 unsigned DestBits = DestTy->getPrimitiveSizeInBits(); // 0 for ptr local
2468 return DestBits == SrcBits;
2478 return DestBits == SrcBits;
2483 return DestBits == SrcBits;
2494 return DestBits == SrcBits; // 64-bit vector to MMX
2532 unsigned DestBits = DestTy->getPrimitiveSizeInBits(); // 0 for ptr local
2537 if (DestBits < SrcBits)
2539 else if (DestBits > SrcBits) { // its an extension
2553 assert(DestBits == SrcBits &&
2568 if (DestBits < SrcBit
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp1502 unsigned DestBits = VT.getScalarType().getSizeInBits(); local
1506 if (NumSignBits == DestBits && AndOp1 && AndOp1->isOne()) {
4230 unsigned DestBits = VT.getScalarType().getSizeInBits(); local
4233 if (OpBits == DestBits) {
4236 if (NumSignBits > DestBits-MidBits)
4238 } else if (OpBits < DestBits) {
4253 if (OpBits < DestBits)
4255 else if (OpBits > DestBits)

Completed in 247 milliseconds