Searched refs:FromBits (Results 1 – 5 of 5) sorted by relevance
728 void DwarfExpression::emitLegacySExt(unsigned FromBits) { in emitLegacySExt() argument732 emitUnsigned(FromBits - 1); in emitLegacySExt()738 emitUnsigned(FromBits); in emitLegacySExt()743 void DwarfExpression::emitLegacyZExt(unsigned FromBits) { in emitLegacyZExt() argument746 if (FromBits / 7 < 1+1+1+1+1) { in emitLegacyZExt()749 emitUnsigned((1ULL << FromBits) - 1); in emitLegacyZExt()758 emitUnsigned(FromBits); in emitLegacyZExt()
297 void emitLegacySExt(unsigned FromBits);298 void emitLegacyZExt(unsigned FromBits);
2748 uint64_t FromBits = FromTy->getPrimitiveSizeInBits(); in replaceAllDbgUsesWith() local2750 assert(FromBits != ToBits && "Unexpected no-op conversion"); in replaceAllDbgUsesWith()2754 if (FromBits < ToBits) in replaceAllDbgUsesWith()2768 return DIExpression::appendExt(DII.getExpression(), ToBits, FromBits, in replaceAllDbgUsesWith()2782 return DIExpression::appendExt(DVR.getExpression(), ToBits, FromBits, in replaceAllDbgUsesWith()
1137 unsigned FromBits = FromType->getPrimitiveSizeInBits().getFixedValue(); in isTruncateFree() local1139 return FromBits > ToBits; in isTruncateFree()1145 unsigned FromBits = FromVT.getFixedSizeInBits(); in isTruncateFree() local1147 return FromBits > ToBits; in isTruncateFree()5967 unsigned FromBits = InVT.getScalarSizeInBits(); in lowerSIGN_EXTEND_VECTOR_INREG() local5969 FromBits *= 2; in lowerSIGN_EXTEND_VECTOR_INREG()5970 EVT OutVT = MVT::getVectorVT(MVT::getIntegerVT(FromBits), in lowerSIGN_EXTEND_VECTOR_INREG()5971 SystemZ::VectorBits / FromBits); in lowerSIGN_EXTEND_VECTOR_INREG()5974 } while (FromBits != ToBits); in lowerSIGN_EXTEND_VECTOR_INREG()
7123 unsigned FromBits = EVT.getScalarSizeInBits(); in getNode() local7124 Val <<= Val.getBitWidth() - FromBits; in getNode()7125 Val.ashrInPlace(Val.getBitWidth() - FromBits); in getNode()