⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 basic_op_arm_gcc_v5.h

📁 实现3GPP的GSM中AMR语音的CODECS。
💻 H
📖 第 1 页 / 共 2 页
字号:
        var2 = 16 bit short signed integer (Word16) whose value falls in               the range : 0xffff 8000 <= var2 <= 0x0000 7fff.        pOverflow = pointer to overflow (Flag)     Outputs:        pOverflow -> 1 if the 32 bit operation resulted in overflow     Returns:        result = 32-bit result of L_var3 - (var1 * var2)    */    __inline Word32 L_msu(Word32 L_var3, Word16 var1, Word16 var2, Flag *pOverflow){        register Word32 ra = L_var3;        register Word32 rb = var1;        register Word32 rc = var2;        Word32 product;        Word32 result;        OSCL_UNUSED_ARG(pOverflow);        asm volatile("smulbb %0, %1, %2"             : "=r"(product)                             : "r"(rb), "r"(rc)                            );        asm volatile("qdsub %0, %1, %2"             : "=r"(result)                             : "r"(ra), "r"(product)                            );        return (result);    }    /*    ------------------------------------------------------------------------------     FUNCTION NAME: Mpy_32    ------------------------------------------------------------------------------     INPUT AND OUTPUT DEFINITIONS     Inputs:        L_var1_hi = most significant word of first input (Word16).        L_var1_lo = least significant word of first input (Word16).        L_var2_hi = most significant word of second input (Word16).        L_var2_lo = least significant word of second input (Word16).        pOverflow = pointer to overflow (Flag)     Outputs:        pOverflow -> 1 if the 32 bit multiply operation resulted in overflow     Returns:        L_product = 32-bit product of L_var1 and L_var2 (Word32)    */    static inline Word32 Mpy_32(Word16 L_var1_hi,                                Word16 L_var1_lo,                                Word16 L_var2_hi,                                Word16 L_var2_lo,                                Flag   *pOverflow){        register Word32 product32;        register Word32 L_sum;        register Word32 L_product, result;        register Word32 ra = L_var1_hi;        register Word32 rb = L_var1_lo;        register Word32 rc = L_var2_hi;        register Word32 rd = L_var2_lo;        OSCL_UNUSED_ARG(pOverflow);        asm volatile("smulbb %0, %1, %2"             : "=r"(L_product)                             : "r"(ra), "r"(rc)                            );        asm volatile("mov %0, #0"             : "=r"(result)                    );        asm volatile("qdadd %0, %1, %2"             : "=r"(L_sum)                             : "r"(result), "r"(L_product)                            );        asm volatile("smulbb %0, %1, %2"             : "=r"(product32)                             : "r"(ra), "r"(rd)                            );        asm volatile("mov %0, %1, ASR #15"             : "=r"(ra)                             : "r"(product32)                            );        asm volatile("qdadd %0, %1, %2"             : "=r"(L_product)                             : "r"(L_sum), "r"(ra)                            );        asm volatile("smulbb %0, %1, %2"             : "=r"(product32)                             : "r"(rb), "r"(rc)                            );        asm volatile("mov %0, %1, ASR #15"             : "=r"(rb)                             : "r"(product32)                            );        asm volatile("qdadd %0, %1, %2"             : "=r"(L_sum)                             : "r"(L_product), "r"(rb)                            );        return (L_sum);    }    /*    ------------------------------------------------------------------------------     FUNCTION NAME: Mpy_32_16    ------------------------------------------------------------------------------     INPUT AND OUTPUT DEFINITIONS     Inputs:        L_var1_hi = most significant 16 bits of 32-bit input (Word16).        L_var1_lo = least significant 16 bits of 32-bit input (Word16).        var2  = 16-bit signed integer (Word16).        pOverflow = pointer to overflow (Flag)     Outputs:        pOverflow -> 1 if the 32 bit product operation resulted in overflow     Returns:        product = 32-bit product of the 32-bit L_var1 and 16-bit var1 (Word32)    */    static inline Word32 Mpy_32_16(Word16 L_var1_hi,                                   Word16 L_var1_lo,                                   Word16 var2,                                   Flag *pOverflow){        register Word32 ra = L_var1_hi;        register Word32 rb = L_var1_lo;        register Word32 rc = var2;        Word32 result, L_product;        OSCL_UNUSED_ARG(pOverflow);        asm volatile("smulbb %0, %1, %2"             : "=r"(L_product)                             : "r"(ra), "r"(rc)                            );        asm volatile("mov %0, #0"             : "=r"(result)                    );        asm volatile("qdadd %0, %1, %2"             : "=r"(L_product)                             : "r"(result), "r"(L_product)                            );        asm volatile("smulbb %0, %1, %2"             : "=r"(result)                             : "r"(rb), "r"(rc)                            );        asm volatile("mov %0, %1, ASR #15"             : "=r"(ra)                             : "r"(result)                            );        asm volatile("qdadd %0, %1, %2"             : "=r"(result)                             : "r"(L_product), "r"(ra)                            );        return (result);    }    /*    ------------------------------------------------------------------------------     FUNCTION NAME: mult    ------------------------------------------------------------------------------     INPUT AND OUTPUT DEFINITIONS     Inputs:    	var1 = 16 bit short signed integer (Word16) whose value falls in    	       the range : 0xffff 8000 <= var1 <= 0x0000 7fff.    	var2 = 16 bit short signed integer (Word16) whose value falls in    	       the range : 0xffff 8000 <= var2 <= 0x0000 7fff.    	pOverflow = pointer to overflow (Flag)     Outputs:    	pOverflow -> 1 if the add operation resulted in overflow     Returns:    	product = 16-bit limited product of var1 and var2 (Word16)    */    __inline Word16 mult(Word16 var1, Word16 var2, Flag *pOverflow){        register Word32 ra = var1;        register Word32 rb = var2;        Word32 product;        Word32 temp = 0x7FFF;        OSCL_UNUSED_ARG(pOverflow);        asm volatile("smulbb %0, %1, %2"             : "=r"(product)                             : "r"(ra), "r"(rb)                            );        asm volatile("mov %0, %1, ASR #15"             : "=r"(product)                             : "r"(product)                            );        asm volatile("cmp %0, %1"             : "=r"(product)                             : "r"(temp)                            );        asm volatile("movge %0, %1"             : "=r"(product)                             : "r"(temp)                            );        return ((Word16) product);    }    __inline Word32 amrnb_fxp_mac_16_by_16bb(Word32 L_var1, Word32 L_var2, Word32 L_var3){        register Word32 ra = L_var1;        register Word32 rb = L_var2;        register Word32 rc = L_var3;        Word32 result;        asm volatile("smlabb %0, %1, %2, %3"             : "=r"(result)                             : "r"(ra), "r"(rb), "r"(rc)                            );        return (result);    }    __inline Word32 amrnb_fxp_msu_16_by_16bb(Word32 L_var1, Word32 L_var2, Word32 L_var3){        register Word32 ra = L_var1;        register Word32 rb = L_var2;        register Word32 rc = L_var3;        Word32 result;        asm volatile("rsb %0, %1, #0"             : "=r"(ra)                             : "r"(ra)                            );        asm volatile("smlabb %0, %1, %2, %3"             : "=r"(result)                             : "r"(ra), "r"(rb), "r"(rc)                            );        return (result);    }    /*----------------------------------------------------------------------------    ; END    ----------------------------------------------------------------------------*/#ifdef __cplusplus}#endif#endif /* BASIC_OP_ARM_GCC_V5_H */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -