Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonVectorCombine.cpp431 enum Signedness { Positive, Signed, Unsigned }; enum in __anoncba317990111::HvxIdioms
438 Signedness Sgn;
451 -> std::pair<unsigned, Signedness>;
475 Signedness SgnX, ArrayRef<Value *> WordY,
476 Signedness SgnY) const -> SmallVector<Value *>;
1619 -> std::pair<unsigned, Signedness> { in getNumSignificantBits()
1627 Signedness Sign = Signed; in getNumSignificantBits()
2082 Signedness SgnX, ArrayRef<Value *> WordY, in createMulLong()
2083 Signedness SgnY) const -> SmallVector<Value *> { in createMulLong()
2091 Signedness SX = (i + 1 == e) ? SgnX : Unsigned; in createMulLong()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DDebugify.cpp761 auto Signedness = DbgVal->getVariable()->getSignedness(); in diagnoseMisSizedDbgValue() local
762 if (Signedness == DIBasicType::Signedness::Signed) in diagnoseMisSizedDbgValue()
H A DLocal.cpp2804 auto Signedness = Var->getSignedness(); in replaceAllDbgUsesWith() local
2805 if (!Signedness) in replaceAllDbgUsesWith()
2808 bool Signed = *Signedness == DIBasicType::Signedness::Signed; in replaceAllDbgUsesWith()
2818 auto Signedness = Var->getSignedness(); in replaceAllDbgUsesWith() local
2819 if (!Signedness) in replaceAllDbgUsesWith()
2822 bool Signed = *Signedness == DIBasicType::Signedness::Signed; in replaceAllDbgUsesWith()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DDebugInfoMetadata.cpp897 std::optional<DIBasicType::Signedness> DIBasicType::getSignedness() const { in getSignedness()
902 return Signedness::Signed; in getSignedness()
906 return Signedness::Unsigned; in getSignedness()
1974 std::optional<DIBasicType::Signedness> VarSign = Var->getSignedness(); in getActiveBits()
1975 bool VarSigned = (VarSign == DIBasicType::Signedness::Signed); in getActiveBits()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DDebugInfoMetadata.h936 enum class Signedness { Signed, Unsigned }; enum
940 LLVM_ABI std::optional<Signedness> getSignedness() const;
3270 std::optional<DIBasicType::Signedness> getSignedness() const { in getSignedness()