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 |
Bruno Cardoso Lopes | 51195af | 2007-08-28 05:13:42 +0000 | [diff] [blame] | 34 | // The stack is always 8 byte aligned |
| 35 | // On function prologue, the stack is created by decrementing |
| 36 | // its pointer. Once decremented, all references are done with positive |
| 37 | // offset from the stack/frame pointer, so StackGrowsUp is used. |
Bruno Cardoso Lopes | c7db561 | 2007-11-05 03:02:32 +0000 | [diff] [blame^] | 38 | // When using CodeModel::Large the behaviour |
| 39 | // |
| 40 | // |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 41 | MipsTargetMachine:: |
| 42 | MipsTargetMachine(const Module &M, const std::string &FS): |
| 43 | Subtarget(*this, M, FS), DataLayout("E-p:32:32:32"), |
Bruno Cardoso Lopes | 51195af | 2007-08-28 05:13:42 +0000 | [diff] [blame] | 44 | InstrInfo(*this), FrameInfo(TargetFrameInfo::StackGrowsUp, 8, 0), |
Bruno Cardoso Lopes | 0a60400 | 2007-10-09 03:01:19 +0000 | [diff] [blame] | 45 | TLInfo(*this) |
| 46 | { |
| 47 | if (getRelocationModel() != Reloc::Static) |
| 48 | setRelocationModel(Reloc::PIC_); |
Bruno Cardoso Lopes | c7db561 | 2007-11-05 03:02:32 +0000 | [diff] [blame^] | 49 | if (getCodeModel() == CodeModel::Default) |
| 50 | setCodeModel(CodeModel::Small); |
Bruno Cardoso Lopes | 0a60400 | 2007-10-09 03:01:19 +0000 | [diff] [blame] | 51 | } |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 52 | |
| 53 | // return 0 and must specify -march to gen MIPS code. |
| 54 | unsigned MipsTargetMachine:: |
Bruno Cardoso Lopes | 758dcca | 2007-07-11 23:17:41 +0000 | [diff] [blame] | 55 | getModuleMatchQuality(const Module &M) |
| 56 | { |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 57 | // We strongly match "mips-*". |
| 58 | std::string TT = M.getTargetTriple(); |
| 59 | if (TT.size() >= 5 && std::string(TT.begin(), TT.begin()+5) == "mips-") |
| 60 | return 20; |
Bruno Cardoso Lopes | 758dcca | 2007-07-11 23:17:41 +0000 | [diff] [blame] | 61 | |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 62 | return 0; |
| 63 | } |
| 64 | |
| 65 | // Install an instruction selector pass using |
| 66 | // the ISelDag to gen Mips code. |
| 67 | bool MipsTargetMachine:: |
| 68 | addInstSelector(FunctionPassManager &PM, bool Fast) |
| 69 | { |
| 70 | PM.add(createMipsISelDag(*this)); |
| 71 | return false; |
| 72 | } |
| 73 | |
| 74 | // Implemented by targets that want to run passes immediately before |
| 75 | // machine code is emitted. return true if -print-machineinstrs should |
| 76 | // print out the code after the passes. |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 77 | bool MipsTargetMachine:: |
| 78 | addPreEmitPass(FunctionPassManager &PM, bool Fast) |
| 79 | { |
Bruno Cardoso Lopes | aff42dc | 2007-08-18 01:58:15 +0000 | [diff] [blame] | 80 | PM.add(createMipsDelaySlotFillerPass(*this)); |
| 81 | return true; |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 82 | } |
| 83 | |
| 84 | // Implements the AssemblyEmitter for the target. Must return |
| 85 | // true if AssemblyEmitter is supported |
| 86 | bool MipsTargetMachine:: |
| 87 | addAssemblyEmitter(FunctionPassManager &PM, bool Fast, |
| 88 | std::ostream &Out) |
| 89 | { |
| 90 | // Output assembly language. |
| 91 | PM.add(createMipsCodePrinterPass(Out, *this)); |
| 92 | return false; |
| 93 | } |