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

Derived Classes

lib/Transforms/IPO/Attributor.cpp
 3308 struct AAValueSimplifyImpl : AAValueSimplify {

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))) {
 1970   static AAValueSimplify &createForPosition(const IRPosition &IRP,
lib/Transforms/IPO/Attributor.cpp
  159     Attributor &A, IRPosition IRP, const AAType &QueryingAA, StateTy &State,
 3308 struct AAValueSimplifyImpl : AAValueSimplify {
 3336     auto &ValueSimpifyAA = A.getAAFor<AAValueSimplify>(
 3467       auto &AA = A.getAAFor<AAValueSimplify>(*this, IRPosition::value(V));
 3479     if (!genericValueTraversal<AAValueSimplify, BooleanState>(
 4758     getOrCreateAAFor<AAValueSimplify>(RetPos);
 4781     getOrCreateAAFor<AAValueSimplify>(ArgPos);
 4813         getOrCreateAAFor<AAValueSimplify>(CSArgPos);