亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? custom_defs.h

?? 用于TM1300/PNX1300系列DSP(主要用于視頻處理)的所用到的頭文件
?? H
?? 第 1 頁 / 共 2 頁
字號:
#ifndef _CUSTOM_DEFS_H_#define _CUSTOM_DEFS_H_/**************************************************************************** * * custom_defs.h * @(#)custom_defs.h  1.26  10/06/99 * * * This file is the interface between an application programmer and the * implementation of custom_ops.    All a programmer needs to do  * to use custom_ops defined in this file is to include this file * in the source.  As a convention, a programmer does not use custom_ops * directly, but uses the all uppercase macros as defined in this file. * This ensures the portability of the code between generations and phases. * * This file contains most (if not all) of the machine operations * which are likely to be used directly by a programmer, that is, the  * operations which are not likely to be generated by a compiler. *  * Any of the machine operations which is not included in this file can * be used directly by declaring it as a custom_op in the same way custom_ops * are declared in custom_ops.h.  (please refer to the Trimedia C Language * chapter of the TriMedia Programmer's Reference Manual) * * Precise definition of each custom operator may be found in * the TM-1 Operations section of the TriMedia Data Book. * * Comments on tmccom compilation and other compilers compilation: *    tmccom's target is the .t format.    Even if it can be simulated *    by tmtsim and tmsim, it is slow compared to native machine object *    run.    So, until we have the TM-1 chip running, we will want *    to use other compilers (gcc or acc) for development purpose. *    When we use some other compiler, custom_op declaration is no longer valid. *    But by including this file and using all uppercase macros by *    convention, the source program should compile and run transparently. *    (We just have to link in custom_ops.o, ops.o, and fops.o in order to *    emulate the missing features on some other host platform). * ****************************************************************************/#include <ops/custom_ops.h>/**************************************************************************** * Compiler dependent part.   Real custom_ops. ****************************************************************************//* *  the macros below are upper case versions *  of the operation names as defined in the *  machine description file.  Please refer to *  the TriMedia Data Book for precise definition *  of the various TM-1 operations. * *  the organization is as follows: * *	1.	Load/Store Operations * *		basic load operations *		load with displacement operations *		load with index operations *		load with scaled index operations *		basic store operations *		store with displacement operations * *	2.	Compute Operations * *		arithmetic operations *		signed comparison operations *		unsigned comparison operations *		logical operations *		sign extension operations * *	3.	Immediate Operations * *		immediate operations *		logical operations *		arithmetic operations *		signed comparison operations *		unsigned comparison operations * *	4.	Special Compute Operations * *		clipped arithmetic operations *		carry and borrow operations *		special multiply operations *		dual arithmetic operations *		byte packing operations *		byte select operations *		sum of products operations *		sum of differences operations *		special byte shift operations *		clip operations *		quad arithmetic operations *		various special compute operations * *	5.	Special Register Operations * *		PCSW operations *		CCCOUNT operations *		DPC and SPC operations * *      6.	Floating Point Operations * *		arithmetic operations *		comparison operations *		single argument operations *		float to integer conversions *		integer to float conversions * *      7.      Cache Operations * *              data-cache copyback and invalidate operations *              data-cache tag and status operations *              instruction-cache operations *              data-cache prefetch operations *              data-cache allocate operations * *	8.	Control Flow Operations * *		jumps *		interruptable jumps * *      9.      Special Compiler Custom_ops * *              data-cache copyback and invalidate commands * */#if defined(__TCS__)/* *    TriMedia compiler driver tmcc defines __TCS__ *    the custom_op prototypes are found in custom_ops.h. *//* *	1.	Load/Store Operations * *	these operations do not have macros *	since they are expressible directly in C. * *		basic load operations *		load with displacement operations *		load with index operations *		load with scaled index operations *		basic store operations *		store with displacement operations * *	2.	Compute Operations * *	the operations which are not directly *	expressible in C have macro defines below: * *		arithmetic operations */#define	IMAX(a,b)	(imax((a),(b)))#define	IMIN(a,b)	(imin((a),(b)))#define UMIN(a,b)       (umin((a),(b)))#define	IABS(a)         (iabs(a))#define	INEG(a)		(ineg(a))/* *		signed comparison operations *		unsigned comparison operations *		logical operations */#define	BITANDINV(a,b)	(bitandinv((a),(b)))#define	ROL(a,b)	(rol((a),(b)))/* *		sign extension operations */#define	SEX8(a)		(sex8(a))#define	SEX16(a)	(sex16(a))#define	ZEX8(a)		(zex8(a))#define	ZEX16(a)	(zex16(a))/* *	3.	Immediate Operations * *	the operations which are not directly *	expressible in C have macro defines below: * *		immediate operations *		logical operations * * note: the shift parameters below must be *       an integer constant. */#define	ASLI(shift,a)	(asli((shift),(a)))#define	ROLI(shift,a)	(roli((shift),(a)))#define	ASRI(shift,a)	(asri((shift),(a)))#define	LSRI(shift,a)	(lsri((shift),(a)))#define	LSLI(shift,a)	(lsli((shift),(a)))/* *		arithmetic operations * * note: the imm parameters below must be *       an integer constant. */#define	IADDI(imm,a)	(iaddi((imm),(a)))#define	ISUBI(imm,a)	(isubi((imm),(a)))/* *		signed comparison operations * * note: the imm parameters below must be *       an integer constant. */#define	IGTRI(imm,a)	(igtri((imm),(a)))#define	IGEQI(imm,a)	(igeqi((imm),(a)))#define	IEQLI(imm,a)	(ieqli((imm),(a)))#define	INEQI(imm,a)	(ineqi((imm),(a)))#define	ILESI(imm,a)	(ilesi((imm),(a)))#define	ILEQI(imm,a)	(ileqi((imm),(a)))/* *		unsigned comparison operations * * note: the imm parameters below must be *       an integer constant. */#define	UGTRI(imm,a)	(ugtri((imm),(a)))#define	UGEQI(imm,a)	(ugeqi((imm),(a)))#define	UEQLI(imm,a)	(ueqli((imm),(a)))#define	UNEQI(imm,a)	(uneqi((imm),(a)))#define	ULESI(imm,a)	(ulesi((imm),(a)))#define	ULEQI(imm,a)	(uleqi((imm),(a)))/* * *	4.	Special Compute Operations * *		clipped arithmetic operations */#define	DSPIADD(a,b)	(dspiadd((a),(b)))#define	DSPISUB(a,b)	(dspisub((a),(b)))#define	DSPUADD(a,b)	(dspuadd((a),(b)))#define	DSPUSUB(a,b)	(dspusub((a),(b)))#define	DSPIMUL(a,b)	(dspimul((a),(b)))#define	DSPUMUL(a,b)	(dspumul((a),(b)))#define	DSPIABS(a)	(dspiabs(a))/* *		carry and borrow operations */#define	CARRY(a,b)	(carry((a),(b)))#define	BORROW(a,b)	(borrow((a),(b)))/* *		special multiply operations */#define	IMULM(a,b)	(imulm((a),(b)))#define	UMULM(a,b)	(umulm((a),(b)))/* *		dual arithmetic operations */#define	DSPIDUALABS(a)	 (dspidualabs(a))#define	DSPIDUALADD(a,b) (dspidualadd((a),(b)))#define	DSPIDUALSUB(a,b) (dspidualsub((a),(b)))#define	DSPIDUALMUL(a,b) (dspidualmul((a),(b)))/* #if defined(__TCS_tm1100__) *//* *		dual shifting operations */#define	DUALASR(a,b)	(dualasr((a),(b)))/* *		dual clipping operations */#define	DUALICLIPI(a,b)	(dualiclipi((a),(b)))#define	DUALUCLIPI(a,b)	(dualuclipi((a),(b)))/* #endif defined(__TCS_tm1100__) *//* *		byte packing operations */#define	PACKBYTES(a,b)	(packbytes((a),(b)))#define	MERGEMSB(a,b)	(mergemsb((a),(b)))#define	MERGELSB(a,b)	(mergelsb((a),(b)))#define	PACK16MSB(a,b)	(pack16msb((a),(b)))#define	PACK16LSB(a,b)	(pack16lsb((a),(b)))/* #if defined(__TCS_tm1100__) */#define	MERGEDUAL16LSB(a,b) (mergedual16lsb((a), (b)))/* #endif defined(__TCS_tm1100__) *//* *		byte select operations */#define	UBYTESEL(a,sel)	(ubytesel((a),(sel)))#define	IBYTESEL(a,sel)	(ibytesel((a),(sel)))/* *		sum of products operations */#define	UFIR8UU(a,b)	(ufir8uu((a),(b)))#define	IFIR8UI(a,b)	(ifir8ui((a),(b)))#define	IFIR8IU(a,b)	(ifir8ui((b),(a)))#define	IFIR8II(a,b)	(ifir8ii((a),(b)))#define	IFIR16(a,b)	(ifir16((a),(b)))#define	UFIR16(a,b)	(ufir16((a),(b)))/* *		sum of differences operations */#define	UME8II(a,b)	(ume8ii((a),(b)))#define	UME8UU(a,b)	(ume8uu((a),(b)))/* *		special byte shift operations */#define	FUNSHIFT1(a,b)	(funshift1((a),(b)))#define	FUNSHIFT2(a,b)	(funshift2((a),(b)))#define	FUNSHIFT3(a,b)	(funshift3((a),(b)))/* *		clip operations */#define	ICLIPI(a,b)	(iclipi((a),(b)))#define	UCLIPI(a,b)	(uclipi((a),(b)))#define	UCLIPU(a,b)	(uclipu((a),(b)))/* *		quad arithmetic operations */#define	QUADUMULMSB(a,b)    (quadumulmsb((a),(b)))#define	QUADAVG(a,b)	    (quadavg((a),(b)))#define DSPUQUADADDUI(a,b)  (dspuquadaddui((a),(b)))/* #if defined(__TCS_tm1100__) */#define	QUADUMAX(a,b)	    (quadumax((a),(b)))#define	QUADUMIN(a,b)	    (quadumin((a),(b)))/* #endif defined(__TCS_tm1100__) *//* *		various special compute operations */#define	IZERO(a,b)	(izero((a),(b)))#define	INONZERO(a,b)	(inonzero((a),(b)))#define	IAVGONEP(a,b)	(iavgonep((a),(b)))#define	IFLIP(a,b)	(iflip((a),(b)))/* * *	5.	Special Register Operations * *		PCSW operations */#define	READPCSW()		(readpcsw())#define	WRITEPCSW(val,mask)	(writepcsw((val),(mask)))/* *		CCCOUNT operations */#define	CYCLES()	(cycles())#define	HICYCLES()	(hicycles())/* *		DPC and SPC operations */#define	READDPC()	(readdpc())#define	WRITEDPC(val)	(writedpc(val))#define	READSPC()	(readspc())#define	WRITESPC(val)	(writespc(val))/* * *	6.	Floating Point Operations * *	the operations which are not directly *	expressible in C have macro defines below. * *	special note: the xxxflags operations are *	meant to be used by the compiler and are *	therefore not supported here. * *		arithmetic operations *		comparison operations *		single argument operations */#define	FSQRT(f)	(fsqrt(f))#define	FABSVAL(f)	(fabsval(f))#define	FSIGN(f)	(fsign(f))/* *		float to integer conversions */#define	IFIXIEEE(f)	(ifixieee(f))#define	UFIXIEEE(f)	(ufixieee(f))/* *		integer to float conversions */#define IFLOATRZ(a)     (ifloatrz(a))#define UFLOATRZ(a)     (ufloatrz(a))/* *		fzero and fnonzero analogous to izero/inonzero */#define FZERO(a,b)	(fzero((a), (b)))#define FNONZERO(a,b)	(fnonzero((a), (b)))/* *		dirty tricks to calculate fmin and fmax   *		analogous to imin and imax *  *		DO NOT WORK WHEN BOTH FLOATS ARE NEGATIVE *  *		DO NOT SET APPROPRIATE IEEE FLAGS !! *			 *//************ READ COMMENT *************/#define FMIN(a,b)	(fmin((a), (b)))#define FMAX(a,b)	(fmax((a), (b)))/************ READ COMMENT *************//* * *      7.      Cache Operations * *              data-cache copyback and invalidate operations *              data-cache tag and status operations *              instruction-cache operations *              data-cache prefetch operations * *	8.	Control Flow Operations * *	though these operations are not easily *	expressible in C, they are unsafe to *	expose to the programmer and therefore

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲美女视频在线| 中文字幕一区三区| 欧美日韩综合在线免费观看| 老司机精品视频导航| 亚洲一二三区在线观看| 国产精品国产三级国产| 久久蜜臀中文字幕| 日韩欧美国产电影| 欧洲色大大久久| 99久久精品免费观看| 国产精品一区2区| 国产精品亚洲一区二区三区妖精| 日本v片在线高清不卡在线观看| 精品国产青草久久久久福利| 2020国产成人综合网| 国产免费观看久久| 亚洲精品免费视频| 蜜臀av性久久久久蜜臀av麻豆 | 亚洲国产一区二区在线播放| 蜜臀久久99精品久久久久宅男| 国产伦精品一区二区三区视频青涩 | 精一区二区三区| 国产九色精品成人porny| 丁香婷婷深情五月亚洲| 99精品欧美一区二区三区小说 | 99久久精品国产一区二区三区| 色综合中文字幕国产| 色婷婷综合久久| 日韩欧美在线1卡| 国产精品视频第一区| 亚洲成人激情综合网| 国内成人精品2018免费看| 9色porny自拍视频一区二区| 在线播放亚洲一区| 久久精品一区四区| 午夜精品国产更新| 国产suv精品一区二区6| 欧美日韩美女一区二区| 中文字幕乱码一区二区免费| 一区二区三区欧美日韩| 国产成人午夜视频| 欧美日韩国产一级片| 国产精品国模大尺度视频| 日本视频中文字幕一区二区三区| 成人美女在线视频| 日韩一区二区在线免费观看| 亚洲免费观看高清完整版在线观看熊 | 国产精品中文字幕一区二区三区| 欧美中文一区二区三区| 欧美高清在线视频| 国产毛片一区二区| 精品奇米国产一区二区三区| 亚洲电影视频在线| 在线一区二区三区四区五区| 亚洲国产成人一区二区三区| 麻豆国产一区二区| 欧美刺激脚交jootjob| 亚洲一区二区三区四区在线观看| a美女胸又www黄视频久久| 欧美精彩视频一区二区三区| 九色综合国产一区二区三区| 欧美精品欧美精品系列| 午夜精品久久久久久久99樱桃 | 在线91免费看| 日韩精品一二三四| 欧美一二区视频| 国产综合久久久久久久久久久久| 精品国内片67194| 国精品**一区二区三区在线蜜桃| 日韩欧美一区二区久久婷婷| 国产在线精品国自产拍免费| 久久精品男人天堂av| 一本色道久久综合精品竹菊| 亚洲国产精品久久艾草纯爱| 欧美日韩精品综合在线| 麻豆中文一区二区| 国产亚洲一区二区三区四区| gogo大胆日本视频一区| 亚洲国产一二三| 精品国产亚洲一区二区三区在线观看 | 久久精品视频一区二区| 色综合天天视频在线观看| 日日骚欧美日韩| 中文字幕不卡的av| 欧美视频一区在线| 国产高清不卡一区二区| 亚洲国产综合在线| 国产日本亚洲高清| 欧美日本在线观看| 不卡视频免费播放| 乱一区二区av| 亚洲精品自拍动漫在线| 精品国产免费一区二区三区四区| 99久久免费精品高清特色大片| 日本aⅴ免费视频一区二区三区| 亚洲国产精品黑人久久久| 5858s免费视频成人| 99久久精品国产一区二区三区| 日韩福利视频导航| 亚洲精品视频一区| 久久九九影视网| 日韩精品一区二区三区三区免费 | 国产日韩欧美精品电影三级在线 | 欧美r级电影在线观看| 欧美日韩国产一区二区三区地区| av不卡一区二区三区| 国产精品一品视频| 国产精品一区2区| 国精产品一区一区三区mba桃花 | 麻豆精品在线观看| 视频在线观看国产精品| 亚洲五月六月丁香激情| 亚洲精品一二三四区| 一区二区三区日韩在线观看| 亚洲欧美国产三级| 一区二区三区四区中文字幕| 1024亚洲合集| 亚洲欧洲综合另类| 亚洲一二三四在线观看| 亚洲一区在线免费观看| 亚洲一区二区三区四区在线| 亚洲福利一二三区| 五月综合激情日本mⅴ| 日本色综合中文字幕| 精品在线免费视频| 91精品国产综合久久国产大片 | 欧美老女人第四色| 国产婷婷色一区二区三区在线| 国产亚洲成年网址在线观看| 欧美色国产精品| 懂色中文一区二区在线播放| 免费精品视频最新在线| 99视频在线精品| 国产视频亚洲色图| 日本亚洲免费观看| 91麻豆精品国产自产在线 | 久久这里只有精品6| 亚洲蜜臀av乱码久久精品| 日本不卡视频一二三区| 色天天综合色天天久久| 精品不卡在线视频| 亚洲一区二区在线视频| 美国av一区二区| 欧美在线免费观看亚洲| 国产色爱av资源综合区| 9i在线看片成人免费| 欧美精品三级日韩久久| 一区二区三区四区在线播放| 国产精品1024久久| 精品久久人人做人人爽| 亚洲成人免费观看| 在线国产电影不卡| 亚洲欧洲av一区二区三区久久| 国内成人精品2018免费看| 欧美大片国产精品| 麻豆久久久久久久| 日韩午夜精品电影| 日韩精品一级中文字幕精品视频免费观看| 91麻豆视频网站| 亚洲色图在线播放| 欧美日本视频在线| 老色鬼精品视频在线观看播放| 在线亚洲一区二区| 亚洲日本护士毛茸茸| 99国产精品视频免费观看| 一区二区三区日韩精品| 欧美片在线播放| 国产在线一区二区| 中文字幕av一区二区三区| 成人国产视频在线观看| 亚洲欧美日韩系列| 7777精品久久久大香线蕉| 国产乱子伦视频一区二区三区| 精品一区二区三区在线播放| 精品噜噜噜噜久久久久久久久试看 | 精品久久国产老人久久综合| 懂色av一区二区在线播放| 亚洲色图欧美激情| 91精品国产高清一区二区三区蜜臀 | 日韩欧美高清一区| 波多野结衣中文字幕一区| 亚洲激情男女视频| 日韩一区二区三区四区| 丰满少妇久久久久久久| 免费成人在线播放| 自拍偷拍国产精品| 精品国产乱码久久久久久久久| 91玉足脚交白嫩脚丫在线播放| 久久99精品国产麻豆婷婷洗澡| 亚洲va天堂va国产va久| 自拍av一区二区三区| 国产精品美女久久久久aⅴ | 久久久91精品国产一区二区精品| 4438x亚洲最大成人网| 欧美性三三影院| 欧亚洲嫩模精品一区三区| 99re视频精品| 91美女视频网站| 成人午夜在线播放| 日韩av午夜在线观看|