author | stefank |
Thu, 09 May 2019 14:28:30 +0200 | |
changeset 54786 | ebf733a324d4 |
parent 53244 | 9807daeb47c4 |
permissions | -rw-r--r-- |
5339 | 1 |
/* |
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
47687
diff
changeset
|
2 |
* Copyright (c) 2003, 2019, Oracle and/or its affiliates. All rights reserved. |
5339 | 3 |
* Copyright 2010 Red Hat, Inc. |
4 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
|
5 |
* |
|
6 |
* This code is free software; you can redistribute it and/or modify it |
|
7 |
* under the terms of the GNU General Public License version 2 only, as |
|
8 |
* published by the Free Software Foundation. |
|
9 |
* |
|
10 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
11 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
12 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
13 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
14 |
* accompanied this code). |
|
15 |
* |
|
16 |
* You should have received a copy of the GNU General Public License version |
|
17 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
18 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
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 | 23 |
* |
24 |
*/ |
|
25 |
||
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
47687
diff
changeset
|
26 |
#ifndef CPU_ZERO_STACK_ZERO_INLINE_HPP |
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
47687
diff
changeset
|
27 |
#define CPU_ZERO_STACK_ZERO_INLINE_HPP |
7397 | 28 |
|
29 |
#include "runtime/thread.hpp" |
|
30 |
#include "stack_zero.hpp" |
|
31 |
||
5339 | 32 |
inline void ZeroStack::overflow_check(int required_words, TRAPS) { |
33 |
// Check the Zero stack |
|
5424 | 34 |
if (available_words() < required_words) { |
5339 | 35 |
handle_overflow(THREAD); |
36 |
return; |
|
37 |
} |
|
38 |
||
39 |
// Check the ABI stack |
|
5424 | 40 |
if (abi_stack_available(THREAD) < 0) { |
5339 | 41 |
handle_overflow(THREAD); |
42 |
return; |
|
43 |
} |
|
44 |
} |
|
5424 | 45 |
|
46 |
// This method returns the amount of ABI stack available for us |
|
47 |
// to use under normal circumstances. Note that the returned |
|
48 |
// value can be negative. |
|
49 |
inline int ZeroStack::abi_stack_available(Thread *thread) const { |
|
27669
c2c526bc1a18
8064815: Zero+PPC64: Stack overflow when running Maven
simonis
parents:
7397
diff
changeset
|
50 |
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
|
51 |
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
|
52 |
+ (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
|
53 |
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
|
54 |
return stack_free; |
5424 | 55 |
} |
7397 | 56 |
|
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
47687
diff
changeset
|
57 |
#endif // CPU_ZERO_STACK_ZERO_INLINE_HPP |