Lines Matching full:sot
723 SizeOffsetAPInt SOT = computeValue(V); in computeImpl() local
727 return SOT; in computeImpl()
733 if (SOT.knownSize() && !::CheckedZextOrTrunc(SOT.Size, InitialIntTyBits)) in computeImpl()
734 SOT.Size = APInt(); in computeImpl()
735 if (SOT.knownOffset() && in computeImpl()
736 !::CheckedZextOrTrunc(SOT.Offset, InitialIntTyBits)) in computeImpl()
737 SOT.Offset = APInt(); in computeImpl()
740 return {SOT.Size, in computeImpl()
741 SOT.Offset.getBitWidth() > 1 ? SOT.Offset + Offset : SOT.Offset}; in computeImpl()
1041 SizeOffsetValue::SizeOffsetValue(const SizeOffsetWeakTrackingVH &SOT) in SizeOffsetValue() argument
1042 : SizeOffsetType(SOT.Size, SOT.Offset) {} in SizeOffsetValue()