Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame^] | 1 | //===-- MipsTargetMachine.cpp - Define TargetMachine for Mips -------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file was developed by Bruno Cardoso Lopes and is distributed under the |
| 6 | // University of Illinois Open Source License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // Implements the info about Mips target spec. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "Mips.h" |
| 15 | #include "MipsTargetAsmInfo.h" |
| 16 | #include "MipsTargetMachine.h" |
| 17 | #include "llvm/Module.h" |
| 18 | #include "llvm/PassManager.h" |
| 19 | #include "llvm/Target/TargetMachineRegistry.h" |
| 20 | using namespace llvm; |
| 21 | |
| 22 | namespace { |
| 23 | // Register the target. |
| 24 | RegisterTarget<MipsTargetMachine> X("mips", " Mips"); |
| 25 | } |
| 26 | |
| 27 | const TargetAsmInfo *MipsTargetMachine:: |
| 28 | createTargetAsmInfo() const |
| 29 | { |
| 30 | return new MipsTargetAsmInfo(*this); |
| 31 | } |
| 32 | |
| 33 | // DataLayout --> Big-endian, 32-bit pointer/ABI/alignment |
| 34 | // FrameInfo --> StackGrowsDown, 8 bytes aligned, LOA : -4 (Ra : 0) |
| 35 | MipsTargetMachine:: |
| 36 | MipsTargetMachine(const Module &M, const std::string &FS): |
| 37 | Subtarget(*this, M, FS), DataLayout("E-p:32:32:32"), |
| 38 | InstrInfo(*this), FrameInfo(TargetFrameInfo::StackGrowsDown, 8, -4), |
| 39 | TLInfo(*this) {} |
| 40 | |
| 41 | // return 0 and must specify -march to gen MIPS code. |
| 42 | unsigned MipsTargetMachine:: |
| 43 | getModuleMatchQuality(const Module &M) |
| 44 | { |
| 45 | // We strongly match "mips-*". |
| 46 | std::string TT = M.getTargetTriple(); |
| 47 | if (TT.size() >= 5 && std::string(TT.begin(), TT.begin()+5) == "mips-") |
| 48 | return 20; |
| 49 | |
| 50 | return 0; |
| 51 | } |
| 52 | |
| 53 | // Install an instruction selector pass using |
| 54 | // the ISelDag to gen Mips code. |
| 55 | bool MipsTargetMachine:: |
| 56 | addInstSelector(FunctionPassManager &PM, bool Fast) |
| 57 | { |
| 58 | PM.add(createMipsISelDag(*this)); |
| 59 | return false; |
| 60 | } |
| 61 | |
| 62 | // Implemented by targets that want to run passes immediately before |
| 63 | // machine code is emitted. return true if -print-machineinstrs should |
| 64 | // print out the code after the passes. |
| 65 | // TODO: Delay slot must be implemented here. |
| 66 | bool MipsTargetMachine:: |
| 67 | addPreEmitPass(FunctionPassManager &PM, bool Fast) |
| 68 | { |
| 69 | return false; |
| 70 | } |
| 71 | |
| 72 | // Implements the AssemblyEmitter for the target. Must return |
| 73 | // true if AssemblyEmitter is supported |
| 74 | bool MipsTargetMachine:: |
| 75 | addAssemblyEmitter(FunctionPassManager &PM, bool Fast, |
| 76 | std::ostream &Out) |
| 77 | { |
| 78 | // Output assembly language. |
| 79 | PM.add(createMipsCodePrinterPass(Out, *this)); |
| 80 | return false; |
| 81 | } |