Home
last modified time | relevance | path

Searched refs:endLoc (Results 1 – 21 of 21) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/ProfileData/Coverage/
H A DCoverageMapping.cpp704 DecisionEndLoc(Decision.endLoc()) { in DecisionRecord()
712 R.startLoc() >= DecisionStartLoc && R.endLoc() <= DecisionEndLoc) in dominates()
1208 return L->endLoc() < R->endLoc(); in completeRegionsUntil()
1215 assert((!Loc || CompletedRegion->endLoc() <= *Loc) && in completeRegionsUntil()
1219 auto CompletedSegmentLoc = PrevCompletedRegion->endLoc(); in completeRegionsUntil()
1227 if (CompletedSegmentLoc == CompletedRegion->endLoc()) in completeRegionsUntil()
1232 if (CompletedRegion->endLoc() == ActiveRegions[J]->endLoc()) in completeRegionsUntil()
1239 if (FirstCompletedRegion && Last->endLoc() != *Loc) { in completeRegionsUntil()
1242 startSegment(*ActiveRegions[FirstCompletedRegion - 1], Last->endLoc(), in completeRegionsUntil()
1244 } else if (!FirstCompletedRegion && (!Loc || *Loc != Last->endLoc())) { in completeRegionsUntil()
[all …]
H A DCoverageMappingWriter.cpp157 return CMR.startLoc() <= CMR.endLoc(); in write()
H A DCoverageMappingReader.cpp388 if (CMR.startLoc() > CMR.endLoc()) in readMappingRegionsSubArray()
/freebsd/contrib/llvm-project/clang/lib/CIR/CodeGen/
H A DCIRGenFunction.cpp274 !retVal ? builder.create<cir::YieldOp>(localScope->endLoc) in cleanup()
275 : builder.create<cir::YieldOp>(localScope->endLoc, retVal); in cleanup()
327 builder.create<cir::TrapOp>(localScope->endLoc); in emitImplicitReturn()
329 builder.create<cir::UnreachableOp>(localScope->endLoc); in emitImplicitReturn()
335 (void)emitReturn(localScope->endLoc); in emitImplicitReturn()
411 void CIRGenFunction::finishFunction(SourceLocation endLoc) {} in finishFunction() argument
H A DCIRGenFunction.h374 void finishFunction(SourceLocation endLoc);
629 mlir::Location endLoc; member
636 endLoc(loc) { in LexicalScope()
646 endLoc = fusedLoc.getLocations()[1]; in LexicalScope()
H A DCIRGenExpr.cpp742 mlir::Location endLoc, mlir::Value ptr, in emitArraySubscriptPtr() argument
749 return cgm.getBuilder().getArrayElement(beginLoc, endLoc, ptr, eltTy, idx, in emitArraySubscriptPtr()
755 mlir::Location endLoc, Address addr, in emitArraySubscriptPtr() argument
773 emitArraySubscriptPtr(cgf, beginLoc, endLoc, addr.getPointer(), in emitArraySubscriptPtr()
/freebsd/contrib/llvm-project/llvm/tools/llvm-mca/
H A DCodeRegion.cpp44 !Regions[0]->endLoc().isValid()) { in beginRegion()
90 !Regions[0]->startLoc().isValid() && !Regions[0]->endLoc().isValid()) { in endRegion()
H A DPipelinePrinter.cpp121 if (Region.startLoc().isValid() || Region.endLoc().isValid()) in printReport()
H A DCodeRegion.h114 llvm::SMLoc endLoc() const { return RangeEnd; } in endLoc() function
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclObjC.cpp820 SourceLocation beginLoc, SourceLocation endLoc, Selector SelInfo, in ObjCMethodDecl() argument
827 DeclEndLoc(endLoc) { in ObjCMethodDecl()
850 ASTContext &C, SourceLocation beginLoc, SourceLocation endLoc, in Create() argument
857 beginLoc, endLoc, SelInfo, T, ReturnTInfo, contextDecl, isInstance, in Create()
/freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp1663 SourceLocation endLoc = S->getSynchBody()->getBeginLoc(); in RewriteObjCSynchronizedStmt() local
1664 const char *endBuf = SM->getCharacterData(endLoc); in RewriteObjCSynchronizedStmt()
1917 SourceLocation endLoc = body->getEndLoc(); in RewriteObjCTryStmt() local
1920 assert(*SM->getCharacterData(endLoc) == '}' && in RewriteObjCTryStmt()
1925 endLoc = endLoc.getLocWithOffset(-1); in RewriteObjCTryStmt()
1926 InsertText(endLoc, " if (_rethrow) objc_exception_throw(_rethrow);\n"); in RewriteObjCTryStmt()
4612 SourceLocation endLoc = MessExpr->getEndLoc(); in RewriteFunctionBodyOrGlobalInitializer()
4615 const char *endBuf = SM->getCharacterData(endLoc); in RewriteFunctionBodyOrGlobalInitializer()
H A DRewriteModernObjC.cpp2057 SourceLocation endLoc = S->getEndLoc(); in RewriteObjCThrowStmt() local
2058 const char *endBuf = SM->getCharacterData(endLoc); in RewriteObjCThrowStmt()
5486 SourceLocation endLoc = MessExpr->getEndLoc(); in RewriteFunctionBodyOrGlobalInitializer()
5489 const char *endBuf = SM->getCharacterData(endLoc); in RewriteFunctionBodyOrGlobalInitializer()
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DPPDirectives.cpp538 SourceLocation endLoc; in SkipExcludedConditionalBlock() local
705 endLoc = CheckEndOfDirective("endif"); in SkipExcludedConditionalBlock()
736 endLoc = CheckEndOfDirective("else"); in SkipExcludedConditionalBlock()
880 SourceRange(HashTokenLoc, endLoc.isValid() in SkipExcludedConditionalBlock()
881 ? endLoc in SkipExcludedConditionalBlock()
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseObjc.cpp1651 SourceLocation &endLoc) { in parseObjCTypeArgsAndProtocolQualifiers() argument
1672 endLoc = PrevTokLocation; in parseObjCTypeArgsAndProtocolQualifiers()
1674 endLoc = Tok.getLocation(); in parseObjCTypeArgsAndProtocolQualifiers()
H A DParseDecl.cpp1222 ParsedAttributes &attrs, SourceLocation *endLoc, IdentifierInfo *ScopeName, in ParseAvailabilityAttribute() argument
1415 if (endLoc) in ParseAvailabilityAttribute()
1416 *endLoc = T.getCloseLocation(); in ParseAvailabilityAttribute()
/freebsd/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h2374 SourceLocation *endLoc,
2504 SourceLocation *endLoc = nullptr);
5572 SourceLocation &endLoc);
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclObjC.h170 SourceLocation beginLoc, SourceLocation endLoc, Selector SelInfo,
230 Create(ASTContext &C, SourceLocation beginLoc, SourceLocation endLoc,
H A DStmt.h1627 DeclStmt(DeclGroupRef dg, SourceLocation startLoc, SourceLocation endLoc)
1628 : Stmt(DeclStmtClass), DG(dg), StartLoc(startLoc), EndLoc(endLoc) {}
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMapping.h369 inline LineColPair endLoc() const { return LineColPair(LineEnd, ColumnEnd); } in endLoc() function
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaObjCProperty.cpp1143 SourceLocation endLoc = in ActOnPropertyImplDecl() local
1145 SourceRange ReadonlySourceRange(readonlyLoc, endLoc); in ActOnPropertyImplDecl()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParser.cpp4928 SMLoc endLoc; in parseSEHRegisterNumber() local
4929 if (parseRegister(RegNo, startLoc, endLoc)) in parseSEHRegisterNumber()