[llvm-commits] [llvm] r44446 - in /llvm/trunk: include/llvm/CodeGen/MachineModuleInfo.h lib/CodeGen/MachineModuleInfo.cpp

Devang Patel dpatel at apple.com
Thu Nov 29 16:51:36 PST 2007


Author: dpatel
Date: Thu Nov 29 18:51:33 2007
New Revision: 44446

URL: http://llvm.org/viewvc/llvm-project?rev=44446&view=rev
Log:
Provide a way to update DescGlobals cache directly.

Modified:
    llvm/trunk/include/llvm/CodeGen/MachineModuleInfo.h
    llvm/trunk/lib/CodeGen/MachineModuleInfo.cpp

Modified: llvm/trunk/include/llvm/CodeGen/MachineModuleInfo.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/MachineModuleInfo.h?rev=44446&r1=44445&r2=44446&view=diff

==============================================================================
--- llvm/trunk/include/llvm/CodeGen/MachineModuleInfo.h (original)
+++ llvm/trunk/include/llvm/CodeGen/MachineModuleInfo.h Thu Nov 29 18:51:33 2007
@@ -755,6 +755,10 @@
   DIDeserializer() {}
   ~DIDeserializer() {}
   
+  const std::map<GlobalVariable *, DebugInfoDesc *> &getGlobalDescs() const {
+    return GlobalDescs;
+  }
+
   /// Deserialize - Reconstitute a GlobalVariable into it's component
   /// DebugInfoDesc objects.
   DebugInfoDesc *Deserialize(Value *V);
@@ -810,6 +814,9 @@
   /// Serialize - Recursively cast the specified descriptor into a
   /// GlobalVariable so that it can be serialized to a .bc or .ll file.
   GlobalVariable *Serialize(DebugInfoDesc *DD);
+
+  /// addDescriptor - Directly connect DD with existing GV.
+  void addDescriptor(DebugInfoDesc *DD, GlobalVariable *GV);
 };
 
 //===----------------------------------------------------------------------===//
@@ -1164,7 +1171,7 @@
     std::vector<T *> AnchoredDescs;
     for (unsigned i = 0, N = Globals.size(); i < N; ++i) {
       GlobalVariable *GV = Globals[i];
-      
+
       // FIXME - In the short term, changes are too drastic to continue.
       if (DebugInfoDesc::TagFromGlobal(GV) == Desc.getTag() &&
           DebugInfoDesc::VersionFromGlobal(GV) == LLVMDebugVersion) {
@@ -1276,6 +1283,7 @@
   /// of one is required to emit exception handling info.
   Function *getPersonality() const;
 
+  DIDeserializer *getDIDeserializer() { return &DR; }
 }; // End class MachineModuleInfo
 
 } // End llvm namespace

Modified: llvm/trunk/lib/CodeGen/MachineModuleInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/MachineModuleInfo.cpp?rev=44446&r1=44445&r2=44446&view=diff

==============================================================================
--- llvm/trunk/lib/CodeGen/MachineModuleInfo.cpp (original)
+++ llvm/trunk/lib/CodeGen/MachineModuleInfo.cpp Thu Nov 29 18:51:33 2007
@@ -1364,6 +1364,12 @@
   return GV;
 }
 
+/// addDescriptor - Directly connect DD with existing GV.
+void DISerializer::addDescriptor(DebugInfoDesc *DD,
+                                 GlobalVariable *GV) {
+  DescGlobals[DD] = GV;
+}
+
 //===----------------------------------------------------------------------===//
 
 /// Verify - Return true if the GlobalVariable appears to be a valid





More information about the llvm-commits mailing list