Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
H A DSourcePrinter.cpp115 for (unsigned ColIdx = 0; ColIdx < ActiveCols.size(); ++ColIdx) in findFreeColumn()
116 if (!ActiveCols[ColIdx].isActive()) in findFreeColumn()
119 size_t OldSize = ActiveCols.size(); in findFreeColumn()
120 ActiveCols.grow(std::max<size_t>(OldSize * 2, 1)); in findFreeColumn()
151 for (unsigned ColIdx = 0, End = ActiveCols.size(); ColIdx < End; ++ColIdx) { in update()
152 if (!ActiveCols[ColIdx].isActive()) in update()
154 CheckedVarIdxs.insert(ActiveCols[ColIdx].VarIdx); in update()
155 LiveVariable &LV = LiveVariables[ActiveCols[ColIdx].VarIdx]; in update()
156 ActiveCols[ColIdx].LiveIn = LV.liveAtAddress(ThisAddr); in update()
157 ActiveCols[ColIdx].LiveOut = LV.liveAtAddress(NextAddr); in update()
[all …]
H A DSourcePrinter.h59 IndexedMap<Column> ActiveCols; variable
83 : LiveVariables(), ActiveCols(Column()), MRI(MRI), STI(STI) {} in LiveVariablePrinter()