2006-08-01 18:29:48 +00:00
|
|
|
//===-- CodeGen/MachineInstr.cpp ------------------------------------------===//
|
2006-08-01 16:31:08 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2006-08-01 16:31:08 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2006-08-01 18:29:48 +00:00
|
|
|
//
|
|
|
|
// This file contains the machine function pass registry for register allocators
|
|
|
|
// and instruction schedulers.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2006-08-01 16:31:08 +00:00
|
|
|
|
|
|
|
#include "llvm/CodeGen/MachinePassRegistry.h"
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
2011-12-20 02:50:00 +00:00
|
|
|
void MachinePassRegistryListener::anchor() { }
|
2006-08-02 12:30:23 +00:00
|
|
|
|
2012-04-19 01:34:10 +00:00
|
|
|
/// setDefault - Set the default constructor by name.
|
|
|
|
void MachinePassRegistry::setDefault(StringRef Name) {
|
|
|
|
MachinePassCtor Ctor = 0;
|
|
|
|
for(MachinePassRegistryNode *R = getList(); R; R = R->getNext()) {
|
|
|
|
if (R->getName() == Name) {
|
|
|
|
Ctor = R->getCtor();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
assert(Ctor && "Unregistered pass name");
|
|
|
|
setDefault(Ctor);
|
|
|
|
}
|
|
|
|
|
2006-08-02 12:30:23 +00:00
|
|
|
/// Add - Adds a function pass to the registration list.
|
2006-08-01 16:31:08 +00:00
|
|
|
///
|
2006-08-02 12:30:23 +00:00
|
|
|
void MachinePassRegistry::Add(MachinePassRegistryNode *Node) {
|
|
|
|
Node->setNext(List);
|
|
|
|
List = Node;
|
|
|
|
if (Listener) Listener->NotifyAdd(Node->getName(),
|
|
|
|
Node->getCtor(),
|
|
|
|
Node->getDescription());
|
|
|
|
}
|
2006-08-01 16:31:08 +00:00
|
|
|
|
|
|
|
|
2006-08-02 12:30:23 +00:00
|
|
|
/// Remove - Removes a function pass from the registration list.
|
2006-08-01 16:31:08 +00:00
|
|
|
///
|
2006-08-02 12:30:23 +00:00
|
|
|
void MachinePassRegistry::Remove(MachinePassRegistryNode *Node) {
|
|
|
|
for (MachinePassRegistryNode **I = &List; *I; I = (*I)->getNextAddress()) {
|
|
|
|
if (*I == Node) {
|
|
|
|
if (Listener) Listener->NotifyRemove(Node->getName());
|
|
|
|
*I = (*I)->getNext();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|