2012-02-18 12:03:15 +00:00
|
|
|
//===-- XCoreSubtarget.cpp - XCore Subtarget Information ------------------===//
|
2008-11-07 10:59:00 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2011-07-01 21:01:15 +00:00
|
|
|
// This file implements the XCore specific subclass of TargetSubtargetInfo.
|
2008-11-07 10:59:00 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "XCoreSubtarget.h"
|
|
|
|
#include "XCore.h"
|
2011-08-24 18:08:43 +00:00
|
|
|
#include "llvm/Support/TargetRegistry.h"
|
2011-07-01 20:45:01 +00:00
|
|
|
|
2014-04-22 02:03:14 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2014-04-21 22:55:11 +00:00
|
|
|
#define DEBUG_TYPE "xcore-subtarget"
|
|
|
|
|
2011-07-01 20:45:01 +00:00
|
|
|
#define GET_SUBTARGETINFO_TARGET_DESC
|
2011-07-08 01:53:10 +00:00
|
|
|
#define GET_SUBTARGETINFO_CTOR
|
2011-07-01 22:36:09 +00:00
|
|
|
#include "XCoreGenSubtargetInfo.inc"
|
2011-07-01 20:45:01 +00:00
|
|
|
|
2011-12-20 02:50:00 +00:00
|
|
|
void XCoreSubtarget::anchor() { }
|
|
|
|
|
2015-06-10 12:11:26 +00:00
|
|
|
XCoreSubtarget::XCoreSubtarget(const Triple &TT, const std::string &CPU,
|
2014-07-02 00:10:09 +00:00
|
|
|
const std::string &FS, const TargetMachine &TM)
|
2015-01-26 19:03:15 +00:00
|
|
|
: XCoreGenSubtargetInfo(TT, CPU, FS), InstrInfo(), FrameLowering(*this),
|
2015-07-09 02:10:08 +00:00
|
|
|
TLInfo(TM, *this), TSInfo() {}
|