blob: d74e8872a3ed323649dbdb8284d26428b8437bad [file] [log] [blame]
Chris Lattnerfce96032004-08-01 04:04:35 +00001//===- CodeGenTarget.h - Target Class Wrapper -------------------*- C++ -*-===//
John Criswelld3032032003-10-20 20:20:30 +00002//
3// 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.
7//
8//===----------------------------------------------------------------------===//
Chris Lattnerf5bd1b72003-10-05 19:27:59 +00009//
Chris Lattnerfce96032004-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 Lattnerf5bd1b72003-10-05 19:27:59 +000014//
15//===----------------------------------------------------------------------===//
16
Chris Lattnerfce96032004-08-01 04:04:35 +000017#ifndef CODEGEN_TARGET_H
18#define CODEGEN_TARGET_H
Chris Lattnerf5bd1b72003-10-05 19:27:59 +000019
Chris Lattner8af61dd2004-08-16 01:10:21 +000020#include "CodeGenRegisters.h"
Chris Lattnerc860eca2004-08-01 05:04:00 +000021#include "CodeGenInstruction.h"
Chris Lattnerf5bd1b72003-10-05 19:27:59 +000022#include <iosfwd>
Chris Lattnerc860eca2004-08-01 05:04:00 +000023#include <map>
Brian Gaeke960707c2003-11-11 22:41:34 +000024
25namespace llvm {
26
Chris Lattnerf5bd1b72003-10-05 19:27:59 +000027class Record;
28class RecordKeeper;
Chris Lattner8af61dd2004-08-16 01:10:21 +000029class CodeGenRegister;
Chris Lattnerf5bd1b72003-10-05 19:27:59 +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);
36std::string getName(MVT::ValueType T);
37std::string getEnumName(MVT::ValueType T);
38
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 Lattnerc860eca2004-08-01 05:04:00 +000047 mutable std::map<std::string, CodeGenInstruction> Instructions;
Chris Lattner8af61dd2004-08-16 01:10:21 +000048 mutable std::vector<CodeGenRegister> Registers;
Chris Lattner2a86fab2004-08-21 04:05:00 +000049 mutable std::vector<CodeGenRegisterClass> RegisterClasses;
Chris Lattner8af61dd2004-08-16 01:10:21 +000050 void ReadRegisters() const;
Chris Lattner2a86fab2004-08-21 04:05:00 +000051 void ReadRegisterClasses() const;
52 void ReadInstructions() const;
Chris Lattnerf5bd1b72003-10-05 19:27:59 +000053public:
54 CodeGenTarget();
55
56 Record *getTargetRecord() const { return TargetRec; }
57 const std::string &getName() const;
58
59 const std::vector<Record*> &getCalleeSavedRegisters() const {
60 return CalleeSavedRegisters;
61 }
62
63 MVT::ValueType getPointerType() const { return PointerType; }
64
Chris Lattner6ffa5012004-08-14 22:50:53 +000065 /// getInstructionSet - Return the InstructionSet object.
Chris Lattnerc860eca2004-08-01 05:04:00 +000066 ///
Chris Lattnerf5bd1b72003-10-05 19:27:59 +000067 Record *getInstructionSet() const;
68
Chris Lattner6ffa5012004-08-14 22:50:53 +000069 /// getAsmWriter - Return the AssemblyWriter definition for this target.
70 ///
71 Record *getAsmWriter() const;
72
Chris Lattner8af61dd2004-08-16 01:10:21 +000073 const std::vector<CodeGenRegister> &getRegisters() {
74 if (Registers.empty()) ReadRegisters();
75 return Registers;
76 }
Chris Lattnerc860eca2004-08-01 05:04:00 +000077
Chris Lattner2a86fab2004-08-21 04:05:00 +000078 const std::vector<CodeGenRegisterClass> getRegisterClasses() {
79 if (RegisterClasses.empty()) ReadRegisterClasses();
80 return RegisterClasses;
81 }
82
83
Chris Lattnerc860eca2004-08-01 05:04:00 +000084 /// getInstructions - Return all of the instructions defined for this target.
85 ///
86 const std::map<std::string, CodeGenInstruction> &getInstructions() const {
87 if (Instructions.empty()) ReadInstructions();
88 return Instructions;
89 }
90
91 typedef std::map<std::string,
92 CodeGenInstruction>::const_iterator inst_iterator;
93 inst_iterator inst_begin() const { return getInstructions().begin(); }
94 inst_iterator inst_end() const { return Instructions.end(); }
Chris Lattner8af61dd2004-08-16 01:10:21 +000095
96 /// getPHIInstruction - Return the designated PHI instruction.
97 ///
98 const CodeGenInstruction &getPHIInstruction() const;
Misha Brukman243ded52004-10-14 05:50:43 +000099
100 /// isLittleEndianEncoding - are instruction bit patterns defined as [0..n]?
101 ///
102 bool isLittleEndianEncoding() const;
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000103};
104
Brian Gaeke960707c2003-11-11 22:41:34 +0000105} // End llvm namespace
106
Chris Lattnerf5bd1b72003-10-05 19:27:59 +0000107#endif