diff options
author | Alan Modra <amodra@gmail.com> | 2020-10-08 10:27:43 +1030 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2020-10-08 11:28:05 +1030 |
commit | f9ff65d4dffbaf342dce7a8760059c27683cd962 (patch) | |
tree | 23d322445609fc646df1c053ee567e1f430d9214 /gold/options.h | |
parent | 467eed626acb268c3575e171c030dc0cecf3032a (diff) | |
download | gdb-f9ff65d4dffbaf342dce7a8760059c27683cd962.zip gdb-f9ff65d4dffbaf342dce7a8760059c27683cd962.tar.gz gdb-f9ff65d4dffbaf342dce7a8760059c27683cd962.tar.bz2 |
[GOLD] Increase --split-stack-adjust-size
For functions with small (< 256 bytes) stack frames, the current x86
do_calls_non_split ignores --split-stack-adjust-size and, in
combination with __morestack_non_split, supplies a non-split-stack
function with at least 0x100000 (1M) available stack. On powerpc64, a
default of 0x4000 is not large enough to reliably work with the golang
testsuite. This increase the default size to the defacto x86 value.
* options.h (split_stack_adjust_size): Default to 0x100000.
Diffstat (limited to 'gold/options.h')
-rw-r--r-- | gold/options.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gold/options.h b/gold/options.h index bc21115..51d3614 100644 --- a/gold/options.h +++ b/gold/options.h @@ -1260,7 +1260,7 @@ class General_options "output sections"), N_("(PowerPC only) Each output section has its own stubs")); - DEFINE_uint(split_stack_adjust_size, options::TWO_DASHES, '\0', 0x4000, + DEFINE_uint(split_stack_adjust_size, options::TWO_DASHES, '\0', 0x100000, N_("Stack size when -fsplit-stack function calls non-split"), N_("SIZE")); |