aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/TargetSubtarget.cpp
diff options
context:
space:
mode:
authorNate Begeman <natebegeman@mac.com>2005-07-12 01:41:54 +0000
committerNate Begeman <natebegeman@mac.com>2005-07-12 01:41:54 +0000
commitfb5792f416089d8d8d0c6ee62c1f41a55d2cf75d (patch)
treee2b2a65b1d1e7f426d6f3035bca964ce25c0d79d /lib/Target/TargetSubtarget.cpp
parent73213f6c07afc1479f8d7bf53ea99adf7fd60b78 (diff)
downloadexternal_llvm-fb5792f416089d8d8d0c6ee62c1f41a55d2cf75d.zip
external_llvm-fb5792f416089d8d8d0c6ee62c1f41a55d2cf75d.tar.gz
external_llvm-fb5792f416089d8d8d0c6ee62c1f41a55d2cf75d.tar.bz2
Implement Subtarget support
Implement the X86 Subtarget. This consolidates the checks for target triple, and setting options based on target triple into one place. This allows us to convert the asm printer and isel over from being littered with "forDarwin", "forCygwin", etc. into just having the appropriate flags for each subtarget feature controlling the code for that feature. This patch also implements indirect external and weak references in the X86 pattern isel, for darwin. Next up is to convert over the asm printers to use this new interface. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22389 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/TargetSubtarget.cpp')
-rw-r--r--lib/Target/TargetSubtarget.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/lib/Target/TargetSubtarget.cpp b/lib/Target/TargetSubtarget.cpp
new file mode 100644
index 0000000..ebb1308
--- /dev/null
+++ b/lib/Target/TargetSubtarget.cpp
@@ -0,0 +1,22 @@
+//===-- TargetSubtarget.cpp - General Target Information -------------------==//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file was developed by Nate Begeman and is distributed under the
+// University of Illinois Open Source License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+//
+// This file describes the general parts of a Subtarget.
+//
+//===----------------------------------------------------------------------===//
+
+#include "llvm/Target/TargetSubtarget.h"
+using namespace llvm;
+
+//---------------------------------------------------------------------------
+// TargetSubtarget Class
+//
+TargetSubtarget::TargetSubtarget(const Module &M) {}
+
+TargetSubtarget::~TargetSubtarget() {}