Add a calling-convention setting to the `Flags` used as part of the `TargetIsa`. This allows Cretonne code that generates calls to use the correct convention, such as when emitting libcalls during legalization or when the wasm frontend is decoding functions. This setting can be overridden per-function. This also adds "fast", "cold", and "fastcall" conventions, with "fast" as the new default. Note that "fast" and "cold" are not intended to be ABI-compatible across Cretonne versions. This will also ensure Windows users will get an `unimplemented!` rather than silent calling-convention mismatches, which reflects the fact that Windows calling conventions are not yet implemented. This also renames SpiderWASM, which isn't camel-case, to Baldrdash, which is, and which is also a more relevant name.
119 lines
3.9 KiB
Python
119 lines
3.9 KiB
Python
"""
|
|
Cretonne shared settings.
|
|
|
|
This module defines settings relevant for all code generators.
|
|
"""
|
|
from __future__ import absolute_import
|
|
from cdsl.settings import SettingGroup, BoolSetting, EnumSetting, NumSetting
|
|
|
|
group = SettingGroup('shared')
|
|
|
|
opt_level = EnumSetting(
|
|
"""
|
|
Optimization level:
|
|
|
|
- default: Very profitable optimizations enabled, none slow.
|
|
- best: Enable all optimizations
|
|
- fastest: Optimize for compile time by disabling most optimizations.
|
|
""",
|
|
'default', 'best', 'fastest')
|
|
|
|
enable_verifier = BoolSetting(
|
|
"""
|
|
Run the Cretonne IR verifier at strategic times during compilation.
|
|
|
|
This makes compilation slower but catches many bugs. The verifier is
|
|
disabled by default, except when reading Cretonne IR from a text file.
|
|
""",
|
|
default=True)
|
|
|
|
is_64bit = BoolSetting("Enable 64-bit code generation")
|
|
|
|
call_conv = EnumSetting(
|
|
"""
|
|
Default calling convention:
|
|
|
|
- fast: not-ABI-stable convention for best performance
|
|
- cold: not-ABI-stable convention for infrequently executed code
|
|
- system_v: System V-style convention used on many platforms
|
|
- fastcall: Windows "fastcall" convention, also used for x64 and ARM
|
|
- baldrdash: SpiderMonkey WebAssembly convention
|
|
|
|
The default calling convention may be overridden by individual
|
|
functions.
|
|
""",
|
|
'fast', 'cold', 'system_v', 'fastcall', 'baldrdash')
|
|
|
|
# Note that Cretonne doesn't currently need an is_pie flag, because PIE is just
|
|
# PIC where symbols can't be pre-empted, which can be expressed with the
|
|
# `colocated` flag on external functions and global variables.
|
|
is_pic = BoolSetting("Enable Position-Independent Code generation")
|
|
|
|
return_at_end = BoolSetting(
|
|
"""
|
|
Generate functions with at most a single return instruction at the
|
|
end of the function.
|
|
|
|
This guarantees that functions do not have any internal return
|
|
instructions. Either they never return, or they have a single return
|
|
instruction at the end.
|
|
""")
|
|
|
|
avoid_div_traps = BoolSetting(
|
|
"""
|
|
Generate explicit checks around native division instructions to avoid
|
|
their trapping.
|
|
|
|
This is primarily used by SpiderMonkey which doesn't install a signal
|
|
handler for SIGFPE, but expects a SIGILL trap for division by zero.
|
|
|
|
On ISAs like ARM where the native division instructions don't trap,
|
|
this setting has no effect - explicit checks are always inserted.
|
|
""")
|
|
|
|
is_compressed = BoolSetting("Enable compressed instructions")
|
|
|
|
enable_float = BoolSetting(
|
|
"""
|
|
Enable the use of floating-point instructions
|
|
|
|
Disabling use of floating-point instructions is not yet implemented.
|
|
""",
|
|
default=True)
|
|
|
|
enable_simd = BoolSetting(
|
|
"""Enable the use of SIMD instructions.""",
|
|
default=True)
|
|
|
|
enable_atomics = BoolSetting(
|
|
"""Enable the use of atomic instructions""",
|
|
default=True)
|
|
|
|
#
|
|
# Settings specific to the `baldrdash` calling convention.
|
|
#
|
|
baldrdash_prologue_words = NumSetting(
|
|
"""
|
|
Number of pointer-sized words pushed by the baldrdash prologue.
|
|
|
|
Functions with the `baldrdash` calling convention don't generate their
|
|
own prologue and epilogue. They depend on externally generated code
|
|
that pushes a fixed number of words in the prologue and restores them
|
|
in the epilogue.
|
|
|
|
This setting configures the number of pointer-sized words pushed on the
|
|
stack when the Cretonne-generated code is entered. This includes the
|
|
pushed return address on x86.
|
|
""")
|
|
|
|
#
|
|
# BaldrMonkey requires that not-yet-relocated function addresses be encoded
|
|
# as all-ones bitpatterns.
|
|
#
|
|
allones_funcaddrs = BoolSetting(
|
|
"""
|
|
Emit not-yet-relocated function addresses as all-ones bit patterns.
|
|
""")
|
|
|
|
group.close(globals())
|