1 //===- BlackfinSubtarget.cpp - BLACKFIN Subtarget Information -------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file implements the blackfin specific subclass of TargetSubtargetInfo.
12 //===----------------------------------------------------------------------===//
14 #include "BlackfinSubtarget.h"
16 #include "llvm/Target/TargetRegistry.h"
18 #define GET_SUBTARGETINFO_ENUM
19 #define GET_SUBTARGETINFO_MC_DESC
20 #define GET_SUBTARGETINFO_TARGET_DESC
21 #define GET_SUBTARGETINFO_CTOR
22 #include "BlackfinGenSubtargetInfo.inc"
26 BlackfinSubtarget::BlackfinSubtarget(const std::string
&TT
,
27 const std::string
&CPU
,
28 const std::string
&FS
)
29 : BlackfinGenSubtargetInfo(TT
, CPU
, FS
), sdram(false),
41 std::string CPUName
= CPU
;
44 // Parse features string.
45 ParseSubtargetFeatures(CPUName
, FS
);
48 MCSubtargetInfo
*createBlackfinMCSubtargetInfo(StringRef TT
, StringRef CPU
,
50 MCSubtargetInfo
*X
= new MCSubtargetInfo();
51 InitBlackfinMCSubtargetInfo(X
, CPU
, FS
);
55 extern "C" void LLVMInitializeBlackfinMCSubtargetInfo() {
56 TargetRegistry::RegisterMCSubtargetInfo(TheBlackfinTarget
,
57 createBlackfinMCSubtargetInfo
);