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.cpp3356 IRPosition FPos = IRPosition::function(F); in identifyDefaultAbstractAttributes() local
3364 getOrCreateAAFor<AAIsDead>(FPos); in identifyDefaultAbstractAttributes()
3368 getOrCreateAAFor<AAUndefinedBehavior>(FPos); in identifyDefaultAbstractAttributes()
3372 getOrCreateAAFor<AAHeapToStack>(FPos); in identifyDefaultAbstractAttributes()
3375 checkAndQueryIRAttr<Attribute::MustProgress, AAMustProgress>(FPos, FnAttrs); in identifyDefaultAbstractAttributes()
3378 checkAndQueryIRAttr<Attribute::NoFree, AANoFree>(FPos, FnAttrs); in identifyDefaultAbstractAttributes()
3381 checkAndQueryIRAttr<Attribute::WillReturn, AAWillReturn>(FPos, FnAttrs); in identifyDefaultAbstractAttributes()
3384 checkAndQueryIRAttr<Attribute::NoSync, AANoSync>(FPos, FnAttrs); in identifyDefaultAbstractAttributes()
3392 checkAndQueryIRAttr<Attribute::NoUnwind, AANoUnwind>(FPos, FnAttrs); in identifyDefaultAbstractAttributes()
3395 checkAndQueryIRAttr<Attribute::NoReturn, AANoReturn>(FPos, FnAttrs); in identifyDefaultAbstractAttributes()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp652 size_t FPos; in ParseDirective() local
653 while ((FPos = Content.find(NewlineStr, CPos)) != StringRef::npos) { in ParseDirective()
654 D.Text += Content.substr(CPos, FPos-CPos); in ParseDirective()
656 CPos = FPos + NewlineStr.size(); in ParseDirective()