Bring our native stack usage down.

I'd have preferred to have a 512-byte limit, but there are some monsters
in the verifier; 2000-line functions and the like. I'm also not policing
tests (except for one silly one). They can use all the stack they like.

This fixes the IntMath test (the stack overflow test was failing because
we were using more than 4KiB to throw!).

Change-Id: I7e53e2fde2b39fde1910f8ee5b1712e8a66069c7
diff --git a/src/logging_linux.cc b/src/logging_linux.cc
index 42bc50b..2c1d699 100644
--- a/src/logging_linux.cc
+++ b/src/logging_linux.cc
@@ -28,15 +28,15 @@
 namespace art {
 
 LogMessage::LogMessage(const char* file, int line, LogSeverity severity, int error)
-    : line_number_(line), severity_(severity), errno_(error) {
+    : data_(new LogMessageData(line, severity, error)) {
   const char* last_slash = strrchr(file, '/');
-  file_ = (last_slash == NULL) ? file : last_slash + 1;
+  data_->file = (last_slash == NULL) ? file : last_slash + 1;
 }
 
 void LogMessage::LogLine(const char* line) {
-  std::cerr << "VDIWEF"[severity_] << ' '
+  std::cerr << "VDIWEF"[data_->severity] << ' '
             << StringPrintf("%5d %5d", getpid(), ::art::GetTid()) << ' '
-            << file_ << ':' << line_number_ << "] " << line << std::endl;
+            << data_->file << ':' << data_->line_number << "] " << line << std::endl;
 }
 
 }  // namespace art