Nick Lewycky | f7a3c50 | 2010-09-07 18:14:24 +0000 | [diff] [blame] | 1 | //===-- PTXTargetMachine.cpp - Define TargetMachine for PTX ---------------===// |
| 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 PTX target. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "PTX.h" |
Eric Christopher | 50880d0 | 2010-09-18 18:52:28 +0000 | [diff] [blame] | 15 | #include "PTXMCAsmInfo.h" |
Che-Liang Chiou | d77f2a4 | 2010-11-08 02:58:44 +0000 | [diff] [blame] | 16 | #include "PTXMCAsmStreamer.h" |
Nick Lewycky | f7a3c50 | 2010-09-07 18:14:24 +0000 | [diff] [blame] | 17 | #include "PTXTargetMachine.h" |
Eric Christopher | 50880d0 | 2010-09-18 18:52:28 +0000 | [diff] [blame] | 18 | #include "llvm/PassManager.h" |
Nick Lewycky | f7a3c50 | 2010-09-07 18:14:24 +0000 | [diff] [blame] | 19 | #include "llvm/Target/TargetRegistry.h" |
| 20 | |
| 21 | using namespace llvm; |
| 22 | |
Eric Christopher | 50880d0 | 2010-09-18 18:52:28 +0000 | [diff] [blame] | 23 | extern "C" void LLVMInitializePTXTarget() { |
Nick Lewycky | f7a3c50 | 2010-09-07 18:14:24 +0000 | [diff] [blame] | 24 | RegisterTargetMachine<PTXTargetMachine> X(ThePTXTarget); |
Eric Christopher | 50880d0 | 2010-09-18 18:52:28 +0000 | [diff] [blame] | 25 | RegisterAsmInfo<PTXMCAsmInfo> Y(ThePTXTarget); |
Che-Liang Chiou | d77f2a4 | 2010-11-08 02:58:44 +0000 | [diff] [blame] | 26 | TargetRegistry::RegisterAsmStreamer(ThePTXTarget, createPTXAsmStreamer); |
Nick Lewycky | f7a3c50 | 2010-09-07 18:14:24 +0000 | [diff] [blame] | 27 | } |
| 28 | |
Eric Christopher | 50880d0 | 2010-09-18 18:52:28 +0000 | [diff] [blame] | 29 | // DataLayout and FrameInfo are filled with dummy data |
Nick Lewycky | f7a3c50 | 2010-09-07 18:14:24 +0000 | [diff] [blame] | 30 | PTXTargetMachine::PTXTargetMachine(const Target &T, |
| 31 | const std::string &TT, |
Eric Christopher | 50880d0 | 2010-09-18 18:52:28 +0000 | [diff] [blame] | 32 | const std::string &FS) |
| 33 | : LLVMTargetMachine(T, TT), |
| 34 | DataLayout("e-p:32:32-i64:32:32-f64:32:32-v128:32:128-v64:32:64-n32:64"), |
Anton Korobeynikov | 3346491 | 2010-11-15 00:06:54 +0000 | [diff] [blame^] | 35 | FrameInfo(Subtarget), |
Eric Christopher | 50880d0 | 2010-09-18 18:52:28 +0000 | [diff] [blame] | 36 | InstrInfo(*this), |
| 37 | TLInfo(*this), |
| 38 | Subtarget(TT, FS) { |
| 39 | } |
| 40 | |
| 41 | bool PTXTargetMachine::addInstSelector(PassManagerBase &PM, |
| 42 | CodeGenOpt::Level OptLevel) { |
| 43 | PM.add(createPTXISelDag(*this, OptLevel)); |
Che-Liang Chiou | 3278c42 | 2010-11-08 03:00:52 +0000 | [diff] [blame] | 44 | PM.add(createPTXMFInfoExtract(*this, OptLevel)); |
Eric Christopher | 50880d0 | 2010-09-18 18:52:28 +0000 | [diff] [blame] | 45 | return false; |
Nick Lewycky | f7a3c50 | 2010-09-07 18:14:24 +0000 | [diff] [blame] | 46 | } |