blob: 218fef8214675e024aadc49b855d0aef7d6d44a1 [file] [log] [blame]
Chris Lattner803a5f62004-08-01 04:04:35 +00001//===- CodeGenTarget.h - Target Class Wrapper -------------------*- C++ -*-===//
John Criswell01d45822003-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 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 Lattnerec352402004-08-01 05:04:00 +000020#include "CodeGenInstruction.h"
Chris Lattner45872072003-08-07 05:38:11 +000021#include <iosfwd>
Chris Lattnerec352402004-08-01 05:04:00 +000022#include <map>
Brian Gaeked0fde302003-11-11 22:41:34 +000023
24namespace llvm {
25
Chris Lattner45872072003-08-07 05:38:11 +000026class Record;
27class RecordKeeper;
28
29/// getValueType - Return the MVT::ValueType that the specified TableGen record
30/// corresponds to.
31MVT::ValueType getValueType(Record *Rec);
32
33std::ostream &operator<<(std::ostream &OS, MVT::ValueType T);
Chris Lattnerd3464c12003-08-07 23:15:21 +000034std::string getName(MVT::ValueType T);
Chris Lattnerb72fb7e2003-08-10 19:50:32 +000035std::string getEnumName(MVT::ValueType T);
Chris Lattner45872072003-08-07 05:38:11 +000036
37
38/// CodeGenTarget - This class corresponds to the Target class in the .td files.
39///
40class CodeGenTarget {
41 Record *TargetRec;
42 std::vector<Record*> CalleeSavedRegisters;
43 MVT::ValueType PointerType;
44
Chris Lattnerec352402004-08-01 05:04:00 +000045 mutable std::map<std::string, CodeGenInstruction> Instructions;
46 void ReadInstructions() const;
Chris Lattner45872072003-08-07 05:38:11 +000047public:
48 CodeGenTarget();
49
50 Record *getTargetRecord() const { return TargetRec; }
51 const std::string &getName() const;
52
53 const std::vector<Record*> &getCalleeSavedRegisters() const {
54 return CalleeSavedRegisters;
55 }
56
Chris Lattner54c66fe2003-08-07 06:01:44 +000057 MVT::ValueType getPointerType() const { return PointerType; }
58
Chris Lattner175580c2004-08-14 22:50:53 +000059 /// getInstructionSet - Return the InstructionSet object.
Chris Lattnerec352402004-08-01 05:04:00 +000060 ///
Chris Lattner45872072003-08-07 05:38:11 +000061 Record *getInstructionSet() const;
62
Chris Lattner175580c2004-08-14 22:50:53 +000063 /// getAsmWriter - Return the AssemblyWriter definition for this target.
64 ///
65 Record *getAsmWriter() const;
66
Chris Lattnerec352402004-08-01 05:04:00 +000067 /// getPHIInstruction - Return the designated PHI instruction.
68 const CodeGenInstruction &getPHIInstruction() const;
69
70 /// getInstructions - Return all of the instructions defined for this target.
71 ///
72 const std::map<std::string, CodeGenInstruction> &getInstructions() const {
73 if (Instructions.empty()) ReadInstructions();
74 return Instructions;
75 }
76
77 typedef std::map<std::string,
78 CodeGenInstruction>::const_iterator inst_iterator;
79 inst_iterator inst_begin() const { return getInstructions().begin(); }
80 inst_iterator inst_end() const { return Instructions.end(); }
Chris Lattner45872072003-08-07 05:38:11 +000081};
82
Brian Gaeked0fde302003-11-11 22:41:34 +000083} // End llvm namespace
84
Chris Lattner45872072003-08-07 05:38:11 +000085#endif