/* * definitions for dc's "register" declarations * * Copyright (C) 1994, 2000, 2008 * Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * */ #ifdef HAVE_LIMITS_H # include /* UCHAR_MAX */ #endif #ifndef UCHAR_MAX # define UCHAR_MAX ((unsigned char)~0) #endif /* determine how many register stacks there are */ #ifndef DC_REGCOUNT # define DC_REGCOUNT (UCHAR_MAX+1) #endif /* efficiency hack for masking arbritrary integers to 0..(DC_REGCOUNT-1) */ #if (DC_REGCOUNT & (DC_REGCOUNT-1)) == 0 /* DC_REGCOUNT is power of 2 */ # define regmap(r) ((r) & (DC_REGCOUNT-1)) #else # define regmap(r) ((r) % DC_REGCOUNT) #endif