Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 565610 Details for
Bug 678204
=www-client/firefox-60.5.1 - Unified_cpp_tools_profiler0.o: {standard input}: Assembler messages: {standard input}:488: Error: bad expression -- `b #_ZL14SigprofHandleriP9siginfo_tPv'
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
patch from debian
firefox-60.0-mozbg-1463035-Remove-MOZ_SIGNAL_TRAMPOLINE.-r-darchons.patch (text/plain), 3.17 KB, created by
tt_1
on 2019-02-17 07:44:12 UTC
(
hide
)
Description:
patch from debian
Filename:
MIME Type:
Creator:
tt_1
Created:
2019-02-17 07:44:12 UTC
Size:
3.17 KB
patch
obsolete
>From: Mike Hommey <mh+mozilla@glandium.org> >Date: Mon, 21 May 2018 12:04:22 +0900 >Subject: Bug 1463035 - Remove MOZ_SIGNAL_TRAMPOLINE. r?darchons > >For some reason, GNU as is not happy with the assembly generated after >bug 1238661 anymore on Debian armel. > >OTOH, as mentioned in bug 1238661 comment 4, we actually don't need this >workaround anymore, so let's just kill it. >--- > mfbt/LinuxSignal.h | 38 ------------------- > mfbt/moz.build | 4 -- > .../profiler/core/platform-linux-android.cpp | 3 +- > 3 files changed, 1 insertion(+), 44 deletions(-) > delete mode 100644 mfbt/LinuxSignal.h > >diff --git a/mfbt/LinuxSignal.h b/mfbt/LinuxSignal.h >deleted file mode 100644 >index 112b6a1b7e0d..000000000000 >--- a/mfbt/LinuxSignal.h >+++ /dev/null >@@ -1,38 +0,0 @@ >-/* This Source Code Form is subject to the terms of the Mozilla Public >- * License, v. 2.0. If a copy of the MPL was not distributed with this >- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ >- >-#ifndef mozilla_LinuxSignal_h >-#define mozilla_LinuxSignal_h >- >-namespace mozilla { >- >-#if defined(__arm__) >- >-// Some (old) Linux kernels on ARM have a bug where a signal handler >-// can be called without clearing the IT bits in CPSR first. The result >-// is that the first few instructions of the handler could be skipped, >-// ultimately resulting in crashes. To workaround this bug, the handler >-// on ARM is a trampoline that starts with enough NOP instructions, so >-// that even if the IT bits are not cleared, only the NOP instructions >-// will be skipped over. >- >-template <void (*H)(int, siginfo_t*, void*)> >-__attribute__((naked)) void SignalTrampoline(int aSignal, siginfo_t* aInfo, >- void* aContext) { >- asm volatile("nop; nop; nop; nop" : : : "memory"); >- >- asm volatile("b %0" : : "X"(H) : "memory"); >-} >- >-#define MOZ_SIGNAL_TRAMPOLINE(h) (mozilla::SignalTrampoline<h>) >- >-#else // __arm__ >- >-#define MOZ_SIGNAL_TRAMPOLINE(h) (h) >- >-#endif // __arm__ >- >-} // namespace mozilla >- >-#endif // mozilla_LinuxSignal_h >diff --git a/mfbt/moz.build b/mfbt/moz.build >index 87c7d3f0e90a..587dbc58a6de 100644 >--- a/mfbt/moz.build >+++ b/mfbt/moz.build >@@ -120,10 +120,6 @@ if CONFIG['OS_ARCH'] == 'WINNT': > EXPORTS.mozilla += [ > 'WindowsVersion.h', > ] >-elif CONFIG['OS_ARCH'] == 'Linux': >- EXPORTS.mozilla += [ >- 'LinuxSignal.h', >- ] > > UNIFIED_SOURCES += [ > 'Assertions.cpp', >diff --git a/tools/profiler/core/platform-linux-android.cpp b/tools/profiler/core/platform-linux-android.cpp >index 09eb9437e568..79f006748599 100644 >--- a/tools/profiler/core/platform-linux-android.cpp >+++ b/tools/profiler/core/platform-linux-android.cpp >@@ -60,7 +60,6 @@ > #include <stdarg.h> > > #include "prenv.h" >-#include "mozilla/LinuxSignal.h" > #include "mozilla/PodOperations.h" > #include "mozilla/DebugOnly.h" > >@@ -253,7 +252,7 @@ Sampler::Sampler(PSLockRef aLock) > > // Request profiling signals. > struct sigaction sa; >- sa.sa_sigaction = MOZ_SIGNAL_TRAMPOLINE(SigprofHandler); >+ sa.sa_sigaction = SigprofHandler; > sigemptyset(&sa.sa_mask); > sa.sa_flags = SA_RESTART | SA_SIGINFO; > if (sigaction(SIGPROF, &sa, &mOldSigprofHandler) != 0) {
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 678204
:
565606
|
565608
| 565610 |
565932