Searched refs:Row (Results 1 - 25 of 38) sorted by relevance

12

/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A Dedit_distance.h55 // entry is in Row[x-1], the top entry is what's in Row[x] from the last
63 unsigned *Row = SmallBuffer; local
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[
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DTileShapeInfo.h32 ShapeT(MachineOperand *Row, MachineOperand *Col, argument
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; }
65 bool isValid() { return (Row != nullptr) && (Col != nullptr); }
82 RowImm = GetImm(Row
88 MachineOperand *Row; member in class:llvm::ShapeT
[all...]
/netbsd-current/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);
86 Row.File = (uint32_t)Data.getULEB128(&Offset);
93 Row.Addr += Data.getULEB128(&Offset);
95 if (Callback(Row) == false)
103 Row.Line += Data.getSLEB128(&Offset);
110 Row.Line += LineDelta;
111 Row.Addr += AddrDelta;
113 if (Callback(Row) == false)
254 llvm::Error Err = parse(Data, BaseAddr, [&](const LineEntry &Row)
[all...]
H A DDwarfTransformer.cpp279 DWARFDebugLine::Row PrevRow;
282 const DWARFDebugLine::Row &Row = CUI.LineTable->Rows[RowIndex]; local
283 const uint32_t FileIdx = CUI.DWARFToGSYMFileIndex(Gsym, Row.File);
284 uint64_t RowAddress = Row.Address.Address;
294 "line table Row[" << RowIndex << "] with address "
303 LineEntry LE(RowAddress, FileIdx, Row.Line);
304 if (RowIndex != RowVector[0] && Row.Address < PrevRow.Address) {
329 if (LastLE && LastLE->File == FileIdx && LastLE->Line == Row.Line)
334 if (Row
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-xray/
H A Dxray-account.cpp317 auto &Row = std::get<2>(Results.back()); local
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...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugLine.cpp462 DWARFDebugLine::Row::Row(bool DefaultIsStmt) { reset(DefaultIsStmt); } function in class:DWARFDebugLine::Row
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
1224 DWARFDebugLine::Row Row; local
1407 const auto &Row = Rows[RowIndex]; local
[all...]
H A DDWARFDebugFrame.cpp182 raw_ostream &llvm::dwarf::operator<<(raw_ostream &OS, const UnwindRow &Row) { argument
183 Row.dump(OS, nullptr, false, 0);
189 for (const UnwindRow &Row : Rows)
190 Row.dump(OS, MRI, IsEH, IndentLevel);
210 UnwindRow Row; local
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 become
234 UnwindRow Row; local
496 parseRows(const CFIProgram &CFIP, UnwindRow &Row, const RegisterLocations *InitialLocs) argument
[all...]
H A DDWARFUnitIndex.cpp233 auto &Row = Rows[i]; local
234 if (auto *Contribs = Row.Contributions.get()) {
235 OS << format("%5u 0x%016" PRIx64 " ", i + 1, Row.Signature);
H A DDWARFVerifier.cpp808 for (const auto &Row : LineTable->Rows) {
810 if (Row.Address.Address < PrevAddress) {
818 DWARFDebugLine::Row::dumpTableHeader(OS, 0);
821 Row.dump(OS);
826 if (!LineTable->hasFileAtIndex(Row.File)) {
832 << "][" << RowIndex << "] has invalid file index " << Row.File
836 DWARFDebugLine::Row::dumpTableHeader(OS, 0);
837 Row.dump(OS);
840 if (Row.EndSequence)
843 PrevAddress = Row
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DConstraintSystem.cpp114 for (auto &Row : Constraints) {
116 for (unsigned I = 1, S = Row.size(); I < S; ++I) {
117 if (Row[I] == 0)
120 if (Row[I] != 1)
121 Coefficient = std::to_string(Row[I]) + " * ";
126 << " <= " << std::to_string(Row[0]) << "\n");
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86LowerAMXType.cpp86 // 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; local
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 /
170 Value *Row = nullptr, *Col = nullptr; local
200 Value *Row = II->getOperand(0); local
255 Value *Row = nullptr, *Col = nullptr; local
273 Value *Row = II->getOperand(0); local
403 Value *Row = II->getOperand(0); local
429 Value *Row = II->getOperand(0); local
[all...]
H A DX86PreAMXConfig.cpp175 Value *Row = Shapes[I * 2]; local
177 Row = new TruncInst(Row, I8Ty, "", Pos);
178 new StoreInst(Row, RowPos, Pos);
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,
164 BasicBlock *RowBody = createLoop(Start, End, Row, B.getInt16(1),
244 IRBuilderBase &B, Value *Row,
280 BasicBlock *RowBody = createLoop(Start, End, Row, B.getInt16(1),
148 createTileLoadStoreLoops( BasicBlock *Start, BasicBlock *End, IRBuilderBase &B, Value *Row, Value *Col, Value *Ptr, Value *Stride, Value *Tile) argument
243 createTileDPLoops(BasicBlock *Start, BasicBlock *End, IRBuilderBase &B, Value *Row, Value *Col, Value *K, Value *Acc, Value *LHS, Value *RHS) argument
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugLine.h140 struct Row { struct in class:llvm::DWARFDebugLine
141 explicit Row(bool DefaultIsStmt = false);
150 static bool orderByAddress(const Row &LHS, const Row &RHS) {
239 void appendRow(const DWARFDebugLine::Row &R) { Rows.push_back(R); }
287 using RowVector = std::vector<Row>;
403 struct Row Row; member in struct:llvm::DWARFDebugLine::ParsingState
/netbsd-current/external/apache2/llvm/dist/llvm/lib/DWARFLinker/
H A DDWARFStreamer.cpp495 std::vector<DWARFDebugLine::Row> &Rows,
535 auto &Row = Rows[Idx]; local
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
[all...]
/netbsd-current/sys/external/bsd/gnu-efi/dist/lib/
H A Devent.c140 IN UINTN Row,
150 PrintAt (Column, Row, String, Timeout);
137 WaitForEventWithTimeout( IN EFI_EVENT Event, IN UINTN Timeout, IN UINTN Row, IN UINTN Column, IN CHAR16 *String, IN EFI_INPUT_KEY TimeoutKey, OUT EFI_INPUT_KEY *Key ) argument
H A Dprint.c122 IN UINTN Row,
664 IN UINTN Row,
677 Column, Row - The cursor position to print the string at
691 back = _IPrint (Column, Row, ST->ConOut, fmt, NULL, args);
735 IN UINTN Row,
750 Column, Row - The cursor position to print the string at
764 back = _IPrint (Column, Row, Out, fmt, NULL, args);
773 IN UINTN Row,
805 uefi_call_wrapper(Out->SetCursorPosition, 3, Out, Column, Row);
662 PrintAt( IN UINTN Column, IN UINTN Row, IN CONST CHAR16 *fmt, ... ) argument
732 IPrintAt( IN SIMPLE_TEXT_OUTPUT_INTERFACE *Out, IN UINTN Column, IN UINTN Row, IN CONST CHAR16 *fmt, ... ) argument
771 _IPrint( IN UINTN Column, IN UINTN Row, IN SIMPLE_TEXT_OUTPUT_INTERFACE *Out, IN CONST CHAR16 *fmt, IN CONST CHAR8 *fmta, IN va_list args ) argument
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DLoopInterchange.cpp81 for (auto &Row : DepMatrix) {
82 for (auto D : Row)
196 static bool isOuterMostDepPositive(CharMatrix &DepMatrix, unsigned Row, argument
199 if (DepMatrix[Row][i] == '<')
201 if (DepMatrix[Row][i] == '>')
208 // Checks if no dependence exist in the dependency matrix in Row before Column.
209 static bool containsNoDependence(CharMatrix &DepMatrix, unsigned Row, argument
212 if (DepMatrix[Row][i] != '=' && DepMatrix[Row][i] != 'S' &&
213 DepMatrix[Row][
219 validDepInterchange(CharMatrix &DepMatrix, unsigned Row, unsigned OuterLoopId, char InnerDep, char OuterDep) argument
[all...]
/netbsd-current/sys/external/bsd/acpica/dist/common/
H A Ddmtbdump3.c95 UINT8 *Row; local
113 Row = (UINT8 *) ACPI_CAST_PTR (ACPI_TABLE_SLIT, Table)->Entry;
131 AcpiOsPrintf ("%2.2X", Row[j]);
151 Row += Localities;
/netbsd-current/external/apache2/llvm/dist/clang/lib/Tooling/ASTDiff/
H A DASTDiff.cpp590 SNodeId LastRow, LastCol, FirstRow, FirstCol, Row, Col; local
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...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DTargetInstrInfo.cpp829 int Row; local
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]);
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/DWARFLinker/
H A DDWARFStreamer.h114 std::vector<DWARFDebugLine::Row> &Rows,
/netbsd-current/sys/dev/acpi/
H A Dapei_cper.h128 uint16_t Row; member in struct:cper_memory_error
/netbsd-current/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DInstrInfoEmitter.cpp498 const auto &Row = *R; local
501 for (i = 0; i < static_cast<int>(Row.size()); ++i) {
502 OS << Row[i] << ", "; local
590 const auto &Row = *LogicalOpTypeList[r]; local
592 int i, s = Row.size();
596 OS << Row[i]; local
/netbsd-current/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
[all...]

Completed in 481 milliseconds

12