1 //===-- MSP430TargetMachine.cpp - Define TargetMachine for MSP430 ---------===//
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 // Top-level implementation for the MSP430 target.
12 //===----------------------------------------------------------------------===//
15 #include "MSP430MCAsmInfo.h"
16 #include "MSP430TargetMachine.h"
17 #include "llvm/PassManager.h"
18 #include "llvm/CodeGen/Passes.h"
19 #include "llvm/MC/MCAsmInfo.h"
20 #include "llvm/Target/TargetRegistry.h"
23 extern "C" void LLVMInitializeMSP430Target() {
24 // Register the target.
25 RegisterTargetMachine
<MSP430TargetMachine
> X(TheMSP430Target
);
26 RegisterAsmInfo
<MSP430MCAsmInfo
> Z(TheMSP430Target
);
29 MSP430TargetMachine::MSP430TargetMachine(const Target
&T
,
30 const std::string
&TT
,
31 const std::string
&FS
) :
32 LLVMTargetMachine(T
, TT
),
34 // FIXME: Check TargetData string.
35 DataLayout("e-p:16:8:8-i8:8:8-i16:8:8-i32:8:8"),
36 InstrInfo(*this), TLInfo(*this),
37 FrameInfo(TargetFrameInfo::StackGrowsDown
, 2, -2) { }
40 bool MSP430TargetMachine::addInstSelector(PassManagerBase
&PM
,
41 CodeGenOpt::Level OptLevel
) {
42 // Install an instruction selector.
43 PM
.add(createMSP430ISelDag(*this, OptLevel
));