forked from mozilla-b2g/B2G
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run-valgrind.sh
executable file
·79 lines (64 loc) · 2.72 KB
/
run-valgrind.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#!/bin/bash
#set -xv
SCRIPT_NAME=$(basename $0)
. load-config.sh
ADB=${ADB:-adb}
if [ ! -f "`which \"$ADB\"`" ]; then
ADB=out/host/`uname -s | tr "[[:upper:]]" "[[:lower:]]"`-x86/bin/adb
fi
echo "ADB Location: " $ADB
B2G_DIR="/data/valgrind-b2g"
HAS_VALGRIND=$($ADB shell 'test -e /system/bin/valgrind ; echo -n $?')
# Make sure valgrind is actually on system
if [ "$HAS_VALGRIND" -ne 0 ]; then
echo "Platform does not have valgrind executable, did you build with B2G_VALGRIND=1 in your .userconfig?"
exit 1
fi
LIBMOZGLUE="$GECKO_OBJDIR/mozglue/build/libmozglue.so"
LIBXUL="$GECKO_OBJDIR/toolkit/library/build/libxul.so"
if [ ! -e "$LIBXUL" ]; then
# try the old location
LIBXUL="$GECKO_OBJDIR/toolkit/library/libxul.so"
fi
# Load libxul
if [ "$1" = "debuginfo" ]; then
echo "Recompiling libxul.so with debug info (this can take a few minutes)"
$ADB remount
$ADB shell "rm -rf $B2G_DIR && cp -r /system/b2g $B2G_DIR"
cp "$LIBXUL" "$GECKO_OBJDIR/toolkit/library/libxul.debuginfo.so"
STRIP=prebuilts/gcc/`uname -s | tr "[[:upper:]]" "[[:lower:]]"`-x86/arm/arm-linux-androideabi-4.7/bin/arm-linux-androideabi-strip
$STRIP -R .debug_info "$GECKO_OBJDIR/toolkit/library/libxul.debuginfo.so"
echo "Pushing debug libxul to phone (this takes about a minute)"
time $ADB push $GECKO_OBJDIR/toolkit/library/libxul.debuginfo.so $B2G_DIR/libxul.so
shift
elif [ "$1" = "nocopy" ]; then
echo "Skipping libxul.so copy step and just running valgrind..."
shift
else
$ADB remount
$ADB shell "rm -rf $B2G_DIR && cp -r /system/b2g $B2G_DIR"
# compress first, to limit amount of data pushed over the slow pipe
echo "Compressing libxul.so..."
time gzip < "$LIBXUL" > $GECKO_OBJDIR/toolkit/library/libxul.so.gz
echo "Pushing compressed debug libxul to device (this can take upwards of 5 minutes)"
time $ADB push $GECKO_OBJDIR/toolkit/library/libxul.so.gz $B2G_DIR/libxul.so.gz
time $ADB push "$LIBMOZGLUE" $B2G_DIR/libmozglue.so
echo "Decompressing on phone..."
time $ADB shell "gzip -d $B2G_DIR/libxul.so.gz"
$ADB shell "chmod 0755 $B2G_DIR/libxul.so"
$ADB shell "chmod 0755 $B2G_DIR/libmozglue.so"
fi
#$ADB reboot
$ADB wait-for-device
$ADB shell stop b2g
VALGRIND_ARGS=""
if [ "$1" = "vgdb" ]; then
# delete stale vgdb pipes
$ADB shell rm /data/local/tmp/vgdb*
VALGRIND_ARGS="--trace-children=no --vgdb-error=0 --vgdb=yes"
else
VALGRIND_ARGS="--trace-children=yes"
fi
# Due to the fact that we follow forks, we can't log to a logfile. Expect the
# user to redirect stdout.
$ADB shell "B2G_DIR='/data/valgrind-b2g' HOSTNAME='b2g' LOGNAME='b2g' COMMAND_PREFIX='/system/bin/valgrind -v --fair-sched=try $VALGRIND_ARGS --soname-synonyms=somalloc=libmozglueZdso --error-limit=no --smc-check=all-non-file' exec /system/bin/b2g.sh"