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

/freebsd-current/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfExpression.cpp692 void DwarfExpression::emitLegacySExt(unsigned FromBits) { argument
693 // (((X >> (FromBits - 1)) * (~0)) << FromBits) | X
696 emitUnsigned(FromBits - 1);
702 emitUnsigned(FromBits);
707 void DwarfExpression::emitLegacyZExt(unsigned FromBits) { argument
710 if (FromBits / 7 < 1+1+1+1+1) {
711 // (X & (1 << FromBits - 1))
713 emitUnsigned((1ULL << FromBits) - 1);
722 emitUnsigned(FromBits);
[all...]
H A DDwarfExpression.h358 void emitLegacySExt(unsigned FromBits);
359 void emitLegacyZExt(unsigned FromBits);
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLocal.cpp2720 uint64_t FromBits = FromTy->getPrimitiveSizeInBits();
2722 assert(FromBits != ToBits && "Unexpected no-op conversion");
2725 // access the low `FromBits` bits when inspecting the source variable.
2726 if (FromBits < ToBits)
2740 return DIExpression::appendExt(DII.getExpression(), ToBits, FromBits,
2754 return DIExpression::appendExt(DPV.getExpression(), ToBits, FromBits,
/freebsd-current/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp1114 unsigned FromBits = FromType->getPrimitiveSizeInBits().getFixedValue(); local
1116 return FromBits > ToBits;
1122 unsigned FromBits = FromVT.getFixedSizeInBits(); local
1124 return FromBits > ToBits;
5963 unsigned FromBits = InVT.getScalarSizeInBits();
5965 FromBits *= 2;
5966 EVT OutVT = MVT::getVectorVT(MVT::getIntegerVT(FromBits),
5967 SystemZ::VectorBits / FromBits);
5970 } while (FromBits != ToBits);
/freebsd-current/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp6774 unsigned FromBits = EVT.getScalarSizeInBits();
6775 Val <<= Val.getBitWidth() - FromBits;
6776 Val.ashrInPlace(Val.getBitWidth() - FromBits);

Completed in 117 milliseconds