8
8
// ===----------------------------------------------------------------------===//
9
9
10
10
#include " llvm/Target/TargetRegistry.h"
11
+ #include " llvm/System/Host.h"
11
12
#include < cassert>
12
13
using namespace llvm ;
13
14
@@ -77,9 +78,18 @@ TargetRegistry::getClosestStaticTargetForModule(const Module &M,
77
78
}
78
79
}
79
80
81
+ // FIXME: This is a hack to ignore super weak matches like msil, etc. and look
82
+ // by host instead. They will be found again via the triple.
83
+ if (Best && BestQuality == 1 )
84
+ Best = EquallyBest = 0 ;
85
+
86
+ // If that failed, try looking up the host triple.
87
+ if (!Best)
88
+ Best = getClosestStaticTargetForTriple (sys::getHostTriple (), Error);
89
+
80
90
if (!Best) {
81
91
Error = " No available targets are compatible with this module" ;
82
- return 0 ;
92
+ return Best ;
83
93
}
84
94
85
95
// Otherwise, take the best target, but make sure we don't have two equally
@@ -95,6 +105,8 @@ TargetRegistry::getClosestStaticTargetForModule(const Module &M,
95
105
96
106
const Target *
97
107
TargetRegistry::getClosestTargetForJIT (std::string &Error) {
108
+ std::string Triple = sys::getHostTriple ();
109
+
98
110
// Provide special warning when no targets are initialized.
99
111
if (begin () == end ()) {
100
112
Error = " No JIT is available for this host (no targets are registered)" ;
@@ -104,7 +116,10 @@ TargetRegistry::getClosestTargetForJIT(std::string &Error) {
104
116
const Target *Best = 0 , *EquallyBest = 0 ;
105
117
unsigned BestQuality = 0 ;
106
118
for (iterator it = begin (), ie = end (); it != ie; ++it) {
107
- if (unsigned Qual = it->JITMatchQualityFn ()) {
119
+ if (!it->hasJIT ())
120
+ continue ;
121
+
122
+ if (unsigned Qual = it->TripleMatchQualityFn (Triple)) {
108
123
if (!Best || Qual > BestQuality) {
109
124
Best = &*it;
110
125
EquallyBest = 0 ;
@@ -128,8 +143,8 @@ void TargetRegistry::RegisterTarget(Target &T,
128
143
const char *ShortDesc,
129
144
Target::TripleMatchQualityFnTy TQualityFn,
130
145
Target::ModuleMatchQualityFnTy MQualityFn,
131
- Target::JITMatchQualityFnTy JITQualityFn ) {
132
- assert (Name && ShortDesc && TQualityFn && MQualityFn && JITQualityFn &&
146
+ bool HasJIT ) {
147
+ assert (Name && ShortDesc && TQualityFn && MQualityFn &&
133
148
" Missing required target information!" );
134
149
135
150
// Check if this target has already been initialized, we allow this as a
@@ -145,6 +160,6 @@ void TargetRegistry::RegisterTarget(Target &T,
145
160
T.ShortDesc = ShortDesc;
146
161
T.TripleMatchQualityFn = TQualityFn;
147
162
T.ModuleMatchQualityFn = MQualityFn;
148
- T.JITMatchQualityFn = JITQualityFn ;
163
+ T.HasJIT = HasJIT ;
149
164
}
150
165
0 commit comments