Lines Matching refs:LocNoCount
128 LocNoCount = LocNoVec.size(); in DbgVariableValue()
129 if (LocNoCount > 0) { in DbgVariableValue()
130 LocNos = std::make_unique<unsigned[]>(LocNoCount); in DbgVariableValue()
136 LocNoCount = 1; in DbgVariableValue()
146 LocNos = std::make_unique<unsigned[]>(LocNoCount); in DbgVariableValue()
151 DbgVariableValue() : LocNoCount(0), WasIndirect(false), WasList(false) {} in DbgVariableValue()
153 : LocNoCount(Other.LocNoCount), WasIndirect(Other.getWasIndirect()), in DbgVariableValue()
170 LocNoCount = Other.getLocNoCount(); in operator =()
178 uint8_t getLocNoCount() const { return LocNoCount; } in getLocNoCount()
184 bool isUndef() const { return LocNoCount == 0 || containsLocNo(UndefLocNo); } in isUndef()
224 if (std::tie(LHS.LocNoCount, LHS.WasIndirect, LHS.WasList, in operator ==()
226 std::tie(RHS.LocNoCount, RHS.WasIndirect, RHS.WasList, RHS.Expression)) in operator ==()
239 unsigned *loc_nos_end() { return LocNos.get() + LocNoCount; } in loc_nos_end()
240 const unsigned *loc_nos_end() const { return LocNos.get() + LocNoCount; } in loc_nos_end()
242 return ArrayRef<unsigned>(LocNos.get(), LocNoCount); in loc_nos()
252 uint8_t LocNoCount : 6; member in __anon41ad64740211::DbgVariableValue