2010-07-20 18:53:25 +00:00
|
|
|
//===- 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
|
2010-09-07 19:16:25 +00:00
|
|
|
// and registration of passes. At application startup, passes are registered
|
|
|
|
// with the PassRegistry, which is later provided to the PassManager for
|
|
|
|
// dependency resolution and similar tasks.
|
2010-07-20 18:53:25 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_PASSREGISTRY_H
|
|
|
|
#define LLVM_PASSREGISTRY_H
|
|
|
|
|
2014-01-07 11:48:04 +00:00
|
|
|
#include "llvm-c/Core.h"
|
2014-06-12 16:06:51 +00:00
|
|
|
#include "llvm/ADT/DenseMap.h"
|
|
|
|
#include "llvm/ADT/SmallPtrSet.h"
|
|
|
|
#include "llvm/ADT/StringMap.h"
|
2010-09-13 18:47:42 +00:00
|
|
|
#include "llvm/ADT/StringRef.h"
|
2014-06-12 16:06:51 +00:00
|
|
|
#include "llvm/PassInfo.h"
|
2013-05-01 20:59:00 +00:00
|
|
|
#include "llvm/Support/CBindingWrapping.h"
|
2014-06-12 16:06:51 +00:00
|
|
|
#include "llvm/Support/RWMutex.h"
|
|
|
|
#include <vector>
|
2010-07-20 18:53:25 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2010-07-20 23:41:56 +00:00
|
|
|
class PassInfo;
|
|
|
|
struct PassRegistrationListener;
|
|
|
|
|
2010-09-07 19:16:25 +00:00
|
|
|
/// PassRegistry - This class manages the registration and intitialization of
|
|
|
|
/// the pass subsystem as application startup, and assists the PassManager
|
|
|
|
/// in resolving pass dependencies.
|
|
|
|
/// NOTE: PassRegistry is NOT thread-safe. If you want to use LLVM on multiple
|
|
|
|
/// threads simultaneously, you will need to use a separate PassRegistry on
|
|
|
|
/// each thread.
|
2010-07-20 18:53:25 +00:00
|
|
|
class PassRegistry {
|
2014-06-12 16:06:51 +00:00
|
|
|
mutable sys::SmartRWMutex<true> Lock;
|
|
|
|
|
|
|
|
/// PassInfoMap - Keep track of the PassInfo object for each registered pass.
|
2014-10-05 23:59:03 +00:00
|
|
|
typedef DenseMap<const void *, const PassInfo *> MapType;
|
2014-06-12 16:06:51 +00:00
|
|
|
MapType PassInfoMap;
|
2014-10-05 23:59:03 +00:00
|
|
|
|
|
|
|
typedef StringMap<const PassInfo *> StringMapType;
|
2014-06-12 16:06:51 +00:00
|
|
|
StringMapType PassInfoStringMap;
|
2014-10-05 23:59:03 +00:00
|
|
|
|
2014-06-12 16:06:51 +00:00
|
|
|
std::vector<std::unique_ptr<const PassInfo>> ToFree;
|
2014-10-05 23:59:03 +00:00
|
|
|
std::vector<PassRegistrationListener *> Listeners;
|
|
|
|
|
2010-07-20 18:53:25 +00:00
|
|
|
public:
|
2014-10-05 23:59:03 +00:00
|
|
|
PassRegistry() {}
|
2010-09-07 20:48:10 +00:00
|
|
|
~PassRegistry();
|
2014-10-05 23:59:03 +00:00
|
|
|
|
|
|
|
/// getPassRegistry - Access the global registry object, which is
|
2010-09-07 20:04:26 +00:00
|
|
|
/// automatically initialized at application launch and destroyed by
|
|
|
|
/// llvm_shutdown.
|
2010-07-20 21:22:24 +00:00
|
|
|
static PassRegistry *getPassRegistry();
|
2014-10-05 23:59:03 +00:00
|
|
|
|
2010-09-07 20:04:26 +00:00
|
|
|
/// getPassInfo - Look up a pass' corresponding PassInfo, indexed by the pass'
|
|
|
|
/// type identifier (&MyPass::ID).
|
2010-08-06 18:33:48 +00:00
|
|
|
const PassInfo *getPassInfo(const void *TI) const;
|
2014-10-05 23:59:03 +00:00
|
|
|
|
2010-09-07 20:04:26 +00:00
|
|
|
/// getPassInfo - Look up a pass' corresponding PassInfo, indexed by the pass'
|
|
|
|
/// argument string.
|
2010-07-20 18:53:25 +00:00
|
|
|
const PassInfo *getPassInfo(StringRef Arg) const;
|
2014-10-05 23:59:03 +00:00
|
|
|
|
|
|
|
/// registerPass - Register a pass (by means of its PassInfo) with the
|
2010-09-07 20:04:26 +00:00
|
|
|
/// registry. Required in order to use the pass with a PassManager.
|
2010-10-20 22:22:30 +00:00
|
|
|
void registerPass(const PassInfo &PI, bool ShouldFree = false);
|
2014-10-05 23:59:03 +00:00
|
|
|
|
2010-09-07 20:04:26 +00:00
|
|
|
/// registerAnalysisGroup - Register an analysis group (or a pass implementing
|
2014-10-05 23:59:03 +00:00
|
|
|
// an analysis group) with the registry. Like registerPass, this is required
|
2010-09-07 20:04:26 +00:00
|
|
|
// in order for a PassManager to be able to use this group/pass.
|
2010-08-06 18:33:48 +00:00
|
|
|
void registerAnalysisGroup(const void *InterfaceID, const void *PassID,
|
2014-10-05 23:59:03 +00:00
|
|
|
PassInfo &Registeree, bool isDefault,
|
2010-10-20 22:22:30 +00:00
|
|
|
bool ShouldFree = false);
|
2014-10-05 23:59:03 +00:00
|
|
|
|
2010-09-07 20:04:26 +00:00
|
|
|
/// enumerateWith - Enumerate the registered passes, calling the provided
|
|
|
|
/// PassRegistrationListener's passEnumerate() callback on each of them.
|
2010-07-20 18:53:25 +00:00
|
|
|
void enumerateWith(PassRegistrationListener *L);
|
2014-10-05 23:59:03 +00:00
|
|
|
|
2010-09-07 20:04:26 +00:00
|
|
|
/// addRegistrationListener - Register the given PassRegistrationListener
|
|
|
|
/// to receive passRegistered() callbacks whenever a new pass is registered.
|
2010-09-05 22:43:56 +00:00
|
|
|
void addRegistrationListener(PassRegistrationListener *L);
|
2014-10-05 23:59:03 +00:00
|
|
|
|
2010-09-07 20:04:26 +00:00
|
|
|
/// removeRegistrationListener - Unregister a PassRegistrationListener so that
|
|
|
|
/// it no longer receives passRegistered() callbacks.
|
2010-07-20 23:41:56 +00:00
|
|
|
void removeRegistrationListener(PassRegistrationListener *L);
|
2010-07-20 18:53:25 +00:00
|
|
|
};
|
|
|
|
|
2013-05-01 20:59:00 +00:00
|
|
|
// Create wrappers for C Binding types (see CBindingWrapping.h).
|
|
|
|
DEFINE_STDCXX_CONVERSION_FUNCTIONS(PassRegistry, LLVMPassRegistryRef)
|
|
|
|
|
2010-07-20 18:53:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|