reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Derived Classes

lib/Transforms/IPO/Attributor.cpp
 1460 struct AANoFreeImpl : public AANoFree {

References

include/llvm/Transforms/IPO/Attributor.h
  758   const AAType &getAAFor(const AbstractAttribute &QueryingAA,
  760     return getOrCreateAAFor<AAType>(IRP, &QueryingAA, TrackDependence);
  782   template <typename AAType> AAType &registerAA(AAType &AA) {
  782   template <typename AAType> AAType &registerAA(AAType &AA) {
  783     static_assert(std::is_base_of<AbstractAttribute, AAType>::value,
  792     KindToAbstractAttributeMap[&AAType::ID] = &AA;
  915   const AAType &getOrCreateAAFor(const IRPosition &IRP,
  918     if (const AAType *AAPtr =
  919             lookupAAFor<AAType>(IRP, QueryingAA, TrackDependence))
  924     auto &AA = AAType::createForPosition(IRP, *this);
  924     auto &AA = AAType::createForPosition(IRP, *this);
  928     bool Invalidate = Whitelist && !Whitelist->count(&AAType::ID);
  951   const AAType *lookupAAFor(const IRPosition &IRP,
  954     static_assert(std::is_base_of<AbstractAttribute, AAType>::value,
  963     if (AAType *AA = static_cast<AAType *>(
  964             KindToAbstractAttributeMap.lookup(&AAType::ID))) {
 1695   static AANoFree &createForPosition(const IRPosition &IRP, Attributor &A);
lib/Transforms/IPO/Attributor.cpp
 1460 struct AANoFreeImpl : public AANoFree {
 1470       const auto &NoFreeAA =
 1471           A.getAAFor<AANoFree>(*this, IRPosition::callsite_function(ICS));
 1513     auto &FnAA = A.getAAFor<AANoFree>(*this, FnPos);
 3680         const auto &NoFreeAA =
 3681             A.getAAFor<AANoFree>(*this, IRPosition::callsite_function(*CB));
 4733   getOrCreateAAFor<AANoFree>(FPos);