blob: aad277c516acc38601f57af0dc4dd50a1601716e [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
20#include "llvm/CodeGen/ValueTypes.h"
21#include <iosfwd>
22#include <string>
23#include <vector>
Brian Gaeke960707c2003-11-11 22:41:34 +000024
25namespace llvm {
26
Chris Lattnerf5bd1b72003-10-05 19:27:59 +000027class Record;
28class RecordKeeper;
29
30/// getValueType - Return the MVT::ValueType that the specified TableGen record
31/// corresponds to.
32MVT::ValueType getValueType(Record *Rec);
33
34std::ostream &operator<<(std::ostream &OS, MVT::ValueType T);
35std::string getName(MVT::ValueType T);
36std::string getEnumName(MVT::ValueType T);
37
38
39/// CodeGenTarget - This class corresponds to the Target class in the .td files.
40///
41class CodeGenTarget {
42 Record *TargetRec;
43 std::vector<Record*> CalleeSavedRegisters;
44 MVT::ValueType PointerType;
45
46public:
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
56 MVT::ValueType getPointerType() const { return PointerType; }
57
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 Gaeke960707c2003-11-11 22:41:34 +000066} // End llvm namespace
67
Chris Lattnerf5bd1b72003-10-05 19:27:59 +000068#endif