[llvm-commits] CVS: llvm/lib/Target/TargetSubtarget.cpp

Nate Begeman natebegeman at mac.com
Mon Jul 11 18:42:06 PDT 2005



Changes in directory llvm/lib/Target:

TargetSubtarget.cpp added (r1.1)
---
Log message:

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.


---
Diffs of the changes:  (+22 -0)

 TargetSubtarget.cpp |   22 ++++++++++++++++++++++
 1 files changed, 22 insertions(+)


Index: llvm/lib/Target/TargetSubtarget.cpp
diff -c /dev/null llvm/lib/Target/TargetSubtarget.cpp:1.1
*** /dev/null	Mon Jul 11 20:42:04 2005
--- llvm/lib/Target/TargetSubtarget.cpp	Mon Jul 11 20:41:54 2005
***************
*** 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() {}






More information about the llvm-commits mailing list