mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 12:24:24 +00:00
6e28f8bb40
Don't mark SP as clobbered because newer clang versions do not like that. Fixes https://github.com/dart-lang/sdk/issues/46873 TEST=ci Cq-Include-Trybots: luci.dart.try:vm-ffi-android-release-arm-try,vm-ffi-android-product-arm-try Change-Id: I5b794e7bb02e62576c4c40b8132f9c798cb7639c Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/209917 Commit-Queue: Slava Egorov <vegorov@google.com> Reviewed-by: Daco Harkes <dacoharkes@google.com>
49 lines
1.1 KiB
C++
49 lines
1.1 KiB
C++
// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
#include "vm/globals.h"
|
|
#if defined(DART_HOST_OS_FUCHSIA)
|
|
|
|
#include "vm/signal_handler.h"
|
|
|
|
#include "platform/assert.h"
|
|
|
|
namespace dart {
|
|
|
|
uintptr_t SignalHandler::GetProgramCounter(const mcontext_t& mcontext) {
|
|
UNIMPLEMENTED();
|
|
return 0;
|
|
}
|
|
|
|
uintptr_t SignalHandler::GetFramePointer(const mcontext_t& mcontext) {
|
|
UNIMPLEMENTED();
|
|
return 0;
|
|
}
|
|
|
|
uintptr_t SignalHandler::GetCStackPointer(const mcontext_t& mcontext) {
|
|
UNIMPLEMENTED();
|
|
return 0;
|
|
}
|
|
|
|
uintptr_t SignalHandler::GetDartStackPointer(const mcontext_t& mcontext) {
|
|
UNIMPLEMENTED();
|
|
return 0;
|
|
}
|
|
|
|
uintptr_t SignalHandler::GetLinkRegister(const mcontext_t& mcontext) {
|
|
UNIMPLEMENTED();
|
|
return 0;
|
|
}
|
|
|
|
void SignalHandler::Install(SignalAction action) {
|
|
UNIMPLEMENTED();
|
|
}
|
|
|
|
void SignalHandler::Remove() {
|
|
UNIMPLEMENTED();
|
|
}
|
|
|
|
} // namespace dart
|
|
|
|
#endif // defined(DART_HOST_OS_FUCHSIA)
|