Implement PR1240
[oota-llvm.git] / lib / ExecutionEngine / JIT / TargetSelect.cpp
1 //===-- TargetSelect.cpp - Target Chooser Code ----------------------------===//
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 just asks the TargetMachineRegistry for the appropriate JIT to use, and
11 // allows the user to specify a specific one on the commandline with -march=x.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #include "JIT.h"
16 #include "llvm/Module.h"
17 #include "llvm/ModuleProvider.h"
18 #include "llvm/Target/SubtargetFeature.h"
19 #include "llvm/Target/TargetMachine.h"
20 #include "llvm/Target/TargetMachineRegistry.h"
21 using namespace llvm;
22
23 static cl::opt<const TargetMachineRegistry::Entry*, false, TargetNameParser>
24 MArch("march", cl::desc("Architecture to generate assembly for:"));
25
26 static cl::opt<std::string>
27 MCPU("mcpu", 
28   cl::desc("Target a specific cpu type (-mcpu=help for details)"),
29   cl::value_desc("cpu-name"),
30   cl::init(""));
31
32 static cl::list<std::string>
33 MAttrs("mattr", 
34   cl::CommaSeparated,
35   cl::desc("Target specific attributes (-mattr=help for details)"),
36   cl::value_desc("a1,+a2,-a3,..."));
37
38 /// create - Create an return a new JIT compiler if there is one available
39 /// for the current target.  Otherwise, return null.
40 ///
41 ExecutionEngine *JIT::create(ModuleProvider *MP, std::string *ErrorStr) {
42   if (MArch == 0) {
43     std::string Error;
44     MArch = TargetMachineRegistry::getClosestTargetForJIT(Error);
45     if (MArch == 0) {
46       if (ErrorStr)
47         *ErrorStr = Error;
48       return 0;
49     }
50   } else if (MArch->JITMatchQualityFn() == 0) {
51     cerr << "WARNING: This target JIT is not designed for the host you are"
52          << " running.  If bad things happen, please choose a different "
53          << "-march switch.\n";
54   }
55
56   // Package up features to be passed to target/subtarget
57   std::string FeaturesStr;
58   if (MCPU.size() || MAttrs.size()) {
59     SubtargetFeatures Features;
60     Features.setCPU(MCPU);
61     for (unsigned i = 0; i != MAttrs.size(); ++i)
62       Features.AddFeature(MAttrs[i]);
63     FeaturesStr = Features.getString();
64   }
65
66   // Allocate a target...
67   TargetMachine *Target = MArch->CtorFn(*MP->getModule(), FeaturesStr);
68   assert(Target && "Could not allocate target machine!");
69
70   // If the target supports JIT code generation, return a new JIT now.
71   if (TargetJITInfo *TJ = Target->getJITInfo())
72     return new JIT(MP, *Target, *TJ);
73
74   if (ErrorStr)
75     *ErrorStr = "target does not support JIT code generation";
76   return 0;
77 }