/* * $XConsortium: mergerop.h,v 1.11 95/06/08 23:20:39 gildea Exp $ * Copyright (c) 1989 X Consortium Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Except as contained in this notice, the name of the X Consortium shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from the X Consortium. * * Author: Keith Packard, MIT X Consortium */ #ifndef _MERGEROP_H_ #define _MERGEROP_H_ #ifndef GXcopy #include "X.h" #endif typedef struct _mergeRopBits { unsigned long ca1, cx1, ca2, cx2; } mergeRopRec, *mergeRopPtr; extern mergeRopRec mergeRopBits[16]; #define DeclareMergeRop() unsigned long _ca1, _cx1, _ca2, _cx2; #define DeclarePrebuiltMergeRop() unsigned long _cca, _ccx; #if PPW != PGSZ /* cfb */ #define InitializeMergeRop(alu,pm) {\ unsigned long _pm; \ mergeRopPtr _bits; \ _pm = PFILL(pm); \ _bits = &mergeRopBits[alu]; \ _ca1 = _bits->ca1 & _pm; \ _cx1 = _bits->cx1 | ~_pm; \ _ca2 = _bits->ca2 & _pm; \ _cx2 = _bits->cx2 & _pm; \ } #else /* mfb */ #define InitializeMergeRop(alu,pm) {\ mergeRopPtr _bits; \ _bits = &mergeRopBits[alu]; \ _ca1 = _bits->ca1; \ _cx1 = _bits->cx1; \ _ca2 = _bits->ca2; \ _cx2 = _bits->cx2; \ } #endif /* AND has higher precedence than XOR */ #define DoMergeRop(src, dst) \ ((dst) & ((src) & _ca1 ^ _cx1) ^ ((src) & _ca2 ^ _cx2)) #define DoPrebuiltMergeRop(dst) ((dst) & _cca ^ _ccx) #define DoMaskPrebuiltMergeRop(dst,mask) \ ((dst) & (_cca | ~(mask)) ^ (_ccx & (mask))) #define PrebuildMergeRop(src) ((_cca = (src) & _ca1 ^ _cx1), \ (_ccx = (src) & _ca2 ^ _cx2)) #define DoMaskMergeRop(src, dst, mask) \ ((dst) & (((src) & _ca1 ^ _cx1) | ~(mask)) ^ (((src) & _ca2 ^ _cx2) & (mask))) #ifndef MROP #define MROP 0 #endif #define Mclear (1<ca1; \ _cx1 = _bits->cx1; \ } #define MROP_SOLID(src,dst) \ ((dst) & ((src) & _ca1 ^ _cx1) ^ (src)) #define MROP_MASK(src,dst,mask) \ ((dst) & (((src) & _ca1 ^ _cx1) | ~(mask)) ^ ((src) & (mask))) #define MROP_NAME(prefix) MROP_NAME_CAT(prefix,CopyXorAndReverseOr) #define MROP_PREBUILD(src) PrebuildMergeRop(src) #define MROP_PREBUILT_DECLARE() DeclarePrebuiltMergeRop() #define MROP_PREBUILT_SOLID(src,dst) DoPrebuiltMergeRop(dst) #define MROP_PREBUILT_MASK(src,dst,mask) DoMaskPrebuiltMergeRop(dst,mask) #endif #if (MROP) == 0 #define MROP_DECLARE() DeclareMergeRop() #define MROP_DECLARE_REG() register DeclareMergeRop() #define MROP_INITIALIZE(alu,pm) InitializeMergeRop(alu,pm) #define MROP_SOLID(src,dst) DoMergeRop(src,dst) #define MROP_MASK(src,dst,mask) DoMaskMergeRop(src, dst, mask) #define MROP_NAME(prefix) MROP_NAME_CAT(prefix,General) #define MROP_PREBUILD(src) PrebuildMergeRop(src) #define MROP_PREBUILT_DECLARE() DeclarePrebuiltMergeRop() #define MROP_PREBUILT_SOLID(src,dst) DoPrebuiltMergeRop(dst) #define MROP_PREBUILT_MASK(src,dst,mask) DoMaskPrebuiltMergeRop(dst,mask) #endif #ifndef MROP_PREBUILD #define MROP_PREBUILD(src) #define MROP_PREBUILT_DECLARE() #define MROP_PREBUILT_SOLID(src,dst) MROP_SOLID(src,dst) #define MROP_PREBUILT_MASK(src,dst,mask) MROP_MASK(src,dst,mask) #endif #if (defined(__STDC__) && !defined(UNIXCPP)) || defined(ANSICPP) #define MROP_NAME_CAT(prefix,suffix) prefix##suffix #else #define MROP_NAME_CAT(prefix,suffix) prefix/**/suffix #endif #endif