The TargetObjInfo object goes here.
authorBill Wendling <isanbard@gmail.com>
Wed, 17 Jan 2007 03:48:29 +0000 (03:48 +0000)
committerBill Wendling <isanbard@gmail.com>
Wed, 17 Jan 2007 03:48:29 +0000 (03:48 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33288 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Target/TargetMachine.h

index 13b0d37d5b4a7052b6992ba7659950c3253326da..f69751d22fb02644cea96a25813d6ff5b585f32e 100644 (file)
@@ -21,6 +21,7 @@
 namespace llvm {
 
 class TargetAsmInfo;
+class TargetObjInfo;
 class TargetData;
 class TargetSubtarget;
 class TargetInstrInfo;
@@ -66,7 +67,7 @@ class TargetMachine {
   TargetMachine(const TargetMachine &);   // DO NOT IMPLEMENT
   void operator=(const TargetMachine &);  // DO NOT IMPLEMENT
 protected: // Can only create subclasses.
-  TargetMachine() : AsmInfo(NULL) { }
+  TargetMachine() : AsmInfo(NULL), ObjInfo(NULL) { }
 
   /// getSubtargetImpl - virtual method implemented by subclasses that returns
   /// a reference to that target's TargetSubtarget-derived member variable.
@@ -75,11 +76,19 @@ protected: // Can only create subclasses.
   /// AsmInfo - Contains target specific asm information.
   ///
   mutable const TargetAsmInfo *AsmInfo;
-  
+
   /// createTargetAsmInfo - Create a new instance of target specific asm
   /// information.
   virtual const TargetAsmInfo *createTargetAsmInfo() const { return NULL; }
 
+  /// ObjInfo - Contains target specific object file information.
+  /// 
+  mutable const TargetObjInfo *ObjInfo;
+  
+  /// createTargetObjInfo - Create a new instance of target specific object
+  /// information.
+  virtual const TargetObjInfo *createTargetObjInfo() const { return NULL; }
+
 public:
   virtual ~TargetMachine();
 
@@ -107,7 +116,6 @@ public:
   virtual       TargetLowering    *getTargetLowering() const { return 0; }
   virtual const TargetData            *getTargetData() const { return 0; }
   
-  
   /// getTargetAsmInfo - Return target specific asm information.
   ///
   const TargetAsmInfo *getTargetAsmInfo() const {
@@ -115,6 +123,13 @@ public:
     return AsmInfo;
   }
   
+  /// getTargetObjInfo - Return target specific object information.
+  ///
+  const TargetObjInfo *getTargetObjInfo() const {
+    if (!ObjInfo) ObjInfo = createTargetObjInfo();
+    return ObjInfo;
+  }
+  
   /// getSubtarget - This method returns a pointer to the specified type of
   /// TargetSubtarget.  In debug builds, it verifies that the object being
   /// returned is of the correct type.