blob: 0336965d11f145e7aa27155d9a0543abb7f67623 [file] [log] [blame]
Tony Linthicumb4b54152011-12-12 21:14:40 +00001//=-- HexagonTargetMachine.h - Define TargetMachine for Hexagon ---*- C++ -*-=//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file declares the Hexagon specific subclass of TargetMachine.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef HexagonTARGETMACHINE_H
15#define HexagonTARGETMACHINE_H
16
Tony Linthicumb4b54152011-12-12 21:14:40 +000017#include "HexagonInstrInfo.h"
18#include "HexagonSubtarget.h"
19#include "HexagonISelLowering.h"
20#include "HexagonSelectionDAGInfo.h"
21#include "HexagonFrameLowering.h"
Craig Topper79aa3412012-03-17 18:46:09 +000022#include "llvm/Target/TargetMachine.h"
23#include "llvm/Target/TargetData.h"
Tony Linthicumb4b54152011-12-12 21:14:40 +000024
25namespace llvm {
26
27class Module;
28
29class HexagonTargetMachine : public LLVMTargetMachine {
30 const TargetData DataLayout; // Calculates type size & alignment.
31 HexagonSubtarget Subtarget;
Tony Linthicumb4b54152011-12-12 21:14:40 +000032 HexagonInstrInfo InstrInfo;
Benjamin Kramer90345622011-12-16 19:08:59 +000033 HexagonTargetLowering TLInfo;
Tony Linthicumb4b54152011-12-12 21:14:40 +000034 HexagonSelectionDAGInfo TSInfo;
35 HexagonFrameLowering FrameLowering;
36 const InstrItineraryData* InstrItins;
37
38public:
39 HexagonTargetMachine(const Target &T, StringRef TT,StringRef CPU,
Craig Topper1e0c9ab2012-03-17 09:24:09 +000040 StringRef FS, const TargetOptions &Options,
41 Reloc::Model RM, CodeModel::Model CM,
42 CodeGenOpt::Level OL);
Tony Linthicumb4b54152011-12-12 21:14:40 +000043
44 virtual const HexagonInstrInfo *getInstrInfo() const {
45 return &InstrInfo;
46 }
47 virtual const HexagonSubtarget *getSubtargetImpl() const {
48 return &Subtarget;
49 }
50 virtual const HexagonRegisterInfo *getRegisterInfo() const {
51 return &InstrInfo.getRegisterInfo();
52 }
53
54 virtual const InstrItineraryData* getInstrItineraryData() const {
55 return InstrItins;
56 }
57
58
59 virtual const HexagonTargetLowering* getTargetLowering() const {
60 return &TLInfo;
61 }
62
63 virtual const HexagonFrameLowering* getFrameLowering() const {
64 return &FrameLowering;
65 }
66
67 virtual const HexagonSelectionDAGInfo* getSelectionDAGInfo() const {
68 return &TSInfo;
69 }
70
71 virtual const TargetData *getTargetData() const { return &DataLayout; }
72 static unsigned getModuleMatchQuality(const Module &M);
73
74 // Pass Pipeline Configuration.
75 virtual bool addPassesForOptimizations(PassManagerBase &PM);
Andrew Trick061efcf2012-02-04 02:56:59 +000076 virtual TargetPassConfig *createPassConfig(PassManagerBase &PM);
Tony Linthicumb4b54152011-12-12 21:14:40 +000077};
78
79extern bool flag_aligned_memcpy;
80
81} // end namespace llvm
82
83#endif