93ea09f65c
On aarch64/x86/x86_64 add a macro that inserts a cfi directive that will stop unwinding. For arm, clang doesn't allow emitting .cantunwind, so add a comment and leave it the same as it current is. Add this macro to __libc_init and __start_thread. Also, remove duplicate compilation of libc_init_static.cpp that already includes the static library that includes that file. Bug: 15469122 Test: Did unwinds using new unwinder tool (unwind) and debuggerd -b Test: and verified new unwinder works on aarch64/x86/x86_64. Test: Verified that it works on old unwinder for aarch64/x86, but Test: x86_64 doesn't work properly, but as well as before. Change-Id: I77302e8f6c7ba1549d98a4a164106ee82c9ecadc
82 lines
2.9 KiB
C++
82 lines
2.9 KiB
C++
/*
|
|
* Copyright (C) 2010 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#ifndef _BIONIC_MACROS_H_
|
|
#define _BIONIC_MACROS_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
// Frameworks OpenGL code currently leaks this header and allows
|
|
// collisions with other declarations, e.g., from libnativehelper.
|
|
// TODO: Remove once cleaned up. b/18334516
|
|
#if !defined(DISALLOW_COPY_AND_ASSIGN)
|
|
// DISALLOW_COPY_AND_ASSIGN disallows the copy and operator= functions.
|
|
// It goes in the private: declarations in a class.
|
|
#define DISALLOW_COPY_AND_ASSIGN(TypeName) \
|
|
TypeName(const TypeName&) = delete; \
|
|
void operator=(const TypeName&) = delete
|
|
#endif // !defined(DISALLOW_COPY_AND_ASSIGN)
|
|
|
|
// A macro to disallow all the implicit constructors, namely the
|
|
// default constructor, copy constructor and operator= functions.
|
|
//
|
|
// This should be used in the private: declarations for a class
|
|
// that wants to prevent anyone from instantiating it. This is
|
|
// especially useful for classes containing only static methods.
|
|
#define DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \
|
|
TypeName() = delete; \
|
|
DISALLOW_COPY_AND_ASSIGN(TypeName)
|
|
|
|
#define BIONIC_ALIGN(value, alignment) \
|
|
(((value) + (alignment) - 1) & ~((alignment) - 1))
|
|
|
|
#define BIONIC_ROUND_UP_POWER_OF_2(value) \
|
|
((sizeof(value) == 8) \
|
|
? (1UL << (64 - __builtin_clzl(static_cast<unsigned long>(value)))) \
|
|
: (1UL << (32 - __builtin_clz(static_cast<unsigned int>(value)))))
|
|
|
|
static constexpr uintptr_t align_down(uintptr_t p, size_t align) {
|
|
return p & ~(align - 1);
|
|
}
|
|
|
|
static constexpr uintptr_t align_up(uintptr_t p, size_t align) {
|
|
return (p + align - 1) & ~(align - 1);
|
|
}
|
|
|
|
template <typename T>
|
|
static inline T* align_down(T* p, size_t align) {
|
|
return reinterpret_cast<T*>(align_down(reinterpret_cast<uintptr_t>(p), align));
|
|
}
|
|
|
|
template <typename T>
|
|
static inline T* align_up(T* p, size_t align) {
|
|
return reinterpret_cast<T*>(align_up(reinterpret_cast<uintptr_t>(p), align));
|
|
}
|
|
|
|
#if defined(__arm__)
|
|
// Do not emit anything for arm, clang does not allow emiting an arm unwind
|
|
// directive.
|
|
// #define BIONIC_STOP_UNWIND asm volatile(".cantunwind")
|
|
#define BIONIC_STOP_UNWIND
|
|
#elif defined(__aarch64__)
|
|
#define BIONIC_STOP_UNWIND asm volatile(".cfi_undefined x30")
|
|
#elif defined(__i386__)
|
|
#define BIONIC_STOP_UNWIND asm volatile(".cfi_undefined \%eip")
|
|
#elif defined(__x86_64__)
|
|
#define BIONIC_STOP_UNWIND asm volatile(".cfi_undefined \%rip")
|
|
#endif
|
|
|
|
#endif // _BIONIC_MACROS_H_
|