5be9eb1bb3f1bc63e600086fc86e977ad6b1b9a6
[oota-llvm.git] / lib / Target / TargetMachineRegistry.cpp
1 //===-- TargetMachineRegistry.cpp - Target Auto Registration Impl ---------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file exposes the RegisterTarget class, which TargetMachine
11 // implementations should use to register themselves with the system.  This file
12 // also exposes the TargetMachineRegistry class, which allows tools to inspect
13 // all of registered targets.
14 //
15 //===----------------------------------------------------------------------===//
16
17 #include "llvm/Target/TargetMachineRegistry.h"
18 #include <algorithm>
19 using namespace llvm;
20
21 /// List - This is the main list of all of the registered target machines.
22 const TargetMachineRegistry::Entry *TargetMachineRegistry::List = 0;
23
24 /// Listeners - All of the listeners registered to get notified when new targets
25 /// are loaded.
26 static TargetRegistrationListener *Listeners = 0;
27
28 TargetMachineRegistry::Entry::Entry(const char *N, const char *SD,
29                        TargetMachine *(*CF)(const Module &,const std::string &),
30                            unsigned (*MMF)(const Module &M), unsigned (*JMF)())
31   : Name(N), ShortDesc(SD), CtorFn(CF), ModuleMatchQualityFn(MMF),
32     JITMatchQualityFn(JMF), Next(List) {
33   List = this;
34   for (TargetRegistrationListener *L = Listeners; L; L = L->getNext())
35     L->targetRegistered(this);
36 }
37
38 TargetRegistrationListener::TargetRegistrationListener() {
39   Next = Listeners;
40   if (Next) Next->Prev = &Next;
41   Prev = &Listeners;
42   Listeners = this;
43 }
44
45 TargetRegistrationListener::~TargetRegistrationListener() {
46   *Prev = Next;
47 }
48
49 /// getClosestStaticTargetForModule - Given an LLVM module, pick the best target
50 /// that is compatible with the module.  If no close target can be found, this
51 /// returns null and sets the Error string to a reason.
52 const TargetMachineRegistry::Entry *
53 TargetMachineRegistry::getClosestStaticTargetForModule(const Module &M,
54                                                        std::string &Error) {
55   std::vector<std::pair<unsigned, const Entry *> > UsableTargets;
56   for (const Entry *E = getList(); E; E = E->getNext())
57     if (unsigned Qual = E->ModuleMatchQualityFn(M))
58       UsableTargets.push_back(std::make_pair(Qual, E));
59
60   if (UsableTargets.empty()) {
61     Error = "No available targets are compatible with this module";
62     return 0;
63   } else if (UsableTargets.size() == 1)
64     return UsableTargets.back().second;
65
66   // Otherwise, take the best target, but make sure we don't have to equally
67   // good best targets.
68   std::sort(UsableTargets.begin(), UsableTargets.end());
69   if (UsableTargets.back().first ==UsableTargets[UsableTargets.size()-2].first){
70     Error = "Cannot choose between targets \"" +
71       std::string(UsableTargets.back().second->Name) + "\" and \"" +
72       std::string(UsableTargets[UsableTargets.size()-2].second->Name) + "\"";
73     return 0;
74   }
75   return UsableTargets.back().second;
76 }
77
78 /// getClosestTargetForJIT - Pick the best target that is compatible with
79 /// the current host.  If no close target can be found, this returns null
80 /// and sets the Error string to a reason.
81 const TargetMachineRegistry::Entry *
82 TargetMachineRegistry::getClosestTargetForJIT(std::string &Error) {
83   std::vector<std::pair<unsigned, const Entry *> > UsableTargets;
84   for (const Entry *E = getList(); E; E = E->getNext())
85     if (unsigned Qual = E->JITMatchQualityFn())
86       UsableTargets.push_back(std::make_pair(Qual, E));
87
88   if (UsableTargets.empty()) {
89     Error = "No JIT is available for this host";
90     return 0;
91   } else if (UsableTargets.size() == 1)
92     return UsableTargets.back().second;
93
94   // Otherwise, take the best target.  If there is a tie, just pick one.
95   unsigned MaxQual = UsableTargets.front().first;
96   const Entry *MaxQualTarget = UsableTargets.front().second;
97
98   for (unsigned i = 1, e = UsableTargets.size(); i != e; ++i)
99     if (UsableTargets[i].first > MaxQual) {
100       MaxQual = UsableTargets[i].first;
101       MaxQualTarget = UsableTargets[i].second;
102     }
103
104   return MaxQualTarget;
105 }
106