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

/external/llvm/lib/IR/
H A DInstructions.cpp2521 unsigned DestBits = DestTy->getPrimitiveSizeInBits(); // 0 for ptr local
2530 return DestBits == SrcBits;
2540 return DestBits == SrcBits;
2545 return DestBits == SrcBits;
2556 return DestBits == SrcBits; // 64-bit vector to MMX
2589 unsigned DestBits = DestTy->getPrimitiveSizeInBits(); // 0 for ptr local
2593 if (SrcBits == 0 || DestBits == 0)
2596 if (SrcBits != DestBits)
2635 unsigned DestBits = DestTy->getPrimitiveSizeInBits(); // 0 for ptr local
2640 if (DestBits < SrcBit
[all...]
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineShifts.cpp784 uint32_t DestBits = ZI->getType()->getScalarSizeInBits(); local
785 if (Op1C->getZExtValue() == DestBits-SrcBits)
/external/llvm/lib/Target/ARM/
H A DARMFastISel.cpp2682 unsigned DestBits = DestVT.getSizeInBits(); local
2683 (void) DestBits;
2684 assert((SrcBits < DestBits) && "can only extend to larger types");
2685 assert((DestBits == 32 || DestBits == 16 || DestBits == 8) &&
/external/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp1531 unsigned DestBits = VT.getScalarType().getSizeInBits(); local
1535 if (NumSignBits == DestBits && AndOp1 && AndOp1->isOne()) {
4425 unsigned DestBits = VT.getScalarType().getSizeInBits(); local
4428 if (OpBits == DestBits) {
4431 if (NumSignBits > DestBits-MidBits)
4433 } else if (OpBits < DestBits) {
4448 if (OpBits < DestBits)
4450 else if (OpBits > DestBits)

Completed in 136 milliseconds