Home
last modified time | relevance | path

Searched refs:FPos (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DAttributor.cpp3364 IRPosition FPos = IRPosition::function(F); in identifyDefaultAbstractAttributes() local
3372 getOrCreateAAFor<AAIsDead>(FPos); in identifyDefaultAbstractAttributes()
3376 getOrCreateAAFor<AAUndefinedBehavior>(FPos); in identifyDefaultAbstractAttributes()
3380 getOrCreateAAFor<AAHeapToStack>(FPos); in identifyDefaultAbstractAttributes()
3386 checkAndQueryIRAttr<Attribute::NoFree, AANoFree>(FPos, FnAttrs); in identifyDefaultAbstractAttributes()
3392 checkAndQueryIRAttr<Attribute::NoSync, AANoSync>(FPos, FnAttrs); in identifyDefaultAbstractAttributes()
3410 getOrCreateAAFor<AANonConvergent>(FPos); in identifyDefaultAbstractAttributes()
3413 getOrCreateAAFor<AAMemoryBehavior>(FPos); in identifyDefaultAbstractAttributes()
3416 getOrCreateAAFor<AAMemoryLocation>(FPos); in identifyDefaultAbstractAttributes()
3419 getOrCreateAAFor<AAAssumptionInfo>(FPos); in identifyDefaultAbstractAttributes()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp639 size_t FPos; in ParseDirective() local
640 while ((FPos = Content.find(NewlineStr, CPos)) != StringRef::npos) { in ParseDirective()
641 D.Text += Content.substr(CPos, FPos-CPos); in ParseDirective()
643 CPos = FPos + NewlineStr.size(); in ParseDirective()