/*
* Copyright 2007, 2008, 2009, 2010 Red Hat, Inc.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*
*/
#include <pthread.h>
# include <pthread_np.h> /* For pthread_attr_get_np */
#endif
// no precompiled headers
#include "assembler_zero.inline.hpp"
#include "classfile/classLoader.hpp"
#include "classfile/systemDictionary.hpp"
#include "classfile/vmSymbols.hpp"
#include "code/icBuffer.hpp"
#include "code/vtableStubs.hpp"
#include "interpreter/interpreter.hpp"
#include "jvm_bsd.h"
#include "memory/allocation.inline.hpp"
#include "mutex_bsd.inline.hpp"
#include "nativeInst_zero.hpp"
#include "os_share_bsd.hpp"
#include "prims/jniFastGetField.hpp"
#include "prims/jvm_misc.hpp"
#include "runtime/arguments.hpp"
#include "runtime/extendedPC.hpp"
#include "runtime/frame.inline.hpp"
#include "runtime/interfaceSupport.hpp"
#include "runtime/javaCalls.hpp"
#include "runtime/mutexLocker.hpp"
#include "runtime/osThread.hpp"
#include "runtime/sharedRuntime.hpp"
#include "runtime/stubRoutines.hpp"
#include "thread_bsd.inline.hpp"
#include "utilities/events.hpp"
#include "utilities/vmError.hpp"
return dummy;
}
}
// The only thing that calls this is the stack printing code in
// VMError::report:
// - Step 110 (printing stack bounds) uses the sp in the frame
// to determine the amount of free space on the stack. We
// set the sp to a close approximation of the real value in
// order to allow this step to complete.
// - Step 120 (printing native stack) tries to walk the stack.
// The frame we create has a NULL pc, which is ignored as an
// invalid frame.
return dummy;
}
// Must never look like an address returned by reserve_memory,
// even in its subfields (as defined by the CPU immediate fields,
// if the CPU splits constants across multiple instructions).
#ifdef SPARC
// On SPARC, 0 != %hi(any real address), because there is no
// allocation in the first 1Kb of the virtual address space.
return (char *) 0;
#else
// This is the value for x86; works pretty well for PPC too.
return (char *) -1;
#endif // SPARC
}
// Nothing to do.
}
}
}
}
extern "C" JNIEXPORT int
void* ucVoid,
int abort_if_unrecognized) {
SignalHandlerMark shm(t);
// install then restore certain signal handler (e.g. to temporarily
// block SIGPIPE, or have a SIGILL handler when detecting CPU
// type). When that happens, JVM_handle_bsd_signal() might be
// libjsig is not preloaded, try handle signals that do not require
// allow chained handler to go first
return true;
} else {
warning("Ignoring %s - see bugs 4229104 or 646499219",
}
return true;
}
}
if (t != NULL ){
if(t->is_Java_thread()) {
thread = (JavaThread*)t;
}
else if(t->is_VM_thread()){
}
}
}
// Handle ALL stack overflow variations here
// check if fault address is within thread stack
// stack overflow
}
}
#ifndef _ALLBSD_SOURCE
else {
// Accessing stack address below sp may cause SEGV if
// current thread has MAP_GROWSDOWN stack. This should
// only happen when current thread was created by user
// code with MAP_GROWSDOWN flag and then attached to VM.
// See notes in os_bsd.cpp.
return true;
}
}
else {
fatal("recursive segv. expanding stack.");
}
}
#endif
}
}
/*if (thread->thread_state() == _thread_in_Java) {
ShouldNotCallThis();
}
}
// jni_fast_Get<Primitive>Field can trap at certain pc's if a GC
// kicks in and the heap gets shrunk before the field access.
/*if (sig == SIGSEGV || sig == SIGBUS) {
address addr = JNI_FastGetField::find_slowcase_pc(pc);
if (addr != (address)-1) {
stub = addr;
}
}*/
// Check to see if we caught the safepoint code in the process
// of write protecting the memory serialization page. It write
// enables the page immediately after protecting it so we can
// just return to retry the write.
// Block current thread until permission is restored.
return true;
}
}
// signal-chaining
return true;
}
if (!abort_if_unrecognized) {
// caller wants another chance, so give it to him
return false;
}
#ifndef PRODUCT
fatal("\n#"
"\n# /--------------------\\"
"\n# | segmentation fault |"
"\n# \\---\\ /--------------/"
"\n# /"
"\n# [-] |\\_/| "
"\n# (+)=C |o o|__ "
"\n# | | =-*-=__\\ "
"\n# OOO c_c_(___)");
}
#endif // !PRODUCT
const char *fmt =
}
// Nothing to do
}
#ifndef _ALLBSD_SOURCE
}
}
#endif
#ifdef _LP64
return true;
#else
if (bytes < 2 * G) {
return true;
}
}
#endif // _LP64
}
///////////////////////////////////////////////////////////////////////////////
// thread stack
return true;
}
#ifdef _LP64
#else
#endif // _LP64
return s;
}
// Only enable glibc guard pages for non-Java threads
// (Java threads have HotSpot guard pages)
}
#ifdef __APPLE__
#elif defined(__OpenBSD__)
if (rslt != 0)
rslt));
#elif defined(_ALLBSD_SOURCE)
// JVM needs to know exact stack location, abort if it fails
if (rslt != 0)
if (rslt != 0)
rslt));
fatal("Can not locate current stack attributes!");
}
#else /* Linux */
if (res != 0) {
vm_exit_out_of_memory(0, "pthread_getattr_np");
}
else {
res));
}
}
if (res != 0) {
res));
}
// The block of memory returned by pthread_attr_getstack() includes
// guard pages where present. We need to trim these off.
if (res != 0) {
}
#ifdef IA64
// IA64 has two stacks sharing the same area of memory, a normal
// stack growing downwards and a register stack growing upwards.
// Guard pages, if present, are in the centre. This code splits
// the stack in two even without guard pages, though in theory
// there's nothing to stop us allocating more to the normal stack
// or more to the register stack if one or the other were found
// to grow faster.
#endif // IA64
// The initial thread has a growable stack, and the size reported
// by pthread_attr_getstack is the maximum size it could possibly
// be given what currently mapped. This can be huge, so we cap it.
}
#endif
*bottom = stack_bottom;
}
}
// stack size includes normal stack and HotSpot guard pages
return size;
}
/////////////////////////////////////////////////////////////////////////////
// helper functions for fatal error handler
}
}
/////////////////////////////////////////////////////////////////////////////
// Stubs for things that would be in bsd_zero.s if it existed.
// You probably want to disassemble these monkeys to check they're ok.
extern "C" {
int SpinPause() {
}
return value;
}
return value;
}
}
}
}
}
}
}
}
}
}
}
}
}
}
};
/////////////////////////////////////////////////////////////////////////////
// Implementations of atomic operations not supported by processors.
#ifndef _LP64
extern "C" {
long long unsigned int __sync_val_compare_and_swap_8(
volatile void *ptr,
long long unsigned int oldval,
long long unsigned int newval) {
}
};
#endif // !_LP64
#ifndef PRODUCT
}
#endif