1 //===-- llvm/CodeGen/RegAllocRegistry.h -------------------------*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file contains the implementation for register allocator function
11 // pass registry (RegisterRegAlloc).
13 //===----------------------------------------------------------------------===//
15 #ifndef LLVM_CODEGEN_REGALLOCREGISTRY_H
16 #define LLVM_CODEGEN_REGALLOCREGISTRY_H
18 #include "llvm/CodeGen/MachinePassRegistry.h"
22 //===----------------------------------------------------------------------===//
24 /// RegisterRegAlloc class - Track the registration of register allocators.
26 //===----------------------------------------------------------------------===//
27 class RegisterRegAlloc : public MachinePassRegistryNode {
31 typedef FunctionPass *(*FunctionPassCtor)();
33 static MachinePassRegistry Registry;
35 RegisterRegAlloc(const char *N, const char *D, FunctionPassCtor C)
36 : MachinePassRegistryNode(N, D, (MachinePassCtor)C) {
39 ~RegisterRegAlloc() { Registry.Remove(this); }
43 RegisterRegAlloc *getNext() const {
44 return (RegisterRegAlloc *)MachinePassRegistryNode::getNext();
46 static RegisterRegAlloc *getList() {
47 return (RegisterRegAlloc *)Registry.getList();
49 static FunctionPassCtor getDefault() {
50 return (FunctionPassCtor)Registry.getDefault();
52 static void setDefault(FunctionPassCtor C) {
53 Registry.setDefault((MachinePassCtor)C);
55 static void setListener(MachinePassRegistryListener *L) {
56 Registry.setListener(L);
60 } // end namespace llvm