src/os/linux/vm/vmError_linux.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File 6961690 Sdiff src/os/linux/vm

src/os/linux/vm/vmError_linux.cpp

Print this page
rev 1838 : 6961690: load oops from constant table on SPARC
Summary: oops should be loaded from the constant table of an nmethod instead of materializing them with a long code sequence.
Reviewed-by:
   1 /*
   2  * Copyright (c) 2003, 2006, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *


  24 
  25 # include "incls/_precompiled.incl"
  26 # include "incls/_vmError_linux.cpp.incl"
  27 
  28 #include <sys/types.h>
  29 #include <sys/wait.h>
  30 #include <sys/syscall.h>
  31 #include <unistd.h>
  32 #include <signal.h>
  33 
  34 void VMError::show_message_box(char *buf, int buflen) {
  35   bool yes;
  36   do {
  37     error_string(buf, buflen);
  38     int len = (int)strlen(buf);
  39     char *p = &buf[len];
  40 
  41     jio_snprintf(p, buflen - len,
  42                "\n\n"
  43                "Do you want to debug the problem?\n\n"
  44                "To debug, run 'gdb /proc/%d/exe %d'; then switch to thread " INTX_FORMAT "\n"
  45                "Enter 'yes' to launch gdb automatically (PATH must include gdb)\n"
  46                "Otherwise, press RETURN to abort...",
  47                os::current_process_id(), os::current_process_id(),
  48                os::current_thread_id());
  49 
  50     yes = os::message_box("Unexpected Error", buf);
  51 
  52     if (yes) {
  53       // yes, user asked VM to launch debugger
  54       jio_snprintf(buf, buflen, "gdb /proc/%d/exe %d",
  55                    os::current_process_id(), os::current_process_id());
  56 
  57       os::fork_and_exec(buf);
  58       yes = false;
  59     }
  60   } while (yes);
  61 }
  62 
  63 // Space for our "saved" signal flags and handlers
  64 static int resettedSigflags[2];
  65 static address resettedSighandler[2];
  66 
  67 static void save_signal(int idx, int sig)
  68 {


   1 /*
   2  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *


  24 
  25 # include "incls/_precompiled.incl"
  26 # include "incls/_vmError_linux.cpp.incl"
  27 
  28 #include <sys/types.h>
  29 #include <sys/wait.h>
  30 #include <sys/syscall.h>
  31 #include <unistd.h>
  32 #include <signal.h>
  33 
  34 void VMError::show_message_box(char *buf, int buflen) {
  35   bool yes;
  36   do {
  37     error_string(buf, buflen);
  38     int len = (int)strlen(buf);
  39     char *p = &buf[len];
  40 
  41     jio_snprintf(p, buflen - len,
  42                "\n\n"
  43                "Do you want to debug the problem?\n\n"
  44                "To debug, run 'gdb /proc/%d/exe %d'; then switch to thread " INTX_FORMAT " (" INTPTR_FORMAT ")\n"
  45                "Enter 'yes' to launch gdb automatically (PATH must include gdb)\n"
  46                "Otherwise, press RETURN to abort...",
  47                os::current_process_id(), os::current_process_id(),
  48                os::current_thread_id(), os::current_thread_id());
  49 
  50     yes = os::message_box("Unexpected Error", buf);
  51 
  52     if (yes) {
  53       // yes, user asked VM to launch debugger
  54       jio_snprintf(buf, buflen, "gdb /proc/%d/exe %d",
  55                    os::current_process_id(), os::current_process_id());
  56 
  57       os::fork_and_exec(buf);
  58       yes = false;
  59     }
  60   } while (yes);
  61 }
  62 
  63 // Space for our "saved" signal flags and handlers
  64 static int resettedSigflags[2];
  65 static address resettedSighandler[2];
  66 
  67 static void save_signal(int idx, int sig)
  68 {


src/os/linux/vm/vmError_linux.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File