1 /* SPDX-License-Identifier: GPL-2.0-or-later W !! 1 /* libgcc1 routines for 68000 w/o floating-point hardware. 2 #include <linux/linkage.h> !! 2 Copyright (C) 1994, 1996, 1997, 1998 Free Software Foundation, Inc. 3 #include <asm/asmmacro.h> !! 3 4 #include <asm/core.h> !! 4 This file is part of GNU CC. 5 << 6 ENTRY(__umodsi3) << 7 << 8 abi_entry_default << 9 #if XCHAL_HAVE_DIV32 << 10 remu a2, a2, a3 << 11 #else << 12 bltui a3, 2, .Lle_one /* check if th << 13 5 14 do_nsau a5, a2, a6, a7 /* dividend_sh !! 6 GNU CC is free software; you can redistribute it and/or modify it 15 do_nsau a4, a3, a6, a7 /* divisor_shi !! 7 under the terms of the GNU General Public License as published by the 16 bgeu a5, a4, .Lspecial !! 8 Free Software Foundation; either version 2, or (at your option) any 17 !! 9 later version. 18 sub a4, a4, a5 /* count = div !! 10 19 ssl a4 !! 11 In addition to the permissions in the GNU General Public License, the 20 sll a3, a3 /* divisor <<= !! 12 Free Software Foundation gives you unlimited permission to link the 21 !! 13 compiled version of this file with other programs, and to distribute 22 /* test-subtract-and-shift loop */ !! 14 those programs without any restriction coming from the use of this 23 #if XCHAL_HAVE_LOOPS !! 15 file. (The General Public License restrictions do apply in other 24 loopnez a4, .Lloopend !! 16 respects; for example, they cover modification of the file, and 25 #endif /* XCHAL_HAVE_LOOPS */ !! 17 distribution when not linked into another program.) 26 .Lloop: !! 18 27 bltu a2, a3, .Lzerobit !! 19 This file is distributed in the hope that it will be useful, but 28 sub a2, a2, a3 !! 20 WITHOUT ANY WARRANTY; without even the implied warranty of 29 .Lzerobit: !! 21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 30 srli a3, a3, 1 !! 22 General Public License for more details. */ 31 #if !XCHAL_HAVE_LOOPS !! 23 32 addi a4, a4, -1 !! 24 /* As a special exception, if you link this library with files 33 bnez a4, .Lloop !! 25 compiled with GCC to produce an executable, this does not cause 34 #endif /* !XCHAL_HAVE_LOOPS */ !! 26 the resulting executable to be covered by the GNU General Public License. 35 .Lloopend: !! 27 This exception does not however invalidate any other reasons why 36 !! 28 the executable file might be covered by the GNU General Public License. */ 37 .Lspecial: !! 29 38 bltu a2, a3, .Lreturn !! 30 /* Use this one for any 680x0; assumes no floating point hardware. 39 sub a2, a2, a3 /* subtract on !! 31 The trailing " '" appearing on some lines is for ANSI preprocessors. Yuk. 40 .Lreturn: !! 32 Some of this code comes from MINIX, via the folks at ericsson. 41 abi_ret_default !! 33 D. V. Henkel-Wallace (gumby@cygnus.com) Fete Bastille, 1992 42 !! 34 */ 43 .Lle_one: !! 35 44 bnez a3, .Lreturn0 !! 36 /* These are predefined by new versions of GNU cpp. */ 45 !! 37 46 /* Divide by zero: Use an illegal inst !! 38 #ifndef __USER_LABEL_PREFIX__ 47 The subsequent "DIV0" string can be !! 39 #define __USER_LABEL_PREFIX__ _ 48 handler to identify the real cause !! 40 #endif 49 ill !! 41 50 .ascii "DIV0" !! 42 #ifndef __REGISTER_PREFIX__ 51 !! 43 #define __REGISTER_PREFIX__ 52 .Lreturn0: !! 44 #endif 53 movi a2, 0 !! 45 54 #endif /* XCHAL_HAVE_DIV32 */ !! 46 #ifndef __IMMEDIATE_PREFIX__ 55 abi_ret_default !! 47 #define __IMMEDIATE_PREFIX__ # >> 48 #endif >> 49 >> 50 /* ANSI concatenation macros. */ >> 51 >> 52 #define CONCAT1(a, b) CONCAT2(a, b) >> 53 #define CONCAT2(a, b) a ## b >> 54 >> 55 /* Use the right prefix for global labels. */ >> 56 >> 57 #define SYM(x) CONCAT1 (__USER_LABEL_PREFIX__, x) >> 58 >> 59 /* Use the right prefix for registers. */ >> 60 >> 61 #define REG(x) CONCAT1 (__REGISTER_PREFIX__, x) >> 62 >> 63 /* Use the right prefix for immediate values. */ >> 64 >> 65 #define IMM(x) CONCAT1 (__IMMEDIATE_PREFIX__, x) >> 66 >> 67 #define d0 REG (d0) >> 68 #define d1 REG (d1) >> 69 #define d2 REG (d2) >> 70 #define d3 REG (d3) >> 71 #define d4 REG (d4) >> 72 #define d5 REG (d5) >> 73 #define d6 REG (d6) >> 74 #define d7 REG (d7) >> 75 #define a0 REG (a0) >> 76 #define a1 REG (a1) >> 77 #define a2 REG (a2) >> 78 #define a3 REG (a3) >> 79 #define a4 REG (a4) >> 80 #define a5 REG (a5) >> 81 #define a6 REG (a6) >> 82 #define fp REG (fp) >> 83 #define sp REG (sp) >> 84 >> 85 .text >> 86 .proc >> 87 .globl SYM (__umodsi3) >> 88 SYM (__umodsi3): >> 89 movel sp@(8), d1 /* d1 = divisor */ >> 90 movel sp@(4), d0 /* d0 = dividend */ >> 91 movel d1, sp@- >> 92 movel d0, sp@- >> 93 jbsr SYM (__udivsi3) >> 94 addql IMM (8), sp >> 95 movel sp@(8), d1 /* d1 = divisor */ >> 96 #if !(defined(__mcf5200__) || defined(__mcoldfire__)) >> 97 movel d1, sp@- >> 98 movel d0, sp@- >> 99 jbsr SYM (__mulsi3) /* d0 = (a/b)*b */ >> 100 addql IMM (8), sp >> 101 #else >> 102 mulsl d1,d0 >> 103 #endif >> 104 movel sp@(4), d1 /* d1 = dividend */ >> 105 subl d0, d1 /* d1 = a - (a/b)*b */ >> 106 movel d1, d0 >> 107 rts 56 108 57 ENDPROC(__umodsi3) << 58 EXPORT_SYMBOL(__umodsi3) <<
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.