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

/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineShifts.cpp799 uint32_t DestBits = ZI->getType()->getScalarSizeInBits(); local
800 if (Op1C->getZExtValue() == DestBits-SrcBits)
/external/llvm/lib/IR/
H A DInstructions.cpp2583 unsigned DestBits = DestTy->getPrimitiveSizeInBits(); // 0 for ptr local
2592 return DestBits == SrcBits;
2602 return DestBits == SrcBits;
2607 return DestBits == SrcBits;
2618 return DestBits == SrcBits; // 64-bit vector to MMX
2651 unsigned DestBits = DestTy->getPrimitiveSizeInBits(); // 0 for ptr local
2655 if (SrcBits == 0 || DestBits == 0)
2658 if (SrcBits != DestBits)
2697 unsigned DestBits = DestTy->getPrimitiveSizeInBits(); // 0 for ptr local
2702 if (DestBits < SrcBit
[all...]
/external/llvm/lib/Target/ARM/
H A DARMFastISel.cpp2664 unsigned DestBits = DestVT.getSizeInBits(); local
2665 (void) DestBits;
2666 assert((SrcBits < DestBits) && "can only extend to larger types");
2667 assert((DestBits == 32 || DestBits == 16 || DestBits == 8) &&
/external/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp1631 unsigned DestBits = VT.getScalarType().getSizeInBits(); local
1635 if (NumSignBits == DestBits && AndOp1 && AndOp1->isOne()) {
4971 unsigned DestBits = VT.getScalarType().getSizeInBits(); local
4974 if (OpBits == DestBits) {
4977 if (NumSignBits > DestBits-MidBits)
4979 } else if (OpBits < DestBits) {
4994 if (OpBits < DestBits)
4996 else if (OpBits > DestBits)

Completed in 885 milliseconds