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.cpp3369 IRPosition FPos = IRPosition::function(F); in identifyDefaultAbstractAttributes() local
3377 getOrCreateAAFor<AAIsDead>(FPos); in identifyDefaultAbstractAttributes()
3381 getOrCreateAAFor<AAUndefinedBehavior>(FPos); in identifyDefaultAbstractAttributes()
3385 getOrCreateAAFor<AAHeapToStack>(FPos); in identifyDefaultAbstractAttributes()
3388 checkAndQueryIRAttr<Attribute::MustProgress, AAMustProgress>(FPos, FnAttrs); in identifyDefaultAbstractAttributes()
3391 checkAndQueryIRAttr<Attribute::NoFree, AANoFree>(FPos, FnAttrs); in identifyDefaultAbstractAttributes()
3394 checkAndQueryIRAttr<Attribute::WillReturn, AAWillReturn>(FPos, FnAttrs); in identifyDefaultAbstractAttributes()
3397 checkAndQueryIRAttr<Attribute::NoSync, AANoSync>(FPos, FnAttrs); in identifyDefaultAbstractAttributes()
3405 checkAndQueryIRAttr<Attribute::NoUnwind, AANoUnwind>(FPos, FnAttrs); in identifyDefaultAbstractAttributes()
3408 checkAndQueryIRAttr<Attribute::NoReturn, AANoReturn>(FPos, FnAttrs); in identifyDefaultAbstractAttributes()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp644 size_t FPos; in ParseDirective() local
645 while ((FPos = Content.find(NewlineStr, CPos)) != StringRef::npos) { in ParseDirective()
646 D.Text += Content.substr(CPos, FPos-CPos); in ParseDirective()
648 CPos = FPos + NewlineStr.size(); in ParseDirective()