aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
-rw-r--r--flow.c11
-rw-r--r--validation/alias-distinct.c17
-rw-r--r--validation/alias-mixed.c30
-rw-r--r--validation/alias-same.c17
4 files changed, 74 insertions, 1 deletions
diff --git a/flow.c b/flow.c
index 94a8ec74..4b32f5cc 100644
--- a/flow.c
+++ b/flow.c
@@ -314,6 +314,15 @@ static inline int same_memop(struct instruction *a, struct instruction *b)
return a->offset == b->offset && a->size == b->size;
}
+static inline int distinct_symbols(pseudo_t a, pseudo_t b)
+{
+ if (a->type != PSEUDO_SYM)
+ return 0;
+ if (b->type != PSEUDO_SYM)
+ return 0;
+ return a->sym != b->sym;
+}
+
/*
* Return 1 if "dom" dominates the access to "pseudo"
* in "insn".
@@ -332,7 +341,7 @@ int dominates(pseudo_t pseudo, struct instruction *insn, struct instruction *dom
if (local)
return 0;
/* We don't think two explicitly different symbols ever alias */
- if (dom->src->type == PSEUDO_SYM)
+ if (distinct_symbols(insn->src, dom->src))
return 0;
/* We could try to do some alias analysis here */
return -1;
diff --git a/validation/alias-distinct.c b/validation/alias-distinct.c
new file mode 100644
index 00000000..42937b24
--- /dev/null
+++ b/validation/alias-distinct.c
@@ -0,0 +1,17 @@
+extern int g;
+extern int h;
+
+static int foo(void)
+{
+ g = 1;
+ h = 2;
+ return g == 1;
+}
+
+/*
+ * check-name: alias distinct symbols
+ * check-command: test-linearize $file
+ * check-output-ignore
+ *
+ * check-output-contains: ret\\..* *\\$1
+ */
diff --git a/validation/alias-mixed.c b/validation/alias-mixed.c
new file mode 100644
index 00000000..42930477
--- /dev/null
+++ b/validation/alias-mixed.c
@@ -0,0 +1,30 @@
+extern int g;
+
+
+static int foo(int *p)
+{
+ *p = 1;
+ g = 2;
+ return *p == 1;
+}
+
+static int bar(int *p)
+{
+ g = 1;
+ *p = 2;
+ return g == 1;
+}
+
+static test(void)
+{
+ foo(&g);
+ bar(&g);
+}
+
+/*
+ * check-name: alias symbol/pointer
+ * check-command: test-linearize $file
+ * check-output-ignore
+ *
+ * check-output-excludes: ret\\..* *\\$1
+ */
diff --git a/validation/alias-same.c b/validation/alias-same.c
new file mode 100644
index 00000000..55cf4244
--- /dev/null
+++ b/validation/alias-same.c
@@ -0,0 +1,17 @@
+extern int g;
+
+
+static int foo(void)
+{
+ g = 1;
+ g = 2;
+ return g != 1;
+}
+
+/*
+ * check-name: alias same symbols
+ * check-command: test-linearize $file
+ * check-output-ignore
+ *
+ * check-output-contains: ret\\..* *\\$1
+ */