| /freebsd/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() 47 : Row(nullptr), Col(nullptr), RowImm(InvalidImmShape), in Row() 57 : Row(nullptr), Col(nullptr), RowImm(InvalidImmShape), in ShapeT() 63 MachineOperand *C = Shape.Col; 66 if (!Row || !Col) 68 if (Row->getReg() == R->getReg() && Col->getReg() == C->getReg()) 86 return Col; 112 bool isValid() { return (Row != nullptr) && (Col != nullptr); } in isValid() 140 ColImm = GetImm(Col->getReg()); in deduceImm() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86LowerAMXType.cpp | 220 Value *Row = nullptr, *Col = nullptr; in getShape() local 238 Col = II->getArgOperand(1); in getShape() 259 Col = II->getArgOperand(1); in getShape() 263 Col = II->getArgOperand(2); in getShape() 267 Col = II->getArgOperand(1); in getShape() 276 Col = getColFromRow(II, II->getArgOperand(0), 4); in getShape() 287 Col = II->getArgOperand(1); in getShape() 299 Col = II->getArgOperand(1); in getShape() 303 Col = getColFromRow(II, II->getArgOperand(0), 4); in getShape() 307 Col = II->getArgOperand(1); in getShape() [all …]
|
| H A D | X86FastTileConfig.cpp | 131 MachineOperand &Col = MI.getOperand(2 + I); in configBasicBlock() local 132 ShapeInfos.push_back({TMMIdx + I, ShapeT(&Row, &Col)}); in configBasicBlock()
|
| H A D | X86LowerAMXIntrinsics.cpp | 75 IRBuilderBase &B, Value *Row, Value *Col, 85 Value *Row, Value *Col, Value *K, Value *Acc, Value *LHS, 148 Value *Col, Value *Ptr, Value *Stride, Value *Tile) { in createTileLoadStoreLoops() argument 166 BasicBlock *ColBody = createLoop(RowBody, RowLatch, Col, B.getInt16(1), in createTileLoadStoreLoops() 241 Value *Col, Value *K, Value *Acc, in createTileDPLoops() argument 280 BasicBlock *ColBody = createLoop(RowBody, RowLatch, Col, B.getInt16(1), in createTileDPLoops()
|
| H A D | X86PreAMXConfig.cpp | |
| /freebsd/contrib/llvm-project/llvm/tools/llvm-cov/ |
| H A D | SourceCoverageViewText.cpp | 179 unsigned Col = 1; in renderLine() local 181 unsigned End = std::min(S->Col, static_cast<unsigned>(Line.size()) + 1); in renderLine() 185 << Line.substr(Col - 1, End - Col); in renderLine() 187 HighlightedRanges.push_back(std::make_pair(Col, End)); in renderLine() 188 Col = End; in renderLine() 192 else if (Col == ExpansionCol) in renderLine() 201 << Line.substr(Col - 1, Line.size() - Col + 1); in renderLine() 209 errs() << "Highlighted line " << LineNumber << ", " << Col << " -> ?\n"; in renderLine() 257 if (S->Col > PrevColumn) in renderRegionMarkers() 258 OS.indent(S->Col - PrevColumn); in renderRegionMarkers() [all …]
|
| H A D | SourceCoverageViewHTML.cpp | 948 Snip(LCol - 1, Segments.empty() ? 0 : (Segments.front()->Col - 1)); in renderLine() 951 Snip(LCol - 1, Segments[I]->Col - LCol); in renderLine() 991 else if (CurSeg->Col == ExpansionCol) in renderLine() 997 Snippets[I + 1] = Highlight(Snippets[I + 1], CurSeg->Col, in renderLine() 998 CurSeg->Col + Snippets[I + 1].size()); in renderLine() 1036 errs() << "Marker at " << CurSeg->Line << ":" << CurSeg->Col << " = " in renderLine()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Frontend/ |
| H A D | SerializedDiagnosticReader.h | 49 unsigned Col; member 52 Location(unsigned FileID, unsigned Line, unsigned Col, unsigned Offset) in Location() 53 : FileID(FileID), Line(Line), Col(Col), Offset(Offset) {} in Location()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/ |
| H A D | CoverageMapping.h | 554 const auto &[Line, Col] = CondLoc[Condition]; in getConditionHeaderString() 555 OS << "Condition C" << Condition + 1 << " --> (" << Line << ":" << Col in getConditionHeaderString() 853 unsigned Col; member 863 CoverageSegment(unsigned Line, unsigned Col, bool IsRegionEntry) in CoverageSegment() 864 : Line(Line), Col(Col), Count(0), HasCount(false), in CoverageSegment() 867 CoverageSegment(unsigned Line, unsigned Col, uint64_t Count, 870 : Line(Line), Col(Col), Count(Count), HasCount(true), in Line() 874 return std::tie(L.Line, L.Col, L.Count, L.HasCount, L.IsRegionEntry, 875 L.IsGapRegion) == std::tie(R.Line, R.Col, R.Count, 890 unsigned Col; variable [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/IR/ |
| H A D | LLVMRemarkStreamer.cpp | 55 unsigned Col = DL.getColumn(); in toRemarkLocation() local 56 return remarks::RemarkLocation{File, Line, Col}; in toRemarkLocation()
|
| /freebsd/contrib/llvm-project/llvm/lib/Remarks/ |
| H A D | YAMLRemarkSerializer.cpp | 71 unsigned Col = RL.SourceColumn; in mapping() local 76 io.mapRequired("Column", Col); in mapping()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | SourceLocation.h | 310 unsigned Line, Col; 317 : Filename(FN), ID(FID), Line(Ln), Col(Co), IncludeLoc(IL) {} 352 return Col;
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-mca/Views/ |
| H A D | ResourcePressureView.cpp | 112 unsigned Col) { in printResourcePressure() argument 119 OS.PadToColumn(Col); in printResourcePressure()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCAsmInfo.h | 528 void setCommentColumn(unsigned Col) { CommentColumn = Col; } in setCommentColumn() argument
|
| H A D | MCCodeView.h | 112 unsigned Col; member
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/UBSan/ |
| H A D | InstrumentationRuntimeUBSan.cpp | 162 unsigned Col = RetrieveUnsigned(main_value, process_sp, ".col"); in RetrieveReportData() local 173 d->AddIntegerItem("col", Col); in RetrieveReportData()
|
| /freebsd/contrib/llvm-project/clang/lib/Frontend/ |
| H A D | SerializedDiagnosticPrinter.cpp | 833 RECORD_SOURCE_RANGE, FileLookup[Start.FileID], Start.Line, Start.Col, in visitSourceRangeRecord() 834 Start.Offset, FileLookup[End.FileID], End.Line, End.Col, End.Offset}; in visitSourceRangeRecord() 845 Location.Col, Location.Offset, CategoryLookup[Category], in visitDiagnosticRecord() 858 Start.Line, Start.Col, Start.Offset, in visitFixitRecord() 859 FileLookup[End.FileID], End.Line, End.Col, in visitFixitRecord()
|
| H A D | TextDiagnostic.cpp | 113 unsigned Col = bytesSincePreviousTabOrLineBegin(SourceLine, *I); in printableTextForNextCharacter() local 114 unsigned NumSpaces = TabStop - (Col % TabStop); in printableTextForNextCharacter() 1393 size_t Col = sourceColMap.byteToContainingColumn(CaretColNo - 1); in emitSnippetAndCaret() local 1394 CaretLine.resize(std::max(Col + 1, CaretLine.size()), ' '); in emitSnippetAndCaret() 1395 CaretLine[Col] = '^'; in emitSnippetAndCaret()
|
| /freebsd/contrib/llvm-project/openmp/runtime/src/ |
| H A D | kmp_str.h | 102 void __kmp_str_loc_numbers(char const *Psource, int *Line, int *Col);
|
| /freebsd/contrib/llvm-project/clang/lib/Interpreter/ |
| H A D | CodeCompletion.cpp | 359 unsigned Col, in codeComplete() argument 381 AU->CodeComplete(CodeCompletionFileName, 1, Col, RemappedFiles, false, false, in codeComplete()
|
| /freebsd/contrib/llvm-project/llvm/lib/ProfileData/Coverage/ |
| H A D | CoverageMapping.cpp | 1188 dbgs() << "Segment at " << Last.Line << ":" << Last.Col in startSegment() 1383 if (!(L.Line < R.Line) && !(L.Line == R.Line && L.Col < R.Col)) { in buildSegments() 1384 if (L.Line == R.Line && L.Col == R.Col && !L.HasCount) in buildSegments() 1386 LLVM_DEBUG(dbgs() << " ! Segment " << L.Line << ":" << L.Col in buildSegments() 1387 << " followed by " << R.Line << ":" << R.Col << "\n"); in buildSegments()
|
| /freebsd/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCCodeView.cpp | 108 InlinedAt.Col = IACol; in recordInlinedCallSiteId() 288 FilteredLines.back().getColumn() != IA.Col) { in getFunctionLineEntries() 290 IA.File, IA.Line, IA.Col, false, in getFunctionLineEntries()
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | CommentHTMLTags.td | 50 def Col : Tag<"col"> { let EndTagForbidden = 1; }
|
| /freebsd/sys/contrib/device-tree/Bindings/gpio/ |
| H A D | gpio.txt | 197 "LED G", "LED B", "Col A", "Col B", "Col C", "Col D",
|
| /freebsd/contrib/llvm-project/clang/lib/Basic/ |
| H A D | SourceManager.cpp | 1603 unsigned Col) const { in translateFileLineCol() 1605 assert(Line && Col && "Line and column should start from 1!"); in translateFileLineCol() 1608 return translateLineCol(FirstFID, Line, Col); in translateFileLineCol() 1656 unsigned Col) const { in translateLineCol() 1659 assert(Line && Col && "Line and column should start from 1!"); in translateLineCol() 1674 if (Line == 1 && Col == 1) in translateLineCol() 1705 while (i < BufLength-1 && i < Col-1 && Buf[i] != '\n' && Buf[i] != '\r') in translateLineCol()
|