Home
last modified time | relevance | path

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

123

/freebsd-12.1/contrib/llvm/include/llvm/ADT/
H A Dedit_distance.h64 unsigned *Row = SmallBuffer; variable
66 Row = new unsigned[n + 1];
67 Allocated.reset(Row);
71 Row[i] = i;
74 Row[0] = y;
75 unsigned BestThisRow = Row[0];
79 int OldRow = Row[x];
81 Row[x] = std::min(
83 std::min(Row[x-1], Row[x])+1);
87 else Row[x] = std::min(Row[x-1], Row[x]) + 1;
[all …]
/freebsd-12.1/contrib/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugLine.cpp348 DWARFDebugLine::Row::Row(bool DefaultIsStmt) { reset(DefaultIsStmt); } in Row() function in DWARFDebugLine::Row
403 Row::dumpTableHeader(OS); in dump()
434 LineTable->appendRow(Row); in appendRowToMatrix()
435 if (Row.EndSequence) { in appendRowToMatrix()
443 Row.postAppend(); in appendRowToMatrix()
691 State.Row.IsStmt = !State.Row.IsStmt; in parse()
824 State.Row.dump(*OS); in parse()
862 DWARFDebugLine::Row Row; in findRowInSeq() local
863 Row.Address = Address; in findRowInSeq()
867 FirstRow, LastRow, Row, DWARFDebugLine::Row::orderByAddress); in findRowInSeq()
[all …]
H A DDWARFUnitIndex.cpp138 auto &Row = Rows[i]; in dump() local
139 if (auto *Contribs = Row.Contributions.get()) { in dump()
140 OS << format("%5u 0x%016" PRIx64 " ", i + 1, Row.Signature); in dump()
H A DDWARFVerifier.cpp774 for (const auto &Row : LineTable->Rows) { in verifyDebugLineRows() local
776 if (Row.Address < PrevAddress) { in verifyDebugLineRows()
784 DWARFDebugLine::Row::dumpTableHeader(OS); in verifyDebugLineRows()
787 Row.dump(OS); in verifyDebugLineRows()
792 if (Row.File > MaxFileIndex) { in verifyDebugLineRows()
797 << "][" << RowIndex << "] has invalid file index " << Row.File in verifyDebugLineRows()
799 DWARFDebugLine::Row::dumpTableHeader(OS); in verifyDebugLineRows()
800 Row.dump(OS); in verifyDebugLineRows()
803 if (Row.EndSequence) in verifyDebugLineRows()
806 PrevAddress = Row.Address; in verifyDebugLineRows()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/
H A DUnwindPlan.cpp21 bool UnwindPlan::Row::RegisterLocation::
68 void UnwindPlan::Row::RegisterLocation::Dump(Stream &s, in Dump()
140 bool UnwindPlan::Row::FAValue::
141 operator==(const UnwindPlan::Row::FAValue &rhs) const { in operator ==()
184 void UnwindPlan::Row::Clear() { in Clear()
216 UnwindPlan::Row::Row() in Row() function in UnwindPlan::Row
219 bool UnwindPlan::Row::GetRegisterInfo( in GetRegisterInfo()
237 void UnwindPlan::Row::SetRegisterInfo( in SetRegisterInfo()
267 bool UnwindPlan::Row::SetRegisterLocationToUndefined( in SetRegisterLocationToUndefined()
318 bool UnwindPlan::Row::operator==(const UnwindPlan::Row &rhs) const { in operator ==()
[all …]
H A DDWARFCallFrameInfo.cpp624 UnwindPlan::Row *cie_initial_row = new UnwindPlan::Row; in FDEToUnwindPlan()
633 UnwindPlan::Row::RegisterLocation reg_location; in FDEToUnwindPlan()
651 UnwindPlan::Row *newrow = new UnwindPlan::Row; in FDEToUnwindPlan()
686 UnwindPlan::Row *newrow = new UnwindPlan::Row; in FDEToUnwindPlan()
700 UnwindPlan::Row *newrow = new UnwindPlan::Row; in FDEToUnwindPlan()
713 UnwindPlan::Row *newrow = new UnwindPlan::Row; in FDEToUnwindPlan()
726 UnwindPlan::Row *newrow = new UnwindPlan::Row; in FDEToUnwindPlan()
756 UnwindPlan::Row *newrow = new UnwindPlan::Row; in FDEToUnwindPlan()
818 UnwindPlan::Row::RegisterLocation reg_location; in HandleCommonDwarfOpcode()
848 UnwindPlan::Row::RegisterLocation reg_location; in HandleCommonDwarfOpcode()
[all …]
H A DArmUnwindInfo.cpp325 UnwindPlan::RowSP row = std::make_shared<UnwindPlan::Row>(); in GetUnwindPlan()
337 UnwindPlan::Row::RegisterLocation lr_location; in GetUnwindPlan()
/freebsd-12.1/contrib/llvm/tools/llvm-xray/
H A Dxray-account.cpp283 Row.Min /= CycleFrequency; in exportStats()
285 Row.Pct90 /= CycleFrequency; in exportStats()
286 Row.Pct99 /= CycleFrequency; in exportStats()
287 Row.Max /= CycleFrequency; in exportStats()
288 Row.Sum /= CycleFrequency; in exportStats()
365 OS << llvm::formatv(StatsFormat, FuncId, Count, Row.Min, Row.Median, in exportStatsAsText()
366 Row.Pct90, Row.Pct99, Row.Max, Row.Sum) in exportStatsAsText()
367 << " " << Row.DebugInfo << ": " << Row.Function << "\n"; in exportStatsAsText()
375 OS << FuncId << ',' << Count << ',' << Row.Min << ',' << Row.Median << ',' in exportStatsAsCSV()
376 << Row.Pct90 << ',' << Row.Pct99 << ',' << Row.Max << "," << Row.Sum in exportStatsAsCSV()
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugLine.h106 struct Row { struct
107 typedef std::vector<Row> collection; argument
111 Row(bool default_is_stmt = false); argument
112 virtual ~Row() {} in ~Row() argument
116 static void Insert(Row::collection &state_coll, const Row &state);
117 static void Dump(lldb_private::Log *log, const Row::collection &state_coll);
156 void AppendRow(const DWARFDebugLine::Row &state); argument
166 Row::collection rows;
172 struct State : public Row {
H A DDWARFDebugLine.cpp189 Row row(prologue.default_is_stmt); in DumpStatementOpcodes()
983 Row::const_iterator pos = rows.begin(); in Dump()
984 Row::const_iterator end = rows.end(); in Dump()
1014 DWARFDebugLine::Row row; in LookupAddress()
1017 Row::const_iterator end_pos = rows.end(); in LookupAddress()
1018 Row::const_iterator pos = in LookupAddress()
1043 DWARFDebugLine::Row::Row(bool default_is_stmt) in Row() function in DWARFDebugLine::Row
1051 void DWARFDebugLine::Row::PostAppend() { in PostAppend()
1095 void DWARFDebugLine::Row::Insert(Row::collection &state_coll, in Insert()
1103 pair<Row::iterator, Row::iterator> range(equal_range( in Insert()
[all …]
/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugLine.h132 struct Row { struct
133 explicit Row(bool DefaultIsStmt = false);
142 static bool orderByAddress(const Row &LHS, const Row &RHS) { in orderByAddress() argument
219 void appendRow(const DWARFDebugLine::Row &R) { Rows.push_back(R); } in appendRow()
256 using RowVector = std::vector<Row>;
344 struct Row Row; member
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/x86/
H A Dx86AssemblyInspectionEngine.cpp724 UnwindPlan::Row::RegisterLocation initial_regloc; in GetNonCallSiteUnwindPlanFromAssembly()
725 UnwindPlan::RowSP row(new UnwindPlan::Row); in GetNonCallSiteUnwindPlanFromAssembly()
747 UnwindPlan::Row *newrow = new UnwindPlan::Row; in GetNonCallSiteUnwindPlanFromAssembly()
860 UnwindPlan::Row::RegisterLocation regloc; in GetNonCallSiteUnwindPlanFromAssembly()
951 UnwindPlan::Row::RegisterLocation regloc; in GetNonCallSiteUnwindPlanFromAssembly()
1035 UnwindPlan::Row *newrow = new UnwindPlan::Row; in GetNonCallSiteUnwindPlanFromAssembly()
1070 newrow = new UnwindPlan::Row; in GetNonCallSiteUnwindPlanFromAssembly()
1078 UnwindPlan::Row *newrow = new UnwindPlan::Row; in GetNonCallSiteUnwindPlanFromAssembly()
1145 UnwindPlan::RowSP row(new UnwindPlan::Row(*first_row)); in AugmentUnwindPlanFromCallSite()
1172 UnwindPlan::RowSP new_row(new UnwindPlan::Row()); in AugmentUnwindPlanFromCallSite()
[all …]
H A DUnwindAssembly-x86.cpp95 UnwindPlan::Row::FAValue::isRegisterPlusOffset || in AugmentUnwindPlanFromCallSite()
102 UnwindPlan::Row::RegisterLocation first_row_pc_loc; in AugmentUnwindPlanFromCallSite()
131 UnwindPlan::Row::RegisterLocation last_row_pc_loc; in AugmentUnwindPlanFromCallSite()
/freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/
H A DLoopInterchange.cpp78 for (auto &Row : DepMatrix) { in printDepMatrix() local
79 for (auto D : Row) in printDepMatrix()
200 if (DepMatrix[Row][i] == '<') in isOuterMostDepPositive()
202 if (DepMatrix[Row][i] == '>') in isOuterMostDepPositive()
213 if (DepMatrix[Row][i] != '=' && DepMatrix[Row][i] != 'S' && in containsNoDependence()
214 DepMatrix[Row][i] != 'I') in containsNoDependence()
263 for (unsigned Row = 0; Row < NumRows; ++Row) { in isLegalToInterChangeLoops() local
264 char InnerDep = DepMatrix[Row][InnerLoopId]; in isLegalToInterChangeLoops()
1088 for (auto &Row : DepMatrix) { in isProfitableForVectorization() local
1089 if (Row[InnerLoopId] != 'S' && Row[InnerLoopId] != 'I') in isProfitableForVectorization()
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DUnwindPlan.h56 class Row {
182 const UnwindPlan::Row *row, Thread *thread, bool verbose) const;
312 Row();
314 Row(const UnwindPlan::Row &rhs) = default;
316 bool operator==(const Row &rhs) const;
367 typedef std::shared_ptr<Row> RowSP;
389 m_row_list.emplace_back(new Row(*row_sp)); in UnwindPlan()
H A DDWARFCallFrameInfo.h101 lldb_private::UnwindPlan::Row initial_row;
140 UnwindPlan::Row &row);
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/InstEmulation/
H A DUnwindAssemblyInstEmulation.cpp121 UnwindPlan::Row *newrow = new UnwindPlan::Row; in GetNonCallSiteUnwindPlanFromAssembly()
167 UnwindPlan::Row *newrow = new UnwindPlan::Row; in GetNonCallSiteUnwindPlanFromAssembly()
185 std::make_shared<UnwindPlan::Row>(*m_curr_row.get()); in GetNonCallSiteUnwindPlanFromAssembly()
198 std::make_shared<UnwindPlan::Row>(*saved_state.first); in GetNonCallSiteUnwindPlanFromAssembly()
206 std::make_shared<UnwindPlan::Row>(*m_curr_row), in GetNonCallSiteUnwindPlanFromAssembly()
234 std::make_shared<UnwindPlan::Row>(*m_curr_row.get()); in GetNonCallSiteUnwindPlanFromAssembly()
258 UnwindPlan::Row *newrow = new UnwindPlan::Row; in GetNonCallSiteUnwindPlanFromAssembly()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Tooling/ASTDiff/
H A DASTDiff.cpp603 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()
626 TreePairs.emplace_back(Row, Col); in getMatchingNodes()
[all …]
/freebsd-12.1/sys/contrib/dev/acpica/common/
H A Ddmtbdump3.c203 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-12.1/contrib/llvm/lib/CodeGen/
H A DTargetInstrInfo.cpp785 int Row; in reassociateOps() local
787 case MachineCombinerPattern::REASSOC_AX_BY: Row = 0; break; in reassociateOps()
788 case MachineCombinerPattern::REASSOC_AX_YB: Row = 1; break; in reassociateOps()
789 case MachineCombinerPattern::REASSOC_XA_BY: Row = 2; break; in reassociateOps()
790 case MachineCombinerPattern::REASSOC_XA_YB: Row = 3; break; in reassociateOps()
794 MachineOperand &OpA = Prev.getOperand(OpIdx[Row][0]); in reassociateOps()
795 MachineOperand &OpB = Root.getOperand(OpIdx[Row][1]); in reassociateOps()
796 MachineOperand &OpX = Prev.getOperand(OpIdx[Row][2]); in reassociateOps()
797 MachineOperand &OpY = Root.getOperand(OpIdx[Row][3]); in reassociateOps()
/freebsd-12.1/sys/gnu/dts/arm/
H A Domap4-droid4-xt894.dts279 /* Row 1 */
291 /* Row 2 */
305 /* Row 3 */
318 /* Row 4 */
332 /* Row 5 */
/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DIOHandler.cpp1903 struct Row { struct
1905 Row *parent; argument
1914 std::vector<Row> children; argument
1916 Row(const ValueObjectSP &v, Row *p) in Row() function
1931 std::vector<Row> &GetChildren() { in GetChildren() argument
2654 m_rows.push_back(Row(valobj_sp, nullptr)); in SetValues()
2826 std::vector<Row> m_rows;
2827 Row *m_selected_row;
2961 int CalculateTotalNumberRows(std::vector<Row> &rows) { in CalculateTotalNumberRows()
2971 static Row *GetRowForRowIndexImpl(std::vector<Row> &rows, size_t &row_index) { in GetRowForRowIndexImpl()
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-s390x/
H A DABISysV_s390x.h47 lldb_private::UnwindPlan::Row::RegisterLocation &unwind_regloc) override;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/
H A DRegisterContextLLDB.cpp1168 UnwindPlan::Row::RegisterLocation unwindplan_regloc; in SavedLocationForRegister()
1636 UnwindPlan::Row::FAValue::unspecified) { in TryFallbackUnwindPlan()
1716 UnwindPlan::Row::FAValue::unspecified) { in ForceSwitchToFallbackUnwindPlan()
1744 lldb::RegisterKind row_register_kind, UnwindPlan::Row::FAValue &fa, in ReadFrameAddress()
1752 case UnwindPlan::Row::FAValue::isRegisterDereferenced: { in ReadFrameAddress()
1780 case UnwindPlan::Row::FAValue::isRegisterPlusOffset: { in ReadFrameAddress()
1803 case UnwindPlan::Row::FAValue::isDWARFExpression: { in ReadFrameAddress()
/freebsd-12.1/contrib/llvm/utils/TableGen/
H A DAsmMatcherEmitter.cpp2306 for (unsigned Row = 0, ERow = ConversionTable.size(); Row != ERow; ++Row) { in emitConvertFuncs() local
2307 assert(ConversionTable[Row].size() % 2 == 0 && "bad conversion row!"); in emitConvertFuncs()
2308 OS << " // " << InstructionConversionKinds[Row] << "\n"; in emitConvertFuncs()
2310 for (unsigned i = 0, e = ConversionTable[Row].size(); i != e; i += 2) { in emitConvertFuncs()
2311 OS << OperandConversionKinds[ConversionTable[Row][i]] << ", "; in emitConvertFuncs()
2312 if (OperandConversionKinds[ConversionTable[Row][i]] != in emitConvertFuncs()
2314 OS << (unsigned)(ConversionTable[Row][i + 1]) << ", "; in emitConvertFuncs()
2321 auto Key = std::make_tuple((uint8_t)ConversionTable[Row][i + 1], in emitConvertFuncs()
2322 (uint8_t)ConversionTable[Row][i + 2], in emitConvertFuncs()
2323 (uint8_t)ConversionTable[Row][i + 3]); in emitConvertFuncs()

123