| /freebsd-12.1/contrib/llvm/lib/ProfileData/Coverage/ |
| H A D | CoverageMappingWriter.cpp | 122 return CMR.startLoc() <= CMR.endLoc(); in write() 133 if (LHS.startLoc() != RHS.startLoc()) in write() 134 return LHS.startLoc() < RHS.startLoc(); in write()
|
| H A D | CoverageMapping.cpp | 315 auto &Functions = InstantiatedFunctions[I->startLoc()]; in insert() 423 auto CurStartLoc = CR.value().startLoc(); in buildSegmentsImpl() 449 CurStartLoc != Regions[CR.index() + 1].startLoc()) { in buildSegmentsImpl() 467 if (LHS.startLoc() != RHS.startLoc()) in sortNestedRegions() 468 return LHS.startLoc() < RHS.startLoc(); in sortNestedRegions() 494 if (Active->startLoc() != I->startLoc() || in combineRegions()
|
| H A D | CoverageMappingReader.cpp | 245 if (CMR.startLoc() > CMR.endLoc()) in readMappingRegionsSubArray()
|
| /freebsd-12.1/contrib/llvm/lib/MC/MCParser/ |
| H A D | COFFAsmParser.cpp | 780 SMLoc startLoc = getLexer().getLoc(); in ParseSEHDirectivePushFrame() local 784 return Error(startLoc, "expected @code"); in ParseSEHDirectivePushFrame() 807 SMLoc startLoc = getLexer().getLoc(); in ParseAtUnwindOrAtExcept() local 810 return Error(startLoc, "expected @unwind or @except"); in ParseAtUnwindOrAtExcept() 816 return Error(startLoc, "expected @unwind or @except"); in ParseAtUnwindOrAtExcept() 821 SMLoc startLoc = getLexer().getLoc(); in ParseSEHRegisterNumber() local 826 if (getParser().getTargetParser().ParseRegister(LLVMRegNo,startLoc,endLoc)) in ParseSEHRegisterNumber() 840 return Error(startLoc, "expected non-volatile register"); in ParseSEHRegisterNumber() 845 return Error(startLoc,"register can't be represented in SEH unwind info"); in ParseSEHRegisterNumber() 853 return Error(startLoc, "register number is too high"); in ParseSEHRegisterNumber()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Frontend/Rewrite/ |
| H A D | RewriteObjC.cpp | 773 InsertText(startLoc, "// "); in RewritePropertyImplDecl() 1754 ReplaceText(startLoc, 6, buf); in RewriteTryReturnStmts() 1778 ReplaceText(startLoc, 6, buf); in RewriteSyncReturnStmts() 1799 ReplaceText(startLoc, 4, buf); in RewriteObjCTryStmt() 1808 startLoc = startLoc.getLocWithOffset(1); in RewriteObjCTryStmt() 1816 InsertText(startLoc, buf); in RewriteObjCTryStmt() 1917 startLoc = startLoc.getLocWithOffset(1); in RewriteObjCTryStmt() 2202 SourceLocation startLoc; in RewriteTypeOfDecl() local 2207 startLoc = SM->getExpansionLoc(startLoc); in RewriteTypeOfDecl() 4270 SourceLocation startLoc; in RewriteByRefVar() local [all …]
|
| H A D | RewriteModernObjC.cpp | 928 InsertText(startLoc, "// "); in RewritePropertyImplDecl() 1951 ReplaceText(startLoc, 1, buf); in RewriteObjCTryStmt() 1954 ReplaceText(startLoc, 1, ""); in RewriteObjCTryStmt() 1960 startLoc = Catch->getBeginLoc(); in RewriteObjCTryStmt() 1998 ReplaceText(startLoc, 1, ""); in RewriteObjCTryStmt() 2293 SourceLocation startLoc; in RewriteTypeOfDecl() local 2297 startLoc = E->getBeginLoc(); in RewriteTypeOfDecl() 2298 startLoc = SM->getExpansionLoc(startLoc); in RewriteTypeOfDecl() 5143 SourceLocation startLoc; in RewriteByRefVar() local 5148 startLoc = E->getBeginLoc(); in RewriteByRefVar() [all …]
|
| /freebsd-12.1/contrib/llvm/tools/llvm-mca/ |
| H A D | CodeRegion.cpp | 31 if (CurrentRegion.startLoc().isValid() && !CurrentRegion.endLoc().isValid()) { in beginRegion() 38 if (!CurrentRegion.startLoc().isValid()) in beginRegion()
|
| H A D | CodeRegion.h | 70 llvm::SMLoc startLoc() const { return RangeStart; } in startLoc() function
|
| H A D | llvm-mca.cpp | 403 if (Region->startLoc().isValid() || Region->endLoc().isValid()) { in main()
|
| /freebsd-12.1/contrib/llvm/tools/llvm-cov/ |
| H A D | SourceCoverageView.h | 51 return LHS.Region.startLoc() < RHS.Region.startLoc();
|
| /freebsd-12.1/contrib/llvm/lib/Target/X86/Disassembler/ |
| H A D | X86DisassemblerDecoder.cpp | 1902 uint64_t startLoc, DisassemblerMode mode) { in decodeInstruction() argument 1909 insn->startLocation = startLoc; in decodeInstruction() 1910 insn->readerCursor = startLoc; in decodeInstruction() 1926 startLoc, insn->readerCursor, insn->length); in decodeInstruction()
|
| H A D | X86DisassemblerDecoder.h | 675 uint64_t startLoc,
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/AST/ |
| H A D | DeclObjC.cpp | 1410 SourceLocation startLoc = VarianceLoc; in getSourceRange() local 1411 if (startLoc.isInvalid()) in getSourceRange() 1412 startLoc = getLocation(); in getSourceRange() 1415 return SourceRange(startLoc, in getSourceRange() 1419 return SourceRange(startLoc); in getSourceRange()
|
| /freebsd-12.1/contrib/llvm/lib/Target/SystemZ/AsmParser/ |
| H A D | SystemZAsmParser.cpp | 152 SystemZOperand(OperandKind kind, SMLoc startLoc, SMLoc endLoc) in SystemZOperand() argument 153 : Kind(kind), StartLoc(startLoc), EndLoc(endLoc) {} in SystemZOperand()
|
| /freebsd-12.1/contrib/llvm/include/llvm/ProfileData/Coverage/ |
| H A D | CoverageMapping.h | 265 inline LineColPair startLoc() const { in startLoc() function
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/ |
| H A D | Stmt.h | 1148 DeclStmt(DeclGroupRef dg, SourceLocation startLoc, SourceLocation endLoc) in DeclStmt() argument 1149 : Stmt(DeclStmtClass), DG(dg), StartLoc(startLoc), EndLoc(endLoc) {} in DeclStmt()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/ |
| H A D | SemaObjCProperty.cpp | 2194 SourceLocation startLoc = in AtomicPropertySetterGetterRules() local 2198 << FixItHint::CreateInsertion(startLoc, "(nonatomic) "); in AtomicPropertySetterGetterRules()
|