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" |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 17 | #include "llvm/PassManager.h" |
Daniel Dunbar | 0c795d6 | 2009-07-25 06:49:55 +0000 | [diff] [blame] | 18 | #include "llvm/Target/TargetRegistry.h" |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 19 | using namespace llvm; |
| 20 | |
Daniel Dunbar | 0c795d6 | 2009-07-25 06:49:55 +0000 | [diff] [blame] | 21 | extern "C" void LLVMInitializeMipsTarget() { |
| 22 | // Register the target. |
Eli Friedman | e2c7408 | 2009-08-03 02:22:28 +0000 | [diff] [blame] | 23 | RegisterTargetMachine<MipsTargetMachine> X(TheMipsTarget); |
| 24 | RegisterTargetMachine<MipselTargetMachine> Y(TheMipselTarget); |
Daniel Dunbar | 0c795d6 | 2009-07-25 06:49:55 +0000 | [diff] [blame] | 25 | } |
Douglas Gregor | 1555a23 | 2009-06-16 20:12:29 +0000 | [diff] [blame] | 26 | |
Chris Lattner | 92319e2 | 2009-08-11 20:32:51 +0000 | [diff] [blame] | 27 | const TargetAsmInfo *MipsTargetMachine::createTargetAsmInfo() const { |
| 28 | return new MipsTargetAsmInfo(); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 29 | } |
| 30 | |
| 31 | // DataLayout --> Big-endian, 32-bit pointer/ABI/alignment |
Bruno Cardoso Lopes | 51195af | 2007-08-28 05:13:42 +0000 | [diff] [blame] | 32 | // The stack is always 8 byte aligned |
| 33 | // On function prologue, the stack is created by decrementing |
| 34 | // its pointer. Once decremented, all references are done with positive |
Bruno Cardoso Lopes | bbe5136 | 2008-08-06 06:14:43 +0000 | [diff] [blame] | 35 | // offset from the stack/frame pointer, using StackGrowsUp enables |
| 36 | // an easier handling. |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 37 | // Using CodeModel::Large enables different CALL behavior. |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 38 | MipsTargetMachine:: |
Eli Friedman | e2c7408 | 2009-08-03 02:22:28 +0000 | [diff] [blame] | 39 | MipsTargetMachine(const Target &T, const std::string &TT, const std::string &FS, |
Daniel Dunbar | 51b198a | 2009-07-15 20:24:03 +0000 | [diff] [blame] | 40 | bool isLittle=false): |
Chris Lattner | 0a31d2f | 2009-08-11 20:42:37 +0000 | [diff] [blame^] | 41 | LLVMTargetMachine(T, TT), |
Eli Friedman | e2c7408 | 2009-08-03 02:22:28 +0000 | [diff] [blame] | 42 | Subtarget(TT, FS, isLittle), |
Bruno Cardoso Lopes | b27cb55 | 2008-07-15 02:03:36 +0000 | [diff] [blame] | 43 | DataLayout(isLittle ? std::string("e-p:32:32:32-i8:8:32-i16:16:32") : |
| 44 | 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] | 45 | InstrInfo(*this), |
| 46 | FrameInfo(TargetFrameInfo::StackGrowsUp, 8, 0), |
Chris Lattner | 0a31d2f | 2009-08-11 20:42:37 +0000 | [diff] [blame^] | 47 | TLInfo(*this) { |
Bruno Cardoso Lopes | 43d526d | 2008-07-14 14:42:54 +0000 | [diff] [blame] | 48 | // Abicall enables PIC by default |
Eli Friedman | e2c7408 | 2009-08-03 02:22:28 +0000 | [diff] [blame] | 49 | if (getRelocationModel() == Reloc::Default) { |
| 50 | if (Subtarget.isABI_O32()) |
| 51 | setRelocationModel(Reloc::PIC_); |
| 52 | else |
| 53 | setRelocationModel(Reloc::Static); |
| 54 | } |
Bruno Cardoso Lopes | 43d526d | 2008-07-14 14:42:54 +0000 | [diff] [blame] | 55 | |
| 56 | // TODO: create an option to enable long calls, like -mlong-calls, |
| 57 | // 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] | 58 | if (getCodeModel() == CodeModel::Default) |
| 59 | setCodeModel(CodeModel::Small); |
Bruno Cardoso Lopes | 0a60400 | 2007-10-09 03:01:19 +0000 | [diff] [blame] | 60 | } |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 61 | |
Bruno Cardoso Lopes | d2947ee | 2008-06-04 01:45:25 +0000 | [diff] [blame] | 62 | MipselTargetMachine:: |
Eli Friedman | e2c7408 | 2009-08-03 02:22:28 +0000 | [diff] [blame] | 63 | MipselTargetMachine(const Target &T, const std::string &TT, |
| 64 | const std::string &FS) : |
| 65 | MipsTargetMachine(T, TT, FS, true) {} |
Bruno Cardoso Lopes | d2947ee | 2008-06-04 01:45:25 +0000 | [diff] [blame] | 66 | |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 67 | // Install an instruction selector pass using |
| 68 | // the ISelDag to gen Mips code. |
| 69 | bool MipsTargetMachine:: |
Bill Wendling | 98a366d | 2009-04-29 23:29:43 +0000 | [diff] [blame] | 70 | addInstSelector(PassManagerBase &PM, CodeGenOpt::Level OptLevel) |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 71 | { |
| 72 | PM.add(createMipsISelDag(*this)); |
| 73 | return false; |
| 74 | } |
| 75 | |
| 76 | // Implemented by targets that want to run passes immediately before |
| 77 | // machine code is emitted. return true if -print-machineinstrs should |
| 78 | // print out the code after the passes. |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 79 | bool MipsTargetMachine:: |
Bill Wendling | 98a366d | 2009-04-29 23:29:43 +0000 | [diff] [blame] | 80 | addPreEmitPass(PassManagerBase &PM, CodeGenOpt::Level OptLevel) |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 81 | { |
Bruno Cardoso Lopes | aff42dc | 2007-08-18 01:58:15 +0000 | [diff] [blame] | 82 | PM.add(createMipsDelaySlotFillerPass(*this)); |
| 83 | return true; |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 84 | } |