src/hotspot/cpu/zero/stack_zero.inline.hpp
author erikj
Tue, 12 Sep 2017 19:03:39 +0200
changeset 47216 71c04702a3d5
parent 35479 hotspot/src/cpu/zero/vm/stack_zero.inline.hpp@62c12ca7a45e
child 47687 fb290fd1f9d4
permissions -rw-r--r--
8187443: Forest Consolidation: Move files to unified layout Reviewed-by: darcy, ihse
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5339
ee4d549502b1 6944473: 6941224 misses new files
twisti
parents:
diff changeset
     1
/*
35479
62c12ca7a45e 8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents: 35201
diff changeset
     2
 * Copyright (c) 2003, 2016, 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");
35479
62c12ca7a45e 8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents: 35201
diff changeset
    52
  int stack_used = thread->stack_base() - (address) &stack_used
62c12ca7a45e 8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents: 35201
diff changeset
    53
    + (JavaThread::stack_guard_zone_size() + JavaThread::stack_shadow_zone_size());
62c12ca7a45e 8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents: 35201
diff changeset
    54
  int stack_free = thread->stack_size() - stack_used;
62c12ca7a45e 8146410: Interpreter functions are declared and defined in the wrong files
coleenp
parents: 35201
diff changeset
    55
  return stack_free;
5424
fc1c380199b0 6950178: Zero stack improvements
twisti
parents: 5339
diff changeset
    56
}
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    57
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    58
#endif // CPU_ZERO_VM_STACK_ZERO_INLINE_HPP