2012-02-18 20:03:15 +08:00
|
|
|
//===-- MSP430Subtarget.cpp - MSP430 Subtarget Information ----------------===//
|
2009-05-03 20:57:15 +08:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2011-07-02 05:01:15 +08:00
|
|
|
// This file implements the MSP430 specific subclass of TargetSubtargetInfo.
|
2009-05-03 20:57:15 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "MSP430Subtarget.h"
|
|
|
|
#include "MSP430.h"
|
2011-08-25 02:08:43 +08:00
|
|
|
#include "llvm/Support/TargetRegistry.h"
|
2011-07-02 04:45:01 +08:00
|
|
|
|
2014-04-22 10:03:14 +08:00
|
|
|
using namespace llvm;
|
|
|
|
|
2014-04-22 06:55:11 +08:00
|
|
|
#define DEBUG_TYPE "msp430-subtarget"
|
|
|
|
|
2011-07-02 04:45:01 +08:00
|
|
|
#define GET_SUBTARGETINFO_TARGET_DESC
|
2011-07-08 09:53:10 +08:00
|
|
|
#define GET_SUBTARGETINFO_CTOR
|
2011-07-02 06:36:09 +08:00
|
|
|
#include "MSP430GenSubtargetInfo.inc"
|
2009-05-03 20:57:15 +08:00
|
|
|
|
2011-12-20 10:50:00 +08:00
|
|
|
void MSP430Subtarget::anchor() { }
|
|
|
|
|
2015-03-04 01:54:39 +08:00
|
|
|
MSP430Subtarget &
|
|
|
|
MSP430Subtarget::initializeSubtargetDependencies(StringRef CPU, StringRef FS) {
|
2014-06-27 09:14:54 +08:00
|
|
|
ParseSubtargetFeatures("generic", FS);
|
|
|
|
return *this;
|
2009-05-03 20:57:15 +08:00
|
|
|
}
|
2014-06-27 09:14:54 +08:00
|
|
|
|
2015-06-10 20:11:26 +08:00
|
|
|
MSP430Subtarget::MSP430Subtarget(const Triple &TT, const std::string &CPU,
|
2014-06-27 09:14:54 +08:00
|
|
|
const std::string &FS, const TargetMachine &TM)
|
Re-commit r247683: Replace Triple with a new TargetTuple in MCTargetDesc/* and related. NFC.
Summary:
This is the first patch in the series to migrate Triple's (which are ambiguous)
to TargetTuple's (which aren't).
For the moment, TargetTuple simply passes all requests to the Triple object it
holds. Once it has replaced Triple, it will start to implement the interface in
a more suitable way.
This change makes some changes to the public C++ API. In particular,
InitMCSubtargetInfo(), createMCRelocationInfo(), and createMCSymbolizer()
now take TargetTuples instead of Triples. The other public C++ API's have
been left as-is for the moment to reduce patch size.
This commit also contains a trivial patch to clang to account for the C++ API
change. Thanks go to Pavel Labath for fixing LLDB for me.
Reviewers: rengolin
Subscribers: jyknight, dschuff, arsenm, rampitec, danalbert, srhines, javed.absar, dsanders, echristo, emaste, jholewinski, tberghammer, ted, jfb, llvm-commits, rengolin
Differential Revision: http://reviews.llvm.org/D10969
llvm-svn: 247692
2015-09-15 22:08:28 +08:00
|
|
|
: MSP430GenSubtargetInfo(TargetTuple(TT), CPU, FS), FrameLowering(),
|
2015-07-09 10:10:08 +08:00
|
|
|
InstrInfo(initializeSubtargetDependencies(CPU, FS)), TLInfo(TM, *this) {}
|