Added support for processing abbreviations in the Deserializer.
authorTed Kremenek <kremenek@apple.com>
Tue, 6 Nov 2007 19:49:16 +0000 (19:49 +0000)
committerTed Kremenek <kremenek@apple.com>
Tue, 6 Nov 2007 19:49:16 +0000 (19:49 +0000)
Added some #ifdef-controlled messages for debugging backpatching.

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

include/llvm/Bitcode/Deserialize.h
lib/Bitcode/Reader/Deserialize.cpp

index 0398e434ca49ebcd0ba6bc8e8881a09b95892a42..283e6035c795c2fea50bb01dc71b7b47efb22d5e 100644 (file)
@@ -156,9 +156,9 @@ public:
   
   bool AtEnd();
 
+  bool inRecord();
 private:
   void ReadRecord();  
-  bool inRecord();
   uintptr_t ReadInternalRefPtr();
   
   static inline bool HasFinalPtr(MapTy::value_type& V) {
index ef4e4f7e00004d5f4558a1667b7584a07fb15cd1..5642f37fac5d2abb7777c82bd91d6f2dd468256e 100644 (file)
 
 #include "llvm/Bitcode/Deserialize.h"
 
+#ifdef DEBUG_BACKPATCH
+#include "llvm/Support/Streams.h"
+#endif
+
 using namespace llvm;
 
 Deserializer::Deserializer(BitstreamReader& stream)
@@ -71,6 +75,11 @@ void Deserializer::ReadRecord() {
       continue;
     }
     
+    if (Code == bitc::DEFINE_ABBREV) {
+      Stream.ReadAbbrevRecord();
+      continue;
+    }
+    
     break;
   }
   
@@ -136,6 +145,10 @@ void Deserializer::RegisterPtr(unsigned PtrId, const void* Ptr) {
   
   assert (!HasFinalPtr(E) && "Pointer already registered.");
 
+#ifdef DEBUG_BACKPATCH
+  llvm::cerr << "RegisterPtr: " << PtrId << " => " << Ptr << "\n";
+#endif 
+  
   SetPtr(E,Ptr);
 }
 
@@ -145,8 +158,12 @@ void Deserializer::ReadUIntPtr(uintptr_t& PtrRef) {
   if (PtrId == 0) {
     PtrRef = 0;
     return;
-  }  
-
+  }
+  
+#ifdef DEBUG_BACKPATCH
+  llvm::cerr << "ReadUintPtr: " << PtrId << "\n";
+#endif
+  
   MapTy::value_type& E = BPatchMap.FindAndConstruct(BPKey(PtrId));
   
   if (HasFinalPtr(E))