src/cpu/zero/vm/stack_zero.inline.hpp

Tue, 18 Nov 2014 19:17:16 +0100

author
simonis
date
Tue, 18 Nov 2014 19:17:16 +0100
changeset 7599
c6affd32651a
parent 2314
f95d63e2154a
child 7994
04ff2f6cd0eb
permissions
-rw-r--r--

8064815: Zero+PPC64: Stack overflow when running Maven
Reviewed-by: kvn, simonis
Contributed-by: sgehwolf@redhat.com

twisti@1818 1 /*
stefank@2314 2 * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
twisti@1818 3 * Copyright 2010 Red Hat, Inc.
twisti@1818 4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
twisti@1818 5 *
twisti@1818 6 * This code is free software; you can redistribute it and/or modify it
twisti@1818 7 * under the terms of the GNU General Public License version 2 only, as
twisti@1818 8 * published by the Free Software Foundation.
twisti@1818 9 *
twisti@1818 10 * This code is distributed in the hope that it will be useful, but WITHOUT
twisti@1818 11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
twisti@1818 12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
twisti@1818 13 * version 2 for more details (a copy is included in the LICENSE file that
twisti@1818 14 * accompanied this code).
twisti@1818 15 *
twisti@1818 16 * You should have received a copy of the GNU General Public License version
twisti@1818 17 * 2 along with this work; if not, write to the Free Software Foundation,
twisti@1818 18 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
twisti@1818 19 *
trims@1907 20 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 21 * or visit www.oracle.com if you need additional information or have any
trims@1907 22 * questions.
twisti@1818 23 *
twisti@1818 24 */
twisti@1818 25
stefank@2314 26 #ifndef CPU_ZERO_VM_STACK_ZERO_INLINE_HPP
stefank@2314 27 #define CPU_ZERO_VM_STACK_ZERO_INLINE_HPP
stefank@2314 28
stefank@2314 29 #include "runtime/thread.hpp"
stefank@2314 30 #include "stack_zero.hpp"
stefank@2314 31
twisti@1818 32 // This function should match SharkStack::CreateStackOverflowCheck
twisti@1818 33 inline void ZeroStack::overflow_check(int required_words, TRAPS) {
twisti@1818 34 // Check the Zero stack
twisti@1866 35 if (available_words() < required_words) {
twisti@1818 36 handle_overflow(THREAD);
twisti@1818 37 return;
twisti@1818 38 }
twisti@1818 39
twisti@1818 40 // Check the ABI stack
twisti@1866 41 if (abi_stack_available(THREAD) < 0) {
twisti@1818 42 handle_overflow(THREAD);
twisti@1818 43 return;
twisti@1818 44 }
twisti@1818 45 }
twisti@1866 46
twisti@1866 47 // This method returns the amount of ABI stack available for us
twisti@1866 48 // to use under normal circumstances. Note that the returned
twisti@1866 49 // value can be negative.
twisti@1866 50 inline int ZeroStack::abi_stack_available(Thread *thread) const {
simonis@7599 51 guarantee(Thread::current() == thread, "should run in the same thread");
simonis@7599 52 int stack_used = thread->stack_base() - (address) &stack_used
simonis@7599 53 + (StackYellowPages+StackRedPages+StackShadowPages) * os::vm_page_size();
twisti@1866 54 int stack_free = thread->stack_size() - stack_used;
simonis@7599 55 return stack_free;
twisti@1866 56 }
stefank@2314 57
stefank@2314 58 #endif // CPU_ZERO_VM_STACK_ZERO_INLINE_HPP

mercurial