| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | TileShapeInfo.h | 32 ShapeT(MachineOperand *Row, MachineOperand *Col, 34 : Row(Row), Col(Col) { in Row() 39 : Row(nullptr), Col(nullptr), RowImm(InvalidImmShape), in ShapeT() 43 MachineOperand *C = Shape.Col; 46 if (!Row || !Col) 48 if (Row->getReg() == R->getReg() && Col->getReg() == C->getReg()) 59 MachineOperand *getCol() const { return Col; } in getCol() 65 bool isValid() { return (Row != nullptr) && (Col != nullptr); } in isValid() 83 ColImm = GetImm(Col->getReg()); in deduceImm() 89 MachineOperand *Col; variable
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-cov/ |
| H A D | SourceCoverageViewText.cpp | 114 unsigned Col = 1; in renderLine() local 116 unsigned End = std::min(S->Col, static_cast<unsigned>(Line.size()) + 1); in renderLine() 120 << Line.substr(Col - 1, End - Col); in renderLine() 122 HighlightedRanges.push_back(std::make_pair(Col, End)); in renderLine() 123 Col = End; in renderLine() 127 else if (Col == ExpansionCol) in renderLine() 136 << Line.substr(Col - 1, Line.size() - Col + 1); in renderLine() 192 if (S->Col > PrevColumn) in renderRegionMarkers() 193 OS.indent(S->Col - PrevColumn); in renderRegionMarkers() 194 PrevColumn = S->Col + 1; in renderRegionMarkers() [all …]
|
| H A D | SourceCoverageViewHTML.cpp | 519 Snip(LCol - 1, Segments.empty() ? 0 : (Segments.front()->Col - 1)); in renderLine() 522 Snip(LCol - 1, Segments[I]->Col - LCol); in renderLine() 559 else if (CurSeg->Col == ExpansionCol) in renderLine() 565 Snippets[I + 1] = Highlight(Snippets[I + 1], CurSeg->Col, in renderLine() 566 CurSeg->Col + Snippets[I + 1].size()); in renderLine() 601 errs() << "Marker at " << CurSeg->Line << ":" << CurSeg->Col << " = " in renderLine()
|
| H A D | CoverageExporterJson.cpp | 81 return json::Array({Segment.Line, Segment.Col, in renderSegment()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86LowerAMXType.cpp | 119 Value *Row = nullptr, *Col = nullptr; in getShape() local 127 Col = II->getArgOperand(1); in getShape() 140 Col = II->getArgOperand(1); in getShape() 144 Col = II->getArgOperand(2); in getShape() 155 Col = II->getArgOperand(1); in getShape() 162 return std::make_pair(Row, Col); in getShape() 171 Value *Row = nullptr, *Col = nullptr; in combineLoadBitcast() local 202 Value *Col = II->getOperand(1); in combineBitcastStore() local 275 Value *Col = II->getOperand(1); in transformBitcast() local 405 Value *Col = II->getOperand(1); in createTileStore() local [all …]
|
| H A D | X86LowerAMXIntrinsics.cpp | 77 IRBuilderBase &B, Value *Row, Value *Col, 87 Value *Row, Value *Col, Value *K, Value *Acc, Value *LHS, 150 Value *Col, Value *Ptr, Value *Stride, Value *Tile) { in createTileLoadStoreLoops() argument 168 BasicBlock *ColBody = createLoop(RowBody, RowLatch, Col, B.getInt16(1), in createTileLoadStoreLoops() 245 Value *Col, Value *K, Value *Acc, in createTileDPLoops() argument 284 BasicBlock *ColBody = createLoop(RowBody, RowLatch, Col, B.getInt16(1), in createTileDPLoops()
|
| H A D | X86PreAMXConfig.cpp | 177 Value *Col = Shapes[I * 2 + 1]; in preWriteTileCfg() local 180 new StoreInst(Col, ColPos, Pos); in preWriteTileCfg()
|
| /freebsd-13.1/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-13.1/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/ |
| H A D | CoverageMapping.h | 441 unsigned Col; member 451 CoverageSegment(unsigned Line, unsigned Col, bool IsRegionEntry) in CoverageSegment() 452 : Line(Line), Col(Col), Count(0), HasCount(false), in CoverageSegment() 455 CoverageSegment(unsigned Line, unsigned Col, uint64_t Count, 458 : Line(Line), Col(Col), Count(Count), HasCount(true), in Line() 462 return std::tie(L.Line, L.Col, L.Count, L.HasCount, L.IsRegionEntry, 463 L.IsGapRegion) == std::tie(R.Line, R.Col, R.Count, 478 unsigned Col; variable 481 InstantiationGroup(unsigned Line, unsigned Col, in InstantiationGroup() argument 483 : Line(Line), Col(Col), Instantiations(std::move(Instantiations)) {} in InstantiationGroup() [all …]
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Tooling/ASTDiff/ |
| H A D | ASTDiff.cpp | 604 Col = LastCol; in getMatchingNodes() 606 while (Row > FirstRow || Col > FirstCol) { in getMatchingNodes() 608 ForestDist[Row - 1][Col] + 1 == ForestDist[Row][Col]) { in getMatchingNodes() 610 } else if (Col > FirstCol && in getMatchingNodes() 611 ForestDist[Row][Col - 1] + 1 == ForestDist[Row][Col]) { in getMatchingNodes() 612 --Col; in getMatchingNodes() 615 SNodeId LMD2 = S2.getLeftMostDescendant(Col); in getMatchingNodes() 619 NodeId Id2 = S2.getIdInRoot(Col); in getMatchingNodes() 624 --Col; in getMatchingNodes() 626 TreePairs.emplace_back(Row, Col); in getMatchingNodes() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/ProfileData/Coverage/ |
| H A D | CoverageMapping.cpp | 445 dbgs() << "Segment at " << Last.Line << ":" << Last.Col in startSegment() 640 if (!(L.Line < R.Line) && !(L.Line == R.Line && L.Col < R.Col)) { in buildSegments() 641 if (L.Line == R.Line && L.Col == R.Col && !L.HasCount) in buildSegments() 643 LLVM_DEBUG(dbgs() << " ! Segment " << L.Line << ":" << L.Col in buildSegments() 644 << " followed by " << R.Line << ":" << R.Col << "\n"); in buildSegments()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/IR/ |
| H A D | LLVMRemarkStreamer.cpp | 52 unsigned Col = DL.getColumn(); in toRemarkLocation() local 53 return remarks::RemarkLocation{File, Line, Col}; in toRemarkLocation()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | SourceLocation.h | 307 unsigned Line, Col; 314 : Filename(FN), ID(FID), Line(Ln), Col(Co), IncludeLoc(IL) {} 349 return Col;
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-mca/Views/ |
| H A D | ResourcePressureView.cpp | 93 unsigned Col) { in printResourcePressure() argument 100 OS.PadToColumn(Col); in printResourcePressure()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/UBSan/ |
| H A D | InstrumentationRuntimeUBSan.cpp | 166 unsigned Col = RetrieveUnsigned(main_value, process_sp, ".col"); in RetrieveReportData() local 177 d->AddIntegerItem("col", Col); in RetrieveReportData()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Frontend/ |
| H A D | SerializedDiagnosticPrinter.cpp | 836 RECORD_SOURCE_RANGE, FileLookup[Start.FileID], Start.Line, Start.Col, in visitSourceRangeRecord() 837 Start.Offset, FileLookup[End.FileID], End.Line, End.Col, End.Offset}; in visitSourceRangeRecord() 848 Location.Col, Location.Offset, CategoryLookup[Category], in visitDiagnosticRecord() 861 Start.Line, Start.Col, Start.Offset, in visitFixitRecord() 862 FileLookup[End.FileID], End.Line, End.Col, in visitFixitRecord()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Remarks/ |
| H A D | YAMLRemarkSerializer.cpp | 83 unsigned Col = RL.SourceColumn; in mapping() local 97 io.mapRequired("Column", Col); in mapping()
|
| /freebsd-13.1/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-13.1/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCCodeView.cpp | 112 InlinedAt.Col = IACol; in recordInlinedCallSiteId() 298 FilteredLines.back().getColumn() != IA.Col) { in getFunctionLineEntries() 301 FuncId, IA.File, IA.Line, IA.Col, false, false)); in getFunctionLineEntries()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | CommentHTMLTags.td | 50 def Col : Tag<"col"> { let EndTagForbidden = 1; }
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCCodeView.h | 104 unsigned Col; member
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/gpio/ |
| H A D | gpio.txt | 180 "LED G", "LED B", "Col A", "Col B", "Col C", "Col D",
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Basic/ |
| H A D | SourceManager.cpp | 1645 unsigned Col) const { in translateFileLineCol() 1647 assert(Line && Col && "Line and column should start from 1!"); in translateFileLineCol() 1650 return translateLineCol(FirstFID, Line, Col); in translateFileLineCol() 1698 unsigned Col) const { in translateLineCol() 1701 assert(Line && Col && "Line and column should start from 1!"); in translateLineCol() 1716 if (Line == 1 && Col == 1) in translateLineCol() 1747 while (i < BufLength-1 && i < Col-1 && Buf[i] != '\n' && Buf[i] != '\r') in translateLineCol()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Support/ |
| H A D | SourceMgr.cpp | 368 int Col, SourceMgr::DiagKind Kind, StringRef Msg, in SMDiagnostic() argument 372 : SM(&sm), Loc(L), Filename(std::string(FN)), LineNo(Line), ColumnNo(Col), in SMDiagnostic()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | SourceMgr.h | 270 SMDiagnostic(const SourceMgr &sm, SMLoc L, StringRef FN, int Line, int Col,
|