hotspot/src/cpu/zero/vm/stack_zero.inline.hpp
author goetz
Sun, 20 Dec 2015 10:37:23 -0500
changeset 35201 996db89f378e
parent 27669 c2c526bc1a18
child 35479 62c12ca7a45e
permissions -rw-r--r--
8139864: Improve handling of stack protection zones. Reviewed-by: stuefe, coleenp, fparain
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5339
ee4d549502b1 6944473: 6941224 misses new files
twisti
parents:
diff changeset
     1
/*
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
     2
 * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
5339
ee4d549502b1 6944473: 6941224 misses new files
twisti
parents:
diff changeset
     3
 * Copyright 2010 Red Hat, Inc.
ee4d549502b1 6944473: 6941224 misses new files
twisti
parents:
diff changeset
     4
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
ee4d549502b1 6944473: 6941224 misses new files
twisti
parents:
diff changeset
     5
 *
ee4d549502b1 6944473: 6941224 misses new files
twisti
parents:
diff changeset
     6
 * This code is free software; you can redistribute it and/or modify it
ee4d549502b1 6944473: 6941224 misses new files
twisti
parents:
diff changeset
     7
 * under the terms of the GNU General Public License version 2 only, as
ee4d549502b1 6944473: 6941224 misses new files
twisti
parents:
diff changeset
     8
 * published by the Free Software Foundation.
ee4d549502b1 6944473: 6941224 misses new files
twisti
parents:
diff changeset
     9
 *
ee4d549502b1 6944473: 6941224 misses new files
twisti
parents:
diff changeset
    10
 * This code is distributed in the hope that it will be useful, but WITHOUT
ee4d549502b1 6944473: 6941224 misses new files
twisti
parents:
diff changeset
    11
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
ee4d549502b1 6944473: 6941224 misses new files
twisti
parents:
diff changeset
    12
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
ee4d549502b1 6944473: 6941224 misses new files
twisti
parents:
diff changeset
    13
 * version 2 for more details (a copy is included in the LICENSE file that
ee4d549502b1 6944473: 6941224 misses new files
twisti
parents:
diff changeset
    14
 * accompanied this code).
ee4d549502b1 6944473: 6941224 misses new files
twisti
parents:
diff changeset
    15
 *
ee4d549502b1 6944473: 6941224 misses new files
twisti
parents:
diff changeset
    16
 * You should have received a copy of the GNU General Public License version
ee4d549502b1 6944473: 6941224 misses new files
twisti
parents:
diff changeset
    17
 * 2 along with this work; if not, write to the Free Software Foundation,
ee4d549502b1 6944473: 6941224 misses new files
twisti
parents:
diff changeset
    18
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
ee4d549502b1 6944473: 6941224 misses new files
twisti
parents:
diff changeset
    19
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5424
diff changeset
    20
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5424
diff changeset
    21
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5424
diff changeset
    22
 * questions.
5339
ee4d549502b1 6944473: 6941224 misses new files
twisti
parents:
diff changeset
    23
 *
ee4d549502b1 6944473: 6941224 misses new files
twisti
parents:
diff changeset
    24
 */
ee4d549502b1 6944473: 6941224 misses new files
twisti
parents:
diff changeset
    25
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#ifndef CPU_ZERO_VM_STACK_ZERO_INLINE_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
#define CPU_ZERO_VM_STACK_ZERO_INLINE_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "runtime/thread.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "stack_zero.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
5339
ee4d549502b1 6944473: 6941224 misses new files
twisti
parents:
diff changeset
    32
// This function should match SharkStack::CreateStackOverflowCheck
ee4d549502b1 6944473: 6941224 misses new files
twisti
parents:
diff changeset
    33
inline void ZeroStack::overflow_check(int required_words, TRAPS) {
ee4d549502b1 6944473: 6941224 misses new files
twisti
parents:
diff changeset
    34
  // Check the Zero stack
5424
fc1c380199b0 6950178: Zero stack improvements
twisti
parents: 5339
diff changeset
    35
  if (available_words() < required_words) {
5339
ee4d549502b1 6944473: 6941224 misses new files
twisti
parents:
diff changeset
    36
    handle_overflow(THREAD);
ee4d549502b1 6944473: 6941224 misses new files
twisti
parents:
diff changeset
    37
    return;
ee4d549502b1 6944473: 6941224 misses new files
twisti
parents:
diff changeset
    38
  }
ee4d549502b1 6944473: 6941224 misses new files
twisti
parents:
diff changeset
    39
ee4d549502b1 6944473: 6941224 misses new files
twisti
parents:
diff changeset
    40
  // Check the ABI stack
5424
fc1c380199b0 6950178: Zero stack improvements
twisti
parents: 5339
diff changeset
    41
  if (abi_stack_available(THREAD) < 0) {
5339
ee4d549502b1 6944473: 6941224 misses new files
twisti
parents:
diff changeset
    42
    handle_overflow(THREAD);
ee4d549502b1 6944473: 6941224 misses new files
twisti
parents:
diff changeset
    43
    return;
ee4d549502b1 6944473: 6941224 misses new files
twisti
parents:
diff changeset
    44
  }
ee4d549502b1 6944473: 6941224 misses new files
twisti
parents:
diff changeset
    45
}
5424
fc1c380199b0 6950178: Zero stack improvements
twisti
parents: 5339
diff changeset
    46
fc1c380199b0 6950178: Zero stack improvements
twisti
parents: 5339
diff changeset
    47
// This method returns the amount of ABI stack available for us
fc1c380199b0 6950178: Zero stack improvements
twisti
parents: 5339
diff changeset
    48
// to use under normal circumstances.  Note that the returned
fc1c380199b0 6950178: Zero stack improvements
twisti
parents: 5339
diff changeset
    49
// value can be negative.
fc1c380199b0 6950178: Zero stack improvements
twisti
parents: 5339
diff changeset
    50
inline int ZeroStack::abi_stack_available(Thread *thread) const {
27669
c2c526bc1a18 8064815: Zero+PPC64: Stack overflow when running Maven
simonis
parents: 7397
diff changeset
    51
  guarantee(Thread::current() == thread, "should run in the same thread");
35201
996db89f378e 8139864: Improve handling of stack protection zones.
goetz
parents: 27669
diff changeset
    52
  assert(thread->stack_size() -
996db89f378e 8139864: Improve handling of stack protection zones.
goetz
parents: 27669
diff changeset
    53
         (thread->stack_base() - (address) &stack_used +
996db89f378e 8139864: Improve handling of stack protection zones.
goetz
parents: 27669
diff changeset
    54
          JavaThread::stack_guard_zone_size() + JavaThread::stack_shadow_zone_size()) ==
996db89f378e 8139864: Improve handling of stack protection zones.
goetz
parents: 27669
diff changeset
    55
         (address)&stack_used - thread->stack_overflow_limit(), "sanity");
996db89f378e 8139864: Improve handling of stack protection zones.
goetz
parents: 27669
diff changeset
    56
  return (address)&stack_used - stack_overflow_limit();
5424
fc1c380199b0 6950178: Zero stack improvements
twisti
parents: 5339
diff changeset
    57
}
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    58
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    59
#endif // CPU_ZERO_VM_STACK_ZERO_INLINE_HPP