2013-11-07 19:31:05 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2013 The Android Open Source Project
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* * Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* * Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
|
|
|
|
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2021-01-08 02:15:41 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
/* https://github.com/android/ndk/issues/1422 */
|
|
|
|
#include <features.h>
|
2013-11-07 19:31:05 +01:00
|
|
|
|
|
|
|
#include <asm/unistd.h> /* For system call numbers. */
|
|
|
|
#define MAX_ERRNO 4095 /* For recognizing system call error returns. */
|
|
|
|
|
2014-02-20 01:53:20 +01:00
|
|
|
#define __bionic_asm_custom_entry(f)
|
|
|
|
#define __bionic_asm_custom_end(f)
|
|
|
|
#define __bionic_asm_function_type @function
|
2019-12-03 17:18:43 +01:00
|
|
|
#define __bionic_asm_custom_note_gnu_section()
|
2014-02-20 01:53:20 +01:00
|
|
|
|
2017-10-12 07:27:45 +02:00
|
|
|
#if defined(__aarch64__)
|
|
|
|
#include <private/bionic_asm_arm64.h>
|
|
|
|
#elif defined(__arm__)
|
|
|
|
#include <private/bionic_asm_arm.h>
|
|
|
|
#elif defined(__i386__)
|
|
|
|
#include <private/bionic_asm_x86.h>
|
2022-10-11 02:04:34 +02:00
|
|
|
#elif defined(__riscv)
|
|
|
|
#include <private/bionic_asm_riscv64.h>
|
2017-10-12 07:27:45 +02:00
|
|
|
#elif defined(__x86_64__)
|
|
|
|
#include <private/bionic_asm_x86_64.h>
|
|
|
|
#endif
|
2014-02-20 01:53:20 +01:00
|
|
|
|
2015-10-01 00:32:15 +02:00
|
|
|
#define ENTRY_NO_DWARF(f) \
|
2014-02-20 01:53:20 +01:00
|
|
|
.text; \
|
|
|
|
.globl f; \
|
2016-10-27 11:32:47 +02:00
|
|
|
.balign __bionic_asm_align; \
|
2014-02-20 01:53:20 +01:00
|
|
|
.type f, __bionic_asm_function_type; \
|
|
|
|
f: \
|
|
|
|
__bionic_asm_custom_entry(f); \
|
2015-10-01 00:32:15 +02:00
|
|
|
|
|
|
|
#define ENTRY(f) \
|
|
|
|
ENTRY_NO_DWARF(f) \
|
2014-02-20 01:53:20 +01:00
|
|
|
.cfi_startproc \
|
|
|
|
|
2015-10-01 00:32:15 +02:00
|
|
|
#define END_NO_DWARF(f) \
|
2014-02-20 01:53:20 +01:00
|
|
|
.size f, .-f; \
|
|
|
|
__bionic_asm_custom_end(f) \
|
2014-02-19 23:54:31 +01:00
|
|
|
|
2015-10-01 00:32:15 +02:00
|
|
|
#define END(f) \
|
|
|
|
.cfi_endproc; \
|
|
|
|
END_NO_DWARF(f) \
|
|
|
|
|
2014-02-20 01:53:20 +01:00
|
|
|
/* Like ENTRY, but with hidden visibility. */
|
|
|
|
#define ENTRY_PRIVATE(f) \
|
|
|
|
ENTRY(f); \
|
|
|
|
.hidden f \
|
2013-11-07 19:31:05 +01:00
|
|
|
|
2015-10-01 00:32:15 +02:00
|
|
|
/* Like ENTRY_NO_DWARF, but with hidden visibility. */
|
|
|
|
#define ENTRY_PRIVATE_NO_DWARF(f) \
|
|
|
|
ENTRY_NO_DWARF(f); \
|
|
|
|
.hidden f \
|
|
|
|
|
2017-10-25 13:07:45 +02:00
|
|
|
#define __BIONIC_WEAK_ASM_FOR_NATIVE_BRIDGE(f) \
|
|
|
|
.weak f; \
|
|
|
|
|
2015-03-14 01:43:52 +01:00
|
|
|
#define ALIAS_SYMBOL(alias, original) \
|
|
|
|
.globl alias; \
|
|
|
|
.equ alias, original
|
|
|
|
|
2019-12-03 17:18:43 +01:00
|
|
|
#define NOTE_GNU_PROPERTY() \
|
|
|
|
__bionic_asm_custom_note_gnu_section()
|