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 | |
Oscar Fuentes | 92adc19 | 2008-11-15 21:36:30 +0000 | [diff] [blame^] | 22 | /// MipsTargetMachineModule - Note that this is used on hosts that |
| 23 | /// cannot link in a library unless there are references into the |
| 24 | /// library. In particular, it seems that it is not possible to get |
| 25 | /// things to work on Win32 without this. Though it is unused, do not |
| 26 | /// remove it. |
| 27 | extern "C" int MipsTargetMachineModule; |
| 28 | int MipsTargetMachineModule = 0; |
| 29 | |
Dan Gohman | 844731a | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 30 | // Register the target. |
Dan Gohman | b8cab92 | 2008-10-14 20:25:08 +0000 | [diff] [blame] | 31 | static RegisterTarget<MipsTargetMachine> X("mips", "Mips"); |
| 32 | static RegisterTarget<MipselTargetMachine> Y("mipsel", "Mipsel"); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 33 | |
| 34 | const TargetAsmInfo *MipsTargetMachine:: |
| 35 | createTargetAsmInfo() const |
| 36 | { |
| 37 | return new MipsTargetAsmInfo(*this); |
| 38 | } |
| 39 | |
| 40 | // DataLayout --> Big-endian, 32-bit pointer/ABI/alignment |
Bruno Cardoso Lopes | 51195af | 2007-08-28 05:13:42 +0000 | [diff] [blame] | 41 | // The stack is always 8 byte aligned |
| 42 | // On function prologue, the stack is created by decrementing |
| 43 | // its pointer. Once decremented, all references are done with positive |
Bruno Cardoso Lopes | bbe5136 | 2008-08-06 06:14:43 +0000 | [diff] [blame] | 44 | // offset from the stack/frame pointer, using StackGrowsUp enables |
| 45 | // an easier handling. |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 46 | // Using CodeModel::Large enables different CALL behavior. |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 47 | MipsTargetMachine:: |
Bruno Cardoso Lopes | d2947ee | 2008-06-04 01:45:25 +0000 | [diff] [blame] | 48 | MipsTargetMachine(const Module &M, const std::string &FS, bool isLittle=false): |
| 49 | Subtarget(*this, M, FS, isLittle), |
Bruno Cardoso Lopes | b27cb55 | 2008-07-15 02:03:36 +0000 | [diff] [blame] | 50 | DataLayout(isLittle ? std::string("e-p:32:32:32-i8:8:32-i16:16:32") : |
| 51 | std::string("E-p:32:32:32-i8:8:32-i16:16:32")), |
Bruno Cardoso Lopes | d2947ee | 2008-06-04 01:45:25 +0000 | [diff] [blame] | 52 | InstrInfo(*this), |
| 53 | FrameInfo(TargetFrameInfo::StackGrowsUp, 8, 0), |
Bruno Cardoso Lopes | 0a60400 | 2007-10-09 03:01:19 +0000 | [diff] [blame] | 54 | TLInfo(*this) |
| 55 | { |
Bruno Cardoso Lopes | 43d526d | 2008-07-14 14:42:54 +0000 | [diff] [blame] | 56 | // Abicall enables PIC by default |
Bruno Cardoso Lopes | b3d7299 | 2008-09-15 21:06:55 +0000 | [diff] [blame] | 57 | if (Subtarget.hasABICall()) |
Bruno Cardoso Lopes | 0a60400 | 2007-10-09 03:01:19 +0000 | [diff] [blame] | 58 | setRelocationModel(Reloc::PIC_); |
Bruno Cardoso Lopes | 43d526d | 2008-07-14 14:42:54 +0000 | [diff] [blame] | 59 | |
| 60 | // TODO: create an option to enable long calls, like -mlong-calls, |
| 61 | // that would be our CodeModel::Large. It must not work with Abicall. |
Bruno Cardoso Lopes | c7db561 | 2007-11-05 03:02:32 +0000 | [diff] [blame] | 62 | if (getCodeModel() == CodeModel::Default) |
| 63 | setCodeModel(CodeModel::Small); |
Bruno Cardoso Lopes | 0a60400 | 2007-10-09 03:01:19 +0000 | [diff] [blame] | 64 | } |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 65 | |
Bruno Cardoso Lopes | d2947ee | 2008-06-04 01:45:25 +0000 | [diff] [blame] | 66 | MipselTargetMachine:: |
| 67 | MipselTargetMachine(const Module &M, const std::string &FS) : |
| 68 | MipsTargetMachine(M, FS, true) {} |
| 69 | |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 70 | // return 0 and must specify -march to gen MIPS code. |
| 71 | unsigned MipsTargetMachine:: |
Bruno Cardoso Lopes | 758dcca | 2007-07-11 23:17:41 +0000 | [diff] [blame] | 72 | getModuleMatchQuality(const Module &M) |
| 73 | { |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 74 | // We strongly match "mips*-*". |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 75 | std::string TT = M.getTargetTriple(); |
| 76 | if (TT.size() >= 5 && std::string(TT.begin(), TT.begin()+5) == "mips-") |
| 77 | return 20; |
Bruno Cardoso Lopes | 758dcca | 2007-07-11 23:17:41 +0000 | [diff] [blame] | 78 | |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 79 | if (TT.size() >= 13 && std::string(TT.begin(), |
| 80 | TT.begin()+13) == "mipsallegrex-") |
| 81 | return 20; |
| 82 | |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 83 | return 0; |
| 84 | } |
| 85 | |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 86 | // return 0 and must specify -march to gen MIPSEL code. |
Bruno Cardoso Lopes | d2947ee | 2008-06-04 01:45:25 +0000 | [diff] [blame] | 87 | unsigned MipselTargetMachine:: |
| 88 | getModuleMatchQuality(const Module &M) |
| 89 | { |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 90 | // We strongly match "mips*el-*". |
Bruno Cardoso Lopes | d2947ee | 2008-06-04 01:45:25 +0000 | [diff] [blame] | 91 | std::string TT = M.getTargetTriple(); |
| 92 | if (TT.size() >= 7 && std::string(TT.begin(), TT.begin()+7) == "mipsel-") |
| 93 | return 20; |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 94 | |
| 95 | if (TT.size() >= 15 && std::string(TT.begin(), |
| 96 | TT.begin()+15) == "mipsallegrexel-") |
| 97 | return 20; |
| 98 | |
| 99 | if (TT.size() == 3 && std::string(TT.begin(), TT.begin()+3) == "psp") |
| 100 | return 20; |
Bruno Cardoso Lopes | d2947ee | 2008-06-04 01:45:25 +0000 | [diff] [blame] | 101 | |
| 102 | return 0; |
| 103 | } |
| 104 | |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 105 | // Install an instruction selector pass using |
| 106 | // the ISelDag to gen Mips code. |
| 107 | bool MipsTargetMachine:: |
Dan Gohman | bfae831 | 2008-03-11 22:29:46 +0000 | [diff] [blame] | 108 | addInstSelector(PassManagerBase &PM, bool Fast) |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 109 | { |
| 110 | PM.add(createMipsISelDag(*this)); |
| 111 | return false; |
| 112 | } |
| 113 | |
| 114 | // Implemented by targets that want to run passes immediately before |
| 115 | // machine code is emitted. return true if -print-machineinstrs should |
| 116 | // print out the code after the passes. |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 117 | bool MipsTargetMachine:: |
Dan Gohman | bfae831 | 2008-03-11 22:29:46 +0000 | [diff] [blame] | 118 | addPreEmitPass(PassManagerBase &PM, bool Fast) |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 119 | { |
Bruno Cardoso Lopes | aff42dc | 2007-08-18 01:58:15 +0000 | [diff] [blame] | 120 | PM.add(createMipsDelaySlotFillerPass(*this)); |
| 121 | return true; |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 122 | } |
| 123 | |
| 124 | // Implements the AssemblyEmitter for the target. Must return |
| 125 | // true if AssemblyEmitter is supported |
| 126 | bool MipsTargetMachine:: |
Dan Gohman | bfae831 | 2008-03-11 22:29:46 +0000 | [diff] [blame] | 127 | addAssemblyEmitter(PassManagerBase &PM, bool Fast, |
Owen Anderson | cb37188 | 2008-08-21 00:14:44 +0000 | [diff] [blame] | 128 | raw_ostream &Out) |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 129 | { |
| 130 | // Output assembly language. |
| 131 | PM.add(createMipsCodePrinterPass(Out, *this)); |
| 132 | return false; |
| 133 | } |