Home
last modified time | relevance | path

Searched refs:ZExtBits (Results 1 – 2 of 2) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DBasicAliasAnalysis.cpp261 unsigned ZExtBits = 0; member
268 : V(V), ZExtBits(ZExtBits), SExtBits(SExtBits), TruncBits(TruncBits) {} in CastedValue()
276 return CastedValue(NewV, ZExtBits, SExtBits, TruncBits); in withValue()
284 return CastedValue(NewV, ZExtBits, SExtBits, TruncBits - ExtendBy); in withZExtOfValue()
288 return CastedValue(NewV, ZExtBits + SExtBits + ExtendBy, 0, 0); in withZExtOfValue()
300 return CastedValue(NewV, ZExtBits, SExtBits + ExtendBy, 0); in withSExtOfValue()
308 if (ZExtBits) N = N.zext(N.getBitWidth() + ZExtBits); in evaluateWith()
317 if (ZExtBits) N = N.zeroExtend(N.getBitWidth() + ZExtBits); in evaluateWith()
325 return (!ZExtBits || NUW) && (!SExtBits || NSW); in canDistributeOver()
329 return ZExtBits == Other.ZExtBits && SExtBits == Other.SExtBits && in hasSameCastsAs()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZTargetTransformInfo.cpp1077 unsigned ZExtBits = 0; in isFoldableLoad() local
1085 ZExtBits = UserBits; in isFoldableLoad()
1087 if (TruncBits || SExtBits || ZExtBits) { in isFoldableLoad()
1100 ((SExtBits || ZExtBits) ? 0 : (TruncBits ? TruncBits : LoadedBits)); in isFoldableLoad()
1105 if (LoadedBits == 32 && ZExtBits == 64) in isFoldableLoad()