Home
last modified time | relevance | path

Searched refs:FromBits (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfExpression.cpp728 void DwarfExpression::emitLegacySExt(unsigned FromBits) { in emitLegacySExt() argument
732 emitUnsigned(FromBits - 1); in emitLegacySExt()
738 emitUnsigned(FromBits); in emitLegacySExt()
743 void DwarfExpression::emitLegacyZExt(unsigned FromBits) { in emitLegacyZExt() argument
746 if (FromBits / 7 < 1+1+1+1+1) { in emitLegacyZExt()
749 emitUnsigned((1ULL << FromBits) - 1); in emitLegacyZExt()
758 emitUnsigned(FromBits); in emitLegacyZExt()
H A DDwarfExpression.h297 void emitLegacySExt(unsigned FromBits);
298 void emitLegacyZExt(unsigned FromBits);
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLocal.cpp2748 uint64_t FromBits = FromTy->getPrimitiveSizeInBits(); in replaceAllDbgUsesWith() local
2750 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()
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp1137 unsigned FromBits = FromType->getPrimitiveSizeInBits().getFixedValue(); in isTruncateFree() local
1139 return FromBits > ToBits; in isTruncateFree()
1145 unsigned FromBits = FromVT.getFixedSizeInBits(); in isTruncateFree() local
1147 return FromBits > ToBits; in isTruncateFree()
5967 unsigned FromBits = InVT.getScalarSizeInBits(); in lowerSIGN_EXTEND_VECTOR_INREG() local
5969 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()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp7123 unsigned FromBits = EVT.getScalarSizeInBits(); in getNode() local
7124 Val <<= Val.getBitWidth() - FromBits; in getNode()
7125 Val.ashrInPlace(Val.getBitWidth() - FromBits); in getNode()