aboutsummaryrefslogtreecommitdiffstats
path: root/test/gourdinl/cscript.sh
diff options
context:
space:
mode:
authorLéo Gourdin <leo.gourdin@univ-grenoble-alpes.fr>2021-03-29 08:42:36 +0200
committerLéo Gourdin <leo.gourdin@univ-grenoble-alpes.fr>2021-03-29 08:42:36 +0200
commit706b6384a0d1b9a3206049dadadee7f4a8dd5f9d (patch)
tree6f6565112ed27e6531665a0b2a4c5fbb646f8e5b /test/gourdinl/cscript.sh
parent3e953ef41f736ed5b7db699b1adf21d46cb5b8db (diff)
downloadcompcert-kvx-706b6384a0d1b9a3206049dadadee7f4a8dd5f9d.tar.gz
compcert-kvx-706b6384a0d1b9a3206049dadadee7f4a8dd5f9d.zip
adding test for load replacement on a64
Diffstat (limited to 'test/gourdinl/cscript.sh')
-rwxr-xr-xtest/gourdinl/cscript.sh20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/gourdinl/cscript.sh b/test/gourdinl/cscript.sh
new file mode 100755
index 00000000..8bf3a613
--- /dev/null
+++ b/test/gourdinl/cscript.sh
@@ -0,0 +1,20 @@
+#!/bin/bash
+
+/home/yuki/Work/VERIMAG/Compcert_neutral/ccomp -stdlib ../../runtime -dparse -dclight -S -fstruct-return -c clause2.c > log 2>&1
+
+b1=$(cat log | ack "LDP_CONSEC_PEEP_IMM_DEC_ldr64")
+sb1=$?
+b2=$(cat log | ack "LDP_BACK_SPACED_PEEP_IMM_DEC_ldr32")
+sb2=$?
+b3=$(cat log | ack "STP_FORW_SPACED_PEEP_IMM_INC_str32")
+sb3=$?
+b4=$(cat log | ack "STP_CONSEC_PEEP_IMM_INC_str64")
+sb4=$?
+
+#if [ "$sb1" == 0 ] && [ "$sb2" == 0 ] && [ "$sb3" == 0 ] && [ "$sb4" == 0 ]
+if [ "$sb1" == 0 ] && [ "$sb2" == 0 ] && [ "$sb3" == 0 ] && [ "$sb4" == 0 ]
+then
+ exit 0
+else
+ exit 1
+fi