Lines Matching refs:LocNoCount
130 LocNoCount = LocNoVec.size(); in DbgVariableValue()
131 if (LocNoCount > 0) { in DbgVariableValue()
132 LocNos = std::make_unique<unsigned[]>(LocNoCount); in DbgVariableValue()
138 LocNoCount = 1; in DbgVariableValue()
147 LocNos = std::make_unique<unsigned[]>(LocNoCount); in DbgVariableValue()
152 DbgVariableValue() : LocNoCount(0), WasIndirect(false), WasList(false) {} in DbgVariableValue()
154 : LocNoCount(Other.LocNoCount), WasIndirect(Other.getWasIndirect()), in DbgVariableValue()
171 LocNoCount = Other.getLocNoCount(); in operator =()
179 uint8_t getLocNoCount() const { return LocNoCount; } in getLocNoCount()
185 bool isUndef() const { return LocNoCount == 0 || containsLocNo(UndefLocNo); } in isUndef()
225 if (std::tie(LHS.LocNoCount, LHS.WasIndirect, LHS.WasList, in operator ==()
227 std::tie(RHS.LocNoCount, RHS.WasIndirect, RHS.WasList, RHS.Expression)) in operator ==()
240 unsigned *loc_nos_end() { return LocNos.get() + LocNoCount; } in loc_nos_end()
241 const unsigned *loc_nos_end() const { return LocNos.get() + LocNoCount; } in loc_nos_end()
243 return ArrayRef<unsigned>(LocNos.get(), LocNoCount); in loc_nos()
253 uint8_t LocNoCount : 6; member in __anon093131440211::DbgVariableValue