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

Derived Classes

lib/Transforms/IPO/Attributor.cpp
  846 class AAReturnedValuesImpl : public AAReturnedValues, public AbstractState {

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))) {
 1563   static AAReturnedValues &createForPosition(const IRPosition &IRP,
lib/Transforms/IPO/Attributor.cpp
  159     Attributor &A, IRPosition IRP, const AAType &QueryingAA, StateTy &State,
  846 class AAReturnedValuesImpl : public AAReturnedValues, public AbstractState {
 1109     return genericValueTraversal<AAReturnedValues, RVState>(A, RetValPos, *this,
 1144     const auto &RetValAA = A.getAAFor<AAReturnedValues>(
 1144     const auto &RetValAA = A.getAAFor<AAReturnedValues>(
 3198     const AAReturnedValues *RVAA =
 3199         IsVoidTy ? nullptr : &A.getAAFor<AAReturnedValues>(*this, FnPos);
 4336   const auto &AARetVal = getAAFor<AAReturnedValues>(QueryingAA, QueryIRP);
 4336   const auto &AARetVal = getAAFor<AAReturnedValues>(QueryingAA, QueryIRP);
 4354   const auto &AARetVal = getAAFor<AAReturnedValues>(QueryingAA, QueryIRP);
 4354   const auto &AARetVal = getAAFor<AAReturnedValues>(QueryingAA, QueryIRP);
 4753     getOrCreateAAFor<AAReturnedValues>(FPos);