Revert "[hwasan] keep debug intrinsicts in AllocaInfo."
authorFlorian Mayer <fmayer@google.com>
Fri, 11 Feb 2022 22:41:11 +0000 (14:41 -0800)
committerFlorian Mayer <fmayer@google.com>
Fri, 11 Feb 2022 22:41:24 +0000 (14:41 -0800)
This reverts commit 19fdf85f5858fa0aaae5f28f7140fbf12643993c.

llvm/include/llvm/Transforms/Utils/MemoryTaggingSupport.h
llvm/lib/Transforms/Instrumentation/HWAddressSanitizer.cpp
llvm/lib/Transforms/Utils/MemoryTaggingSupport.cpp

index d1548ec..d858432 100644 (file)
@@ -76,12 +76,12 @@ struct AllocaInfo {
   AllocaInst *AI;
   SmallVector<IntrinsicInst *, 2> LifetimeStart;
   SmallVector<IntrinsicInst *, 2> LifetimeEnd;
-  SmallVector<DbgVariableIntrinsic *, 2> DbgVariableIntrinsics;
 };
 
 struct StackInfo {
   MapVector<AllocaInst *, AllocaInfo> AllocasToInstrument;
   SmallVector<Instruction *, 4> UnrecognizedLifetimes;
+  DenseMap<AllocaInst *, std::vector<DbgVariableIntrinsic *>> AllocaDbgMap;
   SmallVector<Instruction *, 8> RetVec;
   bool CallsReturnTwice = false;
 };
index 34b0576..5dbe321 100644 (file)
@@ -1341,7 +1341,7 @@ bool HWAddressSanitizer::instrumentStack(
     AI->replaceUsesWithIf(Replacement,
                           [AILong](Use &U) { return U.getUser() != AILong; });
 
-    for (auto *DDI : Info.DbgVariableIntrinsics) {
+    for (auto *DDI : SInfo.AllocaDbgMap.lookup(AI)) {
       // Prepend "tag_offset, N" to the dwarf expression.
       // Tag offset logically applies to the alloca pointer, and it makes sense
       // to put it at the beginning of the expression.
index c149723..5699ae0 100644 (file)
@@ -87,13 +87,10 @@ void StackInfoBuilder::visit(Instruction &Inst) {
   }
   if (auto *DVI = dyn_cast<DbgVariableIntrinsic>(&Inst)) {
     for (Value *V : DVI->location_ops()) {
-      if (auto *AI = dyn_cast_or_null<AllocaInst>(V)) {
-        AllocaInfo &AInfo = Info.AllocasToInstrument[AI];
-        auto &DVIVec = AInfo.DbgVariableIntrinsics;
-        if (IsInterestingAlloca(*AI) &&
-            (DVIVec.empty() || DVIVec.back() != DVI))
-          DVIVec.push_back(DVI);
-      }
+      if (auto *Alloca = dyn_cast_or_null<AllocaInst>(V))
+        if (!Info.AllocaDbgMap.count(Alloca) ||
+            Info.AllocaDbgMap[Alloca].back() != DVI)
+          Info.AllocaDbgMap[Alloca].push_back(DVI);
     }
   }
   Instruction *ExitUntag = getUntagLocationIfFunctionExit(Inst);