Searched refs:SExtBits (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | BasicAliasAnalysis.cpp | 269 unsigned SExtBits = 0; member 275 explicit CastedValue(const Value *V, unsigned ZExtBits, unsigned SExtBits, in CastedValue() 277 : V(V), ZExtBits(ZExtBits), SExtBits(SExtBits), TruncBits(TruncBits), in CastedValue() 282 SExtBits; in getBitWidth() 286 return CastedValue(NewV, ZExtBits, SExtBits, TruncBits, in withValue() 297 return CastedValue(NewV, ZExtBits, SExtBits, TruncBits - ExtendBy, in withZExtOfValue() 306 return CastedValue(NewV, ZExtBits + SExtBits + ExtendBy, 0, 0, in withZExtOfValue() 317 return CastedValue(NewV, ZExtBits, SExtBits, TruncBits - ExtendBy, in withSExtOfValue() 324 return CastedValue(NewV, ZExtBits, SExtBits + ExtendBy, 0, IsNonNegative); in withSExtOfValue() 331 if (SExtBits) N = N.sext(N.getBitWidth() + SExtBits); in evaluateWith() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
H A D | SystemZTargetTransformInfo.cpp | 1078 unsigned SExtBits = 0; in isFoldableLoad() local 1085 SExtBits = UserBits; in isFoldableLoad() 1089 if (TruncBits || SExtBits || ZExtBits) { in isFoldableLoad() 1102 ((SExtBits || ZExtBits) ? 0 : (TruncBits ? TruncBits : LoadedBits)); in isFoldableLoad() 1113 (SExtBits == 32 || in isFoldableLoad() 1114 (SExtBits == 64 && ST->hasMiscellaneousExtensions2()))) in isFoldableLoad() 1121 if (LoadedBits == 32 && SExtBits == 64) in isFoldableLoad()
|