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 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 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 | |
Dan Gohman | 844731a | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 22 | // Register the target. |
Bruno Cardoso Lopes | d2947ee | 2008-06-04 01:45:25 +0000 | [diff] [blame^] | 23 | static RegisterTarget<MipsTargetMachine> X("mips", " Mips"); |
| 24 | static RegisterTarget<MipselTargetMachine> Y("mipsel", " Mipsel"); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 25 | |
| 26 | const TargetAsmInfo *MipsTargetMachine:: |
| 27 | createTargetAsmInfo() const |
| 28 | { |
| 29 | return new MipsTargetAsmInfo(*this); |
| 30 | } |
| 31 | |
| 32 | // DataLayout --> Big-endian, 32-bit pointer/ABI/alignment |
Bruno Cardoso Lopes | 51195af | 2007-08-28 05:13:42 +0000 | [diff] [blame] | 33 | // The stack is always 8 byte aligned |
| 34 | // On function prologue, the stack is created by decrementing |
| 35 | // its pointer. Once decremented, all references are done with positive |
| 36 | // offset from the stack/frame pointer, so StackGrowsUp is used. |
Bruno Cardoso Lopes | c7db561 | 2007-11-05 03:02:32 +0000 | [diff] [blame] | 37 | // When using CodeModel::Large the behaviour |
| 38 | // |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 39 | MipsTargetMachine:: |
Bruno Cardoso Lopes | d2947ee | 2008-06-04 01:45:25 +0000 | [diff] [blame^] | 40 | MipsTargetMachine(const Module &M, const std::string &FS, bool isLittle=false): |
| 41 | Subtarget(*this, M, FS, isLittle), |
| 42 | DataLayout(isLittle ? std::string("e-p:32:32:32") : |
| 43 | std::string("E-p:32:32:32")), |
| 44 | InstrInfo(*this), |
| 45 | FrameInfo(TargetFrameInfo::StackGrowsUp, 8, 0), |
Bruno Cardoso Lopes | 0a60400 | 2007-10-09 03:01:19 +0000 | [diff] [blame] | 46 | TLInfo(*this) |
| 47 | { |
| 48 | if (getRelocationModel() != Reloc::Static) |
| 49 | setRelocationModel(Reloc::PIC_); |
Bruno Cardoso Lopes | c7db561 | 2007-11-05 03:02:32 +0000 | [diff] [blame] | 50 | if (getCodeModel() == CodeModel::Default) |
| 51 | setCodeModel(CodeModel::Small); |
Bruno Cardoso Lopes | 0a60400 | 2007-10-09 03:01:19 +0000 | [diff] [blame] | 52 | } |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 53 | |
Bruno Cardoso Lopes | d2947ee | 2008-06-04 01:45:25 +0000 | [diff] [blame^] | 54 | MipselTargetMachine:: |
| 55 | MipselTargetMachine(const Module &M, const std::string &FS) : |
| 56 | MipsTargetMachine(M, FS, true) {} |
| 57 | |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 58 | // return 0 and must specify -march to gen MIPS code. |
| 59 | unsigned MipsTargetMachine:: |
Bruno Cardoso Lopes | 758dcca | 2007-07-11 23:17:41 +0000 | [diff] [blame] | 60 | getModuleMatchQuality(const Module &M) |
| 61 | { |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 62 | // We strongly match "mips-*". |
| 63 | std::string TT = M.getTargetTriple(); |
| 64 | if (TT.size() >= 5 && std::string(TT.begin(), TT.begin()+5) == "mips-") |
| 65 | return 20; |
Bruno Cardoso Lopes | 758dcca | 2007-07-11 23:17:41 +0000 | [diff] [blame] | 66 | |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 67 | return 0; |
| 68 | } |
| 69 | |
Bruno Cardoso Lopes | d2947ee | 2008-06-04 01:45:25 +0000 | [diff] [blame^] | 70 | // return 0 and must specify -march to gen MIPSel code. |
| 71 | unsigned MipselTargetMachine:: |
| 72 | getModuleMatchQuality(const Module &M) |
| 73 | { |
| 74 | // We strongly match "mipsel-*". |
| 75 | std::string TT = M.getTargetTriple(); |
| 76 | if (TT.size() >= 7 && std::string(TT.begin(), TT.begin()+7) == "mipsel-") |
| 77 | return 20; |
| 78 | |
| 79 | return 0; |
| 80 | } |
| 81 | |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 82 | // Install an instruction selector pass using |
| 83 | // the ISelDag to gen Mips code. |
| 84 | bool MipsTargetMachine:: |
Dan Gohman | bfae831 | 2008-03-11 22:29:46 +0000 | [diff] [blame] | 85 | addInstSelector(PassManagerBase &PM, bool Fast) |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 86 | { |
| 87 | PM.add(createMipsISelDag(*this)); |
| 88 | return false; |
| 89 | } |
| 90 | |
| 91 | // Implemented by targets that want to run passes immediately before |
| 92 | // machine code is emitted. return true if -print-machineinstrs should |
| 93 | // print out the code after the passes. |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 94 | bool MipsTargetMachine:: |
Dan Gohman | bfae831 | 2008-03-11 22:29:46 +0000 | [diff] [blame] | 95 | addPreEmitPass(PassManagerBase &PM, bool Fast) |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 96 | { |
Bruno Cardoso Lopes | aff42dc | 2007-08-18 01:58:15 +0000 | [diff] [blame] | 97 | PM.add(createMipsDelaySlotFillerPass(*this)); |
| 98 | return true; |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 99 | } |
| 100 | |
| 101 | // Implements the AssemblyEmitter for the target. Must return |
| 102 | // true if AssemblyEmitter is supported |
| 103 | bool MipsTargetMachine:: |
Dan Gohman | bfae831 | 2008-03-11 22:29:46 +0000 | [diff] [blame] | 104 | addAssemblyEmitter(PassManagerBase &PM, bool Fast, |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 105 | std::ostream &Out) |
| 106 | { |
| 107 | // Output assembly language. |
| 108 | PM.add(createMipsCodePrinterPass(Out, *this)); |
| 109 | return false; |
| 110 | } |