Home
last modified time | relevance | path

Searched refs:ColIdx (Results 1 – 3 of 3) 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() local
116 if (!ActiveCols[ColIdx].isActive()) in findFreeColumn()
117 return ColIdx; in findFreeColumn()
151 for (unsigned ColIdx = 0, End = ActiveCols.size(); ColIdx < End; ++ColIdx) { in update() local
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()
160 << ColIdx << ": LiveIn=" << ActiveCols[ColIdx].LiveIn in update()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DCodeGenMapTable.cpp288 for (unsigned ColIdx = 0; ColIdx < NumOfCols; ColIdx++) { in buildMapTable() local
289 ListInit *CurValueCol = ValueCols[ColIdx]; in buildMapTable()
291 ColInstrVec[ColIdx] = ColInstr; in buildMapTable()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGExpr.cpp3872 llvm::Value *ColIdx = EmitScalarExpr(E->getColumnIdx()); in EmitMatrixSubscriptExpr() local
3877 Builder.CreateAdd(Builder.CreateMul(ColIdx, NumRows), RowIdx); in EmitMatrixSubscriptExpr()