LLVM API Documentation

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
MSP430TargetMachine.cpp
Go to the documentation of this file.
1 //===-- MSP430TargetMachine.cpp - Define TargetMachine for MSP430 ---------===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // Top-level implementation for the MSP430 target.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #include "MSP430TargetMachine.h"
15 #include "MSP430.h"
16 #include "llvm/CodeGen/Passes.h"
17 #include "llvm/MC/MCAsmInfo.h"
18 #include "llvm/PassManager.h"
20 using namespace llvm;
21 
22 extern "C" void LLVMInitializeMSP430Target() {
23  // Register the target.
25 }
26 
28  StringRef TT,
29  StringRef CPU,
30  StringRef FS,
31  const TargetOptions &Options,
34  : LLVMTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL),
35  Subtarget(TT, CPU, FS),
36  // FIXME: Check DataLayout string.
37  DL("e-p:16:16:16-i8:8:8-i16:16:16-i32:16:32-n8:16"),
38  InstrInfo(*this), TLInfo(*this), TSInfo(*this),
39  FrameLowering(Subtarget) {
40  initAsmInfo();
41 }
42 
43 namespace {
44 /// MSP430 Code Generator Pass Configuration Options.
45 class MSP430PassConfig : public TargetPassConfig {
46 public:
47  MSP430PassConfig(MSP430TargetMachine *TM, PassManagerBase &PM)
48  : TargetPassConfig(TM, PM) {}
49 
50  MSP430TargetMachine &getMSP430TargetMachine() const {
51  return getTM<MSP430TargetMachine>();
52  }
53 
54  virtual bool addInstSelector();
55  virtual bool addPreEmitPass();
56 };
57 } // namespace
58 
60  return new MSP430PassConfig(this, PM);
61 }
62 
63 bool MSP430PassConfig::addInstSelector() {
64  // Install an instruction selector.
65  addPass(createMSP430ISelDag(getMSP430TargetMachine(), getOptLevel()));
66  return false;
67 }
68 
69 bool MSP430PassConfig::addPreEmitPass() {
70  // Must run branch selection immediately preceding the asm printer.
72  return false;
73 }
MSP430TargetMachine(const Target &T, StringRef TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Reloc::Model RM, CodeModel::Model CM, CodeGenOpt::Level OL)
void LLVMInitializeMSP430Target()
FunctionPass * createMSP430ISelDag(MSP430TargetMachine &TM, CodeGenOpt::Level OptLevel)
FunctionPass * createMSP430BranchSelectionPass()
Target TheMSP430Target
virtual TargetPassConfig * createPassConfig(PassManagerBase &PM)
static RegisterPass< NVPTXAllocaHoisting > X("alloca-hoisting","Hoisting alloca instructions in non-entry ""blocks to the entry block")