summaryrefslogtreecommitdiffstats
path: root/debuggerd/arm64/vfp.S
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2014-07-09 12:11:42 -0700
committerElliott Hughes <enh@google.com>2014-07-09 12:19:32 -0700
commite7f18e14a9e9267150e24f0cb8bd8bd52db7946e (patch)
treed6022db0b559955f463eefdd50ef14c638ba4310 /debuggerd/arm64/vfp.S
parent6e141aea189769a428a7da6c2206df6d0ed2c69d (diff)
downloadsystem_core-e7f18e14a9e9267150e24f0cb8bd8bd52db7946e.zip
system_core-e7f18e14a9e9267150e24f0cb8bd8bd52db7946e.tar.gz
system_core-e7f18e14a9e9267150e24f0cb8bd8bd52db7946e.tar.bz2
Integrate vfp-crasher with crasher.
There's no good reason to separate "fill the integer registers with recognizable patterns and crash" from "fill the FP registers with recognizable patterns and crash". Also remove the incorrect use of ARCH_ARM_HAVE_VFP_D32 rather than try to fix it. Change-Id: I3a4a3aca1575de5489314027ae52168997404d79
Diffstat (limited to 'debuggerd/arm64/vfp.S')
-rw-r--r--debuggerd/arm64/vfp.S42
1 files changed, 0 insertions, 42 deletions
diff --git a/debuggerd/arm64/vfp.S b/debuggerd/arm64/vfp.S
deleted file mode 100644
index bf12c22..0000000
--- a/debuggerd/arm64/vfp.S
+++ /dev/null
@@ -1,42 +0,0 @@
- .text
- .align 2
- .global crash
- .type crash, %function
-crash:
- fmov d0, XZR
- fmov d1, 1.0
- fmov d2, 2.0
- fmov d3, 3.0
- fmov d4, 4.0
- fmov d5, 5.0
- fmov d6, 6.0
- fmov d7, 7.0
- fmov d8, 8.0
- fmov d9, 9.0
- fmov d10, 10.0
- fmov d11, 11.0
- fmov d12, 12.0
- fmov d13, 13.0
- fmov d14, 14.0
- fmov d15, 15.0
- fmov d16, 16.0
- fmov d17, 17.0
- fmov d18, 18.0
- fmov d19, 19.0
- fmov d20, 20.0
- fmov d21, 21.0
- fmov d22, 22.0
- fmov d23, 23.0
- fmov d24, 24.0
- fmov d25, 25.0
- fmov d26, 26.0
- fmov d27, 27.0
- fmov d28, 28.0
- fmov d29, 29.0
- fmov d30, 30.0
- fmov d31, 31.0
-
- mov x0, xzr
- str x0, [x0]
- br x30
-