1 //===-- AlphaTargetMachine.cpp - Define TargetMachine for Alpha -----------===//
3 // The LLVM Compiler Infrastructure
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
14 #include "AlphaJITInfo.h"
15 #include "AlphaTargetAsmInfo.h"
16 #include "AlphaTargetMachine.h"
17 #include "llvm/Module.h"
18 #include "llvm/PassManager.h"
19 #include "llvm/Target/TargetMachineRegistry.h"
24 // Register the targets
25 RegisterTarget
<AlphaTargetMachine
> X("alpha", " Alpha (incomplete)");
28 const TargetAsmInfo
*AlphaTargetMachine::createTargetAsmInfo() const {
29 return new AlphaTargetAsmInfo(*this);
32 unsigned AlphaTargetMachine::getModuleMatchQuality(const Module
&M
) {
33 // We strongly match "alpha*".
34 std::string TT
= M
.getTargetTriple();
35 if (TT
.size() >= 5 && TT
[0] == 'a' && TT
[1] == 'l' && TT
[2] == 'p' &&
36 TT
[3] == 'h' && TT
[4] == 'a')
38 // If the target triple is something non-alpha, we don't match.
39 if (!TT
.empty()) return 0;
41 if (M
.getEndianness() == Module::LittleEndian
&&
42 M
.getPointerSize() == Module::Pointer64
)
43 return 10; // Weak match
44 else if (M
.getEndianness() != Module::AnyEndianness
||
45 M
.getPointerSize() != Module::AnyPointerSize
)
46 return 0; // Match for some other target
48 return getJITMatchQuality()/2;
51 unsigned AlphaTargetMachine::getJITMatchQuality() {
59 AlphaTargetMachine::AlphaTargetMachine(const Module
&M
, const std::string
&FS
)
60 : DataLayout("e-f128:128:128"),
61 FrameInfo(TargetFrameInfo::StackGrowsDown
, 16, 0),
65 setRelocationModel(Reloc::PIC_
);
69 //===----------------------------------------------------------------------===//
70 // Pass Pipeline Configuration
71 //===----------------------------------------------------------------------===//
73 bool AlphaTargetMachine::addInstSelector(FunctionPassManager
&PM
, bool Fast
) {
74 PM
.add(createAlphaISelDag(*this));
77 bool AlphaTargetMachine::addPreEmitPass(FunctionPassManager
&PM
, bool Fast
) {
78 // Must run branch selection immediately preceding the asm printer
79 PM
.add(createAlphaBranchSelectionPass());
82 bool AlphaTargetMachine::addAssemblyEmitter(FunctionPassManager
&PM
, bool Fast
,
84 PM
.add(createAlphaLLRPPass(*this));
85 PM
.add(createAlphaCodePrinterPass(Out
, *this));
88 bool AlphaTargetMachine::addCodeEmitter(FunctionPassManager
&PM
, bool Fast
,
89 bool DumpAsm
, MachineCodeEmitter
&MCE
) {
90 PM
.add(createAlphaCodeEmitterPass(*this, MCE
));
92 PM
.add(createAlphaCodePrinterPass(*cerr
.stream(), *this));
95 bool AlphaTargetMachine::addSimpleCodeEmitter(FunctionPassManager
&PM
,
96 bool Fast
, bool DumpAsm
,
97 MachineCodeEmitter
&MCE
) {
98 return addCodeEmitter(PM
, Fast
, DumpAsm
, MCE
);