/* * Copyright (C) 2026 Waldemar Brodkorb * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. */ /* Miscellaneous macros. Copyright (C) 2022-2026 Free Software Foundation, Inc. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with the GNU C Library. If not, see . */ #ifndef _SYS_ASM_H #define _SYS_ASM_H #include /* Macros to handle different pointer/register sizes for 32/64-bit code. */ #if __loongarch_grlen == 64 #define SZREG 8 #define REG_L ld.d #define REG_S st.d #define SRLI srli.d #define SLLI slli.d #define ADDI addi.d #define ADD add.d #define SUB sub.d #define LI li.d #define BSTRINS bstrins.d #elif __loongarch_grlen == 32 #define SZREG 4 #define REG_L ld.w #define REG_S st.w #define SRLI srli.w #define SLLI slli.w #define ADDI addi.w #define ADD add.w #define SUB sub.w #define LI li.w #define BSTRINS bstrins.w #else #error __loongarch_grlen must equal 32 or 64 #endif #if __loongarch_frlen == 64 #define SZFREG 8 #define FREG_L fld.d #define FREG_S fst.d #elif __loongarch_frlen == 32 #define SZFREG 4 #define FREG_L fld.s #define FREG_S fst.s #endif #define SZVREG 16 #define SZXREG 32 /* Declare leaf routine. The usage of macro LEAF/ENTRY is as follows: 1. LEAF(fcn) -- the align value of fcn is .align 3 (default value) 2. LEAF(fcn, 6) -- the align value of fcn is .align 6 */ #define LEAF_IMPL(symbol, aln, ...) \ .text; \ .globl symbol; \ .align aln; \ .type symbol, @function; \ symbol: #define LEAF(...) LEAF_IMPL(__VA_ARGS__, 3) #define ENTRY(...) LEAF(__VA_ARGS__) #define LEAF_NO_ALIGN(symbol) \ .text; \ .globl symbol; \ .type symbol, @function; \ symbol: #define ENTRY_NO_ALIGN(symbol) LEAF_NO_ALIGN(symbol) /* Mark end of function. */ #undef END #define END(function) \ .size function, .- function; /* Stack alignment. */ #define ALMASK ~15 #endif /* sys/asm.h */