Home
last modified time | relevance | path

Searched refs:Rows (Results 1 – 25 of 30) sorted by relevance

12

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/PBQP/
H A DMath.h128 Rows(Rows), Cols(Cols), Data(std::make_unique<PBQPNum []>(Rows * Cols)) { in Matrix()
134 : Rows(Rows), Cols(Cols), in Matrix()
141 : Rows(M.Rows), Cols(M.Cols), in Matrix()
148 : Rows(M.Rows), Cols(M.Cols), Data(std::move(M.Data)) { in Matrix()
149 M.Rows = M.Cols = 0; in Matrix()
155 if (Rows != M.Rows || Cols != M.Cols)
163 return Rows; in getRows()
198 Vector V(Rows); in getColAsVector()
207 Matrix M(Cols, Rows); in transpose()
217 assert(Rows == M.Rows && Cols == M.Cols &&
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFUnitIndex.cpp126 Rows.reset(); in parse()
145 Rows = std::make_unique<Entry[]>(Header.NumBuckets); in parseImpl()
153 Rows[i].Signature = IndexData.getU64(&Offset); in parseImpl()
160 Rows[i].Index = this; in parseImpl()
161 Rows[i].Contributions = in parseImpl()
242 auto &Row = Rows[i]; in dump()
286 if (Rows[i].Contributions) in getFromOffset()
287 OffsetLookup.push_back(&Rows[i]); in getFromOffset()
313 while (Rows[H].getSignature() != S && Rows[H].Index != nullptr) in getFromHash()
318 if (Rows[H].Index == nullptr) in getFromHash()
[all …]
H A DDWARFDebugLine.cpp527 if (!Rows.empty()) { in dump()
530 for (const Row &R : Rows) { in dump()
542 Rows.clear(); in clear()
559 unsigned RowNumber = LineTable->Rows.size(); in appendRowToMatrix()
855 size_t RowCount = Rows.size(); in parse()
1229 if (Verbose && Rows.size() == RowCount) in parse()
1288 RowIter FirstRow = Rows.begin() + Seq.FirstRowIndex; in findRowInSeq()
1289 RowIter LastRow = Rows.begin() + Seq.LastRowIndex; in findRowInSeq()
1296 return RowPos - Rows.begin(); in findRowInSeq()
1471 const auto &Row = Rows[RowIndex]; in getFileLineInfoForAddress()
H A DDWARFDebugFrame.cpp194 for (const UnwindRow &Row : Rows) in dump()
198 raw_ostream &llvm::dwarf::operator<<(raw_ostream &OS, const UnwindTable &Rows) { in operator <<() argument
200 Rows.dump(OS, DumpOpts, 0); in operator <<()
230 UT.Rows.push_back(Row); in create()
247 UT.Rows.push_back(Row); in create()
539 Rows.push_back(Row); in parseRows()
554 Rows.push_back(Row); in parseRows()
H A DDWARFVerifier.cpp927 for (const auto &Row : LineTable->Rows) { in verifyDebugLineRows()
939 LineTable->Rows[RowIndex - 1].dump(OS); in verifyDebugLineRows()
949 LineTable->Rows.size() != 1) && in verifyDebugLineRows()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DMatrixBuilder.h67 Value *Stride, bool IsVolatile, unsigned Rows,
69 auto *RetType = FixedVectorType::get(EltTy, Rows * Columns);
71 Value *Ops[] = {DataPtr, Stride, B.getInt1(IsVolatile), B.getInt32(Rows),
91 unsigned Rows, unsigned Columns,
95 B.getInt32(Rows), B.getInt32(Columns)};
110 CallInst *CreateMatrixTranspose(Value *Matrix, unsigned Rows,
114 FixedVectorType::get(OpType->getElementType(), Rows * Columns);
117 Value *Ops[] = {Matrix, B.getInt32(Rows), B.getInt32(Columns)};
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFUnitIndex.h160 std::unique_ptr<Entry[]> Rows; variable
186 return ArrayRef(Rows.get(), Header.NumBuckets); in getRows()
190 return MutableArrayRef(Rows.get(), Header.NumBuckets); in getMutableRows()
H A DDWARFDebugFrame.h327 size_t size() const { return Rows.size(); } in size()
328 iterator begin() { return Rows.begin(); } in begin()
329 const_iterator begin() const { return Rows.begin(); } in begin()
330 iterator end() { return Rows.end(); } in end()
331 const_iterator end() const { return Rows.end(); } in end()
334 return Rows[Index];
375 RowContainer Rows;
399 raw_ostream &operator<<(raw_ostream &OS, const UnwindTable &Rows);
H A DDWARFDebugLine.h235 void appendRow(const DWARFDebugLine::Row &R) { Rows.push_back(R); } in appendRow()
294 RowVector Rows; member
/freebsd-14.2/contrib/llvm-project/llvm/utils/TableGen/
H A DRegisterInfoEmitter.cpp716 for (unsigned r = 0, re = Rows.size(); r != re; ++r) { in emitComposeSubRegIndices()
717 if (combine(&Idx, Rows[r])) { in emitComposeSubRegIndices()
723 Found = Rows.size(); in emitComposeSubRegIndices()
724 Rows.resize(Found + 1); in emitComposeSubRegIndices()
725 Rows.back().resize(SubRegIndicesSize); in emitComposeSubRegIndices()
726 combine(&Idx, Rows.back()); in emitComposeSubRegIndices()
732 if (Rows.size() > 1) { in emitComposeSubRegIndices()
743 for (unsigned r = 0, re = Rows.size(); r != re; ++r) { in emitComposeSubRegIndices()
746 if (Rows[r][i]) in emitComposeSubRegIndices()
747 OS << Rows[r][i]->getQualifiedName() << ", "; in emitComposeSubRegIndices()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/
H A DDWARFLinkerCompileUnit.cpp1534 OutLineTable.Rows = InputLineTable->Rows; in cloneAndEmitLineTable()
1537 if (OutLineTable.Rows.size() == 1 && OutLineTable.Rows[0].EndSequence) in cloneAndEmitLineTable()
1538 OutLineTable.Rows.clear(); in cloneAndEmitLineTable()
1544 NewRows.reserve(InputLineTable->Rows.size()); in cloneAndEmitLineTable()
1564 for (DWARFDebugLine::Row Row : InputLineTable->Rows) { in cloneAndEmitLineTable()
1605 OutLineTable.Rows = std::move(NewRows); in cloneAndEmitLineTable()
1616 if (!Rows.empty() && Rows.back().Address < Seq.front().Address) { in insertLineSequence()
1617 llvm::append_range(Rows, Seq); in insertLineSequence()
1630 if (InsertPoint != Rows.end() && InsertPoint->Address == Front && in insertLineSequence()
1633 Rows.insert(InsertPoint + 1, Seq.begin() + 1, Seq.end()); in insertLineSequence()
[all …]
H A DDebugLineSectionEmitter.h305 if (LineTable.Rows.empty()) { in emitLineTableRows()
324 for (const DWARFDebugLine::Row &Row : LineTable.Rows) { in emitLineTableRows()
H A DDWARFLinkerCompileUnit.h645 std::vector<DWARFDebugLine::Row> &Rows);
/freebsd-14.2/contrib/llvm-project/llvm/lib/DWARFLinker/Classic/
H A DDWARFLinker.cpp2057 if (!Rows.empty() && Rows.back().Address < Seq.front().Address) { in insertLineSequence()
2058 llvm::append_range(Rows, Seq); in insertLineSequence()
2071 if (InsertPoint != Rows.end() && InsertPoint->Address == Front && in insertLineSequence()
2074 Rows.insert(InsertPoint + 1, Seq.begin() + 1, Seq.end()); in insertLineSequence()
2076 Rows.insert(InsertPoint, Seq.begin(), Seq.end()); in insertLineSequence()
2133 LineTable.Rows = LT->Rows; in generateLineTableForUnit()
2136 if (LineTable.Rows.size() == 1 && LineTable.Rows[0].EndSequence) in generateLineTableForUnit()
2137 LineTable.Rows.clear(); in generateLineTableForUnit()
2143 NewRows.reserve(LT->Rows.size()); in generateLineTableForUnit()
2163 for (DWARFDebugLine::Row Row : LT->Rows) { in generateLineTableForUnit()
[all …]
H A DDWARFStreamer.cpp1050 if (LineTable.Rows.empty()) { in emitLineTableRows()
1071 for (const DWARFDebugLine::Row &Row : LineTable.Rows) { in emitLineTableRows()
/freebsd-14.2/sys/contrib/edk2/Include/Protocol/
H A DSimpleTextOut.h240 OUT UINTN *Rows
/freebsd-14.2/stand/i386/btx/btxldr/
H A Dbtxldr.S51 .set SCR_ROW,0x19 # Rows per screen
/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DUnicodeNameToCodepoint.cpp479 LLVM_ATTRIBUTE_UNUSED static std::size_t Rows = in nearestMatchesForCodepointName() local
487 assert(Row < Rows); in nearestMatchesForCodepointName()
/freebsd-14.2/stand/efi/include/
H A Deficon.h65 OUT UINTN *Rows
/freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
H A DDwarfTransformer.cpp346 const DWARFDebugLine::Row &Row = CUI.LineTable->Rows[RowIndex]; in convertFunctionLineTable()
401 CUI.LineTable->Rows[RowIndex2].dump(*Log); in convertFunctionLineTable()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DDXContainerYAML.h85 Indices(IdxTable.slice(El.IndicesOffset, El.Rows)), in SignatureElement()
/freebsd-14.2/contrib/llvm-project/llvm/lib/MC/
H A DDXContainerPSVInfo.cpp47 FinalElement.Rows = static_cast<uint8_t>(El.Indices.size()); in ProcessElementList()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DDXContainer.h331 uint8_t Rows; member
/freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVELFReader.cpp730 if (options().getPrintLines() && Lines->Rows.size()) in createLineAndFileRecords()
731 for (const DWARFDebugLine::Row &Row : Lines->Rows) { in createLineAndFileRecords()
/freebsd-14.2/stand/i386/btx/btx/
H A Dbtx.S94 .set SCR_ROW,0x19 # Rows per screen

12