HomeSort by: relevance | last modified time | path
    Searched defs:Row (Results 1 - 17 of 17) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
edit_distance.h 52 // array, only one row plus one element are used at a time, so this
53 // implementation just keeps one vector for the row. To update one entry,
55 // entry is in Row[x-1], the top entry is what's in Row[x] from the last
63 unsigned *Row = SmallBuffer;
65 Row = new unsigned[n + 1];
66 Allocated.reset(Row);
70 Row[i] = i;
73 Row[0] = y;
74 unsigned BestThisRow = Row[0]
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
TileShapeInfo.h 11 /// The 2D shape includes row and column. In AMX intrinsics interface the shape
14 /// tile config and register allocator. The row and column are machine operand
32 ShapeT(MachineOperand *Row, MachineOperand *Col,
34 : Row(Row), Col(Col) {
39 : Row(nullptr), Col(nullptr), RowImm(InvalidImmShape),
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; }
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
DWARFUnitIndex.cpp 233 auto &Row = Rows[i];
234 if (auto *Contribs = Row.Contributions.get()) {
235 OS << format("%5u 0x%016" PRIx64 " ", i + 1, Row.Signature);
289 // The spec says "while 0 is a valid hash value, the row index in a used slot
DWARFDebugFrame.cpp 182 raw_ostream &llvm::dwarf::operator<<(raw_ostream &OS, const UnwindRow &Row) {
183 Row.dump(OS, nullptr, false, 0);
189 for (const UnwindRow &Row : Rows)
190 Row.dump(OS, MRI, IsEH, IndentLevel);
210 UnwindRow Row;
211 Row.setAddress(Fde->getInitialLocation());
213 if (Error CieError = UT.parseRows(Cie->cfis(), Row, nullptr))
217 const RegisterLocations InitialLocs = Row.getRegisterLocations();
218 if (Error FdeError = UT.parseRows(Fde->cfis(), Row, &InitialLocs))
220 // May be all the CFI instructions were DW_CFA_nop amd Row becomes empty
    [all...]
DWARFDebugLine.cpp 462 DWARFDebugLine::Row::Row(bool DefaultIsStmt) { reset(DefaultIsStmt); }
464 void DWARFDebugLine::Row::postAppend() {
471 void DWARFDebugLine::Row::reset(bool DefaultIsStmt) {
486 void DWARFDebugLine::Row::dumpTableHeader(raw_ostream &OS, unsigned Indent) {
494 void DWARFDebugLine::Row::dump(raw_ostream &OS) const {
522 Row::dumpTableHeader(OS, 0);
523 for (const Row &R : Rows) {
547 Row.reset(LineTable->Prologue.DefaultIsStmt);
556 Sequence.LowPC = Row.Address.Address
    [all...]
DWARFContext.cpp 1277 // Get the index of row we're looking for in the line table.
1285 // Take file number and line/column from the row.
1286 const DWARFDebugLine::Row &Row = LineTable->Rows[RowIndex];
1288 LineTable->getFileNameByIndex(Row.File, CU->getCompilationDir(),
1291 Result.Line = Row.Line;
1292 Result.Column = Row.Column;
1296 Lines.push_back(std::make_pair(Row.Address.Address, Result));
  /src/sys/external/bsd/acpica/dist/common/
dmtbdump3.c 96 UINT8 *Row;
114 Row = (UINT8 *) ACPI_CAST_PTR (ACPI_TABLE_SLIT, Table)->Entry;
118 /* Display one row of the matrix */
132 AcpiOsPrintf ("%2.2X", Row[j]);
135 /* Display up to 16 bytes per output row */
149 /* Point to next row */
152 Row += Localities;
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/GSYM/
DwarfTransformer.cpp 279 DWARFDebugLine::Row PrevRow;
281 // Take file number and line/column from the row.
282 const DWARFDebugLine::Row &Row = CUI.LineTable->Rows[RowIndex];
283 const uint32_t FileIdx = CUI.DWARFToGSYMFileIndex(Gsym, Row.File);
284 uint64_t RowAddress = Row.Address.Address;
287 // we will get a RowIndex for the previous valid line table row which won't
294 "line table Row[" << RowIndex << "] with address "
303 LineEntry LE(RowAddress, FileIdx, Row.Line);
304 if (RowIndex != RowVector[0] && Row.Address < PrevRow.Address)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86PreAMXConfig.cpp 26 /// store volatile i8 %m, i8* %amx.tmm.0.shape.row, align 1 *
30 /// store volatile i8 %k, i8* %amx.tmm.1.shape.row, align 1 *
120 // %amx.tmm.0.shape.row = getelementptr i8, i8* %mem, i64 48 *
122 // store volatile i8 %m, i8* %amx.tmm.0.shape.row, align 1 *
126 // %amx.tmm.1.shape.row = getelementptr i8, i8* %mem, i64 49 *
128 // store volatile i8 %k, i8* %amx.tmm.1.shape.row, align 1 * shapes
132 // %amx.tmm.2.shape.row = getelementptr i8, i8* %mem, i64 50 *
134 // store volatile i8 %m, i8* %amx.tmm.2.shape.row, align 1 *
138 // %amx.tmm.3.shape.row = getelementptr i8, i8* %mem, i64 51 *
140 // store volatile i8 %m, i8* %amx.tmm.3.shape.row, align 1
    [all...]
X86LowerAMXType.cpp 86 // In AMX intrinsics we let Shape = {Row, Col}, but the
88 // as a new Row for other new created AMX intrinsics.
119 Value *Row = nullptr, *Col = nullptr;
125 Row = II->getArgOperand(0);
138 Row = II->getArgOperand(0);
142 Row = II->getArgOperand(0);
146 Row = II->getArgOperand(2);
148 // Col/4 if it will be used as Row, but current Greedy RA can't handle
151 // Row = Row /
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-xray/
xray-account.cpp 317 auto &Row = std::get<2>(Results.back());
320 Row.Min /= CycleFrequency;
321 Row.Median /= CycleFrequency;
322 Row.Pct90 /= CycleFrequency;
323 Row.Pct99 /= CycleFrequency;
324 Row.Max /= CycleFrequency;
325 Row.Sum /= CycleFrequency;
328 Row.Function = FuncIdHelper.SymbolOrNumber(FuncId);
329 Row.DebugInfo = FuncIdHelper.FileLineAndColumn(FuncId);
401 exportStats(Header, [&](int32_t FuncId, size_t Count, const ResultRow &Row) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
InstrInfoEmitter.cpp 311 // Emit a row of the OperandMap table
425 // We print each Opcode's operands in its own row.
498 const auto &Row = *R;
501 for (i = 0; i < static_cast<int>(Row.size()); ++i) {
502 OS << Row[i] << ", ";
590 const auto &Row = *LogicalOpTypeList[r];
592 int i, s = Row.size();
596 OS << Row[i];
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugLine.h 140 struct Row {
141 explicit Row(bool DefaultIsStmt = false);
143 /// Called after a row is appended to the matrix.
150 static bool orderByAddress(const Row &LHS, const Row &RHS) {
236 /// Represents an invalid row
239 void appendRow(const DWARFDebugLine::Row &R) { Rows.push_back(R); }
245 /// Returns the index of the row with file/line info for a given address,
246 /// or UnknownRowIndex if there is no such row.
287 using RowVector = std::vector<Row>;
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/DWARFLinker/
DWARFStreamer.cpp 495 std::vector<DWARFDebugLine::Row> &Rows,
535 auto &Row = Rows[Idx];
542 MS->emitIntValue(Row.Address.Address, PointerSize);
546 AddressDelta = (Row.Address.Address - Address) / MinInstLength;
554 if (FileNum != Row.File) {
555 FileNum = Row.File;
560 if (Column != Row.Column) {
561 Column = Row.Column;
570 if (Isa != Row.Isa) {
571 Isa = Row.Isa
    [all...]
  /src/sys/dev/acpi/
apei_cper.h 130 uint16_t Row;
183 "b\010" "ROW\0" \
  /src/external/apache2/llvm/dist/clang/lib/Tooling/ASTDiff/
ASTDiff.cpp 590 SNodeId LastRow, LastCol, FirstRow, FirstCol, Row, Col;
603 Row = LastRow;
606 while (Row > FirstRow || Col > FirstCol) {
607 if (Row > FirstRow &&
608 ForestDist[Row - 1][Col] + 1 == ForestDist[Row][Col]) {
609 --Row;
611 ForestDist[Row][Col - 1] + 1 == ForestDist[Row][Col]) {
614 SNodeId LMD1 = S1.getLeftMostDescendant(Row);
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
TargetInstrInfo.cpp 820 // operands may be commuted. Each row corresponds to a pattern value,
829 int Row;
831 case MachineCombinerPattern::REASSOC_AX_BY: Row = 0; break;
832 case MachineCombinerPattern::REASSOC_AX_YB: Row = 1; break;
833 case MachineCombinerPattern::REASSOC_XA_BY: Row = 2; break;
834 case MachineCombinerPattern::REASSOC_XA_YB: Row = 3; break;
838 MachineOperand &OpA = Prev.getOperand(OpIdx[Row][0]);
839 MachineOperand &OpB = Root.getOperand(OpIdx[Row][1]);
840 MachineOperand &OpX = Prev.getOperand(OpIdx[Row][2]);
841 MachineOperand &OpY = Root.getOperand(OpIdx[Row][3])
    [all...]

Completed in 31 milliseconds