opnsense-src/contrib/llvm/lib/Target/Mips/MipsTargetMachine.cpp

91 lines
3 KiB
C++
Raw Normal View History

2009-06-02 13:52:33 -04:00
//===-- MipsTargetMachine.cpp - Define TargetMachine for Mips -------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// Implements the info about Mips target spec.
//
//===----------------------------------------------------------------------===//
#include "Mips.h"
2009-10-14 13:57:32 -04:00
#include "MipsMCAsmInfo.h"
2009-06-02 13:52:33 -04:00
#include "MipsTargetMachine.h"
#include "llvm/PassManager.h"
2009-10-14 13:57:32 -04:00
#include "llvm/Target/TargetRegistry.h"
2009-06-02 13:52:33 -04:00
using namespace llvm;
2009-10-14 13:57:32 -04:00
extern "C" void LLVMInitializeMipsTarget() {
// Register the target.
RegisterTargetMachine<MipsTargetMachine> X(TheMipsTarget);
RegisterTargetMachine<MipselTargetMachine> Y(TheMipselTarget);
RegisterAsmInfo<MipsMCAsmInfo> A(TheMipsTarget);
RegisterAsmInfo<MipsMCAsmInfo> B(TheMipselTarget);
2009-06-02 13:52:33 -04:00
}
// DataLayout --> Big-endian, 32-bit pointer/ABI/alignment
// The stack is always 8 byte aligned
// On function prologue, the stack is created by decrementing
// its pointer. Once decremented, all references are done with positive
// offset from the stack/frame pointer, using StackGrowsUp enables
2009-06-02 13:52:33 -04:00
// an easier handling.
// Using CodeModel::Large enables different CALL behavior.
MipsTargetMachine::
2009-10-14 13:57:32 -04:00
MipsTargetMachine(const Target &T, const std::string &TT, const std::string &FS,
bool isLittle=false):
LLVMTargetMachine(T, TT),
Subtarget(TT, FS, isLittle),
DataLayout(isLittle ?
std::string("e-p:32:32:32-i8:8:32-i16:16:32-i64:64:64-n32") :
std::string("E-p:32:32:32-i8:8:32-i16:16:32-i64:64:64-n32")),
InstrInfo(*this),
FrameLowering(Subtarget),
2010-05-27 11:15:58 -04:00
TLInfo(*this), TSInfo(*this) {
2009-06-02 13:52:33 -04:00
// Abicall enables PIC by default
2009-10-14 13:57:32 -04:00
if (getRelocationModel() == Reloc::Default) {
if (Subtarget.isABI_O32())
setRelocationModel(Reloc::PIC_);
else
setRelocationModel(Reloc::Static);
}
2009-06-02 13:52:33 -04:00
}
MipselTargetMachine::
2009-10-14 13:57:32 -04:00
MipselTargetMachine(const Target &T, const std::string &TT,
const std::string &FS) :
MipsTargetMachine(T, TT, FS, true) {}
2009-06-02 13:52:33 -04:00
// Install an instruction selector pass using
2009-06-02 13:52:33 -04:00
// the ISelDag to gen Mips code.
bool MipsTargetMachine::
addInstSelector(PassManagerBase &PM, CodeGenOpt::Level OptLevel)
2009-06-02 13:52:33 -04:00
{
PM.add(createMipsISelDag(*this));
return false;
}
// Implemented by targets that want to run passes immediately before
// machine code is emitted. return true if -print-machineinstrs should
2009-06-02 13:52:33 -04:00
// print out the code after the passes.
bool MipsTargetMachine::
addPreEmitPass(PassManagerBase &PM, CodeGenOpt::Level OptLevel)
2009-06-02 13:52:33 -04:00
{
PM.add(createMipsDelaySlotFillerPass(*this));
return true;
}
bool MipsTargetMachine::
addPreRegAlloc(PassManagerBase &PM, CodeGenOpt::Level OptLevel) {
PM.add(createMipsEmitGPRestorePass(*this));
return true;
}
bool MipsTargetMachine::
addPostRegAlloc(PassManagerBase &PM, CodeGenOpt::Level OptLevel) {
PM.add(createMipsExpandPseudoPass(*this));
return true;
}