306 lines
7.9 KiB
NASM
306 lines
7.9 KiB
NASM
;;###########################################################################
|
|
;;
|
|
;; FILE: IQNmpyI32int.asm
|
|
;;
|
|
;; TITLE: C Callable IQ Multiply I32 Return Integer Math Function
|
|
;;
|
|
;;###########################################################################
|
|
;;
|
|
;; Ver | Date | Who | Description of changes
|
|
;; =====|=============|=======|==============================================
|
|
;; 1.4 | 17 May 2002 | A. T. | Original Release.
|
|
;; -----|-------------|-------|----------------------------------------------
|
|
;; 1.4c | 20 Jun 2002 | A. T. | Fixed problem with function when operating
|
|
;; | | | on negative values with a zero fractional
|
|
;; | | | part, incorrect result was given.
|
|
;; -----|-------------|-------|----------------------------------------------
|
|
;; 1.4d | 30 Mar 2002 | SD | Re-implemented the function without branch
|
|
;; -----|-------------|-------|----------------------------------------------
|
|
;;
|
|
;;###########################################################################
|
|
|
|
;;===========================================================================
|
|
;; Function: _IQNmpyI32int
|
|
;;===========================================================================
|
|
;;
|
|
;; C Usage: extern long _IQmpyI32int(long A, long B); // no round or sat
|
|
;;
|
|
;;---------------------------------------------------------------------------
|
|
;;
|
|
;; On Entry: ACC = A in IQ format
|
|
;; SP-4 = B in 32-bit integer (long) format
|
|
;;
|
|
;; Regs Used: XT, P
|
|
;;
|
|
;; On Exit: ACC = integer portion of A*B stored as "long"
|
|
;;
|
|
;; Q range: 30 to 1
|
|
;;
|
|
;;---------------------------------------------------------------------------
|
|
;; Algorithm: The integer portion of the IQ*I32 number is calculated
|
|
;; as follows:
|
|
;;
|
|
;; integer = A*B >> q_value;
|
|
;;
|
|
;;---------------------------------------------------------------------------
|
|
;; Benchmark:
|
|
;;
|
|
;; Cycles = 28 (worst case, includes LCR/LRETR)
|
|
;;
|
|
;;---------------------------------------------------------------------------
|
|
;;#############################################################################
|
|
;;!
|
|
;;! Copyright: Copyright (C) 2023 Texas Instruments Incorporated -
|
|
;;! All rights reserved not granted herein.
|
|
;;! Limited License.
|
|
;;!
|
|
;;! Texas Instruments Incorporated grants a world-wide, royalty-free,
|
|
;;! non-exclusive license under copyrights and patents it now or hereafter
|
|
;;! owns or controls to make, have made, use, import, offer to sell and sell
|
|
;;! ("Utilize") this software subject to the terms herein. With respect to the
|
|
;;! foregoing patent license, such license is granted solely to the extent that
|
|
;;! any such patent is necessary to Utilize the software alone. The patent
|
|
;;! license shall not apply to any combinations which include this software,
|
|
;;! other than combinations with devices manufactured by or for TI
|
|
;;! ("TI Devices").
|
|
;;! No hardware patent is licensed hereunder.
|
|
;;!
|
|
;;! Redistributions must preserve existing copyright notices and reproduce this
|
|
;;! license (including the above copyright notice and the disclaimer and
|
|
;;! (if applicable) source code license limitations below) in the documentation
|
|
;;! and/or other materials provided with the distribution.
|
|
;;!
|
|
;;! Redistribution and use in binary form, without modification, are permitted
|
|
;;! provided that the following conditions are met:
|
|
;;!
|
|
;;! * No reverse engineering, decompilation, or disassembly of this software is
|
|
;;! permitted with respect to any software provided in binary form.
|
|
;;! * Any redistribution and use are licensed by TI for use only
|
|
;;! with TI Devices.
|
|
;;! * Nothing shall obligate TI to provide you with source code for the
|
|
;;! software licensed and provided to you in object code.
|
|
;;!
|
|
;;! If software source code is provided to you, modification and redistribution
|
|
;;! of the source code are permitted provided that the following conditions
|
|
;;! are met:
|
|
;;!
|
|
;;! * any redistribution and use of the source code, including any resulting
|
|
;;! derivative works, are licensed by TI for use only with TI Devices.
|
|
;;! * any redistribution and use of any object code compiled from the source
|
|
;;! code and any resulting derivative works, are licensed by TI for use
|
|
;;! only with TI Devices.
|
|
;;!
|
|
;;! Neither the name of Texas Instruments Incorporated nor the names of its
|
|
;;! suppliers may be used to endorse or promote products derived from this
|
|
;;! software without specific prior written permission.
|
|
;;#############################################################################
|
|
|
|
IQNmpyI32int .macro q_value
|
|
|
|
SETC OVM ; Turn overflow mode on
|
|
CLRC TC ; Clear sign flag
|
|
|
|
ABSTC ACC
|
|
MOVL XT,ACC
|
|
MOVL ACC,*-SP[4]
|
|
ABSTC ACC
|
|
|
|
IMPYL P,XT,@ACC
|
|
QMPYL ACC,XT,@ACC ; ACC:P = IQ*I32 (Q=q_value)
|
|
|
|
MOV @T,#(q_value)
|
|
LSR64 ACC:P,T ; P=integer bits
|
|
MOVL ACC,P
|
|
NEGTC ACC
|
|
|
|
CLRC OVM ; Turn overflow mode off
|
|
LRETR
|
|
.endm
|
|
|
|
;; The value "GLOBAL_Q" needs to be supplied by the assembler
|
|
;; using the "-dGLOBAL_Q=q_value" directive:
|
|
.sect "IQmath"
|
|
.if GLOBAL_Q == 30
|
|
.def __IQ30mpyI32int
|
|
__IQ30mpyI32int:
|
|
IQNmpyI32int GLOBAL_Q
|
|
.endif
|
|
|
|
.if GLOBAL_Q == 29
|
|
.def __IQ29mpyI32int
|
|
__IQ29mpyI32int:
|
|
IQNmpyI32int GLOBAL_Q
|
|
.endif
|
|
|
|
.if GLOBAL_Q == 28
|
|
.def __IQ28mpyI32int
|
|
__IQ28mpyI32int:
|
|
IQNmpyI32int GLOBAL_Q
|
|
.endif
|
|
|
|
.if GLOBAL_Q == 27
|
|
.def __IQ27mpyI32int
|
|
__IQ27mpyI32int:
|
|
IQNmpyI32int GLOBAL_Q
|
|
.endif
|
|
|
|
.if GLOBAL_Q == 26
|
|
.def __IQ26mpyI32int
|
|
__IQ26mpyI32int:
|
|
IQNmpyI32int GLOBAL_Q
|
|
.endif
|
|
|
|
.if GLOBAL_Q == 25
|
|
.def __IQ25mpyI32int
|
|
__IQ25mpyI32int:
|
|
IQNmpyI32int GLOBAL_Q
|
|
.endif
|
|
|
|
.if GLOBAL_Q == 24
|
|
.def __IQ24mpyI32int
|
|
__IQ24mpyI32int:
|
|
IQNmpyI32int GLOBAL_Q
|
|
.endif
|
|
|
|
.if GLOBAL_Q == 23
|
|
.def __IQ23mpyI32int
|
|
__IQ23mpyI32int:
|
|
IQNmpyI32int GLOBAL_Q
|
|
.endif
|
|
|
|
.if GLOBAL_Q == 22
|
|
.def __IQ22mpyI32int
|
|
__IQ22mpyI32int:
|
|
IQNmpyI32int GLOBAL_Q
|
|
.endif
|
|
|
|
.if GLOBAL_Q == 21
|
|
.def __IQ21mpyI32int
|
|
__IQ21mpyI32int:
|
|
IQNmpyI32int GLOBAL_Q
|
|
.endif
|
|
|
|
.if GLOBAL_Q == 20
|
|
.def __IQ20mpyI32int
|
|
__IQ20mpyI32int:
|
|
IQNmpyI32int GLOBAL_Q
|
|
.endif
|
|
|
|
.if GLOBAL_Q == 19
|
|
.def __IQ19mpyI32int
|
|
__IQ19mpyI32int:
|
|
IQNmpyI32int GLOBAL_Q
|
|
.endif
|
|
|
|
.if GLOBAL_Q == 18
|
|
.def __IQ18mpyI32int
|
|
__IQ18mpyI32int:
|
|
IQNmpyI32int GLOBAL_Q
|
|
.endif
|
|
|
|
.if GLOBAL_Q == 17
|
|
.def __IQ17mpyI32int
|
|
__IQ17mpyI32int:
|
|
IQNmpyI32int GLOBAL_Q
|
|
.endif
|
|
|
|
.if GLOBAL_Q == 16
|
|
.def __IQ16mpyI32int
|
|
__IQ16mpyI32int:
|
|
IQNmpyI32int GLOBAL_Q
|
|
.endif
|
|
|
|
.if GLOBAL_Q == 15
|
|
.def __IQ15mpyI32int
|
|
__IQ15mpyI32int:
|
|
IQNmpyI32int GLOBAL_Q
|
|
.endif
|
|
|
|
.if GLOBAL_Q == 14
|
|
.def __IQ14mpyI32int
|
|
__IQ14mpyI32int:
|
|
IQNmpyI32int GLOBAL_Q
|
|
.endif
|
|
|
|
.if GLOBAL_Q == 13
|
|
.def __IQ13mpyI32int
|
|
__IQ13mpyI32int:
|
|
IQNmpyI32int GLOBAL_Q
|
|
.endif
|
|
|
|
.if GLOBAL_Q == 12
|
|
.def __IQ12mpyI32int
|
|
__IQ12mpyI32int:
|
|
IQNmpyI32int GLOBAL_Q
|
|
.endif
|
|
|
|
.if GLOBAL_Q == 11
|
|
.def __IQ11mpyI32int
|
|
__IQ11mpyI32int:
|
|
IQNmpyI32int GLOBAL_Q
|
|
.endif
|
|
|
|
.if GLOBAL_Q == 10
|
|
.def __IQ10mpyI32int
|
|
__IQ10mpyI32int:
|
|
IQNmpyI32int GLOBAL_Q
|
|
.endif
|
|
|
|
.if GLOBAL_Q == 9
|
|
.def __IQ9mpyI32int
|
|
__IQ9mpyI32int:
|
|
IQNmpyI32int GLOBAL_Q
|
|
.endif
|
|
|
|
.if GLOBAL_Q == 8
|
|
.def __IQ8mpyI32int
|
|
__IQ8mpyI32int:
|
|
IQNmpyI32int GLOBAL_Q
|
|
.endif
|
|
|
|
.if GLOBAL_Q == 7
|
|
.def __IQ7mpyI32int
|
|
__IQ7mpyI32int:
|
|
IQNmpyI32int GLOBAL_Q
|
|
.endif
|
|
|
|
.if GLOBAL_Q == 6
|
|
.def __IQ6mpyI32int
|
|
__IQ6mpyI32int:
|
|
IQNmpyI32int GLOBAL_Q
|
|
.endif
|
|
|
|
.if GLOBAL_Q == 5
|
|
.def __IQ5mpyI32int
|
|
__IQ5mpyI32int:
|
|
IQNmpyI32int GLOBAL_Q
|
|
.endif
|
|
|
|
.if GLOBAL_Q == 4
|
|
.def __IQ4mpyI32int
|
|
__IQ4mpyI32int:
|
|
IQNmpyI32int GLOBAL_Q
|
|
.endif
|
|
|
|
.if GLOBAL_Q == 3
|
|
.def __IQ3mpyI32int
|
|
__IQ3mpyI32int:
|
|
IQNmpyI32int GLOBAL_Q
|
|
.endif
|
|
|
|
.if GLOBAL_Q == 2
|
|
.def __IQ2mpyI32int
|
|
__IQ2mpyI32int:
|
|
IQNmpyI32int GLOBAL_Q
|
|
.endif
|
|
|
|
.if GLOBAL_Q == 1
|
|
.def __IQ1mpyI32int
|
|
__IQ1mpyI32int:
|
|
IQNmpyI32int GLOBAL_Q
|
|
.endif
|
|
|
|
;;###########################################################################
|
|
;; No More.
|
|
;;###########################################################################
|