Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DSourcePrinter.cpp123 for (unsigned ColIdx = 0; ColIdx < ActiveCols.size(); ++ColIdx) in findFreeColumn()
124 if (!ActiveCols[ColIdx].isActive()) in findFreeColumn()
127 size_t OldSize = ActiveCols.size(); in findFreeColumn()
128 ActiveCols.grow(std::max<size_t>(OldSize * 2, 1)); in findFreeColumn()
159 for (unsigned ColIdx = 0, End = ActiveCols.size(); ColIdx < End; ++ColIdx) { in update()
160 if (!ActiveCols[ColIdx].isActive()) in update()
162 CheckedVarIdxs.insert(ActiveCols[ColIdx].VarIdx); in update()
163 LiveVariable &LV = LiveVariables[ActiveCols[ColIdx].VarIdx]; in update()
164 ActiveCols[ColIdx].LiveIn = LV.liveAtAddress(ThisAddr); in update()
165 ActiveCols[ColId in update()
[all...]
H A DSourcePrinter.h61 IndexedMap<Column> ActiveCols; variable
85 : ActiveCols(Column()), MRI(MRI), STI(STI) {} in LiveVariablePrinter()