blob: aaa6c7a426f5e0ac53b7def161cba1b852f6bdfb [file] [log] [blame]
Chris Lattner803a5f62004-08-01 04:04:35 +00001//===- CodeGenTarget.h - Target Class Wrapper -------------------*- C++ -*-===//
Misha Brukman3da94ae2005-04-22 00:00:37 +00002//
John Criswell01d45822003-10-20 20:20:30 +00003// The LLVM Compiler Infrastructure
4//
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.
Misha Brukman3da94ae2005-04-22 00:00:37 +00007//
John Criswell01d45822003-10-20 20:20:30 +00008//===----------------------------------------------------------------------===//
Chris Lattner45872072003-08-07 05:38:11 +00009//
Chris Lattner803a5f62004-08-01 04:04:35 +000010// This file defines wrappers for the Target class and related global
11// functionality. This makes it easier to access the data and provides a single
12// place that needs to check it for validity. All of these classes throw
13// exceptions on error conditions.
Chris Lattner45872072003-08-07 05:38:11 +000014//
15//===----------------------------------------------------------------------===//
16
Chris Lattner803a5f62004-08-01 04:04:35 +000017#ifndef CODEGEN_TARGET_H
18#define CODEGEN_TARGET_H
Chris Lattner45872072003-08-07 05:38:11 +000019
Chris Lattner26693112004-08-16 01:10:21 +000020#include "CodeGenRegisters.h"
Chris Lattnerec352402004-08-01 05:04:00 +000021#include "CodeGenInstruction.h"
Chris Lattner45872072003-08-07 05:38:11 +000022#include <iosfwd>
Chris Lattnerec352402004-08-01 05:04:00 +000023#include <map>
Brian Gaeked0fde302003-11-11 22:41:34 +000024
25namespace llvm {
26
Chris Lattner45872072003-08-07 05:38:11 +000027class Record;
28class RecordKeeper;
Chris Lattner1fca5ff2004-10-27 16:14:51 +000029struct CodeGenRegister;
Chris Lattner45872072003-08-07 05:38:11 +000030
31/// getValueType - Return the MVT::ValueType that the specified TableGen record
32/// corresponds to.
33MVT::ValueType getValueType(Record *Rec);
34
35std::ostream &operator<<(std::ostream &OS, MVT::ValueType T);
Chris Lattnerd3464c12003-08-07 23:15:21 +000036std::string getName(MVT::ValueType T);
Chris Lattnerb72fb7e2003-08-10 19:50:32 +000037std::string getEnumName(MVT::ValueType T);
Chris Lattner45872072003-08-07 05:38:11 +000038
39
40/// CodeGenTarget - This class corresponds to the Target class in the .td files.
41///
42class CodeGenTarget {
43 Record *TargetRec;
44 std::vector<Record*> CalleeSavedRegisters;
45 MVT::ValueType PointerType;
46
Chris Lattnerec352402004-08-01 05:04:00 +000047 mutable std::map<std::string, CodeGenInstruction> Instructions;
Chris Lattner26693112004-08-16 01:10:21 +000048 mutable std::vector<CodeGenRegister> Registers;
Chris Lattner056afef2004-08-21 04:05:00 +000049 mutable std::vector<CodeGenRegisterClass> RegisterClasses;
Chris Lattnere9f4ba82005-09-08 21:43:21 +000050 mutable std::vector<MVT::ValueType> LegalValueTypes;
Chris Lattner26693112004-08-16 01:10:21 +000051 void ReadRegisters() const;
Chris Lattner056afef2004-08-21 04:05:00 +000052 void ReadRegisterClasses() const;
53 void ReadInstructions() const;
Chris Lattnere9f4ba82005-09-08 21:43:21 +000054 void ReadLegalValueTypes() const;
Chris Lattner45872072003-08-07 05:38:11 +000055public:
56 CodeGenTarget();
57
58 Record *getTargetRecord() const { return TargetRec; }
59 const std::string &getName() const;
60
61 const std::vector<Record*> &getCalleeSavedRegisters() const {
62 return CalleeSavedRegisters;
63 }
64
Chris Lattner54c66fe2003-08-07 06:01:44 +000065 MVT::ValueType getPointerType() const { return PointerType; }
66
Chris Lattner175580c2004-08-14 22:50:53 +000067 /// getInstructionSet - Return the InstructionSet object.
Chris Lattnerec352402004-08-01 05:04:00 +000068 ///
Chris Lattner45872072003-08-07 05:38:11 +000069 Record *getInstructionSet() const;
70
Chris Lattner175580c2004-08-14 22:50:53 +000071 /// getAsmWriter - Return the AssemblyWriter definition for this target.
72 ///
73 Record *getAsmWriter() const;
74
Chris Lattnere9f4ba82005-09-08 21:43:21 +000075 const std::vector<CodeGenRegister> &getRegisters() const {
Chris Lattner26693112004-08-16 01:10:21 +000076 if (Registers.empty()) ReadRegisters();
77 return Registers;
78 }
Chris Lattnerec352402004-08-01 05:04:00 +000079
Chris Lattnere9f4ba82005-09-08 21:43:21 +000080 const std::vector<CodeGenRegisterClass> &getRegisterClasses() const {
Chris Lattner056afef2004-08-21 04:05:00 +000081 if (RegisterClasses.empty()) ReadRegisterClasses();
82 return RegisterClasses;
83 }
84
Chris Lattnere9f4ba82005-09-08 21:43:21 +000085 const std::vector<MVT::ValueType> &getLegalValueTypes() const {
86 if (LegalValueTypes.empty()) ReadLegalValueTypes();
87 return LegalValueTypes;
88 }
89
90 /// isLegalValueType - Return true if the specified value type is natively
91 /// supported by the target (i.e. there are registers that directly hold it).
92 bool isLegalValueType(MVT::ValueType VT) const {
93 const std::vector<MVT::ValueType> &LegalVTs = getLegalValueTypes();
94 for (unsigned i = 0, e = LegalVTs.size(); i != e; ++i)
95 if (LegalVTs[i] == VT) return true;
96 return false;
97 }
Chris Lattner056afef2004-08-21 04:05:00 +000098
Chris Lattnerec352402004-08-01 05:04:00 +000099 /// getInstructions - Return all of the instructions defined for this target.
100 ///
101 const std::map<std::string, CodeGenInstruction> &getInstructions() const {
102 if (Instructions.empty()) ReadInstructions();
103 return Instructions;
104 }
105
Chris Lattnera974b202005-09-14 18:02:53 +0000106 CodeGenInstruction &getInstruction(const std::string &Name) const {
107 const std::map<std::string, CodeGenInstruction> &Insts = getInstructions();
108 assert(Insts.count(Name) && "Not an instruction!");
109 return const_cast<CodeGenInstruction&>(Insts.find(Name)->second);
110 }
111
Chris Lattnerec352402004-08-01 05:04:00 +0000112 typedef std::map<std::string,
113 CodeGenInstruction>::const_iterator inst_iterator;
114 inst_iterator inst_begin() const { return getInstructions().begin(); }
115 inst_iterator inst_end() const { return Instructions.end(); }
Chris Lattner26693112004-08-16 01:10:21 +0000116
Chris Lattnerd6488672005-01-22 18:58:51 +0000117 /// getInstructionsByEnumValue - Return all of the instructions defined by the
118 /// target, ordered by their enum value.
119 void getInstructionsByEnumValue(std::vector<const CodeGenInstruction*>
120 &NumberedInstructions);
121
122
Chris Lattner26693112004-08-16 01:10:21 +0000123 /// getPHIInstruction - Return the designated PHI instruction.
124 ///
125 const CodeGenInstruction &getPHIInstruction() const;
Misha Brukman35e83cc2004-10-14 05:50:43 +0000126
127 /// isLittleEndianEncoding - are instruction bit patterns defined as [0..n]?
128 ///
129 bool isLittleEndianEncoding() const;
Chris Lattner45872072003-08-07 05:38:11 +0000130};
131
Brian Gaeked0fde302003-11-11 22:41:34 +0000132} // End llvm namespace
133
Chris Lattner45872072003-08-07 05:38:11 +0000134#endif