[vm, compiler] Fix kNativeCallbackSharedStubSize for debug MSAN.
TEST=ci Bug: https://github.com/dart-lang/sdk/issues/62835 Change-Id: I2b8d0fd63144df5ed7255ef9d44944af39d618a1 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/487280 Commit-Queue: Ryan Macnak <rmacnak@google.com> Reviewed-by: Alexander Markov <alexmarkov@google.com>
This commit is contained in:
committed by
Commit Queue
parent
32b8c8f12f
commit
1e3a9469d7
@@ -329,7 +329,7 @@ class FfiCallbackMetadata {
|
||||
|
||||
#if defined(TARGET_ARCH_X64)
|
||||
static constexpr intptr_t kNativeCallbackTrampolineSize = 12;
|
||||
static constexpr intptr_t kNativeCallbackSharedStubSize = 417;
|
||||
static constexpr intptr_t kNativeCallbackSharedStubSize = 487;
|
||||
static constexpr intptr_t kNativeCallbackTrampolineStackDelta = 2;
|
||||
#elif defined(TARGET_ARCH_IA32)
|
||||
static constexpr intptr_t kNativeCallbackTrampolineSize = 10;
|
||||
@@ -341,7 +341,7 @@ class FfiCallbackMetadata {
|
||||
static constexpr intptr_t kNativeCallbackTrampolineStackDelta = 4;
|
||||
#elif defined(TARGET_ARCH_ARM64)
|
||||
static constexpr intptr_t kNativeCallbackTrampolineSize = 8;
|
||||
static constexpr intptr_t kNativeCallbackSharedStubSize = 496;
|
||||
static constexpr intptr_t kNativeCallbackSharedStubSize = 596;
|
||||
static constexpr intptr_t kNativeCallbackTrampolineStackDelta = 2;
|
||||
#elif defined(TARGET_ARCH_RISCV32)
|
||||
static constexpr intptr_t kNativeCallbackTrampolineSize = 8;
|
||||
|
||||
Reference in New Issue
Block a user