| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | edit_distance.h | 72 SmallVector<unsigned, 64> Row(n + 1); 73 for (unsigned i = 1; i < Row.size(); ++i) 74 Row[i] = i; 77 Row[0] = y; 78 unsigned BestThisRow = Row[0]; 83 int OldRow = Row[x]; 86 std::min(Row[x - 1], Row[x]) + 1); 90 Row[x] = Previous; 91 else Row[x] = std::min(Row[x-1], Row[x]) + 1; 94 BestThisRow = std::min(BestThisRow, Row[x]); [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | TileShapeInfo.h | 31 ShapeT(MachineOperand *Row, MachineOperand *Col, 33 : Row(Row), Col(Col) { in Row() function 38 : Row(nullptr), Col(nullptr), RowImm(InvalidImmShape), in ShapeT() 41 MachineOperand *R = Shape.Row; 45 if (!Row || !Col) 47 if (Row->getReg() == R->getReg() && Col->getReg() == C->getReg()) 56 MachineOperand *getRow() const { return Row; } in getRow() 64 bool isValid() { return (Row != nullptr) && (Col != nullptr); } in isValid() 81 RowImm = GetImm(Row->getReg()); in deduceImm() 87 MachineOperand *Row; variable
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFDebugLine.cpp | 467 DWARFDebugLine::Row::Row(bool DefaultIsStmt) { reset(DefaultIsStmt); } in Row() function in DWARFDebugLine::Row 566 LineTable->appendRow(Row); in appendRowToMatrix() 567 if (Row.EndSequence) { in appendRowToMatrix() 576 Row.postAppend(); in appendRowToMatrix() 679 Row.OpIndex = (Row.OpIndex + OperationAdvance) % MaxOpsPerInst; in advanceAddrOpIndex() 757 Row.Line += LineOffset; in handleSpecialOpcode() 843 State.Row.dump(*OS); in parse() 1103 State.Row.IsStmt = !State.Row.IsStmt; in parse() 1286 DWARFDebugLine::Row Row; in findRowInSeq() local 1287 Row.Address = Address; in findRowInSeq() [all …]
|
| H A D | DWARFDebugFrame.cpp | 188 Row.dump(OS, DumpOpts, 0); in operator <<() 216 UnwindRow Row; in create() local 230 UT.Rows.push_back(Row); in create() 240 UnwindRow Row; in create() local 247 UT.Rows.push_back(Row); in create() 539 Rows.push_back(Row); in parseRows() 554 Rows.push_back(Row); in parseRows() 602 std::make_pair(Row.getCFAValue(), Row.getRegisterLocations())); in parseRows() 736 Row.getCFAValue() = in parseRows() 766 Row.getCFAValue() = in parseRows() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-xray/ |
| H A D | xray-account.cpp | 322 Row.Min /= CycleFrequency; in exportStats() 324 Row.Pct90 /= CycleFrequency; in exportStats() 325 Row.Pct99 /= CycleFrequency; in exportStats() 326 Row.Max /= CycleFrequency; in exportStats() 327 Row.Sum /= CycleFrequency; in exportStats() 404 OS << llvm::formatv(StatsFormat, FuncId, Count, Row.Min, Row.Median, in exportStatsAsText() 405 Row.Pct90, Row.Pct99, Row.Max, Row.Sum) in exportStatsAsText() 406 << " " << Row.DebugInfo << ": " << Row.Function << "\n"; in exportStatsAsText() 414 OS << FuncId << ',' << Count << ',' << Row.Min << ',' << Row.Median << ',' in exportStatsAsCSV() 415 << Row.Pct90 << ',' << Row.Pct99 << ',' << Row.Max << "," << Row.Sum in exportStatsAsCSV() [all …]
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Symbol/ |
| H A D | UnwindPlan.cpp | 25 bool UnwindPlan::Row::RegisterLocation:: 93 void UnwindPlan::Row::RegisterLocation::Dump(Stream &s, in Dump() 168 bool UnwindPlan::Row::FAValue:: 169 operator==(const UnwindPlan::Row::FAValue &rhs) const { in operator ==() 217 void UnwindPlan::Row::Clear() { in Clear() 249 UnwindPlan::Row::Row() : m_cfa_value(), m_afa_value(), m_register_locations() {} in Row() function in UnwindPlan::Row 251 bool UnwindPlan::Row::GetRegisterInfo( in GetRegisterInfo() 273 void UnwindPlan::Row::SetRegisterInfo( in SetRegisterInfo() 303 bool UnwindPlan::Row::SetRegisterLocationToUndefined( in SetRegisterLocationToUndefined() 354 bool UnwindPlan::Row::operator==(const UnwindPlan::Row &rhs) const { in operator ==() [all …]
|
| H A D | DWARFCallFrameInfo.cpp | 628 UnwindPlan::Row *cie_initial_row = new UnwindPlan::Row; in FDEToUnwindPlan() 637 UnwindPlan::Row::RegisterLocation reg_location; in FDEToUnwindPlan() 655 UnwindPlan::Row *newrow = new UnwindPlan::Row; in FDEToUnwindPlan() 695 UnwindPlan::Row *newrow = new UnwindPlan::Row; in FDEToUnwindPlan() 709 UnwindPlan::Row *newrow = new UnwindPlan::Row; in FDEToUnwindPlan() 722 UnwindPlan::Row *newrow = new UnwindPlan::Row; in FDEToUnwindPlan() 735 UnwindPlan::Row *newrow = new UnwindPlan::Row; in FDEToUnwindPlan() 765 UnwindPlan::Row *newrow = new UnwindPlan::Row; in FDEToUnwindPlan() 826 UnwindPlan::Row::RegisterLocation reg_location; in HandleCommonDwarfOpcode() 856 UnwindPlan::Row::RegisterLocation reg_location; in HandleCommonDwarfOpcode() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/ |
| H A D | DebugLineSectionEmitter.h | 324 for (const DWARFDebugLine::Row &Row : LineTable.Rows) { in emitLineTableRows() local 343 if (FileNum != Row.File) { in emitLineTableRows() 344 FileNum = Row.File; in emitLineTableRows() 349 Column = Row.Column; in emitLineTableRows() 357 if (Isa != Row.Isa) { in emitLineTableRows() 358 Isa = Row.Isa; in emitLineTableRows() 366 if (Row.BasicBlock) in emitLineTableRows() 369 if (Row.PrologueEnd) in emitLineTableRows() 372 if (Row.EpilogueBegin) in emitLineTableRows() 376 if (!Row.EndSequence) { in emitLineTableRows() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/ |
| H A D | LineTable.cpp | 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() 255 LT.Lines.push_back(Row); in decode() 270 if (Addr < Row.Addr) in lookup() [all …]
|
| H A D | DwarfTransformer.cpp | 343 DWARFDebugLine::Row PrevRow; in convertFunctionLineTable() 346 const DWARFDebugLine::Row &Row = CUI.LineTable->Rows[RowIndex]; in convertFunctionLineTable() local 348 CUI.DWARFToGSYMFileIndex(Gsym, Row.File); in convertFunctionLineTable() 354 Row.dumpTableHeader(*Log, /*Indent=*/0); in convertFunctionLineTable() 355 Row.dump(*Log); in convertFunctionLineTable() 361 uint64_t RowAddress = Row.Address.Address; in convertFunctionLineTable() 382 LineEntry LE(RowAddress, FileIdx, Row.Line); in convertFunctionLineTable() 383 if (RowIndex != RowVector[0] && Row.Address < PrevRow.Address) { in convertFunctionLineTable() 415 if (Row.EndSequence) { in convertFunctionLineTable() 420 PrevRow = DWARFDebugLine::Row(); in convertFunctionLineTable() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86LowerAMXType.cpp | 126 Row = II->getArgOperand(0); in getShape() 142 Row = II->getArgOperand(0); in getShape() 146 Row = II->getArgOperand(0); in getShape() 151 Row = Builder.getInt16( in getShape() 183 return std::make_pair(Row, Col); in getShape() 268 Value *Row = II->getOperand(0); in combineBitcastStore() local 341 Value *Row = II->getOperand(0); in transformBitcast() local 468 Value *Row = II->getOperand(0); in createTileStore() local 494 Value *Row = II->getOperand(0); in replaceWithTileLoad() local 790 if (!Row || !Col || !isa<Constant>(Row) || !isa<Constant>(Col)) in optimizeAMXCastFromPhi() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | ConstraintSystem.cpp | 164 for (const auto &Row : Constraints) { in dump() local 166 for (unsigned I = 0, S = Row.size(); I < S; ++I) { in dump() 167 if (Row[I].Id >= NumVariables) in dump() 169 if (Row[I].Id == 0) in dump() 172 if (Row[I].Coefficient != 1) in dump() 173 Coefficient = std::to_string(Row[I].Coefficient) + " * "; in dump() 174 Parts.push_back(Coefficient + Names[Row[I].Id - 1]); in dump() 178 if (Row[0].Id == 0) in dump() 179 ConstPart = Row[0].Coefficient; in dump()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/UnwindAssembly/x86/ |
| H A D | x86AssemblyInspectionEngine.cpp | 915 UnwindPlan::Row::RegisterLocation initial_regloc; in GetNonCallSiteUnwindPlanFromAssembly() 916 UnwindPlan::RowSP row(new UnwindPlan::Row); in GetNonCallSiteUnwindPlanFromAssembly() 938 UnwindPlan::Row *newrow = new UnwindPlan::Row; in GetNonCallSiteUnwindPlanFromAssembly() 1051 UnwindPlan::Row::RegisterLocation regloc; in GetNonCallSiteUnwindPlanFromAssembly() 1142 UnwindPlan::Row::RegisterLocation regloc; in GetNonCallSiteUnwindPlanFromAssembly() 1234 UnwindPlan::Row::RegisterLocation sp, pc; in GetNonCallSiteUnwindPlanFromAssembly() 1246 UnwindPlan::Row *newrow = new UnwindPlan::Row; in GetNonCallSiteUnwindPlanFromAssembly() 1283 newrow = new UnwindPlan::Row; in GetNonCallSiteUnwindPlanFromAssembly() 1291 UnwindPlan::Row *newrow = new UnwindPlan::Row; in GetNonCallSiteUnwindPlanFromAssembly() 1383 UnwindPlan::RowSP new_row(new UnwindPlan::Row()); in AugmentUnwindPlanFromCallSite() [all …]
|
| H A D | UnwindAssembly-x86.cpp | 93 UnwindPlan::Row::FAValue::isRegisterPlusOffset || in AugmentUnwindPlanFromCallSite() 100 UnwindPlan::Row::RegisterLocation first_row_pc_loc; in AugmentUnwindPlanFromCallSite() 129 UnwindPlan::Row::RegisterLocation last_row_pc_loc; in AugmentUnwindPlanFromCallSite()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Support/ |
| H A D | UnicodeNameToCodepoint.cpp | 485 auto Get = [&Distances, Columns](size_t Column, std::size_t Row) -> char & { in nearestMatchesForCodepointName() argument 487 assert(Row < Rows); in nearestMatchesForCodepointName() 488 return Distances[Row * Columns + Column]; in nearestMatchesForCodepointName() 498 auto VisitNode = [&](const Node &N, std::size_t Row, in nearestMatchesForCodepointName() 505 Get(0, Row) = Row; in nearestMatchesForCodepointName() 508 const int Delete = Get(I - 1, Row) + 1; in nearestMatchesForCodepointName() 509 const int Insert = Get(I, Row - 1) + 1; in nearestMatchesForCodepointName() 514 Get(I, Row) = std::min(Insert, std::min(Delete, Replace)); in nearestMatchesForCodepointName() 517 Row++; in nearestMatchesForCodepointName() 520 unsigned Cost = Get(Columns - 1, Row - 1); in nearestMatchesForCodepointName() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/ |
| H A D | DWARFDebugLine.h | 132 struct Row { struct 133 explicit Row(bool DefaultIsStmt = false); 142 static bool orderByAddress(const Row &LHS, const Row &RHS) { in orderByAddress() argument 235 void appendRow(const DWARFDebugLine::Row &R) { Rows.push_back(R); } in appendRow() 288 using RowVector = std::vector<Row>; 414 struct Row Row; member
|
| /freebsd-14.2/sys/contrib/device-tree/src/arm/ |
| H A D | omap4-droid4-xt894.dts | 46 /* Row 1 */ 58 /* Row 2 */ 72 /* Row 3 */ 85 /* Row 4 */ 99 /* Row 5 */
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | ConstraintSystem.h | 38 static int64_t getLastCoefficient(ArrayRef<Entry> Row, uint16_t Id) { in getLastCoefficient() argument 39 if (Row.empty()) in getLastCoefficient() 41 if (Row.back().Id == Id) in getLastCoefficient() 42 return Row.back().Coefficient; in getLastCoefficient()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/UnwindAssembly/InstEmulation/ |
| H A D | UnwindAssemblyInstEmulation.cpp | 120 UnwindPlan::Row *newrow = new UnwindPlan::Row; in GetNonCallSiteUnwindPlanFromAssembly() 159 UnwindPlan::Row *newrow = new UnwindPlan::Row; in GetNonCallSiteUnwindPlanFromAssembly() 194 std::make_shared<UnwindPlan::Row>(*m_curr_row.get()); in GetNonCallSiteUnwindPlanFromAssembly() 207 std::make_shared<UnwindPlan::Row>(*saved_state.first); in GetNonCallSiteUnwindPlanFromAssembly() 232 std::make_shared<UnwindPlan::Row>(*m_curr_row), in GetNonCallSiteUnwindPlanFromAssembly() 261 std::make_shared<UnwindPlan::Row>(*m_curr_row.get()); in GetNonCallSiteUnwindPlanFromAssembly() 285 UnwindPlan::Row *newrow = new UnwindPlan::Row; in GetNonCallSiteUnwindPlanFromAssembly()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/DWARFLinker/Classic/ |
| H A D | DWARFStreamer.cpp | 1071 for (const DWARFDebugLine::Row &Row : LineTable.Rows) { in emitLineTableRows() local 1091 if (FileNum != Row.File) { in emitLineTableRows() 1092 FileNum = Row.File; in emitLineTableRows() 1098 Column = Row.Column; in emitLineTableRows() 1107 if (Isa != Row.Isa) { in emitLineTableRows() 1108 Isa = Row.Isa; in emitLineTableRows() 1118 if (Row.BasicBlock) { in emitLineTableRows() 1123 if (Row.PrologueEnd) { in emitLineTableRows() 1128 if (Row.EpilogueBegin) { in emitLineTableRows() 1134 if (!Row.EndSequence) { in emitLineTableRows() [all …]
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Symbol/ |
| H A D | UnwindPlan.h | 55 class Row { 181 const UnwindPlan::Row *row, Thread *thread, bool verbose) const; 323 Row(); 325 bool operator==(const Row &rhs) const; 395 typedef std::shared_ptr<Row> RowSP; 417 m_row_list.emplace_back(new Row(*row_sp)); in UnwindPlan()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/ |
| H A D | LVELFReader.cpp | 731 for (const DWARFDebugLine::Row &Row : Lines->Rows) { in createLineAndFileRecords() local 738 Line->setAddress(Row.Address.Address); in createLineAndFileRecords() 740 CompileUnit->getFilename(IncrementIndex ? Row.File + 1 : Row.File)); in createLineAndFileRecords() 741 Line->setLineNumber(Row.Line); in createLineAndFileRecords() 742 if (Row.Discriminator) in createLineAndFileRecords() 743 Line->setDiscriminator(Row.Discriminator); in createLineAndFileRecords() 744 if (Row.IsStmt) in createLineAndFileRecords() 746 if (Row.BasicBlock) in createLineAndFileRecords() 748 if (Row.EndSequence) in createLineAndFileRecords() 750 if (Row.EpilogueBegin) in createLineAndFileRecords() [all …]
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Tooling/ASTDiff/ |
| H A D | ASTDiff.cpp | 602 Row = LastRow; in getMatchingNodes() 605 while (Row > FirstRow || Col > FirstCol) { in getMatchingNodes() 606 if (Row > FirstRow && in getMatchingNodes() 607 ForestDist[Row - 1][Col] + 1 == ForestDist[Row][Col]) { in getMatchingNodes() 608 --Row; in getMatchingNodes() 610 ForestDist[Row][Col - 1] + 1 == ForestDist[Row][Col]) { in getMatchingNodes() 613 SNodeId LMD1 = S1.getLeftMostDescendant(Row); in getMatchingNodes() 617 NodeId Id1 = S1.getIdInRoot(Row); in getMatchingNodes() 622 --Row; in getMatchingNodes() 625 TreePairs.emplace_back(Row, Col); in getMatchingNodes() [all …]
|
| /freebsd-14.2/sys/contrib/dev/acpica/common/ |
| H A D | dmtbdump3.c | 203 UINT8 *Row; in AcpiDmDumpSlit() local 221 Row = (UINT8 *) ACPI_CAST_PTR (ACPI_TABLE_SLIT, Table)->Entry; in AcpiDmDumpSlit() 239 AcpiOsPrintf ("%2.2X", Row[j]); in AcpiDmDumpSlit() 259 Row += Localities; in AcpiDmDumpSlit()
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/memory-controllers/ddr/ |
| H A D | jedec,lpddr2-timings.yaml | 50 Row active time in nano seconds. 55 Row active time in pico seconds. 65 Row precharge time (all banks) in pico seconds.
|