HomeSort by: relevance | last modified time | path
    Searched refs:Col (Results 1 - 25 of 42) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
TileShapeInfo.h 32 ShapeT(MachineOperand *Row, MachineOperand *Col,
34 : Row(Row), Col(Col) {
39 : Row(nullptr), Col(nullptr), RowImm(InvalidImmShape),
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; }
65 bool isValid() { return (Row != nullptr) && (Col != nullptr); }
83 ColImm = GetImm(Col->getReg())
    [all...]
  /src/external/apache2/llvm/dist/llvm/bindings/go/llvm/
IRBindings.h 31 unsigned Col;
47 unsigned Col, LLVMMetadataRef Scope,
IRBindings.cpp 54 unsigned Col, LLVMMetadataRef Scope,
60 unwrap<MDNode>(Scope)->getContext(), Line, Col, unwrap<MDNode>(Scope),
ir_test.go 131 if loc.Col != 20 {
132 t.Errorf("Got column %d, though wanted 20", loc.Col)
  /src/external/apache2/llvm/dist/clang/include/clang/Frontend/
SerializedDiagnosticReader.h 49 unsigned Col;
52 Location(unsigned FileID, unsigned Line, unsigned Col, unsigned Offset)
53 : FileID(FileID), Line(Line), Col(Col), Offset(Offset) {}
  /src/external/apache2/llvm/dist/llvm/tools/llvm-cov/
SourceCoverageViewText.cpp 114 unsigned Col = 1;
116 unsigned End = std::min(S->Col, static_cast<unsigned>(Line.size()) + 1);
120 << Line.substr(Col - 1, End - Col);
122 HighlightedRanges.push_back(std::make_pair(Col, End));
123 Col = End;
127 else if (Col == ExpansionCol)
136 << Line.substr(Col - 1, Line.size() - Col + 1);
144 errs() << "Highlighted line " << LineNumber << ", " << Col << " -> ?\n"
    [all...]
SourceCoverageViewHTML.cpp 506 // snippet starts from Col=1 and ends at the start of the first segment.
519 Snip(LCol - 1, Segments.empty() ? 0 : (Segments.front()->Col - 1));
522 Snip(LCol - 1, Segments[I]->Col - LCol);
559 else if (CurSeg->Col == ExpansionCol)
565 Snippets[I + 1] = Highlight(Snippets[I + 1], CurSeg->Col,
566 CurSeg->Col + Snippets[I + 1].size());
601 errs() << "Marker at " << CurSeg->Line << ":" << CurSeg->Col << " = "
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86LowerAMXType.cpp 86 // In AMX intrinsics we let Shape = {Row, Col}, but the
87 // RealCol = Col / ElementSize. We may use the RealCol
119 Value *Row = nullptr, *Col = nullptr;
126 Col = II->getArgOperand(1);
139 Col = II->getArgOperand(1);
143 Col = II->getArgOperand(2);
147 // FIXME: There is a design bug for AMX shape, which the Col should be
148 // Col/4 if it will be used as Row, but current Greedy RA can't handle
154 Col = II->getArgOperand(1);
161 return std::make_pair(Row, Col);
    [all...]
X86PreAMXConfig.cpp 27 /// store volatile i16 %k, i16* %amx.tmm.0.shape.col, align 2 * pre-config
31 /// store volatile i16 %n, i16* %amx.tmm.1.shape.col, align 2 *
121 // %amx.tmm.0.shape.col = getelementptr i16, i16* %mem, i64 16 *
123 // store volatile i16 %k, i16* %amx.tmm.0.shape.col, align 2 * pre-config
127 // %amx.tmm.1.shape.col = getelementptr i16, i16* %mem, i64 18 *
129 // store volatile i16 %n, i16* %amx.tmm.1.shape.col, align 2 *
133 // %amx.tmm.2.shape.col = getelementptr i16, i16* %mem, i64 20 *
135 // store volatile i16 %n, i16* %amx.tmm.2.shape.col, align 2 *
139 // %amx.tmm.3.shape.col = getelementptr i16, i16* %mem, i64 22 *
141 // store volatile i16 %n, i16* %amx.tmm.3.shape.col, align 2
    [all...]
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) {
168 BasicBlock *ColBody = createLoop(RowBody, RowLatch, Col, B.getInt16(1),
225 // %idx = add i16 %mul, i16 %col.iv
245 Value *Col, Value *K, Value *Acc,
284 BasicBlock *ColBody = createLoop(RowBody, RowLatch, Col, B.getInt16(1),
330 // %vec.c.phi.col = phi <256 x i32> [ %vec.c.phi.row,
334 // %vec.d.phi.col = phi <256 x i32> [
340 PHINode *VecCPhiColLoop = B.CreatePHI(V256I32Ty, 2, "vec.c.phi.col");
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/FileCheck/
FileCheck.cpp 670 for (unsigned Col = 1; InputFilePtr != InputFileEnd && !Newline; ++Col) {
674 if (M.InputStartCol <= Col && Col < M.InputEndCol) {
701 unsigned Col;
702 for (Col = 1; Col < AnnotationItr->InputStartCol; ++Col)
706 for (++Col; Col < AnnotationItr->InputEndCol && Col <= InputLineWidth
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/Coverage/
CoverageMapping.h 441 unsigned Col;
451 CoverageSegment(unsigned Line, unsigned Col, bool IsRegionEntry)
452 : Line(Line), Col(Col), Count(0), HasCount(false),
455 CoverageSegment(unsigned Line, unsigned Col, uint64_t Count,
458 : Line(Line), Col(Col), Count(Count), HasCount(true),
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;
    [all...]
  /src/external/apache2/llvm/dist/clang/tools/c-index-test/
core_main.cpp 112 unsigned Col = SM.getColumnNumber(FID, SM.getFileOffset(Loc));
113 OS << Line << ':' << Col << " | ";
150 unsigned Col = SM.getColumnNumber(FID, SM.getFileOffset(Loc));
151 OS << Line << ':' << Col << " | ";
173 unsigned Col = SM.getColumnNumber(FID, SM.getFileOffset(Loc));
174 OS << Line << ':' << Col << " | ";
  /src/external/apache2/llvm/dist/clang/lib/Tooling/ASTDiff/
ASTDiff.cpp 590 SNodeId LastRow, LastCol, FirstRow, FirstCol, Row, Col;
604 Col = LastCol;
606 while (Row > FirstRow || Col > FirstCol) {
608 ForestDist[Row - 1][Col] + 1 == ForestDist[Row][Col]) {
610 } else if (Col > FirstCol &&
611 ForestDist[Row][Col - 1] + 1 == ForestDist[Row][Col]) {
612 --Col;
615 SNodeId LMD2 = S2.getLeftMostDescendant(Col);
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/IR/
LLVMRemarkStreamer.cpp 52 unsigned Col = DL.getColumn();
53 return remarks::RemarkLocation{File, Line, Col};
  /src/external/apache2/llvm/dist/llvm/tools/llvm-mca/Views/
ResourcePressureView.cpp 93 unsigned Col) {
100 OS.PadToColumn(Col);
  /src/external/apache2/llvm/dist/llvm/lib/ProfileData/Coverage/
CoverageMapping.cpp 445 dbgs() << "Segment at " << Last.Line << ":" << Last.Col
640 if (!(L.Line < R.Line) && !(L.Line == R.Line && L.Col < R.Col)) {
641 if (L.Line == R.Line && L.Col == R.Col && !L.HasCount)
643 LLVM_DEBUG(dbgs() << " ! Segment " << L.Line << ":" << L.Col
644 << " followed by " << R.Line << ":" << R.Col << "\n");
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
SourceLocation.h 307 unsigned Line, Col;
314 : Filename(FN), ID(FID), Line(Ln), Col(Co), IncludeLoc(IL) {}
349 return Col;
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCCodeView.h 104 unsigned Col;
  /src/external/apache2/llvm/dist/llvm/lib/Remarks/
YAMLRemarkSerializer.cpp 83 unsigned Col = RL.SourceColumn;
97 io.mapRequired("Column", Col);
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
SerializedDiagnosticPrinter.cpp 836 RECORD_SOURCE_RANGE, FileLookup[Start.FileID], Start.Line, Start.Col,
837 Start.Offset, FileLookup[End.FileID], End.Line, End.Col, End.Offset};
848 Location.Col, Location.Offset, CategoryLookup[Category],
861 Start.Line, Start.Col, Start.Offset,
862 FileLookup[End.FileID], End.Line, End.Col,
  /src/external/apache2/llvm/dist/llvm/tools/llvm-opt-report/
OptReport.cpp 318 int Col = CI.first;
319 ColsInfo[Col] = CI.second;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
SourceMgr.h 270 SMDiagnostic(const SourceMgr &sm, SMLoc L, StringRef FN, int Line, int Col,
  /src/external/apache2/llvm/dist/clang/lib/Basic/
SourceManager.cpp 1637 /// Get the source location for the given file:line:col triplet.
1643 unsigned Col) const {
1645 assert(Line && Col && "Line and column should start from 1!");
1648 return translateLineCol(FirstFID, Line, Col);
1692 /// Get the source location in \arg FID for the given line:col.
1696 unsigned Col) const {
1699 assert(Line && Col && "Line and column should start from 1!");
1714 if (Line == 1 && Col == 1)
1745 while (i < BufLength-1 && i < Col-1 && Buf[i] != '\n' && Buf[i] != '\r')
  /src/external/apache2/llvm/dist/llvm/lib/Support/
SourceMgr.cpp 368 int Col, SourceMgr::DiagKind Kind, StringRef Msg,
372 : SM(&sm), Loc(L), Filename(std::string(FN)), LineNo(Line), ColumnNo(Col),

Completed in 29 milliseconds

1 2