Add, and start using, the CodeGenInstruction class. This class represents
[oota-llvm.git] / utils / TableGen / CodeGenTarget.h
1 //===- CodeGenTarget.h - Target Class Wrapper -------------------*- C++ -*-===//
2 // 
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 //===----------------------------------------------------------------------===//
9 //
10 // 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.
14 //
15 //===----------------------------------------------------------------------===//
16
17 #ifndef CODEGEN_TARGET_H
18 #define CODEGEN_TARGET_H
19
20 #include "CodeGenInstruction.h"
21 #include "llvm/CodeGen/ValueTypes.h"
22 #include <iosfwd>
23 #include <map>
24
25 namespace llvm {
26
27 class Record;
28 class RecordKeeper;
29
30 /// getValueType - Return the MVT::ValueType that the specified TableGen record
31 /// corresponds to.
32 MVT::ValueType getValueType(Record *Rec);
33
34 std::ostream &operator<<(std::ostream &OS, MVT::ValueType T);
35 std::string getName(MVT::ValueType T);
36 std::string getEnumName(MVT::ValueType T);
37
38
39 /// CodeGenTarget - This class corresponds to the Target class in the .td files.
40 ///
41 class CodeGenTarget {
42   Record *TargetRec;
43   std::vector<Record*> CalleeSavedRegisters;
44   MVT::ValueType PointerType;
45
46   mutable std::map<std::string, CodeGenInstruction> Instructions;
47   void ReadInstructions() const;
48 public:
49   CodeGenTarget();
50
51   Record *getTargetRecord() const { return TargetRec; }
52   const std::string &getName() const;
53
54   const std::vector<Record*> &getCalleeSavedRegisters() const {
55     return CalleeSavedRegisters;
56   }
57
58   MVT::ValueType getPointerType() const { return PointerType; }
59
60   // getInstructionSet - Return the InstructionSet object.
61   ///
62   Record *getInstructionSet() const;
63
64   /// getPHIInstruction - Return the designated PHI instruction.
65   const CodeGenInstruction &getPHIInstruction() const;
66
67   /// getInstructions - Return all of the instructions defined for this target.
68   ///
69   const std::map<std::string, CodeGenInstruction> &getInstructions() const {
70     if (Instructions.empty()) ReadInstructions();
71     return Instructions;
72   }
73
74   typedef std::map<std::string,
75                    CodeGenInstruction>::const_iterator inst_iterator;
76   inst_iterator inst_begin() const { return getInstructions().begin(); }
77   inst_iterator inst_end() const { return Instructions.end(); }
78 };
79
80 } // End llvm namespace
81
82 #endif