Daniel Dunbar | 078a71e | 2009-07-15 04:24:58 +0000 | [diff] [blame] | 1 | //===--- TargetRegistry.cpp - Target registration -------------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
Evan Cheng | 2bb4035 | 2011-08-24 18:08:43 +0000 | [diff] [blame] | 10 | #include "llvm/Support/TargetRegistry.h" |
Chandler Carruth | 2baac02 | 2011-07-22 07:50:44 +0000 | [diff] [blame] | 11 | #include "llvm/ADT/STLExtras.h" |
| 12 | #include "llvm/ADT/StringRef.h" |
Chandler Carruth | 2baac02 | 2011-07-22 07:50:44 +0000 | [diff] [blame] | 13 | #include "llvm/Support/raw_ostream.h" |
Daniel Dunbar | 078a71e | 2009-07-15 04:24:58 +0000 | [diff] [blame] | 14 | #include <cassert> |
Chandler Carruth | 2baac02 | 2011-07-22 07:50:44 +0000 | [diff] [blame] | 15 | #include <vector> |
Daniel Dunbar | 078a71e | 2009-07-15 04:24:58 +0000 | [diff] [blame] | 16 | using namespace llvm; |
| 17 | |
Daniel Dunbar | 1c66332 | 2009-07-15 07:09:29 +0000 | [diff] [blame] | 18 | // Clients are responsible for avoid race conditions in registration. |
Craig Topper | c10719f | 2014-04-07 04:17:22 +0000 | [diff] [blame] | 19 | static Target *FirstTarget = nullptr; |
Daniel Dunbar | 078a71e | 2009-07-15 04:24:58 +0000 | [diff] [blame] | 20 | |
Daniel Dunbar | 78c8fb1 | 2009-07-16 02:06:09 +0000 | [diff] [blame] | 21 | TargetRegistry::iterator TargetRegistry::begin() { |
| 22 | return iterator(FirstTarget); |
| 23 | } |
| 24 | |
Kevin Enderby | fe3d005 | 2012-05-08 23:38:45 +0000 | [diff] [blame] | 25 | const Target *TargetRegistry::lookupTarget(const std::string &ArchName, |
| 26 | Triple &TheTriple, |
| 27 | std::string &Error) { |
| 28 | // Allocate target machine. First, check whether the user has explicitly |
| 29 | // specified an architecture to compile for. If so we have to look it up by |
| 30 | // name, because it might be a backend that has no mapping to a target triple. |
Craig Topper | c10719f | 2014-04-07 04:17:22 +0000 | [diff] [blame] | 31 | const Target *TheTarget = nullptr; |
Kevin Enderby | fe3d005 | 2012-05-08 23:38:45 +0000 | [diff] [blame] | 32 | if (!ArchName.empty()) { |
| 33 | for (TargetRegistry::iterator it = TargetRegistry::begin(), |
| 34 | ie = TargetRegistry::end(); it != ie; ++it) { |
| 35 | if (ArchName == it->getName()) { |
| 36 | TheTarget = &*it; |
| 37 | break; |
| 38 | } |
| 39 | } |
| 40 | |
| 41 | if (!TheTarget) { |
| 42 | Error = "error: invalid target '" + ArchName + "'.\n"; |
Craig Topper | c10719f | 2014-04-07 04:17:22 +0000 | [diff] [blame] | 43 | return nullptr; |
Kevin Enderby | fe3d005 | 2012-05-08 23:38:45 +0000 | [diff] [blame] | 44 | } |
| 45 | |
| 46 | // Adjust the triple to match (if known), otherwise stick with the |
| 47 | // given triple. |
| 48 | Triple::ArchType Type = Triple::getArchTypeForLLVMName(ArchName); |
| 49 | if (Type != Triple::UnknownArch) |
| 50 | TheTriple.setArch(Type); |
| 51 | } else { |
| 52 | // Get the target specific parser. |
| 53 | std::string TempError; |
| 54 | TheTarget = TargetRegistry::lookupTarget(TheTriple.getTriple(), TempError); |
Craig Topper | 8d399f8 | 2014-04-09 04:20:00 +0000 | [diff] [blame] | 55 | if (!TheTarget) { |
Kevin Enderby | fe3d005 | 2012-05-08 23:38:45 +0000 | [diff] [blame] | 56 | Error = ": error: unable to get target for '" |
| 57 | + TheTriple.getTriple() |
| 58 | + "', see --version and --triple.\n"; |
Craig Topper | c10719f | 2014-04-07 04:17:22 +0000 | [diff] [blame] | 59 | return nullptr; |
Kevin Enderby | fe3d005 | 2012-05-08 23:38:45 +0000 | [diff] [blame] | 60 | } |
| 61 | } |
| 62 | |
| 63 | return TheTarget; |
| 64 | } |
| 65 | |
Daniel Dunbar | 47d6791 | 2009-07-26 02:12:58 +0000 | [diff] [blame] | 66 | const Target *TargetRegistry::lookupTarget(const std::string &TT, |
Daniel Dunbar | 47d6791 | 2009-07-26 02:12:58 +0000 | [diff] [blame] | 67 | std::string &Error) { |
Daniel Dunbar | 50745bf | 2009-07-17 15:50:49 +0000 | [diff] [blame] | 68 | // Provide special warning when no targets are initialized. |
| 69 | if (begin() == end()) { |
| 70 | Error = "Unable to find target for this triple (no targets are registered)"; |
Craig Topper | c10719f | 2014-04-07 04:17:22 +0000 | [diff] [blame] | 71 | return nullptr; |
Daniel Dunbar | 50745bf | 2009-07-17 15:50:49 +0000 | [diff] [blame] | 72 | } |
Craig Topper | c10719f | 2014-04-07 04:17:22 +0000 | [diff] [blame] | 73 | const Target *Matching = nullptr; |
Rafael Espindola | dfc1470 | 2013-12-13 16:05:32 +0000 | [diff] [blame] | 74 | Triple::ArchType Arch = Triple(TT).getArch(); |
Daniel Dunbar | 78c8fb1 | 2009-07-16 02:06:09 +0000 | [diff] [blame] | 75 | for (iterator it = begin(), ie = end(); it != ie; ++it) { |
Rafael Espindola | dfc1470 | 2013-12-13 16:05:32 +0000 | [diff] [blame] | 76 | if (it->ArchMatchFn(Arch)) { |
| 77 | if (Matching) { |
| 78 | Error = std::string("Cannot choose between targets \"") + |
| 79 | Matching->Name + "\" and \"" + it->Name + "\""; |
Craig Topper | c10719f | 2014-04-07 04:17:22 +0000 | [diff] [blame] | 80 | return nullptr; |
Rafael Espindola | dfc1470 | 2013-12-13 16:05:32 +0000 | [diff] [blame] | 81 | } |
| 82 | Matching = &*it; |
Daniel Dunbar | 078a71e | 2009-07-15 04:24:58 +0000 | [diff] [blame] | 83 | } |
| 84 | } |
| 85 | |
Rafael Espindola | dfc1470 | 2013-12-13 16:05:32 +0000 | [diff] [blame] | 86 | if (!Matching) { |
Daniel Dunbar | 6119d87 | 2009-09-08 23:32:35 +0000 | [diff] [blame] | 87 | Error = "No available targets are compatible with this triple, " |
| 88 | "see -version for the available targets."; |
Craig Topper | c10719f | 2014-04-07 04:17:22 +0000 | [diff] [blame] | 89 | return nullptr; |
Daniel Dunbar | 078a71e | 2009-07-15 04:24:58 +0000 | [diff] [blame] | 90 | } |
| 91 | |
Rafael Espindola | dfc1470 | 2013-12-13 16:05:32 +0000 | [diff] [blame] | 92 | return Matching; |
Daniel Dunbar | 078a71e | 2009-07-15 04:24:58 +0000 | [diff] [blame] | 93 | } |
| 94 | |
Daniel Dunbar | 078a71e | 2009-07-15 04:24:58 +0000 | [diff] [blame] | 95 | void TargetRegistry::RegisterTarget(Target &T, |
| 96 | const char *Name, |
| 97 | const char *ShortDesc, |
Rafael Espindola | dfc1470 | 2013-12-13 16:05:32 +0000 | [diff] [blame] | 98 | Target::ArchMatchFnTy ArchMatchFn, |
Daniel Dunbar | 691a478 | 2009-07-25 10:09:50 +0000 | [diff] [blame] | 99 | bool HasJIT) { |
Rafael Espindola | dfc1470 | 2013-12-13 16:05:32 +0000 | [diff] [blame] | 100 | assert(Name && ShortDesc && ArchMatchFn && |
Daniel Dunbar | 078a71e | 2009-07-15 04:24:58 +0000 | [diff] [blame] | 101 | "Missing required target information!"); |
Daniel Dunbar | e833810 | 2009-07-15 20:24:03 +0000 | [diff] [blame] | 102 | |
| 103 | // Check if this target has already been initialized, we allow this as a |
| 104 | // convenience to some clients. |
| 105 | if (T.Name) |
| 106 | return; |
Daniel Dunbar | 078a71e | 2009-07-15 04:24:58 +0000 | [diff] [blame] | 107 | |
| 108 | // Add to the list of targets. |
| 109 | T.Next = FirstTarget; |
Daniel Dunbar | 54995de | 2009-07-15 07:37:49 +0000 | [diff] [blame] | 110 | FirstTarget = &T; |
Daniel Dunbar | 078a71e | 2009-07-15 04:24:58 +0000 | [diff] [blame] | 111 | |
| 112 | T.Name = Name; |
| 113 | T.ShortDesc = ShortDesc; |
Rafael Espindola | dfc1470 | 2013-12-13 16:05:32 +0000 | [diff] [blame] | 114 | T.ArchMatchFn = ArchMatchFn; |
Daniel Dunbar | 691a478 | 2009-07-25 10:09:50 +0000 | [diff] [blame] | 115 | T.HasJIT = HasJIT; |
Daniel Dunbar | 078a71e | 2009-07-15 04:24:58 +0000 | [diff] [blame] | 116 | } |
| 117 | |
Benjamin Kramer | adf1ea8 | 2014-03-07 21:52:38 +0000 | [diff] [blame] | 118 | static int TargetArraySortFn(const std::pair<StringRef, const Target *> *LHS, |
| 119 | const std::pair<StringRef, const Target *> *RHS) { |
| 120 | return LHS->first.compare(RHS->first); |
| 121 | } |
| 122 | |
Chandler Carruth | 2baac02 | 2011-07-22 07:50:44 +0000 | [diff] [blame] | 123 | void TargetRegistry::printRegisteredTargetsForVersion() { |
| 124 | std::vector<std::pair<StringRef, const Target*> > Targets; |
| 125 | size_t Width = 0; |
| 126 | for (TargetRegistry::iterator I = TargetRegistry::begin(), |
| 127 | E = TargetRegistry::end(); |
| 128 | I != E; ++I) { |
| 129 | Targets.push_back(std::make_pair(I->getName(), &*I)); |
| 130 | Width = std::max(Width, Targets.back().first.size()); |
| 131 | } |
Benjamin Kramer | adf1ea8 | 2014-03-07 21:52:38 +0000 | [diff] [blame] | 132 | array_pod_sort(Targets.begin(), Targets.end(), TargetArraySortFn); |
Chandler Carruth | 2baac02 | 2011-07-22 07:50:44 +0000 | [diff] [blame] | 133 | |
| 134 | raw_ostream &OS = outs(); |
| 135 | OS << " Registered Targets:\n"; |
| 136 | for (unsigned i = 0, e = Targets.size(); i != e; ++i) { |
| 137 | OS << " " << Targets[i].first; |
| 138 | OS.indent(Width - Targets[i].first.size()) << " - " |
| 139 | << Targets[i].second->getShortDescription() << '\n'; |
| 140 | } |
| 141 | if (Targets.empty()) |
| 142 | OS << " (none)\n"; |
| 143 | } |