hotspot/src/cpu/zero/vm/stack_zero.inline.hpp
author twisti
Thu, 06 May 2010 02:09:18 -0700
changeset 5424 fc1c380199b0
parent 5339 ee4d549502b1
child 5547 f4b087cbb361
permissions -rw-r--r--
6950178: Zero stack improvements Summary: Moves the logic for determining the size of the Zero stack into the ZeroStack class. Reviewed-by: twisti Contributed-by: Gary Benson <gbenson@redhat.com>
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5339
ee4d549502b1 6944473: 6941224 misses new files
twisti
parents:
diff changeset
     1
/*
ee4d549502b1 6944473: 6941224 misses new files
twisti
parents:
diff changeset
     2
 * Copyright 2003-2007 Sun Microsystems, Inc.  All Rights Reserved.
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
 *
ee4d549502b1 6944473: 6941224 misses new files
twisti
parents:
diff changeset
    20
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
ee4d549502b1 6944473: 6941224 misses new files
twisti
parents:
diff changeset
    21
 * CA 95054 USA or visit www.sun.com if you need additional information or
ee4d549502b1 6944473: 6941224 misses new files
twisti
parents:
diff changeset
    22
 * have any questions.
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
ee4d549502b1 6944473: 6941224 misses new files
twisti
parents:
diff changeset
    26
// This function should match SharkStack::CreateStackOverflowCheck
ee4d549502b1 6944473: 6941224 misses new files
twisti
parents:
diff changeset
    27
inline void ZeroStack::overflow_check(int required_words, TRAPS) {
ee4d549502b1 6944473: 6941224 misses new files
twisti
parents:
diff changeset
    28
  // Check the Zero stack
5424
fc1c380199b0 6950178: Zero stack improvements
twisti
parents: 5339
diff changeset
    29
  if (available_words() < required_words) {
5339
ee4d549502b1 6944473: 6941224 misses new files
twisti
parents:
diff changeset
    30
    handle_overflow(THREAD);
ee4d549502b1 6944473: 6941224 misses new files
twisti
parents:
diff changeset
    31
    return;
ee4d549502b1 6944473: 6941224 misses new files
twisti
parents:
diff changeset
    32
  }
ee4d549502b1 6944473: 6941224 misses new files
twisti
parents:
diff changeset
    33
ee4d549502b1 6944473: 6941224 misses new files
twisti
parents:
diff changeset
    34
  // Check the ABI stack
5424
fc1c380199b0 6950178: Zero stack improvements
twisti
parents: 5339
diff changeset
    35
  if (abi_stack_available(THREAD) < 0) {
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
}
5424
fc1c380199b0 6950178: Zero stack improvements
twisti
parents: 5339
diff changeset
    40
fc1c380199b0 6950178: Zero stack improvements
twisti
parents: 5339
diff changeset
    41
// This method returns the amount of ABI stack available for us
fc1c380199b0 6950178: Zero stack improvements
twisti
parents: 5339
diff changeset
    42
// to use under normal circumstances.  Note that the returned
fc1c380199b0 6950178: Zero stack improvements
twisti
parents: 5339
diff changeset
    43
// value can be negative.
fc1c380199b0 6950178: Zero stack improvements
twisti
parents: 5339
diff changeset
    44
inline int ZeroStack::abi_stack_available(Thread *thread) const {
fc1c380199b0 6950178: Zero stack improvements
twisti
parents: 5339
diff changeset
    45
  int stack_used = thread->stack_base() - (address) &stack_used;
fc1c380199b0 6950178: Zero stack improvements
twisti
parents: 5339
diff changeset
    46
  int stack_free = thread->stack_size() - stack_used;
fc1c380199b0 6950178: Zero stack improvements
twisti
parents: 5339
diff changeset
    47
  return stack_free - shadow_pages_size();
fc1c380199b0 6950178: Zero stack improvements
twisti
parents: 5339
diff changeset
    48
}