1 //===-- llvm/Target/TargetMachine.h - Target Information --------*- C++ -*-===//
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 //===----------------------------------------------------------------------===//
10 // This file describes the general parts of a Target machine.
12 //===----------------------------------------------------------------------===//
14 #ifndef LLVM_TARGET_TARGETMACHINE_H
15 #define LLVM_TARGET_TARGETMACHINE_H
17 #include "llvm/Target/TargetData.h"
22 class TargetInstrInfo;
23 class TargetInstrDescriptor;
25 class TargetSchedInfo;
27 class TargetFrameInfo;
28 class MachineCodeEmitter;
30 class FunctionPassManager;
33 class IntrinsicLowering;
35 //===----------------------------------------------------------------------===//
37 /// TargetMachine - Primary interface to the complete machine description for
38 /// the target machine. All target-specific information should be accessible
39 /// through this interface.
42 const std::string Name;
43 const TargetData DataLayout; // Calculates type size & alignment
44 IntrinsicLowering *IL; // Specifies how to lower intrinsic calls
46 TargetMachine(const TargetMachine&); // DO NOT IMPLEMENT
47 void operator=(const TargetMachine&); // DO NOT IMPLEMENT
48 protected: // Can only create subclasses...
49 TargetMachine(const std::string &name, IntrinsicLowering *IL,
50 bool LittleEndian = false,
51 unsigned char PtrSize = 8, unsigned char PtrAl = 8,
52 unsigned char DoubleAl = 8, unsigned char FloatAl = 4,
53 unsigned char LongAl = 8, unsigned char IntAl = 4,
54 unsigned char ShortAl = 2, unsigned char ByteAl = 1,
55 unsigned char BoolAl = 1);
57 TargetMachine(const std::string &name, IntrinsicLowering *IL,
58 const TargetData &TD);
60 /// This constructor is used for targets that support arbitrary TargetData
61 /// layouts, like the C backend. It initializes the TargetData to match that
62 /// of the specified module.
64 TargetMachine(const std::string &name, IntrinsicLowering *IL,
67 virtual ~TargetMachine();
69 /// getModuleMatchQuality - This static method should be implemented by
70 /// targets to indicate how closely they match the specified module. This is
71 /// used by the LLC tool to determine which target to use when an explicit
72 /// -march option is not specified. If a target returns zero, it will never
73 /// be chosen without an explicit -march option.
74 static unsigned getModuleMatchQuality(const Module &M) { return 0; }
76 /// getJITMatchQuality - This static method should be implemented by targets
77 /// that provide JIT capabilities to indicate how suitable they are for
78 /// execution on the current host. If a value of 0 is returned, the target
79 /// will not be used unless an explicit -march option is used.
80 static unsigned getJITMatchQuality() { return 0; }
83 const std::string &getName() const { return Name; }
85 /// getIntrinsicLowering - This method returns a reference to an
86 /// IntrinsicLowering instance which should be used by the code generator to
87 /// lower unknown intrinsic functions to the equivalent LLVM expansion.
89 IntrinsicLowering &getIntrinsicLowering() const { return *IL; }
91 // Interfaces to the major aspects of target machine information:
92 // -- Instruction opcode and operand information
93 // -- Pipelines and scheduling information
94 // -- Stack frame information
96 virtual const TargetInstrInfo *getInstrInfo() const { return 0; }
97 virtual const TargetFrameInfo *getFrameInfo() const { return 0; }
98 const TargetData &getTargetData() const { return DataLayout; }
100 /// getRegisterInfo - If register information is available, return it. If
101 /// not, return null. This is kept separate from RegInfo until RegInfo has
102 /// details of graph coloring register allocation removed from it.
104 virtual const MRegisterInfo* getRegisterInfo() const { return 0; }
106 /// getJITInfo - If this target supports a JIT, return information for it,
107 /// otherwise return null.
109 virtual TargetJITInfo *getJITInfo() { return 0; }
111 // These are deprecated interfaces.
112 virtual const TargetSchedInfo *getSchedInfo() const { return 0; }
113 virtual const SparcV9RegInfo *getRegInfo() const { return 0; }
115 /// addPassesToEmitAssembly - Add passes to the specified pass manager to get
116 /// assembly langage code emitted. Typically this will involve several steps
117 /// of code generation. This method should return true if assembly emission
118 /// is not supported.
120 virtual bool addPassesToEmitAssembly(PassManager &PM, std::ostream &Out) {
124 /// addPassesToEmitMachineCode - Add passes to the specified pass manager to
125 /// get machine code emitted. This uses a MachineCodeEmitter object to handle
126 /// actually outputting the machine code and resolving things like the address
127 /// of functions. This method should returns true if machine code emission is
130 virtual bool addPassesToEmitMachineCode(FunctionPassManager &PM,
131 MachineCodeEmitter &MCE) {
136 } // End llvm namespace