Home
last modified time | relevance | path

Searched refs:Row (Results 1 – 25 of 77) sorted by relevance

1234

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A Dedit_distance.h63 unsigned *Row = SmallBuffer; variable
65 Row = new unsigned[n + 1];
66 Allocated.reset(Row);
70 Row[i] = i;
73 Row[0] = y;
74 unsigned BestThisRow = Row[0];
78 int OldRow = Row[x];
80 Row[x] = std::min(
82 std::min(Row[x-1], Row[x])+1);
85 if (FromArray[y-1] == ToArray[x-1]) Row[x] = Previous;
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DTileShapeInfo.h32 ShapeT(MachineOperand *Row, MachineOperand *Col,
34 : Row(Row), Col(Col) { in Row() function
39 : Row(nullptr), Col(nullptr), RowImm(InvalidImmShape), in ShapeT()
42 MachineOperand *R = Shape.Row;
46 if (!Row || !Col)
48 if (Row->getReg() == R->getReg() && Col->getReg() == C->getReg())
57 MachineOperand *getRow() const { return Row; } in getRow()
65 bool isValid() { return (Row != nullptr) && (Col != nullptr); } in isValid()
82 RowImm = GetImm(Row->getReg()); in deduceImm()
88 MachineOperand *Row; variable
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-xray/
H A Dxray-account.cpp317 auto &Row = std::get<2>(Results.back()); in exportStats() local
320 Row.Min /= CycleFrequency; in exportStats()
321 Row.Median /= CycleFrequency; in exportStats()
322 Row.Pct90 /= CycleFrequency; in exportStats()
323 Row.Pct99 /= CycleFrequency; in exportStats()
324 Row.Max /= CycleFrequency; in exportStats()
325 Row.Sum /= CycleFrequency; in exportStats()
328 Row.Function = FuncIdHelper.SymbolOrNumber(FuncId); in exportStats()
329 Row.DebugInfo = FuncIdHelper.FileLineAndColumn(FuncId); in exportStats()
401 exportStats(Header, [&](int32_t FuncId, size_t Count, const ResultRow &Row) { in exportStatsAsText() argument
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugFrame.cpp182 raw_ostream &llvm::dwarf::operator<<(raw_ostream &OS, const UnwindRow &Row) { in operator <<() argument
183 Row.dump(OS, nullptr, false, 0); in operator <<()
189 for (const UnwindRow &Row : Rows) in dump() local
190 Row.dump(OS, MRI, IsEH, IndentLevel); in dump()
210 UnwindRow Row; in create() local
211 Row.setAddress(Fde->getInitialLocation()); in create()
213 if (Error CieError = UT.parseRows(Cie->cfis(), Row, nullptr)) in create()
217 const RegisterLocations InitialLocs = Row.getRegisterLocations(); in create()
218 if (Error FdeError = UT.parseRows(Fde->cfis(), Row, &InitialLocs)) in create()
222 if (Row.getRegisterLocations().hasLocations() || in create()
[all …]
H A DDWARFDebugLine.cpp462 DWARFDebugLine::Row::Row(bool DefaultIsStmt) { reset(DefaultIsStmt); } in Row() function in DWARFDebugLine::Row
464 void DWARFDebugLine::Row::postAppend() { in postAppend()
471 void DWARFDebugLine::Row::reset(bool DefaultIsStmt) { in reset()
486 void DWARFDebugLine::Row::dumpTableHeader(raw_ostream &OS, unsigned Indent) { in dumpTableHeader()
494 void DWARFDebugLine::Row::dump(raw_ostream &OS) const { in dump()
522 Row::dumpTableHeader(OS, 0); in dump()
523 for (const Row &R : Rows) { in dump()
547 Row.reset(LineTable->Prologue.DefaultIsStmt); in resetRowAndSequence()
556 Sequence.LowPC = Row.Address.Address; in appendRowToMatrix()
559 LineTable->appendRow(Row); in appendRowToMatrix()
[all …]
H A DDWARFUnitIndex.cpp233 auto &Row = Rows[i]; in dump() local
234 if (auto *Contribs = Row.Contributions.get()) { in dump()
235 OS << format("%5u 0x%016" PRIx64 " ", i + 1, Row.Signature); in dump()
H A DDWARFVerifier.cpp808 for (const auto &Row : LineTable->Rows) { in verifyDebugLineRows() local
810 if (Row.Address.Address < PrevAddress) { in verifyDebugLineRows()
818 DWARFDebugLine::Row::dumpTableHeader(OS, 0); in verifyDebugLineRows()
821 Row.dump(OS); in verifyDebugLineRows()
826 if (!LineTable->hasFileAtIndex(Row.File)) { in verifyDebugLineRows()
832 << "][" << RowIndex << "] has invalid file index " << Row.File in verifyDebugLineRows()
836 DWARFDebugLine::Row::dumpTableHeader(OS, 0); in verifyDebugLineRows()
837 Row.dump(OS); in verifyDebugLineRows()
840 if (Row.EndSequence) in verifyDebugLineRows()
843 PrevAddress = Row.Address.Address; in verifyDebugLineRows()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/GSYM/
H A DLineTable.cpp52 typedef std::function<bool(const LineEntry &Row)> LineEntryCallback;
70 LineEntry Row(BaseAddr, 1, FirstLine); in parse() local
86 Row.File = (uint32_t)Data.getULEB128(&Offset); in parse()
93 Row.Addr += Data.getULEB128(&Offset); in parse()
95 if (Callback(Row) == false) in parse()
103 Row.Line += Data.getSLEB128(&Offset); in parse()
110 Row.Line += LineDelta; in parse()
111 Row.Addr += AddrDelta; in parse()
113 if (Callback(Row) == false) in parse()
254 llvm::Error Err = parse(Data, BaseAddr, [&](const LineEntry &Row) -> bool { in decode() argument
[all …]
H A DDwarfTransformer.cpp279 DWARFDebugLine::Row PrevRow; in convertFunctionLineTable()
282 const DWARFDebugLine::Row &Row = CUI.LineTable->Rows[RowIndex]; in convertFunctionLineTable() local
283 const uint32_t FileIdx = CUI.DWARFToGSYMFileIndex(Gsym, Row.File); in convertFunctionLineTable()
284 uint64_t RowAddress = Row.Address.Address; in convertFunctionLineTable()
303 LineEntry LE(RowAddress, FileIdx, Row.Line); in convertFunctionLineTable()
304 if (RowIndex != RowVector[0] && Row.Address < PrevRow.Address) { in convertFunctionLineTable()
329 if (LastLE && LastLE->File == FileIdx && LastLE->Line == Row.Line) in convertFunctionLineTable()
334 if (Row.EndSequence) { in convertFunctionLineTable()
339 PrevRow = DWARFDebugLine::Row(); in convertFunctionLineTable()
342 PrevRow = Row; in convertFunctionLineTable()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86LowerAMXType.cpp119 Value *Row = nullptr, *Col = nullptr; in getShape() local
125 Row = II->getArgOperand(0); in getShape()
138 Row = II->getArgOperand(0); in getShape()
142 Row = II->getArgOperand(0); in getShape()
146 Row = II->getArgOperand(2); in getShape()
153 Row = getRowFromCol(II, Row, 4); in getShape()
161 return std::make_pair(Row, Col); in getShape()
170 Value *Row = nullptr, *Col = nullptr; in combineLoadBitcast() local
174 std::tie(Row, Col) = getShape(II, OpNo); in combineLoadBitcast()
180 std::array<Value *, 4> Args = {Row, Col, I8Ptr, Stride}; in combineLoadBitcast()
[all …]
H A DX86PreAMXConfig.cpp175 Value *Row = Shapes[I * 2]; in preWriteTileCfg() local
177 Row = new TruncInst(Row, I8Ty, "", Pos); in preWriteTileCfg()
178 new StoreInst(Row, RowPos, Pos); in preWriteTileCfg()
H A DX86LowerAMXIntrinsics.cpp77 IRBuilderBase &B, Value *Row, Value *Col,
87 Value *Row, Value *Col, Value *K, Value *Acc, Value *LHS,
149 BasicBlock *Start, BasicBlock *End, IRBuilderBase &B, Value *Row, in createTileLoadStoreLoops() argument
164 BasicBlock *RowBody = createLoop(Start, End, Row, B.getInt16(1), in createTileLoadStoreLoops()
244 IRBuilderBase &B, Value *Row, in createTileDPLoops() argument
280 BasicBlock *RowBody = createLoop(Start, End, Row, B.getInt16(1), in createTileDPLoops()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DConstraintSystem.cpp114 for (auto &Row : Constraints) { in dump() local
116 for (unsigned I = 1, S = Row.size(); I < S; ++I) { in dump()
117 if (Row[I] == 0) in dump()
120 if (Row[I] != 1) in dump()
121 Coefficient = std::to_string(Row[I]) + " * "; in dump()
126 << " <= " << std::to_string(Row[0]) << "\n"); in dump()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DWARFLinker/
H A DDWARFStreamer.cpp495 std::vector<DWARFDebugLine::Row> &Rows, in emitLineTableForUnit()
535 auto &Row = Rows[Idx]; in emitLineTableForUnit() local
542 MS->emitIntValue(Row.Address.Address, PointerSize); in emitLineTableForUnit()
546 AddressDelta = (Row.Address.Address - Address) / MinInstLength; in emitLineTableForUnit()
554 if (FileNum != Row.File) { in emitLineTableForUnit()
555 FileNum = Row.File; in emitLineTableForUnit()
560 if (Column != Row.Column) { in emitLineTableForUnit()
561 Column = Row.Column; in emitLineTableForUnit()
570 if (Isa != Row.Isa) { in emitLineTableForUnit()
571 Isa = Row.Isa; in emitLineTableForUnit()
[all …]
H A DDWARFLinker.cpp1597 static void insertLineSequence(std::vector<DWARFDebugLine::Row> &Seq, in insertLineSequence()
1598 std::vector<DWARFDebugLine::Row> &Rows) { in insertLineSequence()
1610 Rows, [=](const DWARFDebugLine::Row &O) { return O.Address < Front; }); in insertLineSequence()
1670 std::vector<DWARFDebugLine::Row> NewRows; in patchLineTableForUnit()
1675 std::vector<DWARFDebugLine::Row> Seq; in patchLineTableForUnit()
1690 for (auto &Row : LineTable.Rows) { in patchLineTableForUnit() local
1696 if (CurrRange == InvalidRange || Row.Address.Address < CurrRange.start() || in patchLineTableForUnit()
1697 Row.Address.Address > CurrRange.stop() || in patchLineTableForUnit()
1698 (Row.Address.Address == CurrRange.stop() && !Row.EndSequence)) { in patchLineTableForUnit()
1704 CurrRange = FunctionRanges.find(Row.Address.Address); in patchLineTableForUnit()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugLine.h140 struct Row { struct
141 explicit Row(bool DefaultIsStmt = false);
150 static bool orderByAddress(const Row &LHS, const Row &RHS) { in orderByAddress() argument
239 void appendRow(const DWARFDebugLine::Row &R) { Rows.push_back(R); } in appendRow()
287 using RowVector = std::vector<Row>;
403 struct Row Row; member
/netbsd-src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/
H A Domap4-droid4-xt894.dts46 /* Row 1 */
58 /* Row 2 */
72 /* Row 3 */
85 /* Row 4 */
99 /* Row 5 */
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DLoopInterchange.cpp81 for (auto &Row : DepMatrix) { in printDepMatrix() local
82 for (auto D : Row) in printDepMatrix()
196 static bool isOuterMostDepPositive(CharMatrix &DepMatrix, unsigned Row, in isOuterMostDepPositive() argument
199 if (DepMatrix[Row][i] == '<') in isOuterMostDepPositive()
201 if (DepMatrix[Row][i] == '>') in isOuterMostDepPositive()
209 static bool containsNoDependence(CharMatrix &DepMatrix, unsigned Row, in containsNoDependence() argument
212 if (DepMatrix[Row][i] != '=' && DepMatrix[Row][i] != 'S' && in containsNoDependence()
213 DepMatrix[Row][i] != 'I') in containsNoDependence()
219 static bool validDepInterchange(CharMatrix &DepMatrix, unsigned Row, in validDepInterchange() argument
222 if (isOuterMostDepPositive(DepMatrix, Row, OuterLoopId)) in validDepInterchange()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/tools/scan-build/bin/
H A Dscan-build357 my $Row = {
367 push @$Stats, $Row;
526 foreach my $Row (@$Stats) {
527 $FilesHash->{$Row->{Filename}} = 1;
528 $TotalBlocks += $Row->{Total};
529 $UnreachedBlocks += $Row->{Unreachable};
530 $BlockAborted++ if $Row->{Aborted} eq 'yes';
531 $WorkListAborted++ if $Row->{Empty} eq 'no';
532 $Aborted++ if $Row->{Aborted} eq 'yes' || $Row->{Empty} eq 'no';
/netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/ASTDiff/
H A DASTDiff.cpp590 SNodeId LastRow, LastCol, FirstRow, FirstCol, Row, Col; in getMatchingNodes() local
603 Row = LastRow; in getMatchingNodes()
606 while (Row > FirstRow || Col > FirstCol) { in getMatchingNodes()
607 if (Row > FirstRow && in getMatchingNodes()
608 ForestDist[Row - 1][Col] + 1 == ForestDist[Row][Col]) { in getMatchingNodes()
609 --Row; in getMatchingNodes()
611 ForestDist[Row][Col - 1] + 1 == ForestDist[Row][Col]) { in getMatchingNodes()
614 SNodeId LMD1 = S1.getLeftMostDescendant(Row); in getMatchingNodes()
618 NodeId Id1 = S1.getIdInRoot(Row); in getMatchingNodes()
623 --Row; in getMatchingNodes()
[all …]
/netbsd-src/sys/external/bsd/acpica/dist/common/
H A Ddmtbdump3.c96 UINT8 *Row; in AcpiDmDumpSlit()
114 Row = (UINT8 *) ACPI_CAST_PTR (ACPI_TABLE_SLIT, Table)->Entry; in AcpiDmDumpSlit()
132 AcpiOsPrintf ("%2.2X", Row[j]); in AcpiDmDumpSlit()
152 Row += Localities; in AcpiDmDumpSlit()
95 UINT8 *Row; AcpiDmDumpSlit() local
/netbsd-src/sys/external/bsd/gnu-efi/dist/lib/
H A Devent.c140 IN UINTN Row, in WaitForEventWithTimeout() argument
150 PrintAt (Column, Row, String, Timeout); in WaitForEventWithTimeout()
H A Dprint.c122 IN UINTN Row,
664 IN UINTN Row, in PrintAt() argument
691 back = _IPrint (Column, Row, ST->ConOut, fmt, NULL, args); in PrintAt()
735 IN UINTN Row, in IPrintAt() argument
764 back = _IPrint (Column, Row, Out, fmt, NULL, args); in IPrintAt()
773 IN UINTN Row, in _IPrint() argument
805 uefi_call_wrapper(Out->SetCursorPosition, 3, Out, Column, Row); in _IPrint()
/netbsd-src/external/gpl3/binutils/dist/libsframe/doc/
H A Dsframe-spec.info116 Descriptor Entry (SFrame FDE) sub-section, and the SFrame Frame Row
124 * SFrame Frame Row Entries::
229 length is given for the last sub-section, the SFrame Frame Row Entry
307 *Note SFrame Frame Row Entries::.
339 File: sframe-spec.info, Node: SFrame Function Descriptor Entries, Next: SFrame Frame Row Entries,…
508 File: sframe-spec.info, Node: SFrame Frame Row Entries, Prev: SFrame Function Descriptor Entries,…
513 The SFrame Frame Row Entry sub-section contains the core of the stack
516 An SFrame Frame Row Entry is a self-sufficient record containing
519 SFrame Frame Row Entry is followed by S*N bytes, where:
578 File: sframe-spec.info, Node: The SFrame FRE info word, Up: SFrame Frame Row Entries
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DTargetInstrInfo.cpp829 int Row; in reassociateOps() local
831 case MachineCombinerPattern::REASSOC_AX_BY: Row = 0; break; in reassociateOps()
832 case MachineCombinerPattern::REASSOC_AX_YB: Row = 1; break; in reassociateOps()
833 case MachineCombinerPattern::REASSOC_XA_BY: Row = 2; break; in reassociateOps()
834 case MachineCombinerPattern::REASSOC_XA_YB: Row = 3; break; in reassociateOps()
838 MachineOperand &OpA = Prev.getOperand(OpIdx[Row][0]); in reassociateOps()
839 MachineOperand &OpB = Root.getOperand(OpIdx[Row][1]); in reassociateOps()
840 MachineOperand &OpX = Prev.getOperand(OpIdx[Row][2]); in reassociateOps()
841 MachineOperand &OpY = Root.getOperand(OpIdx[Row][3]); in reassociateOps()

1234