Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DLiveDebugVariables.cpp188 SmallVector<unsigned, 4> NewLocNos; in decrementLocNosAfterPivot() local
190 NewLocNos.push_back(LocNo != UndefLocNo && LocNo > Pivot ? LocNo - 1 in decrementLocNosAfterPivot()
192 return DbgVariableValue(NewLocNos, WasIndirect, WasList, *Expression); in decrementLocNosAfterPivot()
196 SmallVector<unsigned> NewLocNos; in remapLocNos() local
200 NewLocNos.push_back(LocNo == UndefLocNo ? UndefLocNo : LocNoMap[LocNo]); in remapLocNos()
201 return DbgVariableValue(NewLocNos, WasIndirect, WasList, *Expression); in remapLocNos()
205 SmallVector<unsigned> NewLocNos; in changeLocNo() local
206 NewLocNos.assign(loc_nos_begin(), loc_nos_end()); in changeLocNo()
207 auto OldLocIt = find(NewLocNos, OldLocNo); in changeLocNo()
208 assert(OldLocIt != NewLocNos.end() && "Old location must be present."); in changeLocNo()
[all …]