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

/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineShifts.cpp736 uint32_t DestBits = ZI->getType()->getScalarSizeInBits(); local
737 if (Op1C->getZExtValue() == DestBits-SrcBits)
/external/llvm/lib/VMCore/
H A DInstructions.cpp2440 unsigned DestBits = DestTy->getPrimitiveSizeInBits(); // 0 for ptr local
2449 return DestBits == SrcBits;
2459 return DestBits == SrcBits;
2464 return DestBits == SrcBits;
2475 return DestBits == SrcBits; // 64-bit vector to MMX
2513 unsigned DestBits = DestTy->getPrimitiveSizeInBits(); // 0 for ptr local
2518 if (DestBits < SrcBits)
2520 else if (DestBits > SrcBits) { // its an extension
2534 assert(DestBits == SrcBits &&
2549 if (DestBits < SrcBit
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp1459 unsigned DestBits = VT.getScalarType().getSizeInBits(); local
1463 if (NumSignBits == DestBits && AndOp1 && AndOp1->isOne()) {
3983 unsigned DestBits = VT.getScalarType().getSizeInBits(); local
3986 if (OpBits == DestBits) {
3989 if (NumSignBits > DestBits-MidBits)
3991 } else if (OpBits < DestBits) {
4006 if (OpBits < DestBits)
4008 else if (OpBits > DestBits)

Completed in 433 milliseconds