summaryrefslogtreecommitdiff
path: root/include/llvm/PassRegistry.h
blob: 193ecfd1b584d07668c4822e4a793e92d264eb2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
//===- llvm/PassRegistry.h - Pass Information Registry ----------*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file defines PassRegistry, a class that is used in the initialization
// and registration of passes.  At initialization, passes are registered with
// the PassRegistry, which is later provided to the PassManager for dependency
// resolution and similar tasks.
//
//===----------------------------------------------------------------------===//

#ifndef LLVM_PASSREGISTRY_H
#define LLVM_PASSREGISTRY_H

#include "llvm/ADT/StringMap.h"
#include "llvm/System/DataTypes.h"
#include "llvm/System/Mutex.h"
#include <map>
#include <set>
#include <vector>

namespace llvm {

class PassInfo;
struct PassRegistrationListener;

class PassRegistry {
  /// Guards the contents of this class.
  mutable sys::SmartMutex<true> Lock;
  
  /// PassInfoMap - Keep track of the PassInfo object for each registered pass.
  typedef std::map<intptr_t, const PassInfo*> MapType;
  MapType PassInfoMap;
  
  typedef StringMap<const PassInfo*> StringMapType;
  StringMapType PassInfoStringMap;
  
  /// AnalysisGroupInfo - Keep track of information for each analysis group.
  struct AnalysisGroupInfo {
    std::set<const PassInfo *> Implementations;
  };
  std::map<const PassInfo*, AnalysisGroupInfo> AnalysisGroupInfoMap;
  
  std::vector<PassRegistrationListener*> Listeners;

public:
  static PassRegistry *getPassRegistry();
  
  const PassInfo *getPassInfo(intptr_t TI) const;
  const PassInfo *getPassInfo(StringRef Arg) const;
  
  void registerPass(const PassInfo &PI);
  void unregisterPass(const PassInfo &PI);
  
  /// Analysis Group Mechanisms.
  void registerAnalysisGroup(intptr_t InterfaceID, intptr_t PassID,
                             PassInfo& Registeree, bool isDefault);
  
  void enumerateWith(PassRegistrationListener *L);
  void addRegistrationListener(PassRegistrationListener* L);
  void removeRegistrationListener(PassRegistrationListener *L);
};

}

#endif