Chris Lattner | 803a5f6 | 2004-08-01 04:04:35 +0000 | [diff] [blame] | 1 | //===- CodeGenTarget.h - Target Class Wrapper -------------------*- C++ -*-===// |
John Criswell | 01d4582 | 2003-10-20 20:20:30 +0000 | [diff] [blame] | 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 | //===----------------------------------------------------------------------===// |
Chris Lattner | 4587207 | 2003-08-07 05:38:11 +0000 | [diff] [blame] | 9 | // |
Chris Lattner | 803a5f6 | 2004-08-01 04:04:35 +0000 | [diff] [blame] | 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. |
Chris Lattner | 4587207 | 2003-08-07 05:38:11 +0000 | [diff] [blame] | 14 | // |
| 15 | //===----------------------------------------------------------------------===// |
| 16 | |
Chris Lattner | 803a5f6 | 2004-08-01 04:04:35 +0000 | [diff] [blame] | 17 | #ifndef CODEGEN_TARGET_H |
| 18 | #define CODEGEN_TARGET_H |
Chris Lattner | 4587207 | 2003-08-07 05:38:11 +0000 | [diff] [blame] | 19 | |
| 20 | #include "llvm/CodeGen/ValueTypes.h" |
| 21 | #include <iosfwd> |
Misha Brukman | 6ad9076 | 2003-08-13 22:27:15 +0000 | [diff] [blame] | 22 | #include <string> |
Chris Lattner | 4587207 | 2003-08-07 05:38:11 +0000 | [diff] [blame] | 23 | #include <vector> |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 24 | |
| 25 | namespace llvm { |
| 26 | |
Chris Lattner | 4587207 | 2003-08-07 05:38:11 +0000 | [diff] [blame] | 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); |
Chris Lattner | d3464c1 | 2003-08-07 23:15:21 +0000 | [diff] [blame] | 35 | std::string getName(MVT::ValueType T); |
Chris Lattner | b72fb7e | 2003-08-10 19:50:32 +0000 | [diff] [blame] | 36 | std::string getEnumName(MVT::ValueType T); |
Chris Lattner | 4587207 | 2003-08-07 05:38:11 +0000 | [diff] [blame] | 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 | public: |
| 47 | CodeGenTarget(); |
| 48 | |
| 49 | Record *getTargetRecord() const { return TargetRec; } |
| 50 | const std::string &getName() const; |
| 51 | |
| 52 | const std::vector<Record*> &getCalleeSavedRegisters() const { |
| 53 | return CalleeSavedRegisters; |
| 54 | } |
| 55 | |
Chris Lattner | 54c66fe | 2003-08-07 06:01:44 +0000 | [diff] [blame] | 56 | MVT::ValueType getPointerType() const { return PointerType; } |
| 57 | |
Chris Lattner | 4587207 | 2003-08-07 05:38:11 +0000 | [diff] [blame] | 58 | // getInstructionSet - Return the InstructionSet object... |
| 59 | Record *getInstructionSet() const; |
| 60 | |
| 61 | // getInstructionSet - Return the CodeGenInstructionSet object for this |
| 62 | // target, lazily reading it from the record keeper as needed. |
| 63 | // CodeGenInstructionSet *getInstructionSet - |
| 64 | }; |
| 65 | |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 66 | } // End llvm namespace |
| 67 | |
Chris Lattner | 4587207 | 2003-08-07 05:38:11 +0000 | [diff] [blame] | 68 | #endif |