]> Git Repo - qemu.git/commitdiff
scripts: add muldiv64() checking coccinelle scripts
authorLaurent Vivier <[email protected]>
Mon, 9 May 2016 13:24:55 +0000 (15:24 +0200)
committerMichael Tokarev <[email protected]>
Tue, 7 Jun 2016 15:02:49 +0000 (18:02 +0300)
Signed-off-by: Laurent Vivier <[email protected]>
Signed-off-by: Michael Tokarev <[email protected]>
scripts/coccinelle/overflow_muldiv64.cocci [new file with mode: 0644]
scripts/coccinelle/remove_muldiv64.cocci [new file with mode: 0644]
scripts/coccinelle/simplify_muldiv64.cocci [new file with mode: 0644]
scripts/coccinelle/swap_muldiv64.cocci [new file with mode: 0644]

diff --git a/scripts/coccinelle/overflow_muldiv64.cocci b/scripts/coccinelle/overflow_muldiv64.cocci
new file mode 100644 (file)
index 0000000..08ec4a8
--- /dev/null
@@ -0,0 +1,16 @@
+// Find muldiv64(i64, i64, x) for potential overflow
+@filter@
+typedef uint64_t;
+typedef int64_t;
+{ uint64_t, int64_t, long, unsigned long } a, b;
+expression c;
+position p;
+@@
+
+muldiv64(a,b,c)@p
+
+@script:python@
+p << filter.p;
+@@
+
+cocci.print_main("potential muldiv64() overflow", p)
diff --git a/scripts/coccinelle/remove_muldiv64.cocci b/scripts/coccinelle/remove_muldiv64.cocci
new file mode 100644 (file)
index 0000000..4c10bd5
--- /dev/null
@@ -0,0 +1,6 @@
+// replace muldiv64(a, 1, b) by "a / b"
+@@
+expression a, b;
+@@
+-muldiv64(a, 1, b)
++a / b
diff --git a/scripts/coccinelle/simplify_muldiv64.cocci b/scripts/coccinelle/simplify_muldiv64.cocci
new file mode 100644 (file)
index 0000000..3d7c974
--- /dev/null
@@ -0,0 +1,11 @@
+// replace muldiv64(i32, i32, x) by (uint64_t)i32 * i32 / x
+@@
+typedef uint32_t;
+typedef int32_t;
+{ uint32_t, int32_t, int, unsigned int } a, b;
+typedef uint64_t;
+expression c;
+@@
+
+-muldiv64(a,b,c)
++(uint64_t) a * b / c
diff --git a/scripts/coccinelle/swap_muldiv64.cocci b/scripts/coccinelle/swap_muldiv64.cocci
new file mode 100644 (file)
index 0000000..b48b0d0
--- /dev/null
@@ -0,0 +1,13 @@
+// replace muldiv64(i32, i64, x) by muldiv64(i64, i32, x)
+@@
+typedef uint64_t;
+typedef int64_t;
+typedef uint32_t;
+typedef int32_t;
+{ uint32_t, int32_t, int, unsigned int } a;
+{ uint64_t, int64_t, long, unsigned long } b;
+expression c;
+@@
+
+-muldiv64(a,b,c)
++muldiv64(b,a,c)
This page took 0.026933 seconds and 4 git commands to generate.