LLVM  3.7.0
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"
19 #include "llvm/MC/MCAsmInfo.h"
21 using namespace llvm;
22 
23 extern "C" void LLVMInitializeMSP430Target() {
24  // Register the target.
26 }
27 
29  StringRef CPU, StringRef FS,
30  const TargetOptions &Options,
33  : LLVMTargetMachine(T, "e-m:e-p:16:16-i32:16:32-a:16-n8:16", TT, CPU, FS,
34  Options, RM, CM, OL),
36  // FIXME: Check DataLayout string.
37  Subtarget(TT, CPU, FS, *this) {
38  initAsmInfo();
39 }
40 
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  bool addInstSelector() override;
55  void addPreEmitPass() override;
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 void MSP430PassConfig::addPreEmitPass() {
70  // Must run branch selection immediately preceding the asm printer.
71  addPass(createMSP430BranchSelectionPass(), false);
72 }
void LLVMInitializeMSP430Target()
MSP430TargetMachine(const Target &T, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Reloc::Model RM, CodeModel::Model CM, CodeGenOpt::Level OL)
FunctionPass * createMSP430ISelDag(MSP430TargetMachine &TM, CodeGenOpt::Level OptLevel)
createMSP430ISelDag - This pass converts a legalized DAG into a MSP430-specific DAG, ready for instruction scheduling.
Target-Independent Code Generator Pass Configuration Options.
FunctionPass * createMSP430BranchSelectionPass()
createMSP430BranchSelectionPass - returns an instance of the Branch Selection Pass ...
std::enable_if<!std::is_array< T >::value, std::unique_ptr< T > >::type make_unique(Args &&...args)
Constructs a new T() with the given args and returns a unique_ptr<T> which owns the object...
Definition: STLExtras.h:354
Target TheMSP430Target
static GCMetadataPrinterRegistry::Add< ErlangGCPrinter > X("erlang","erlang-compatible garbage collector")
This class describes a target machine that is implemented with the LLVM target-independent code gener...
MSP430TargetMachine.
Triple - Helper class for working with autoconf configuration names.
Definition: Triple.h:44
Target - Wrapper for Target specific information.
TargetPassConfig * createPassConfig(PassManagerBase &PM) override
Create a pass configuration object to be used by addPassToEmitX methods for generating a pipeline of ...
RegisterTargetMachine - Helper template for registering a target machine implementation, for use in the target machine initialization function.
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:40