jfbastien@apple.com | 148b8d9 | 2016-12-08 21:09:06 +0000 | [diff] [blame] | 1 | /* |
mark.lam@apple.com | 3a72ba2 | 2021-05-10 23:21:41 +0000 | [diff] [blame] | 2 | * Copyright (C) 2016-2021 Apple Inc. All rights reserved. |
jfbastien@apple.com | 148b8d9 | 2016-12-08 21:09:06 +0000 | [diff] [blame] | 3 | * |
| 4 | * Redistribution and use in source and binary forms, with or without |
| 5 | * modification, are permitted provided that the following conditions |
| 6 | * are met: |
| 7 | * 1. Redistributions of source code must retain the above copyright |
| 8 | * notice, this list of conditions and the following disclaimer. |
| 9 | * 2. Redistributions in binary form must reproduce the above copyright |
| 10 | * notice, this list of conditions and the following disclaimer in the |
| 11 | * documentation and/or other materials provided with the distribution. |
| 12 | * |
| 13 | * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY |
| 14 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 15 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 16 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR |
| 17 | * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
| 18 | * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 19 | * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 20 | * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
| 21 | * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 22 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 23 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 24 | */ |
| 25 | |
| 26 | #include "config.h" |
| 27 | #include "WasmBinding.h" |
| 28 | |
| 29 | #if ENABLE(WEBASSEMBLY) |
| 30 | |
sbarati@apple.com | 6128a58 | 2017-01-26 02:38:41 +0000 | [diff] [blame] | 31 | #include "CCallHelpers.h" |
commit-queue@webkit.org | 0f5197e | 2022-06-10 09:37:34 +0000 | [diff] [blame] | 32 | #include "DisallowMacroScratchRegisterUsage.h" |
jfbastien@apple.com | 148b8d9 | 2016-12-08 21:09:06 +0000 | [diff] [blame] | 33 | #include "LinkBuffer.h" |
aperez@igalia.com | 0d1c4f2 | 2019-05-23 15:47:10 +0000 | [diff] [blame] | 34 | #include "WasmCallingConvention.h" |
jfbastien@apple.com | 89177d3 | 2017-10-26 15:33:55 +0000 | [diff] [blame] | 35 | #include "WasmInstance.h" |
jfbastien@apple.com | 148b8d9 | 2016-12-08 21:09:06 +0000 | [diff] [blame] | 36 | |
| 37 | namespace JSC { namespace Wasm { |
| 38 | |
sbarati@apple.com | afec36b | 2017-03-29 06:15:23 +0000 | [diff] [blame] | 39 | using JIT = CCallHelpers; |
jfbastien@apple.com | 373aa05 | 2017-01-03 01:57:40 +0000 | [diff] [blame] | 40 | |
mark.lam@apple.com | de0dba7 | 2018-04-18 03:31:09 +0000 | [diff] [blame] | 41 | Expected<MacroAssemblerCodeRef<WasmEntryPtrTag>, BindingFailure> wasmToWasm(unsigned importIndex) |
jfbastien@apple.com | 373aa05 | 2017-01-03 01:57:40 +0000 | [diff] [blame] | 42 | { |
mark.lam@apple.com | a61c6c7 | 2018-03-30 16:31:06 +0000 | [diff] [blame] | 43 | // FIXME: Consider uniquify the stubs based on signature + index to see if this saves memory. |
| 44 | // https://bugs.webkit.org/show_bug.cgi?id=184157 |
sbarati@apple.com | afec36b | 2017-03-29 06:15:23 +0000 | [diff] [blame] | 45 | JIT jit; |
jfbastien@apple.com | 373aa05 | 2017-01-03 01:57:40 +0000 | [diff] [blame] | 46 | |
keith_miller@apple.com | 8e7bd48 | 2019-10-01 16:38:26 +0000 | [diff] [blame] | 47 | GPRReg scratch = wasmCallingConvention().prologueScratchGPRs[0]; |
commit-queue@webkit.org | 0f5197e | 2022-06-10 09:37:34 +0000 | [diff] [blame] | 48 | #if USE(JSVALUE32_64) |
| 49 | GPRReg baseMemory = wasmCallingConvention().prologueScratchGPRs[1]; |
| 50 | GPRReg sizeRegAsScratch = wasmCallingConvention().prologueScratchGPRs[2]; |
| 51 | #else |
| 52 | const PinnedRegisterInfo& pinnedRegs = PinnedRegisterInfo::get(); |
jfbastien@apple.com | 373aa05 | 2017-01-03 01:57:40 +0000 | [diff] [blame] | 53 | GPRReg baseMemory = pinnedRegs.baseMemoryPointer; |
mark.lam@apple.com | b058b15 | 2022-05-27 23:09:30 +0000 | [diff] [blame] | 54 | GPRReg sizeRegAsScratch = pinnedRegs.boundsCheckingSizeRegister; |
commit-queue@webkit.org | 0f5197e | 2022-06-10 09:37:34 +0000 | [diff] [blame] | 55 | #endif |
| 56 | ASSERT(baseMemory != GPRReg::InvalidGPRReg); |
keith_miller@apple.com | 8e7bd48 | 2019-10-01 16:38:26 +0000 | [diff] [blame] | 57 | ASSERT(sizeRegAsScratch != GPRReg::InvalidGPRReg); |
commit-queue@webkit.org | 0f5197e | 2022-06-10 09:37:34 +0000 | [diff] [blame] | 58 | ASSERT(scratch != GPRReg::InvalidGPRReg); |
| 59 | ASSERT(noOverlap(scratch, baseMemory, sizeRegAsScratch)); |
sbarati@apple.com | 83ea2fc | 2017-05-18 19:38:10 +0000 | [diff] [blame] | 60 | |
sbarati@apple.com | 83ea2fc | 2017-05-18 19:38:10 +0000 | [diff] [blame] | 61 | // B3's call codegen ensures that the JSCell is a WebAssemblyFunction. |
jfbastien@apple.com | d9f999e | 2017-10-20 02:23:29 +0000 | [diff] [blame] | 62 | jit.loadWasmContextInstance(sizeRegAsScratch); // Old Instance* |
jfbastien@apple.com | 89177d3 | 2017-10-26 15:33:55 +0000 | [diff] [blame] | 63 | // Get the callee's Wasm::Instance and set it as WasmContext's instance. The caller will take care of restoring its own Instance. |
| 64 | jit.loadPtr(JIT::Address(sizeRegAsScratch, Instance::offsetOfTargetInstance(importIndex)), baseMemory); // Instance*. |
commit-queue@webkit.org | 381ffdf | 2019-09-18 21:13:26 +0000 | [diff] [blame] | 65 | // While we're accessing that cacheline, also get the wasm entrypoint so we can tail call to it below. |
mark.lam@apple.com | 52fa2cc | 2018-03-30 05:04:44 +0000 | [diff] [blame] | 66 | jit.loadPtr(JIT::Address(sizeRegAsScratch, Instance::offsetOfWasmEntrypointLoadLocation(importIndex)), scratch); |
jfbastien@apple.com | d9f999e | 2017-10-20 02:23:29 +0000 | [diff] [blame] | 67 | jit.storeWasmContextInstance(baseMemory); |
sbarati@apple.com | 83ea2fc | 2017-05-18 19:38:10 +0000 | [diff] [blame] | 68 | |
jfbastien@apple.com | 89177d3 | 2017-10-26 15:33:55 +0000 | [diff] [blame] | 69 | jit.loadPtr(JIT::Address(sizeRegAsScratch, Instance::offsetOfCachedStackLimit()), sizeRegAsScratch); |
| 70 | jit.storePtr(sizeRegAsScratch, JIT::Address(baseMemory, Instance::offsetOfCachedStackLimit())); |
sbarati@apple.com | 83ea2fc | 2017-05-18 19:38:10 +0000 | [diff] [blame] | 71 | |
commit-queue@webkit.org | 0f5197e | 2022-06-10 09:37:34 +0000 | [diff] [blame] | 72 | #if !CPU(ARM) // ARM has no pinned registers for Wasm Memory, so no need to set them up |
jfbastien@apple.com | 89177d3 | 2017-10-26 15:33:55 +0000 | [diff] [blame] | 73 | // FIXME the following code assumes that all Wasm::Instance have the same pinned registers. https://bugs.webkit.org/show_bug.cgi?id=162952 |
sbarati@apple.com | 83ea2fc | 2017-05-18 19:38:10 +0000 | [diff] [blame] | 74 | // Set up the callee's baseMemory register as well as the memory size registers. |
commit-queue@webkit.org | f79caa4 | 2019-06-12 18:40:56 +0000 | [diff] [blame] | 75 | { |
ysuzuki@apple.com | b4cae91 | 2020-11-18 20:22:16 +0000 | [diff] [blame] | 76 | jit.loadPtr(JIT::Address(baseMemory, Wasm::Instance::offsetOfCachedBoundsCheckingSize()), pinnedRegs.boundsCheckingSizeRegister); // Bound checking size. |
commit-queue@webkit.org | f79caa4 | 2019-06-12 18:40:56 +0000 | [diff] [blame] | 77 | jit.loadPtr(JIT::Address(baseMemory, Wasm::Instance::offsetOfCachedMemory()), baseMemory); // Wasm::Memory::TaggedArrayStoragePtr<void> (void*). |
sbarati@apple.com | 161d52c | 2021-03-26 05:25:40 +0000 | [diff] [blame] | 78 | jit.cageConditionallyAndUntag(Gigacage::Primitive, baseMemory, pinnedRegs.boundsCheckingSizeRegister, wasmCallingConvention().prologueScratchGPRs[1]); |
commit-queue@webkit.org | f79caa4 | 2019-06-12 18:40:56 +0000 | [diff] [blame] | 79 | } |
commit-queue@webkit.org | 0f5197e | 2022-06-10 09:37:34 +0000 | [diff] [blame] | 80 | #endif |
jfbastien@apple.com | 373aa05 | 2017-01-03 01:57:40 +0000 | [diff] [blame] | 81 | |
| 82 | // Tail call into the callee WebAssembly function. |
sbarati@apple.com | 6118bf4 | 2021-10-12 06:32:55 +0000 | [diff] [blame] | 83 | jit.loadPtr(JIT::Address(scratch), scratch); |
ysuzuki@apple.com | 4987151 | 2019-08-14 20:15:04 +0000 | [diff] [blame] | 84 | jit.farJump(scratch, WasmEntryPtrTag); |
jfbastien@apple.com | 373aa05 | 2017-01-03 01:57:40 +0000 | [diff] [blame] | 85 | |
mark.lam@apple.com | 55ae849 | 2021-05-23 06:07:01 +0000 | [diff] [blame] | 86 | LinkBuffer patchBuffer(jit, GLOBAL_THUNK_ID, LinkBuffer::Profile::WasmThunk, JITCompilationCanFail); |
jfbastien@apple.com | 817d1432 | 2017-06-28 06:42:13 +0000 | [diff] [blame] | 87 | if (UNLIKELY(patchBuffer.didFailToAllocate())) |
| 88 | return makeUnexpected(BindingFailure::OutOfMemory); |
| 89 | |
keith_miller@apple.com | 8e7bd48 | 2019-10-01 16:38:26 +0000 | [diff] [blame] | 90 | return FINALIZE_WASM_CODE(patchBuffer, WasmEntryPtrTag, "WebAssembly->WebAssembly import[%i]", importIndex); |
jfbastien@apple.com | 373aa05 | 2017-01-03 01:57:40 +0000 | [diff] [blame] | 91 | } |
| 92 | |
jfbastien@apple.com | 148b8d9 | 2016-12-08 21:09:06 +0000 | [diff] [blame] | 93 | } } // namespace JSC::Wasm |
| 94 | |
| 95 | #endif // ENABLE(WEBASSEMBLY) |