Home
last modified time | relevance | path

Searched refs:Col (Results 1 – 25 of 48) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTileShapeInfo.h31 ShapeT(MachineOperand *Row, MachineOperand *Col,
33 : Row(Row), Col(Col) { in Row()
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; } in getCol()
64 bool isValid() { return (Row != nullptr) && (Col != nullptr); } in isValid()
82 ColImm = GetImm(Col->getReg()); in deduceImm()
88 MachineOperand *Col; variable
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86LowerAMXType.cpp127 Col = II->getArgOperand(1); in getShape()
143 Col = II->getArgOperand(1); in getShape()
147 Col = II->getArgOperand(2); in getShape()
176 Col = II->getArgOperand(1); in getShape()
183 return std::make_pair(Row, Col); in getShape()
269 Value *Col = II->getOperand(1); in combineBitcastStore() local
469 Value *Col = II->getOperand(1); in createTileStore() local
495 Value *Col = II->getOperand(1); in replaceWithTileLoad() local
790 if (!Row || !Col || !isa<Constant>(Row) || !isa<Constant>(Col)) in optimizeAMXCastFromPhi()
1171 Row, Col, I8Ptr, Builder.CreateSExt(Col, Builder.getInt64Ty())}; in transformAMXCast()
[all …]
H A DX86FastTileConfig.cpp118 MachineOperand &Col = MI.getOperand(2); in configBasicBlock() local
120 ShapeInfos.push_back({TMMIdx, ShapeT(&Row, &Col)}); in configBasicBlock()
H A DX86LowerAMXIntrinsics.cpp77 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()
/freebsd/contrib/llvm-project/llvm/tools/llvm-cov/
H A DSourceCoverageViewText.cpp179 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()
257 if (S->Col > PrevColumn) in renderRegionMarkers()
258 OS.indent(S->Col - PrevColumn); in renderRegionMarkers()
259 PrevColumn = S->Col + 1; in renderRegionMarkers()
[all …]
H A DSourceCoverageViewHTML.cpp775 Snip(LCol - 1, Segments.empty() ? 0 : (Segments.front()->Col - 1)); in renderLine()
778 Snip(LCol - 1, Segments[I]->Col - LCol); in renderLine()
815 else if (CurSeg->Col == ExpansionCol) in renderLine()
821 Snippets[I + 1] = Highlight(Snippets[I + 1], CurSeg->Col, in renderLine()
822 CurSeg->Col + Snippets[I + 1].size()); in renderLine()
857 errs() << "Marker at " << CurSeg->Line << ":" << CurSeg->Col << " = " in renderLine()
/freebsd/contrib/llvm-project/clang/include/clang/Frontend/
H A DSerializedDiagnosticReader.h49 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 DCoverageMapping.h702 unsigned Col; member
712 CoverageSegment(unsigned Line, unsigned Col, bool IsRegionEntry) in CoverageSegment()
713 : Line(Line), Col(Col), Count(0), HasCount(false), in CoverageSegment()
716 CoverageSegment(unsigned Line, unsigned Col, uint64_t Count,
719 : Line(Line), Col(Col), Count(Count), HasCount(true), in Line()
723 return std::tie(L.Line, L.Col, L.Count, L.HasCount, L.IsRegionEntry,
724 L.IsGapRegion) == std::tie(R.Line, R.Col, R.Count,
739 unsigned Col; variable
742 InstantiationGroup(unsigned Line, unsigned Col, in InstantiationGroup() argument
744 : Line(Line), Col(Col), Instantiations(std::move(Instantiations)) {} in InstantiationGroup()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Tooling/ASTDiff/
H A DASTDiff.cpp603 Col = LastCol; in getMatchingNodes()
605 while (Row > FirstRow || Col > FirstCol) { in getMatchingNodes()
607 ForestDist[Row - 1][Col] + 1 == ForestDist[Row][Col]) { in getMatchingNodes()
609 } else if (Col > FirstCol && in getMatchingNodes()
610 ForestDist[Row][Col - 1] + 1 == ForestDist[Row][Col]) { in getMatchingNodes()
611 --Col; in getMatchingNodes()
614 SNodeId LMD2 = S2.getLeftMostDescendant(Col); in getMatchingNodes()
618 NodeId Id2 = S2.getIdInRoot(Col); in getMatchingNodes()
623 --Col; in getMatchingNodes()
625 TreePairs.emplace_back(Row, Col); in getMatchingNodes()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Interpreter/
H A DCodeCompletion.h44 unsigned Line, unsigned Col,
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DLLVMRemarkStreamer.cpp55 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 DSourceLocation.h307 unsigned Line, Col;
314 : Filename(FN), ID(FID), Line(Ln), Col(Co), IncludeLoc(IL) {}
349 return Col;
/freebsd/contrib/llvm-project/llvm/tools/llvm-mca/Views/
H A DResourcePressureView.cpp93 unsigned Col) { in printResourcePressure() argument
100 OS.PadToColumn(Col); in printResourcePressure()
/freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/UBSan/
H A DInstrumentationRuntimeUBSan.cpp164 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 DSerializedDiagnosticPrinter.cpp833 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 DTextDiagnostic.cpp106 unsigned Col = bytesSincePreviousTabOrLineBegin(SourceLine, *I); in printableTextForNextCharacter() local
107 unsigned NumSpaces = TabStop - (Col % TabStop); in printableTextForNextCharacter()
1225 size_t Col = sourceColMap.byteToContainingColumn(CaretColNo - 1); in emitSnippetAndCaret() local
1226 CaretLine.resize(std::max(Col + 1, CaretLine.size()), ' '); in emitSnippetAndCaret()
1227 CaretLine[Col] = '^'; in emitSnippetAndCaret()
/freebsd/contrib/llvm-project/llvm/lib/Remarks/
H A DYAMLRemarkSerializer.cpp83 unsigned Col = RL.SourceColumn; in mapping() local
96 io.mapRequired("Column", Col); in mapping()
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_str.h102 void __kmp_str_loc_numbers(char const *Psource, int *Line, int *Col);
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/Coverage/
H A DCoverageMapping.cpp1085 dbgs() << "Segment at " << Last.Line << ":" << Last.Col in startSegment()
1280 if (!(L.Line < R.Line) && !(L.Line == R.Line && L.Col < R.Col)) { in buildSegments()
1281 if (L.Line == R.Line && L.Col == R.Col && !L.HasCount) in buildSegments()
1283 LLVM_DEBUG(dbgs() << " ! Segment " << L.Line << ":" << L.Col in buildSegments()
1284 << " followed by " << R.Line << ":" << R.Col << "\n"); in buildSegments()
/freebsd/contrib/llvm-project/clang/lib/Interpreter/
H A DCodeCompletion.cpp357 unsigned Col, in codeComplete() argument
381 AU->CodeComplete(CodeCompletionFileName, 1, Col, RemappedFiles, false, false, in codeComplete()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCCodeView.cpp113 InlinedAt.Col = IACol; in recordInlinedCallSiteId()
303 FilteredLines.back().getColumn() != IA.Col) { in getFunctionLineEntries()
305 IA.File, IA.Line, IA.Col, false, in getFunctionLineEntries()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DCommentHTMLTags.td50 def Col : Tag<"col"> { let EndTagForbidden = 1; }
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCCodeView.h111 unsigned Col; member
/freebsd/sys/contrib/device-tree/Bindings/gpio/
H A Dgpio.txt197 "LED G", "LED B", "Col A", "Col B", "Col C", "Col D",
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DSourceManager.cpp1583 unsigned Col) const { in translateFileLineCol()
1585 assert(Line && Col && "Line and column should start from 1!"); in translateFileLineCol()
1588 return translateLineCol(FirstFID, Line, Col); in translateFileLineCol()
1636 unsigned Col) const { in translateLineCol()
1639 assert(Line && Col && "Line and column should start from 1!"); in translateLineCol()
1654 if (Line == 1 && Col == 1) in translateLineCol()
1685 while (i < BufLength-1 && i < Col-1 && Buf[i] != '\n' && Buf[i] != '\r') in translateLineCol()

12