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

References

include/llvm/IR/PassManager.h
  376     static_assert(std::is_base_of<PassInfoMixin, DerivedT>::value,
  378     StringRef Name = getTypeName<DerivedT>();
  549   template <typename PassT> void addPass(PassT Pass) {
  551         detail::PassModel<IRUnitT, PassT, PreservedAnalyses, AnalysisManagerT,
include/llvm/IR/PassManagerInternal.h
   61   explicit PassModel(PassT Pass) : Pass(std::move(Pass)) {}
   82   StringRef name() const override { return PassT::name(); }
   84   PassT Pass;
include/llvm/Transforms/Scalar/GVN.h
   68 class GVN : public PassInfoMixin<GVN> {
  122                               uint32_t Num, GVN &Gvn);
  124                           const BasicBlock *PhiBlock, GVN &Gvn);
  126     bool areAllValsInBB(uint32_t num, const BasicBlock *BB, GVN &Gvn);
  139                           uint32_t Num, GVN &Gvn);
lib/Transforms/Scalar/GVN.cpp
  143   static inline GVN::Expression getEmptyKey() { return ~0U; }
  144   static inline GVN::Expression getTombstoneKey() { return ~1U; }
  146   static unsigned getHashValue(const GVN::Expression &e) {
  152   static bool isEqual(const GVN::Expression &LHS, const GVN::Expression &RHS) {
  152   static bool isEqual(const GVN::Expression &LHS, const GVN::Expression &RHS) {
  233                                   GVN &gvn) const;
  263   Value *MaterializeAdjustedValue(LoadInst *LI, GVN &gvn) const {
  272 GVN::Expression GVN::ValueTable::createExpr(Instruction *I) {
  308 GVN::Expression GVN::ValueTable::createCmpExpr(unsigned Opcode,
  328 GVN::Expression GVN::ValueTable::createExtractvalueExpr(ExtractValueInst *EI) {
  732                                      GVN &gvn) {
  772                                                 GVN &gvn) const {
 1584                                      GVN &Gvn) {
 1594                                        GVN &Gvn) {
 1607                                        const BasicBlock *PhiBlock, GVN &Gvn) {
 1642                                            uint32_t Num, GVN &Gvn) {
 2696   GVN Impl;
lib/Transforms/Scalar/GVNHoist.cpp
  171   void insert(Instruction *I, GVN::ValueTable &VN) {
  186   void insert(LoadInst *Load, GVN::ValueTable &VN) {
  203   void insert(StoreInst *Store, GVN::ValueTable &VN) {
  223   void insert(CallInst *Call, GVN::ValueTable &VN) {
  329   GVN::ValueTable VN;
usr/include/c++/7.4.0/bits/move.h
   98     move(_Tp&& __t) noexcept
usr/include/c++/7.4.0/type_traits
 1633     { typedef _Tp   type; };