/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | TileShapeInfo.h | 31 ShapeT(MachineOperand *Row, MachineOperand *Col, 33 : Row(Row), Col(Col) { 38 : Row(nullptr), Col(nullptr), RowImm(InvalidImmShape), in ShapeT() 42 MachineOperand *C = Shape.Col; 45 if (!Row || !Col) 47 if (Row->getReg() == R->getReg() && Col->getReg() == C->getReg()) 58 MachineOperand *getCol() const { return Col; } 64 bool isValid() { return (Row != nullptr) && (Col != nullptr); } 82 ColImm = GetImm(Col in deduceImm() 89 MachineOperand *Col; global() variable [all...] |
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86LowerAMXType.cpp | 126 Value *Row = nullptr, *Col = nullptr; in getShape() local 134 Col = II->getArgOperand(1); in getShape() 150 Col = II->getArgOperand(1); in getShape() 154 Col = II->getArgOperand(2); in getShape() 183 Col = II->getArgOperand(1); in getShape() 190 return std::make_pair(Row, Col); in getShape() 246 Value *Row = nullptr, *Col = nullptr; in combineLoadBitcast() local 250 std::tie(Row, Col) = getShape(II, OpNo); in combineLoadBitcast() 255 std::array<Value *, 4> Args = {Row, Col, I8Ptr, Stride}; in combineLoadBitcast() 276 Value *Col = II->getOperand(1); in combineBitcastStore() local [all …]
|
H A D | X86FastTileConfig.cpp | 118 MachineOperand &Col = MI.getOperand(2); in configBasicBlock() local 120 ShapeInfos.push_back({TMMIdx, ShapeT(&Row, &Col)}); in configBasicBlock()
|
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() 243 Value *Col, Value *K, Value *Acc, in createTileDPLoops() argument 282 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 | 953 Snip(LCol - 1, Segments.empty() ? 0 : (Segments.front()->Col - 1)); in renderLine() 956 Snip(LCol - 1, Segments[I]->Col - LCol); in renderLine() 996 else if (CurSeg->Col == ExpansionCol) in renderLine() 1002 Snippets[I + 1] = Highlight(Snippets[I + 1], CurSeg->Col, in renderLine() 1003 CurSeg->Col + Snippets[I + 1].size()); in renderLine() 1038 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 | 795 unsigned Col; member 805 CoverageSegment(unsigned Line, unsigned Col, bool IsRegionEntry) in CoverageSegment() 806 : Line(Line), Col(Col), Count(0), HasCount(false), in CoverageSegment() 809 CoverageSegment(unsigned Line, unsigned Col, uint64_t Count, 812 : Line(Line), Col(Col), Count(Count), HasCount(true), in Line() 816 return std::tie(L.Line, L.Col, L.Count, L.HasCount, L.IsRegionEntry, 817 L.IsGapRegion) == std::tie(R.Line, R.Col, R.Count, 832 unsigned Col; variable 835 InstantiationGroup(unsigned Line, unsigned Col, in InstantiationGroup() argument 837 : Line(Line), Col(Col), Instantiations(std::move(Instantiations)) {} in InstantiationGroup() [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/clang/include/clang/Basic/ |
H A D | SourceLocation.h | 308 unsigned Line, Col; 315 : Filename(FN), ID(FID), Line(Ln), Col(Co), IncludeLoc(IL) {} 350 return Col;
|
/freebsd/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/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/UBSan/ |
H A D | InstrumentationRuntimeUBSan.cpp | 164 unsigned Col = RetrieveUnsigned(main_value, process_sp, ".col"); in RetrieveReportData() local 175 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 | 115 unsigned Col = bytesSincePreviousTabOrLineBegin(SourceLine, *I); in printableTextForNextCharacter() local 116 unsigned NumSpaces = TabStop - (Col % TabStop); in printableTextForNextCharacter() 1396 size_t Col = sourceColMap.byteToContainingColumn(CaretColNo - 1); in emitSnippetAndCaret() local 1397 CaretLine.resize(std::max(Col + 1, CaretLine.size()), ' '); in emitSnippetAndCaret() 1398 CaretLine[Col] = '^'; in emitSnippetAndCaret()
|
/freebsd/contrib/llvm-project/llvm/lib/Remarks/ |
H A D | YAMLRemarkSerializer.cpp | 83 unsigned Col = RL.SourceColumn; in mapping() local 96 io.mapRequired("Column", Col); in mapping()
|
/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/llvm/lib/ProfileData/Coverage/ |
H A D | CoverageMapping.cpp | 1134 dbgs() << "Segment at " << Last.Line << ":" << Last.Col in startSegment() 1335 if (!(L.Line < R.Line) && !(L.Line == R.Line && L.Col < R.Col)) { in buildSegments() 1336 if (L.Line == R.Line && L.Col == R.Col && !L.HasCount) in buildSegments() 1338 LLVM_DEBUG(dbgs() << " ! Segment " << L.Line << ":" << L.Col in buildSegments() 1339 << " followed by " << R.Line << ":" << R.Col << "\n"); in buildSegments()
|
/freebsd/contrib/llvm-project/clang/lib/Interpreter/ |
H A D | CodeCompletion.cpp | 357 unsigned Col, in codeComplete() argument 380 AU->CodeComplete(CodeCompletionFileName, 1, Col, RemappedFiles, false, false, in codeComplete()
|
/freebsd/contrib/llvm-project/llvm/lib/MC/ |
H A D | MCCodeView.cpp | 110 InlinedAt.Col = IACol; in recordInlinedCallSiteId() 300 FilteredLines.back().getColumn() != IA.Col) { in getFunctionLineEntries() 302 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/contrib/llvm-project/llvm/include/llvm/MC/ |
H A D | MCCodeView.h | 111 unsigned Col; member
|
/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 | 1598 unsigned Col) const { in translateFileLineCol() 1600 assert(Line && Col && "Line and column should start from 1!"); in translateFileLineCol() 1603 return translateLineCol(FirstFID, Line, Col); in translateFileLineCol() 1651 unsigned Col) const { in translateLineCol() 1654 assert(Line && Col && "Line and column should start from 1!"); in translateLineCol() 1669 if (Line == 1 && Col == 1) in translateLineCol() 1700 while (i < BufLength-1 && i < Col-1 && Buf[i] != '\n' && Buf[i] != '\r') in translateLineCol()
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | SourceMgr.cpp | 379 int Col, SourceMgr::DiagKind Kind, StringRef Msg, in SMDiagnostic() argument 383 : SM(&sm), Loc(L), Filename(std::string(FN)), LineNo(Line), ColumnNo(Col), in SMDiagnostic()
|