Include stack sizes and address ranges in the SIGQUIT output.

Change-Id: Idf96c5ccc6e33c8d58e8c05f830a41d7ef54a941
diff --git a/src/thread.cc b/src/thread.cc
index 75e0f3e..aa2afe8 100644
--- a/src/thread.cc
+++ b/src/thread.cc
@@ -518,6 +518,9 @@
      << " stm=" << stime
      << " core=" << task_cpu
      << " HZ=" << sysconf(_SC_CLK_TCK) << "\n";
+
+  os << "  | stackSize=" << PrettySize(stack_size_)
+     << " stack=" << reinterpret_cast<void*>(stack_begin_) << "-" << reinterpret_cast<void*>(stack_end_) << "\n";
 }
 
 #if !defined(ART_USE_LLVM_COMPILER)