1. Use SubtargetFeatures in llc/lli.
authorJim Laskey <jlaskey@mac.com>
Thu, 1 Sep 2005 21:38:21 +0000 (21:38 +0000)
committerJim Laskey <jlaskey@mac.com>
Thu, 1 Sep 2005 21:38:21 +0000 (21:38 +0000)
2. Propagate feature "string" to all targets.

3. Implement use of SubtargetFeatures in PowerPCTargetSubtarget.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23192 91177308-0d34-0410-b5e6-96231b3b80d8

27 files changed:
Xcode/LLVM.xcodeproj/project.pbxproj
include/llvm/Target/TargetMachineRegistry.h
lib/ExecutionEngine/JIT/TargetSelect.cpp
lib/Target/Alpha/AlphaTargetMachine.cpp
lib/Target/Alpha/AlphaTargetMachine.h
lib/Target/CBackend/CTargetMachine.h
lib/Target/IA64/IA64TargetMachine.cpp
lib/Target/IA64/IA64TargetMachine.h
lib/Target/PowerPC/PPCSubtarget.cpp
lib/Target/PowerPC/PPCSubtarget.h
lib/Target/PowerPC/PPCTargetMachine.cpp
lib/Target/PowerPC/PPCTargetMachine.h
lib/Target/PowerPC/PowerPCTargetMachine.h
lib/Target/Skeleton/SkeletonTargetMachine.cpp
lib/Target/Skeleton/SkeletonTargetMachine.h
lib/Target/Sparc/SparcTargetMachine.cpp
lib/Target/Sparc/SparcTargetMachine.h
lib/Target/SparcV8/SparcV8TargetMachine.cpp
lib/Target/SparcV8/SparcV8TargetMachine.h
lib/Target/SparcV9/SparcV9TargetMachine.cpp
lib/Target/SparcV9/SparcV9TargetMachine.h
lib/Target/TargetMachineRegistry.cpp
lib/Target/X86/X86Subtarget.cpp
lib/Target/X86/X86Subtarget.h
lib/Target/X86/X86TargetMachine.cpp
lib/Target/X86/X86TargetMachine.h
tools/llc/llc.cpp

index ad6eda350076e6a9132f45200a78492024073b74..30394aed70e8d487c05fd695cc43671b79e48285 100644 (file)
@@ -33,6 +33,8 @@
 /* End PBXBuildStyle section */
 
 /* Begin PBXFileReference section */
+               CF9BCD0808C74DE0001E7011 /* SubtargetFeature.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SubtargetFeature.h; sourceTree = "<group>"; };
+               CF9BCD1508C75070001E7011 /* SubtargetFeature.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SubtargetFeature.cpp; sourceTree = "<group>"; };
                DE66EC5B08ABE86900323D32 /* AsmWriter.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = AsmWriter.cpp; path = ../lib/VMCore/AsmWriter.cpp; sourceTree = SOURCE_ROOT; };
                DE66EC5C08ABE86A00323D32 /* BasicBlock.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = BasicBlock.cpp; path = ../lib/VMCore/BasicBlock.cpp; sourceTree = SOURCE_ROOT; };
                DE66EC5D08ABE86A00323D32 /* ConstantFolding.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = ConstantFolding.cpp; path = ../lib/VMCore/ConstantFolding.cpp; sourceTree = SOURCE_ROOT; };
                                DE66EFC908ABEE5F00323D32 /* SparcV9 */,
                                DE66F09308ABEE6000323D32 /* X86 */,
                                DE66EF1008ABEE5E00323D32 /* MRegisterInfo.cpp */,
+                               CF9BCD1508C75070001E7011 /* SubtargetFeature.cpp */,
                                DE66F08A08ABEE6000323D32 /* Target.td */,
                                DE66F08B08ABEE6000323D32 /* TargetData.cpp */,
                                DE66F08C08ABEE6000323D32 /* TargetFrameInfo.cpp */,
                        isa = PBXGroup;
                        children = (
                                DE66F2A008ABF03200323D32 /* MRegisterInfo.h */,
+                               CF9BCD0808C74DE0001E7011 /* SubtargetFeature.h */,
                                DE66F2A108ABF03200323D32 /* TargetData.h */,
                                DE66F2A208ABF03200323D32 /* TargetFrameInfo.h */,
                                DE66F2A308ABF03200323D32 /* TargetInstrInfo.h */,
                                PRODUCT_NAME = LLVM;
                        };
                        buildToolPath = /usr/bin/make;
-                       buildWorkingDirectory = /llvm/obj;
+                       buildWorkingDirectory = /llvm/obj/;
                        dependencies = (
                        );
                        name = LLVM;
index 6de84bc300a2a5ff31d57affa7863ab749931871..77aecd745ae0b9d0bcfec3faa9c57005aba52684 100644 (file)
@@ -49,7 +49,8 @@ namespace llvm {
     struct Entry {
       const char *Name;
       const char *ShortDesc;
-      TargetMachine *(*CtorFn)(const Module &, IntrinsicLowering*);
+      TargetMachine *(*CtorFn)(const Module &, IntrinsicLowering*,
+                      const std::string &);
       unsigned (*ModuleMatchQualityFn)(const Module &M);
       unsigned (*JITMatchQualityFn)();
 
@@ -57,7 +58,8 @@ namespace llvm {
 
     protected:
       Entry(const char *N, const char *SD,
-            TargetMachine *(*CF)(const Module &, IntrinsicLowering*),
+            TargetMachine *(*CF)(const Module &, IntrinsicLowering*,
+                                 const std::string &),
             unsigned (*MMF)(const Module &M), unsigned (*JMF)());
     private:
       const Entry *Next;  // Next entry in the linked list.
@@ -80,8 +82,9 @@ namespace llvm {
                                    &TargetMachineImpl::getJITMatchQuality) {
     }
   private:
-    static TargetMachine *Allocator(const Module &M, IntrinsicLowering *IL) {
-      return new TargetMachineImpl(M, IL);
+    static TargetMachine *Allocator(const Module &M, IntrinsicLowering *IL,
+                                    const std::string &FS) {
+      return new TargetMachineImpl(M, IL, FS);
     }
   };
 
index 851b4b4fb0959a974dec609eeadd07ddc131635c..5b1ee74cc17f604124e5919d1cf95fc1477d960f 100644 (file)
@@ -15,6 +15,7 @@
 #include "JIT.h"
 #include "llvm/Module.h"
 #include "llvm/ModuleProvider.h"
+#include "llvm/Target/SubtargetFeature.h"
 #include "llvm/Target/TargetMachine.h"
 #include "llvm/Target/TargetMachineRegistry.h"
 #include <iostream>
@@ -23,6 +24,18 @@ using namespace llvm;
 static cl::opt<const TargetMachineRegistry::Entry*, false, TargetNameParser>
 MArch("march", cl::desc("Architecture to generate assembly for:"));
 
+static cl::opt<std::string>
+MCPU("mcpu", 
+  cl::desc("Target a specific cpu type"),
+  cl::value_desc("cpu-name"),
+  cl::init(""));
+
+static cl::list<std::string>
+MAttrs("mattr", 
+  cl::CommaSeparated,
+  cl::desc("Target specific attributes:"),
+  cl::value_desc("attributes"));
+
 /// create - Create an return a new JIT compiler if there is one available
 /// for the current target.  Otherwise, return null.
 ///
@@ -37,8 +50,18 @@ ExecutionEngine *JIT::create(ModuleProvider *MP, IntrinsicLowering *IL) {
               << "-march switch.\n";
   }
 
+  // Package up features to be passed to target/subtarget
+  std::string FeaturesStr;
+  if (MCPU.size() || MAttrs.size()) {
+    SubtargetFeatures Features;
+    Features.setCPU(MCPU);
+    for (unsigned i = 0; i != MAttrs.size(); ++i)
+      Features.AddFeature(MAttrs[i]);
+    FeaturesStr = Features.getString();
+  }
+
   // Allocate a target...
-  TargetMachine *Target = MArch->CtorFn(*MP->getModule(), IL);
+  TargetMachine *Target = MArch->CtorFn(*MP->getModule(), IL, FeaturesStr);
   assert(Target && "Could not allocate target machine!");
 
   // If the target supports JIT code generation, return a new JIT now.
index 0854f2ac6e62122b35c8011dfb4c7ce4c4c53836..b20cfd36cd6efce48044cbda48fbffc6974eb23e 100644 (file)
@@ -58,7 +58,8 @@ unsigned AlphaTargetMachine::getJITMatchQuality() {
 #endif
 }
 
-AlphaTargetMachine::AlphaTargetMachine( const Module &M, IntrinsicLowering *IL)
+AlphaTargetMachine::AlphaTargetMachine(const Module &M, IntrinsicLowering *IL,
+                                       const std::string &FS)
   : TargetMachine("alpha", IL, true),
     FrameInfo(TargetFrameInfo::StackGrowsDown, 16, 0),
     JITInfo(*this)
index b7f824e20e85540fd5c2cdf7f6fc72a206d4574d..4de729acd273edae31b5cf7b5e8b06ea28d16c3a 100644 (file)
@@ -31,7 +31,8 @@ class AlphaTargetMachine : public TargetMachine {
   AlphaJITInfo JITInfo;
 
 public:
-  AlphaTargetMachine(const Module &M, IntrinsicLowering *IL);
+  AlphaTargetMachine(const Module &M, IntrinsicLowering *IL,
+                     const std::string &FS);
 
   virtual const AlphaInstrInfo *getInstrInfo() const { return &InstrInfo; }
   virtual const TargetFrameInfo  *getFrameInfo() const { return &FrameInfo; }
index 56c5367231248ca7de7a4fe32186011b15097716..580e02e72686e77be4674cbb044816ad4a713f9d 100644 (file)
@@ -20,7 +20,8 @@ namespace llvm {
 class IntrinsicLowering;
 
 struct CTargetMachine : public TargetMachine {
-  CTargetMachine(const Module &M, IntrinsicLowering *IL) :
+  CTargetMachine(const Module &M, IntrinsicLowering *IL,
+                 const std::string &FS) :
     TargetMachine("CBackend", IL, M) {}
 
   // This is the only thing that actually does anything here.
index 6a7ae6eabd78fb2f0261a425539efea52832bf83..7d80e5770c47594db9cf95d592af6d96fd5bbda4 100644 (file)
@@ -72,7 +72,8 @@ unsigned IA64TargetMachine::getModuleMatchQuality(const Module &M) {
 
 /// IA64TargetMachine ctor - Create an LP64 architecture model
 ///
-IA64TargetMachine::IA64TargetMachine(const Module &M, IntrinsicLowering *IL)
+IA64TargetMachine::IA64TargetMachine(const Module &M, IntrinsicLowering *IL,
+                                     const std::string &FS)
   : TargetMachine("IA64", IL, true),
     FrameInfo(TargetFrameInfo::StackGrowsDown, 16, 0) { // FIXME? check this stuff
 }
index ed80828412f074c4a5c190ef8c8b684710d64312..df6e4dfbaa1e8bc834a58438f6b5be7275bc021f 100644 (file)
@@ -27,7 +27,8 @@ class IA64TargetMachine : public TargetMachine {
   TargetFrameInfo FrameInfo;
   //IA64JITInfo      JITInfo;
 public:
-  IA64TargetMachine(const Module &M, IntrinsicLowering *IL);
+  IA64TargetMachine(const Module &M, IntrinsicLowering *IL,
+                    const std::string &FS);
 
   virtual const IA64InstrInfo     *getInstrInfo() const { return &InstrInfo; }
   virtual const TargetFrameInfo  *getFrameInfo() const { return &FrameInfo; }
index 686c11c6691af138dd81e60fc656d658d4b27ab5..2c1b7839a5fc2a520586627ece6b6d483913cbd1 100644 (file)
@@ -15,6 +15,8 @@
 #include "PowerPC.h"
 #include "llvm/Module.h"
 #include "llvm/Support/CommandLine.h"
+#include "llvm/Target/SubtargetFeature.h"
+
 using namespace llvm;
 PPCTargetEnum llvm::PPCTarget = TargetDefault;
 
@@ -30,42 +32,112 @@ namespace llvm {
                              cl::desc("Enable optimizations for GP cpus"));
 }
 
+enum PowerPCFeature {
+  PowerPCFeature64Bit   = 1 << 0,
+  PowerPCFeatureAltivec = 1 << 1,
+  PowerPCFeatureFSqrt   = 1 << 2,
+  PowerPCFeatureGPUL    = 1 << 3,
+};
+
+/// Sorted (by key) array of values for CPU subtype.
+static const SubtargetFeatureKV PowerPCSubTypeKV[] = {
+  { "601"    , 0 },
+  { "602"    , 0 },
+  { "603"    , 0 },
+  { "603e"   , 0 },
+  { "603ev"  , 0 },
+  { "604"    , 0 },
+  { "604e"   , 0 },
+  { "620"    , 0 },
+  { "7400"   , PowerPCFeatureAltivec },
+  { "7450"   , PowerPCFeatureAltivec },
+  { "750"    , 0 },
+  { "970"    , PowerPCFeature64Bit | PowerPCFeatureAltivec |
+               PowerPCFeatureFSqrt | PowerPCFeatureGPUL },
+  { "g3"     , 0 },
+  { "g4"     , PowerPCFeatureAltivec },
+  { "g4+"    , PowerPCFeatureAltivec },
+  { "g5"     , PowerPCFeature64Bit | PowerPCFeatureAltivec |
+               PowerPCFeatureFSqrt | PowerPCFeatureGPUL },
+  { "generic", 0 }
+};
+/// Length of PowerPCSubTypeKV.
+static const unsigned PowerPCSubTypeKVSize = sizeof(PowerPCSubTypeKV)
+                                             / sizeof(SubtargetFeatureKV);
+
+/// Sorted (by key) array of values for CPU features.
+static SubtargetFeatureKV PowerPCFeatureKV[] = {
+  { "64bit"  , PowerPCFeature64Bit   },
+  { "altivec", PowerPCFeatureAltivec },
+  { "fsqrt"  , PowerPCFeatureFSqrt },
+  { "gpul"   , PowerPCFeatureGPUL    }
+ };
+/// Length of PowerPCFeatureKV.
+static const unsigned PowerPCFeatureKVSize = sizeof(PowerPCFeatureKV)
+                                          / sizeof(SubtargetFeatureKV);
+
+
 #if defined(__APPLE__)
 #include <mach/mach.h>
 #include <mach/mach_host.h>
 #include <mach/host_info.h>
 #include <mach/machine.h>
 
-static boolean_t IsGP() {
+/// GetCurrentPowerPCFeatures - Returns the current CPUs features.
+static const char *GetCurrentPowerPCCPU() {
   host_basic_info_data_t hostInfo;
   mach_msg_type_number_t infoCount;
 
   infoCount = HOST_BASIC_INFO_COUNT;
   host_info(mach_host_self(), HOST_BASIC_INFO, (host_info_t)&hostInfo, 
             &infoCount);
+            
+  if (hostInfo.cpu_type != CPU_TYPE_POWERPC) return "generic";
+
+  switch(hostInfo.cpu_subtype) {
+  case CPU_SUBTYPE_POWERPC_601:   return "601";
+  case CPU_SUBTYPE_POWERPC_602:   return "602";
+  case CPU_SUBTYPE_POWERPC_603:   return "603";
+  case CPU_SUBTYPE_POWERPC_603e:  return "603e";
+  case CPU_SUBTYPE_POWERPC_603ev: return "603ev";
+  case CPU_SUBTYPE_POWERPC_604:   return "604";
+  case CPU_SUBTYPE_POWERPC_604e:  return "604e";
+  case CPU_SUBTYPE_POWERPC_620:   return "620";
+  case CPU_SUBTYPE_POWERPC_750:   return "750";
+  case CPU_SUBTYPE_POWERPC_7400:  return "7400";
+  case CPU_SUBTYPE_POWERPC_7450:  return "7450";
+  case CPU_SUBTYPE_POWERPC_970:   return "970";
+  default: ;
+  }
   
-  return ((hostInfo.cpu_type == CPU_TYPE_POWERPC) &&
-          (hostInfo.cpu_subtype == CPU_SUBTYPE_POWERPC_970));
-} 
+  return "generic";
+}
 #endif
 
-PPCSubtarget::PPCSubtarget(const Module &M)
+PPCSubtarget::PPCSubtarget(const Module &M, const std::string &FS)
   : StackAlignment(16), IsGigaProcessor(false), IsAIX(false), IsDarwin(false) {
 
-    // Set the boolean corresponding to the current target triple, or the default
+  // Determine default and user specified characteristics
+  std::string CPU;
+#if defined(__APPLE__)
+  CPU = GetCurrentPowerPCCPU();
+#endif
+  uint32_t Bits =
+  SubtargetFeatures::Parse(FS, CPU,
+                           PowerPCSubTypeKV, PowerPCSubTypeKVSize,
+                           PowerPCFeatureKV, PowerPCFeatureKVSize);
+  IsGigaProcessor = (Bits & PowerPCFeatureGPUL) != 0;
+
+  // Set the boolean corresponding to the current target triple, or the default
   // if one cannot be determined, to true.
   const std::string& TT = M.getTargetTriple();
   if (TT.length() > 5) {
     IsDarwin = TT.find("darwin") != std::string::npos;
-#if defined(__APPLE__)
-    IsGigaProcessor = IsGP();
-#endif
   } else if (TT.empty()) {
 #if defined(_POWER)
     IsAIX = true;
 #elif defined(__APPLE__)
     IsDarwin = true;
-    IsGigaProcessor = IsGP();
 #endif
   }
   
index 60308f0c634b8fe8f70fa198b2df2d8316899009..aaf07f91299e99e58fe74ab5b05dc8a8c0a0dc4f 100644 (file)
@@ -16,6 +16,8 @@
 
 #include "llvm/Target/TargetSubtarget.h"
 
+#include <string>
+
 namespace llvm {
 class Module;
 
@@ -33,7 +35,7 @@ public:
   /// This constructor initializes the data members to match that
   /// of the specified module.
   ///
-  PPCSubtarget(const Module &M);
+  PPCSubtarget(const Module &M, const std::string &FS);
 
   /// getStackAlignment - Returns the minimum alignment known to hold of the
   /// stack frame on entry to the function and which must be maintained by every
index 936629a5abccfba403a6ddb45e66408f4a080fba..8ff9d8bb0d5b6b19e58497e9b2917e50fcafbfef 100644 (file)
@@ -43,9 +43,10 @@ namespace {
 PowerPCTargetMachine::PowerPCTargetMachine(const std::string &name,
                                            IntrinsicLowering *IL,
                                            const Module &M,
+                                           const std::string &FS,
                                            const TargetData &TD,
                                            const PowerPCFrameInfo &TFI)
-: TargetMachine(name, IL, TD), FrameInfo(TFI), Subtarget(M) {
+: TargetMachine(name, IL, TD), FrameInfo(TFI), Subtarget(M, FS) {
   if (TargetDefault == PPCTarget) {
     if (Subtarget.isAIX()) PPCTarget = TargetAIX;
     if (Subtarget.isDarwin()) PPCTarget = TargetDarwin;
@@ -154,8 +155,9 @@ void PowerPCJITInfo::addPassesToJITCompile(FunctionPassManager &PM) {
 
 /// PowerPCTargetMachine ctor - Create an ILP32 architecture model
 ///
-PPC32TargetMachine::PPC32TargetMachine(const Module &M, IntrinsicLowering *IL)
-  : PowerPCTargetMachine(PPC32ID, IL, M,
+PPC32TargetMachine::PPC32TargetMachine(const Module &M, IntrinsicLowering *IL,
+                                       const std::string &FS)
+  : PowerPCTargetMachine(PPC32ID, IL, M, FS,
                          TargetData(PPC32ID,false,4,4,4,4,4,4,2,1,1),
                          PowerPCFrameInfo(*this, false)), JITInfo(*this) {}
 
index 9b167138bc0fd7496b15137bf3bc00e8dbb9e0fe..902abb0745a5034bb57679d205174646c3513833 100644 (file)
@@ -28,7 +28,8 @@ class PPC32TargetMachine : public PowerPCTargetMachine {
   PPC32JITInfo JITInfo;
 
 public:
-  PPC32TargetMachine(const Module &M, IntrinsicLowering *IL);
+  PPC32TargetMachine(const Module &M, IntrinsicLowering *IL,
+                     const std::string &FS);
   virtual const PPC32InstrInfo   *getInstrInfo() const { return &InstrInfo; }
   virtual const MRegisterInfo *getRegisterInfo() const {
     return &InstrInfo.getRegisterInfo();
index 4a92acf6c018344590bea2c387aae0b043d97e8f..0c12f30ba1f1ae1418b62c28a63371c2feba58f9 100644 (file)
@@ -30,7 +30,8 @@ class PowerPCTargetMachine : public TargetMachine {
   PPCSubtarget      Subtarget;
 protected:
   PowerPCTargetMachine(const std::string &name, IntrinsicLowering *IL,
-                       const Module &M, const TargetData &TD, 
+                       const Module &M, const std::string &FS,
+                       const TargetData &TD, 
                        const PowerPCFrameInfo &TFI);
 public:
   virtual const TargetFrameInfo  *getFrameInfo() const { return &FrameInfo; }
index 8b7a8db30033c24d661d9570c130a456d864a84c..df27b77010fff7cdf9f31a1c74d9140bf4ee3d0a 100644 (file)
@@ -29,7 +29,8 @@ namespace {
 /// SkeletonTargetMachine ctor - Create an ILP32 architecture model
 ///
 SkeletonTargetMachine::SkeletonTargetMachine(const Module &M,
-                                           IntrinsicLowering *IL)
+                                           IntrinsicLowering *IL,
+                                           const std::string &FS)
   : TargetMachine("Skeleton", IL, true, 4, 4, 4, 4, 4),
     FrameInfo(TargetFrameInfo::StackGrowsDown, 8, -4), JITInfo(*this) {
 }
index 0480a6ed8c02d11bb3b59a0168b71eea46af5e92..0607b6f943c94c9e56f311eb0c75bd5c1e825e04 100644 (file)
@@ -28,7 +28,8 @@ namespace llvm {
     TargetFrameInfo FrameInfo;
     SkeletonJITInfo JITInfo;
   public:
-    SkeletonTargetMachine(const Module &M, IntrinsicLowering *IL);
+    SkeletonTargetMachine(const Module &M, IntrinsicLowering *IL,
+                          const std::string &FS);
 
     virtual const SkeletonInstrInfo *getInstrInfo() const { return &InstrInfo; }
     virtual const TargetFrameInfo  *getFrameInfo() const { return &FrameInfo; }
index 75c095c7a50d579963cd595622f1f3215f9630d9..54895fead4d5dcdb0feab48d540ed00a408b5035 100644 (file)
@@ -31,7 +31,8 @@ namespace {
 /// SparcV8TargetMachine ctor - Create an ILP32 architecture model
 ///
 SparcV8TargetMachine::SparcV8TargetMachine(const Module &M,
-                                           IntrinsicLowering *IL)
+                                           IntrinsicLowering *IL,
+                                           const std::string &FS)
   : TargetMachine("SparcV8", IL, false, 4, 4),
     FrameInfo(TargetFrameInfo::StackGrowsDown, 8, 0), JITInfo(*this) {
 }
index 47218e7488aee5599d9b83deaf3a012a389ffdf2..3ec07a3ffbcc0ea38ceb34e3e2cd218db91dbbf6 100644 (file)
@@ -30,7 +30,8 @@ class SparcV8TargetMachine : public TargetMachine {
   TargetFrameInfo FrameInfo;
   SparcV8JITInfo JITInfo;
 public:
-  SparcV8TargetMachine(const Module &M, IntrinsicLowering *IL);
+  SparcV8TargetMachine(const Module &M, IntrinsicLowering *IL,
+                       const std::string &FS);
 
   virtual const SparcV8InstrInfo *getInstrInfo() const { return &InstrInfo; }
   virtual const TargetFrameInfo  *getFrameInfo() const { return &FrameInfo; }
index 75c095c7a50d579963cd595622f1f3215f9630d9..54895fead4d5dcdb0feab48d540ed00a408b5035 100644 (file)
@@ -31,7 +31,8 @@ namespace {
 /// SparcV8TargetMachine ctor - Create an ILP32 architecture model
 ///
 SparcV8TargetMachine::SparcV8TargetMachine(const Module &M,
-                                           IntrinsicLowering *IL)
+                                           IntrinsicLowering *IL,
+                                           const std::string &FS)
   : TargetMachine("SparcV8", IL, false, 4, 4),
     FrameInfo(TargetFrameInfo::StackGrowsDown, 8, 0), JITInfo(*this) {
 }
index 47218e7488aee5599d9b83deaf3a012a389ffdf2..3ec07a3ffbcc0ea38ceb34e3e2cd218db91dbbf6 100644 (file)
@@ -30,7 +30,8 @@ class SparcV8TargetMachine : public TargetMachine {
   TargetFrameInfo FrameInfo;
   SparcV8JITInfo JITInfo;
 public:
-  SparcV8TargetMachine(const Module &M, IntrinsicLowering *IL);
+  SparcV8TargetMachine(const Module &M, IntrinsicLowering *IL,
+                       const std::string &FS);
 
   virtual const SparcV8InstrInfo *getInstrInfo() const { return &InstrInfo; }
   virtual const TargetFrameInfo  *getFrameInfo() const { return &FrameInfo; }
index fb12f186f504ef1f5aed93f4b22dac3241bda932..9e86a7560abcbe88439773da6a0a3d7ac6b2c27f 100644 (file)
@@ -148,7 +148,8 @@ FunctionPass *llvm::createSparcV9MachineCodeDestructionPass() {
 
 
 SparcV9TargetMachine::SparcV9TargetMachine(const Module &M,
-                                           IntrinsicLowering *il)
+                                           IntrinsicLowering *il,
+                                           const std::string &FS)
   : TargetMachine("UltraSparcV9-Native", il, false),
     schedInfo(*this),
     regInfo(*this),
index cde71992865ec9b6f1823f953b7cfd3c70ee54e9..9f40339256a820f0a17ab67ae57d258f397f1a37 100644 (file)
@@ -32,7 +32,8 @@ class SparcV9TargetMachine : public TargetMachine {
   SparcV9FrameInfo frameInfo;
   SparcV9JITInfo   jitInfo;
 public:
-  SparcV9TargetMachine(const Module &M, IntrinsicLowering *IL);
+  SparcV9TargetMachine(const Module &M, IntrinsicLowering *IL,
+                       const std::string &FS);
 
   virtual const TargetInstrInfo  *getInstrInfo() const { return &instrInfo; }
   virtual const TargetSchedInfo  *getSchedInfo() const { return &schedInfo; }
index f753a8c78477edb70e8f830b1065aeae4441f4aa..f5bd035d03354a334d04c1255528a02695315b21 100644 (file)
@@ -26,7 +26,8 @@ const TargetMachineRegistry::Entry *TargetMachineRegistry::List = 0;
 static TargetRegistrationListener *Listeners = 0;
 
 TargetMachineRegistry::Entry::Entry(const char *N, const char *SD,
-                       TargetMachine *(*CF)(const Module &, IntrinsicLowering*),
+                       TargetMachine *(*CF)(const Module &, IntrinsicLowering*,
+                                            const std::string &),
                            unsigned (*MMF)(const Module &M), unsigned (*JMF)())
   : Name(N), ShortDesc(SD), CtorFn(CF), ModuleMatchQualityFn(MMF),
     JITMatchQualityFn(JMF), Next(List) {
index ed8b8712a7ef6f5ebb418fad3d7f53b5e74996e5..7a4a178a5bd245871a4ea43abdc7f73106c2d861 100644 (file)
@@ -15,7 +15,7 @@
 #include "llvm/Module.h"
 using namespace llvm;
 
-X86Subtarget::X86Subtarget(const Module &M)
+X86Subtarget::X86Subtarget(const Module &M, const std::string &FS)
   : TargetSubtarget(), stackAlignment(8),
     indirectExternAndWeakGlobals(false), asmDarwinLinkerStubs(false),
     asmLeadingUnderscore(false), asmAlignmentIsInBytes(false),
index bf764d3a422fd6a3c098ad2c9b14cedc65d9a5ad..adbc7cba2f0e4de39c2c91a0f5704dff6746d83f 100644 (file)
@@ -16,6 +16,8 @@
 
 #include "llvm/Target/TargetSubtarget.h"
 
+#include <string>
+
 namespace llvm {
 class Module;
 
@@ -39,7 +41,7 @@ public:
   /// This constructor initializes the data members to match that
   /// of the specified module.
   ///
-  X86Subtarget(const Module &M);
+  X86Subtarget(const Module &M, const std::string &FS);
 
   /// getStackAlignment - Returns the minimum alignment known to hold of the
   /// stack frame on entry to the function and which must be maintained by every
index e5a4fc8ffc88e5041a4d5d67b76445eacb1c7adc..29ff15f767b32756ba9aa411462b5eca20fd1271 100644 (file)
@@ -90,9 +90,11 @@ unsigned X86TargetMachine::getModuleMatchQuality(const Module &M) {
 
 /// X86TargetMachine ctor - Create an ILP32 architecture model
 ///
-X86TargetMachine::X86TargetMachine(const Module &M, IntrinsicLowering *IL)
+X86TargetMachine::X86TargetMachine(const Module &M,
+                                  IntrinsicLowering *IL,
+                                  const std::string &FS)
   : TargetMachine("X86", IL, true, 4, 4, 4, 4, 4),
-    Subtarget(M),
+    Subtarget(M, FS),
     FrameInfo(TargetFrameInfo::StackGrowsDown,
               Subtarget.getStackAlignment(), -4),
     JITInfo(*this) {
index 955f85560285ef71718d640fe231240c59837126..333d6554cbe268bed4bc279c65d79baf51d2f3ed 100644 (file)
@@ -30,7 +30,8 @@ class X86TargetMachine : public TargetMachine {
   TargetFrameInfo FrameInfo;
   X86JITInfo      JITInfo;
 public:
-  X86TargetMachine(const Module &M, IntrinsicLowering *IL);
+  X86TargetMachine(const Module &M, IntrinsicLowering *IL,
+                   const std::string &FS);
 
   virtual const X86InstrInfo     *getInstrInfo() const { return &InstrInfo; }
   virtual const TargetFrameInfo  *getFrameInfo() const { return &FrameInfo; }
index 8331ecfed197065cad6a68fff80657e21b796319..fbd2cf85fdc082194bced7d58e1cd860d42ffa8f 100644 (file)
@@ -14,6 +14,7 @@
 //===----------------------------------------------------------------------===//
 
 #include "llvm/Bytecode/Reader.h"
+#include "llvm/Target/SubtargetFeature.h"
 #include "llvm/Target/TargetMachine.h"
 #include "llvm/Target/TargetMachineRegistry.h"
 #include "llvm/Transforms/Scalar.h"
@@ -47,6 +48,18 @@ static cl::opt<bool> Force("f", cl::desc("Overwrite output files"));
 static cl::opt<const TargetMachineRegistry::Entry*, false, TargetNameParser>
 MArch("march", cl::desc("Architecture to generate code for:"));
 
+static cl::opt<std::string>
+MCPU("mcpu", 
+  cl::desc("Target a specific cpu type"),
+  cl::value_desc("cpu-name"),
+  cl::init(""));
+
+static cl::list<std::string>
+MAttrs("mattr", 
+  cl::CommaSeparated,
+  cl::desc("Target specific attributes:"),
+  cl::value_desc("attributes"));
+
 cl::opt<TargetMachine::CodeGenFileType>
 FileType("filetype", cl::init(TargetMachine::AssemblyFile),
   cl::desc("Choose a file type (not all types are supported by all targets):"),
@@ -114,7 +127,17 @@ int main(int argc, char **argv) {
       }
     }
 
-    std::auto_ptr<TargetMachine> target(MArch->CtorFn(mod, 0));
+    // Package up features to be passed to target/subtarget
+    std::string FeaturesStr;
+    if (MCPU.size() || MAttrs.size()) {
+      SubtargetFeatures Features;
+      Features.setCPU(MCPU);
+      for (unsigned i = 0; i != MAttrs.size(); ++i)
+        Features.AddFeature(MAttrs[i]);
+      FeaturesStr = Features.getString();
+    }
+
+    std::auto_ptr<TargetMachine> target(MArch->CtorFn(mod, 0, FeaturesStr));
     assert(target.get() && "Could not allocate target machine!");
     TargetMachine &Target = *target.get();
     const TargetData &TD = Target.getTargetData();