gprofng: assertion in gprofng/src/Expression.cc:139
authorVladimir Mezentsev <vladimir.mezentsev@oracle.com>
Fri, 29 Apr 2022 05:26:51 +0000 (22:26 -0700)
committerVladimir Mezentsev <vladimir.mezentsev@oracle.com>
Fri, 29 Apr 2022 21:03:12 +0000 (14:03 -0700)
gprofng/ChangeLog
2022-04-28  Vladimir Mezentsev  <vladimir.mezentsev@oracle.com>

PR gprofng/29102
* src/Expression.h: Remove fixupValues.
* src/Expression.cc (Expression::copy): Fix a bug.

gprofng/src/Expression.cc
gprofng/src/Expression.h

index 49c94a80cd281848426c7ee204f7014b165e094f..df440927e7978d32c05491beeadda0b192df8682 100644 (file)
@@ -91,12 +91,18 @@ Expression::Expression (const Expression &rhs)
   op = rhs.op;
   arg0 = NULL;
   arg1 = NULL;
+  v = Value (rhs.v);
   if (rhs.arg0)
-    arg0 = rhs.arg0->copy ();
+    {
+      arg0 = rhs.arg0->copy ();
+      if (v.next)
+       {
+         assert (arg0 && v.next == &(rhs.arg0->v));
+         v.next = &(arg0->v);
+       }
+    }
   if (rhs.arg1)
     arg1 = rhs.arg1->copy ();
-  v = Value (rhs.v);
-  fixupValues ();
 }
 
 Expression::Expression (const Expression *rhs)
@@ -114,12 +120,18 @@ Expression::copy (const Expression *rhs)
   delete arg1;
   arg0 = NULL;
   arg1 = NULL;
+  v = Value (rhs->v);
   if (rhs->arg0)
-    arg0 = rhs->arg0->copy ();
+    {
+      arg0 = rhs->arg0->copy ();
+      if (v.next)
+       {
+         assert (arg0 && v.next == &(rhs->arg0->v));
+         v.next = &(arg0->v);
+       }
+    }
   if (rhs->arg1)
     arg1 = rhs->arg1->copy ();
-  v = Value (rhs->v);
-  fixupValues ();
 }
 
 Expression &
@@ -131,16 +143,6 @@ Expression::operator= (const Expression &rhs)
   return *this;
 }
 
-void
-Expression::fixupValues ()
-{
-  if (v.next)
-    {
-      assert (arg0 && v.next == &(arg0->v));
-      v.next = &(arg0->v);
-    }
-}
-
 bool
 Expression::getVal (int propId, Context *ctx)
 {
index 7542853fd64797053646f88be552f22e63188b64..29d3e4e720f85b33e5924d970ebf44c3503f9e49 100644 (file)
@@ -166,9 +166,7 @@ private:
 
   bool getVal (int propId, Context *ctx);
   bool bEval (Context *ctx);
-
   bool hasLoadObject ();
-  void fixupValues ();
 
   OpCode op;
   Value v;