Initial checkin of useful wrappers around the Target classes, for now, only ValueType and
authorChris Lattner <sabre@nondot.org>
Thu, 7 Aug 2003 05:38:11 +0000 (05:38 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 7 Aug 2003 05:38:11 +0000 (05:38 +0000)
Target are wrapped

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7665 91177308-0d34-0410-b5e6-96231b3b80d8

support/tools/TableGen/CodeGenWrappers.cpp [new file with mode: 0644]
support/tools/TableGen/CodeGenWrappers.h [new file with mode: 0644]
utils/TableGen/CodeGenTarget.cpp [new file with mode: 0644]
utils/TableGen/CodeGenTarget.h [new file with mode: 0644]
utils/TableGen/CodeGenWrappers.cpp [new file with mode: 0644]
utils/TableGen/CodeGenWrappers.h [new file with mode: 0644]

diff --git a/support/tools/TableGen/CodeGenWrappers.cpp b/support/tools/TableGen/CodeGenWrappers.cpp
new file mode 100644 (file)
index 0000000..4987aeb
--- /dev/null
@@ -0,0 +1,66 @@
+//===- CodeGenWrappers.cpp - Code Generation Class Wrappers -----*- C++ -*-===//
+//
+// These classes wrap target description classes used by the various code
+// generation TableGen backends.  This makes it easier to access the data and
+// provides a single place that needs to check it for validity.  All of these
+// classes throw exceptions on error conditions.
+//
+//===----------------------------------------------------------------------===//
+
+#include "CodeGenWrappers.h"
+#include "Record.h"
+
+/// getValueType - Return the MCV::ValueType that the specified TableGen record
+/// corresponds to.
+MVT::ValueType getValueType(Record *Rec) {
+  return (MVT::ValueType)Rec->getValueAsInt("Value");
+}
+
+std::ostream &operator<<(std::ostream &OS, MVT::ValueType T) {
+  switch (T) {
+  case MVT::Other: return OS << "UNKNOWN";
+  case MVT::i1:    return OS << "i1";
+  case MVT::i8:    return OS << "i8";
+  case MVT::i16:   return OS << "i16";
+  case MVT::i32:   return OS << "i32";
+  case MVT::i64:   return OS << "i64";
+  case MVT::i128:  return OS << "i128";
+  case MVT::f32:   return OS << "f32";
+  case MVT::f64:   return OS << "f64";
+  case MVT::f80:   return OS << "f80";
+  case MVT::f128:  return OS << "f128";
+  case MVT::isVoid:return OS << "void";
+  }
+  return OS;
+}
+
+
+
+/// getTarget - Return the current instance of the Target class.
+///
+CodeGenTarget::CodeGenTarget() {
+  std::vector<Record*> Targets = Records.getAllDerivedDefinitions("Target");
+  if (Targets.size() != 1)
+    throw std::string("ERROR: Multiple subclasses of Target defined!");
+  TargetRec = Targets[0];
+
+  // Read in all of the CalleeSavedRegisters...
+  ListInit *LI = TargetRec->getValueAsListInit("CalleeSavedRegisters");
+  for (unsigned i = 0, e = LI->getSize(); i != e; ++i)
+    if (DefInit *DI = dynamic_cast<DefInit*>(LI->getElement(i)))
+      CalleeSavedRegisters.push_back(DI->getDef());
+    else
+      throw "Target: " + TargetRec->getName() +
+            " expected register definition in CalleeSavedRegisters list!";
+
+  PointerType = getValueType(TargetRec->getValueAsDef("PointerType"));
+}
+
+
+const std::string &CodeGenTarget::getName() const {
+  return TargetRec->getName();
+}
+
+Record *CodeGenTarget::getInstructionSet() const {
+  return TargetRec->getValueAsDef("InstructionSet");
+}
diff --git a/support/tools/TableGen/CodeGenWrappers.h b/support/tools/TableGen/CodeGenWrappers.h
new file mode 100644 (file)
index 0000000..c50d057
--- /dev/null
@@ -0,0 +1,52 @@
+//===- CodeGenWrappers.h - Code Generation Class Wrappers -------*- C++ -*-===//
+//
+// These classes wrap target description classes used by the various code
+// generation TableGen backends.  This makes it easier to access the data and
+// provides a single place that needs to check it for validity.  All of these
+// classes throw exceptions on error conditions.
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef CODEGENWRAPPERS_H
+#define CODEGENWRAPPERS_H
+
+#include "llvm/CodeGen/ValueTypes.h"
+#include <iosfwd>
+#include <vector>
+class Record;
+class RecordKeeper;
+
+/// getValueType - Return the MVT::ValueType that the specified TableGen record
+/// corresponds to.
+MVT::ValueType getValueType(Record *Rec);
+
+std::ostream &operator<<(std::ostream &OS, MVT::ValueType T);
+
+
+
+/// CodeGenTarget - This class corresponds to the Target class in the .td files.
+///
+class CodeGenTarget {
+  Record *TargetRec;
+  std::vector<Record*> CalleeSavedRegisters;
+  MVT::ValueType PointerType;
+
+public:
+  CodeGenTarget();
+
+  Record *getTargetRecord() const { return TargetRec; }
+  const std::string &getName() const;
+
+  const std::vector<Record*> &getCalleeSavedRegisters() const {
+    return CalleeSavedRegisters;
+  }
+
+  // getInstructionSet - Return the InstructionSet object...
+  Record *getInstructionSet() const;
+
+  // getInstructionSet - Return the CodeGenInstructionSet object for this
+  // target, lazily reading it from the record keeper as needed.
+  // CodeGenInstructionSet *getInstructionSet -
+};
+
+#endif
diff --git a/utils/TableGen/CodeGenTarget.cpp b/utils/TableGen/CodeGenTarget.cpp
new file mode 100644 (file)
index 0000000..4987aeb
--- /dev/null
@@ -0,0 +1,66 @@
+//===- CodeGenWrappers.cpp - Code Generation Class Wrappers -----*- C++ -*-===//
+//
+// These classes wrap target description classes used by the various code
+// generation TableGen backends.  This makes it easier to access the data and
+// provides a single place that needs to check it for validity.  All of these
+// classes throw exceptions on error conditions.
+//
+//===----------------------------------------------------------------------===//
+
+#include "CodeGenWrappers.h"
+#include "Record.h"
+
+/// getValueType - Return the MCV::ValueType that the specified TableGen record
+/// corresponds to.
+MVT::ValueType getValueType(Record *Rec) {
+  return (MVT::ValueType)Rec->getValueAsInt("Value");
+}
+
+std::ostream &operator<<(std::ostream &OS, MVT::ValueType T) {
+  switch (T) {
+  case MVT::Other: return OS << "UNKNOWN";
+  case MVT::i1:    return OS << "i1";
+  case MVT::i8:    return OS << "i8";
+  case MVT::i16:   return OS << "i16";
+  case MVT::i32:   return OS << "i32";
+  case MVT::i64:   return OS << "i64";
+  case MVT::i128:  return OS << "i128";
+  case MVT::f32:   return OS << "f32";
+  case MVT::f64:   return OS << "f64";
+  case MVT::f80:   return OS << "f80";
+  case MVT::f128:  return OS << "f128";
+  case MVT::isVoid:return OS << "void";
+  }
+  return OS;
+}
+
+
+
+/// getTarget - Return the current instance of the Target class.
+///
+CodeGenTarget::CodeGenTarget() {
+  std::vector<Record*> Targets = Records.getAllDerivedDefinitions("Target");
+  if (Targets.size() != 1)
+    throw std::string("ERROR: Multiple subclasses of Target defined!");
+  TargetRec = Targets[0];
+
+  // Read in all of the CalleeSavedRegisters...
+  ListInit *LI = TargetRec->getValueAsListInit("CalleeSavedRegisters");
+  for (unsigned i = 0, e = LI->getSize(); i != e; ++i)
+    if (DefInit *DI = dynamic_cast<DefInit*>(LI->getElement(i)))
+      CalleeSavedRegisters.push_back(DI->getDef());
+    else
+      throw "Target: " + TargetRec->getName() +
+            " expected register definition in CalleeSavedRegisters list!";
+
+  PointerType = getValueType(TargetRec->getValueAsDef("PointerType"));
+}
+
+
+const std::string &CodeGenTarget::getName() const {
+  return TargetRec->getName();
+}
+
+Record *CodeGenTarget::getInstructionSet() const {
+  return TargetRec->getValueAsDef("InstructionSet");
+}
diff --git a/utils/TableGen/CodeGenTarget.h b/utils/TableGen/CodeGenTarget.h
new file mode 100644 (file)
index 0000000..c50d057
--- /dev/null
@@ -0,0 +1,52 @@
+//===- CodeGenWrappers.h - Code Generation Class Wrappers -------*- C++ -*-===//
+//
+// These classes wrap target description classes used by the various code
+// generation TableGen backends.  This makes it easier to access the data and
+// provides a single place that needs to check it for validity.  All of these
+// classes throw exceptions on error conditions.
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef CODEGENWRAPPERS_H
+#define CODEGENWRAPPERS_H
+
+#include "llvm/CodeGen/ValueTypes.h"
+#include <iosfwd>
+#include <vector>
+class Record;
+class RecordKeeper;
+
+/// getValueType - Return the MVT::ValueType that the specified TableGen record
+/// corresponds to.
+MVT::ValueType getValueType(Record *Rec);
+
+std::ostream &operator<<(std::ostream &OS, MVT::ValueType T);
+
+
+
+/// CodeGenTarget - This class corresponds to the Target class in the .td files.
+///
+class CodeGenTarget {
+  Record *TargetRec;
+  std::vector<Record*> CalleeSavedRegisters;
+  MVT::ValueType PointerType;
+
+public:
+  CodeGenTarget();
+
+  Record *getTargetRecord() const { return TargetRec; }
+  const std::string &getName() const;
+
+  const std::vector<Record*> &getCalleeSavedRegisters() const {
+    return CalleeSavedRegisters;
+  }
+
+  // getInstructionSet - Return the InstructionSet object...
+  Record *getInstructionSet() const;
+
+  // getInstructionSet - Return the CodeGenInstructionSet object for this
+  // target, lazily reading it from the record keeper as needed.
+  // CodeGenInstructionSet *getInstructionSet -
+};
+
+#endif
diff --git a/utils/TableGen/CodeGenWrappers.cpp b/utils/TableGen/CodeGenWrappers.cpp
new file mode 100644 (file)
index 0000000..4987aeb
--- /dev/null
@@ -0,0 +1,66 @@
+//===- CodeGenWrappers.cpp - Code Generation Class Wrappers -----*- C++ -*-===//
+//
+// These classes wrap target description classes used by the various code
+// generation TableGen backends.  This makes it easier to access the data and
+// provides a single place that needs to check it for validity.  All of these
+// classes throw exceptions on error conditions.
+//
+//===----------------------------------------------------------------------===//
+
+#include "CodeGenWrappers.h"
+#include "Record.h"
+
+/// getValueType - Return the MCV::ValueType that the specified TableGen record
+/// corresponds to.
+MVT::ValueType getValueType(Record *Rec) {
+  return (MVT::ValueType)Rec->getValueAsInt("Value");
+}
+
+std::ostream &operator<<(std::ostream &OS, MVT::ValueType T) {
+  switch (T) {
+  case MVT::Other: return OS << "UNKNOWN";
+  case MVT::i1:    return OS << "i1";
+  case MVT::i8:    return OS << "i8";
+  case MVT::i16:   return OS << "i16";
+  case MVT::i32:   return OS << "i32";
+  case MVT::i64:   return OS << "i64";
+  case MVT::i128:  return OS << "i128";
+  case MVT::f32:   return OS << "f32";
+  case MVT::f64:   return OS << "f64";
+  case MVT::f80:   return OS << "f80";
+  case MVT::f128:  return OS << "f128";
+  case MVT::isVoid:return OS << "void";
+  }
+  return OS;
+}
+
+
+
+/// getTarget - Return the current instance of the Target class.
+///
+CodeGenTarget::CodeGenTarget() {
+  std::vector<Record*> Targets = Records.getAllDerivedDefinitions("Target");
+  if (Targets.size() != 1)
+    throw std::string("ERROR: Multiple subclasses of Target defined!");
+  TargetRec = Targets[0];
+
+  // Read in all of the CalleeSavedRegisters...
+  ListInit *LI = TargetRec->getValueAsListInit("CalleeSavedRegisters");
+  for (unsigned i = 0, e = LI->getSize(); i != e; ++i)
+    if (DefInit *DI = dynamic_cast<DefInit*>(LI->getElement(i)))
+      CalleeSavedRegisters.push_back(DI->getDef());
+    else
+      throw "Target: " + TargetRec->getName() +
+            " expected register definition in CalleeSavedRegisters list!";
+
+  PointerType = getValueType(TargetRec->getValueAsDef("PointerType"));
+}
+
+
+const std::string &CodeGenTarget::getName() const {
+  return TargetRec->getName();
+}
+
+Record *CodeGenTarget::getInstructionSet() const {
+  return TargetRec->getValueAsDef("InstructionSet");
+}
diff --git a/utils/TableGen/CodeGenWrappers.h b/utils/TableGen/CodeGenWrappers.h
new file mode 100644 (file)
index 0000000..c50d057
--- /dev/null
@@ -0,0 +1,52 @@
+//===- CodeGenWrappers.h - Code Generation Class Wrappers -------*- C++ -*-===//
+//
+// These classes wrap target description classes used by the various code
+// generation TableGen backends.  This makes it easier to access the data and
+// provides a single place that needs to check it for validity.  All of these
+// classes throw exceptions on error conditions.
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef CODEGENWRAPPERS_H
+#define CODEGENWRAPPERS_H
+
+#include "llvm/CodeGen/ValueTypes.h"
+#include <iosfwd>
+#include <vector>
+class Record;
+class RecordKeeper;
+
+/// getValueType - Return the MVT::ValueType that the specified TableGen record
+/// corresponds to.
+MVT::ValueType getValueType(Record *Rec);
+
+std::ostream &operator<<(std::ostream &OS, MVT::ValueType T);
+
+
+
+/// CodeGenTarget - This class corresponds to the Target class in the .td files.
+///
+class CodeGenTarget {
+  Record *TargetRec;
+  std::vector<Record*> CalleeSavedRegisters;
+  MVT::ValueType PointerType;
+
+public:
+  CodeGenTarget();
+
+  Record *getTargetRecord() const { return TargetRec; }
+  const std::string &getName() const;
+
+  const std::vector<Record*> &getCalleeSavedRegisters() const {
+    return CalleeSavedRegisters;
+  }
+
+  // getInstructionSet - Return the InstructionSet object...
+  Record *getInstructionSet() const;
+
+  // getInstructionSet - Return the CodeGenInstructionSet object for this
+  // target, lazily reading it from the record keeper as needed.
+  // CodeGenInstructionSet *getInstructionSet -
+};
+
+#endif