[llvm-commits] CVS: llvm/utils/TableGen/CodeGenTarget.cpp CodeGenTarget.h InstrInfoEmitter.cpp InstrSelectorEmitter.cpp InstrSelectorEmitter.h RegisterInfoEmitter.cpp CodeGenWrappers.cpp CodeGenWrappers.h

Chris Lattner lattner at cs.uiuc.edu
Sat Jul 31 21:04:46 PDT 2004



Changes in directory llvm/utils/TableGen:

CodeGenTarget.cpp updated: 1.8 -> 1.9
CodeGenTarget.h updated: 1.7 -> 1.8
InstrInfoEmitter.cpp updated: 1.9 -> 1.10
InstrSelectorEmitter.cpp updated: 1.39 -> 1.40
InstrSelectorEmitter.h updated: 1.23 -> 1.24
RegisterInfoEmitter.cpp updated: 1.16 -> 1.17
CodeGenWrappers.cpp (r1.8) removed
CodeGenWrappers.h (r1.7) removed

---
Log message:

Rename CodeGenWrappers.(cpp|h) -> CodeGenTarget.(cpp|h)


---
Diffs of the changes:  (+13 -14)

Index: llvm/utils/TableGen/CodeGenTarget.cpp
diff -u llvm/utils/TableGen/CodeGenTarget.cpp:1.8 llvm/utils/TableGen/CodeGenTarget.cpp:1.9
--- llvm/utils/TableGen/CodeGenTarget.cpp:1.8	Sat Jul 31 22:55:38 2004
+++ llvm/utils/TableGen/CodeGenTarget.cpp	Sat Jul 31 23:04:35 2004
@@ -1,4 +1,4 @@
-//===- CodeGenWrappers.cpp - Code Generation Class Wrappers -----*- C++ -*-===//
+//===- CodeGenTarget.cpp - CodeGen Target Class Wrapper ---------*- C++ -*-===//
 // 
 //                     The LLVM Compiler Infrastructure
 //
@@ -7,14 +7,14 @@
 // 
 //===----------------------------------------------------------------------===//
 //
-// These classes wrap target description classes used by the various code
+// This class 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 "CodeGenTarget.h"
 #include "Record.h"
 using namespace llvm;
 


Index: llvm/utils/TableGen/CodeGenTarget.h
diff -u llvm/utils/TableGen/CodeGenTarget.h:1.7 llvm/utils/TableGen/CodeGenTarget.h:1.8
--- llvm/utils/TableGen/CodeGenTarget.h:1.7	Tue Nov 11 16:41:34 2003
+++ llvm/utils/TableGen/CodeGenTarget.h	Sat Jul 31 23:04:35 2004
@@ -1,4 +1,4 @@
-//===- CodeGenWrappers.h - Code Generation Class Wrappers -------*- C++ -*-===//
+//===- CodeGenTarget.h - Target Class Wrapper -------------------*- C++ -*-===//
 // 
 //                     The LLVM Compiler Infrastructure
 //
@@ -7,15 +7,15 @@
 // 
 //===----------------------------------------------------------------------===//
 //
-// 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.
+// This file defines wrappers for the Target class and related global
+// functionality.  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
+#ifndef CODEGEN_TARGET_H
+#define CODEGEN_TARGET_H
 
 #include "llvm/CodeGen/ValueTypes.h"
 #include <iosfwd>


Index: llvm/utils/TableGen/InstrInfoEmitter.cpp
diff -u llvm/utils/TableGen/InstrInfoEmitter.cpp:1.9 llvm/utils/TableGen/InstrInfoEmitter.cpp:1.10
--- llvm/utils/TableGen/InstrInfoEmitter.cpp:1.9	Sat Jul 31 22:55:38 2004
+++ llvm/utils/TableGen/InstrInfoEmitter.cpp	Sat Jul 31 23:04:35 2004
@@ -13,7 +13,7 @@
 //===----------------------------------------------------------------------===//
 
 #include "InstrInfoEmitter.h"
-#include "CodeGenWrappers.h"
+#include "CodeGenTarget.h"
 #include "Record.h"
 using namespace llvm;
 


Index: llvm/utils/TableGen/InstrSelectorEmitter.cpp
diff -u llvm/utils/TableGen/InstrSelectorEmitter.cpp:1.39 llvm/utils/TableGen/InstrSelectorEmitter.cpp:1.40
--- llvm/utils/TableGen/InstrSelectorEmitter.cpp:1.39	Sat Jul 31 22:55:38 2004
+++ llvm/utils/TableGen/InstrSelectorEmitter.cpp	Sat Jul 31 23:04:35 2004
@@ -13,7 +13,6 @@
 //===----------------------------------------------------------------------===//
 
 #include "InstrSelectorEmitter.h"
-#include "CodeGenWrappers.h"
 #include "Record.h"
 #include "Support/Debug.h"
 #include "Support/StringExtras.h"


Index: llvm/utils/TableGen/InstrSelectorEmitter.h
diff -u llvm/utils/TableGen/InstrSelectorEmitter.h:1.23 llvm/utils/TableGen/InstrSelectorEmitter.h:1.24
--- llvm/utils/TableGen/InstrSelectorEmitter.h:1.23	Tue Nov 11 16:41:34 2003
+++ llvm/utils/TableGen/InstrSelectorEmitter.h	Sat Jul 31 23:04:35 2004
@@ -16,7 +16,7 @@
 #define INSTRSELECTOR_EMITTER_H
 
 #include "TableGenBackend.h"
-#include "CodeGenWrappers.h"
+#include "CodeGenTarget.h"
 #include <vector>
 #include <map>
 #include <cassert>


Index: llvm/utils/TableGen/RegisterInfoEmitter.cpp
diff -u llvm/utils/TableGen/RegisterInfoEmitter.cpp:1.16 llvm/utils/TableGen/RegisterInfoEmitter.cpp:1.17
--- llvm/utils/TableGen/RegisterInfoEmitter.cpp:1.16	Sat Jul 31 22:55:38 2004
+++ llvm/utils/TableGen/RegisterInfoEmitter.cpp	Sat Jul 31 23:04:35 2004
@@ -14,7 +14,7 @@
 //===----------------------------------------------------------------------===//
 
 #include "RegisterInfoEmitter.h"
-#include "CodeGenWrappers.h"
+#include "CodeGenTarget.h"
 #include "Record.h"
 #include "Support/StringExtras.h"
 #include <set>





More information about the llvm-commits mailing list