HomeSort by relevance Sort by last modified time
    Searched defs:PassRegistry (Results 1 - 2 of 2) sorted by null

  /external/llvm/include/llvm/
PassRegistry.h 1 //===- llvm/PassRegistry.h - Pass Information Registry ----------*- C++ -*-===//
10 // This file defines PassRegistry, a class that is used in the initialization
12 // with the PassRegistry, which is later provided to the PassManager for
27 /// PassRegistry - This class manages the registration and intitialization of
30 /// NOTE: PassRegistry is NOT thread-safe. If you want to use LLVM on multiple
31 /// threads simultaneously, you will need to use a separate PassRegistry on
33 class PassRegistry {
38 PassRegistry() : pImpl(0) { }
39 ~PassRegistry();
44 static PassRegistry *getPassRegistry()
    [all...]
  /external/llvm/lib/IR/
PassRegistry.cpp 1 //===- PassRegistry.cpp - Pass Registration Implementation ----------------===//
10 // This file implements the PassRegistry, with which passes are registered on
15 #include "llvm/PassRegistry.h"
33 static ManagedStatic<PassRegistry> PassRegistryObj;
34 PassRegistry *PassRegistry::getPassRegistry() {
64 void *PassRegistry::getImpl() const {
74 PassRegistry::~PassRegistry() {
86 const PassInfo *PassRegistry::getPassInfo(const void *TI) const
    [all...]

Completed in 190 milliseconds