Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(309)

Unified Diff: samples/gdb-integration-run.sh

Issue 6995161: Extend gdb-jit support (OSX/locals+parameters/prettyprint) (Closed) Base URL: git://github.com/v8/v8.git@master
Patch Set: Created 9 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: samples/gdb-integration-run.sh
diff --git a/samples/gdb-integration-run.sh b/samples/gdb-integration-run.sh
new file mode 100755
index 0000000000000000000000000000000000000000..db44d7a956311f8860d993b93e82967c5451e1b9
--- /dev/null
+++ b/samples/gdb-integration-run.sh
@@ -0,0 +1,19 @@
+#!/bin/bash
+UNAMESTR=`uname`
+if [[ "$UNAMESTR" == 'Linux' ]]; then
+ GDB='gdb'
+elif [[ "$UNAMESTR" == 'Darwin' ]]; then
+ GDB='fsf-gdb'
+fi
+rm /tmp/elfdump*.o
+GDB_ARGS="--command=samples/gdb-integration-prelude.gdb"
+GDB_HEADLESS_ARGS="$GDB_ARGS --command=samples/gdb-integration.gdb"
+JS_SHELL="gdb-integration_g"
+JS_SHELL_ARGS="--gdbjit --gdbjit_full --gdbjit_dump_filter=gdb --gdbjit_dump --main-cycle-in-js samples/gdb-integration.js"
+$GDB $GDB_HEADLESS_ARGS --args $JS_SHELL $JS_SHELL_ARGS
+if [[ "$UNAMESTR" == 'Linux' ]]; then
+ objdump --dwarf /tmp/elfdumpgdbSomeFunction1.o
+elif [[ "$UNAMESTR" == 'Darwin' ]]; then
+ otool -hl /tmp/elfdumpgdbSomeFunction1.o
+fi
+echo "$GDB $GDB_ARGS --args $JS_SHELL $JS_SHELL_ARGS"
« no previous file with comments | « samples/gdb-integration-prelude.gdb ('k') | src/compiler.cc » ('j') | src/gdb-jit.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698