diff options
author | Andy Wingo <wingo@igalia.com> | 2021-04-21 15:41:48 +0200 |
---|---|---|
committer | Andy Wingo <wingo@igalia.com> | 2021-05-31 10:40:38 +0200 |
commit | bf35f4af51cddd743435bb6b94a45592c967891a (patch) | |
tree | 4fe1235b90590209029fee0d60aa2a9a11a5f3b6 /llvm/lib/CodeGen/LiveDebugVariables.cpp | |
parent | 2290a80b4dcbeb230ea47ea59b00205ccefbaa96 (diff) | |
download | llvm-bf35f4af51cddd743435bb6b94a45592c967891a.zip llvm-bf35f4af51cddd743435bb6b94a45592c967891a.tar.gz llvm-bf35f4af51cddd743435bb6b94a45592c967891a.tar.bz2 |
[WebAssembly][CodeGen] IR support for WebAssembly local variables
This patch adds TargetStackID::WasmLocal. This stack holds locations of
values that are only addressable by name -- not via a pointer to memory.
For the WebAssembly target, these objects are lowered to WebAssembly
local variables, which are managed by the WebAssembly run-time and are
not addressable by linear memory.
For the WebAssembly target IR indicates that an AllocaInst should be put
on TargetStackID::WasmLocal by putting it in the non-integral address
space WASM_ADDRESS_SPACE_WASM_VAR, with value 1. SROA will mostly lift
these allocations to SSA locals, but any alloca that reaches instruction
selection (usually in non-optimized builds) will be assigned the new
TargetStackID there. Loads and stores to those values are transformed
to new WebAssemblyISD::LOCAL_GET / WebAssemblyISD::LOCAL_SET nodes,
which then lower to the type-specific LOCAL_GET_I32 etc instructions via
tablegen patterns.
Differential Revision: https://reviews.llvm.org/D101140
Diffstat (limited to 'llvm/lib/CodeGen/LiveDebugVariables.cpp')
0 files changed, 0 insertions, 0 deletions