-
Notifications
You must be signed in to change notification settings - Fork 8
/
EpiphanyTargetMachine.h
69 lines (55 loc) · 1.98 KB
/
EpiphanyTargetMachine.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
//=== EpiphanyTargetMachine.h - Define TargetMachine for Epiphany -*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file declares the Epiphany specific subclass of TargetMachine.
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_EPIPHANYTARGETMACHINE_H
#define LLVM_EPIPHANYTARGETMACHINE_H
#include "EpiphanyFrameLowering.h"
#include "EpiphanyISelLowering.h"
#include "EpiphanyInstrInfo.h"
#include "EpiphanySelectionDAGInfo.h"
#include "EpiphanySubtarget.h"
#include "llvm/IR/DataLayout.h"
#include "llvm/Target/TargetMachine.h"
namespace llvm {
class EpiphanyTargetMachine : public LLVMTargetMachine {
EpiphanySubtarget Subtarget;
EpiphanyInstrInfo InstrInfo;
const DataLayout DL;
EpiphanyTargetLowering TLInfo;
EpiphanySelectionDAGInfo TSInfo;
EpiphanyFrameLowering FrameLowering;
public:
EpiphanyTargetMachine(const Target &T, StringRef TT, StringRef CPU,
StringRef FS, const TargetOptions &Options,
Reloc::Model RM, CodeModel::Model CM,
CodeGenOpt::Level OL);
const EpiphanyInstrInfo *getInstrInfo() const {
return &InstrInfo;
}
const EpiphanyFrameLowering *getFrameLowering() const {
return &FrameLowering;
}
const EpiphanyTargetLowering *getTargetLowering() const {
return &TLInfo;
}
const EpiphanySelectionDAGInfo *getSelectionDAGInfo() const {
return &TSInfo;
}
const EpiphanySubtarget *getSubtargetImpl() const { return &Subtarget; }
const DataLayout *getDataLayout() const { return &DL; }
const TargetRegisterInfo *getRegisterInfo() const {
return &InstrInfo.getRegisterInfo();
}
TargetPassConfig *createPassConfig(PassManagerBase &PM);
};
}
#endif