web-dev-qa-db-ja.com

Cプリプロセッサマクロにプリプロセッサディレクティブを含めることはできますか?

以下と同等のことをしたいと思います。

#define print_max(TYPE) \
#  ifdef TYPE##_MAX \
     printf("%lld\n", TYPE##_MAX); \
#  endif

print_max(INT);

#ifdefまたはネストされたプリプロセッサディレクティブは、関数マクロで見る限り許可されません。何か案は?

更新:これは不可能のようです。実行時にチェックするハックでさえ達成できないようです。だから私は次のようなもので行くと思います:

#ifndef BLAH_MAX
#  define BLAH_MAX 0
#endif
# etc... for each type I'm interested in

#define print_max(TYPE) \
    if (TYPE##_MAX) \
       printf("%lld\n", TYPE##_MAX);

print_max(INT);
print_max(BLAH);
31
pixelbeat

Boost Preprocessor (Boostは全体としてC++ライブラリですが、CとC++の両方で機能します)ライブラリは、この種のタスクに役立ちます。マクロ内で#ifdefを使用する(これは許可されていません)代わりに、ファイルを複数回インクルードし、毎回異なるマクロを定義して、ファイルが#ifdefを使用できるようにします。

次のコードは、max.cに保存されている場合、ファイルの上部にあるMAXES #defineにリストされている各単語に対して必要なことを実行する必要があります。ただし、プリプロセッサは浮動小数点を処理できないため、_MAX値のいずれかが浮動小数点の場合は機能しません。

(Boost Processorは便利なツールですが、簡単ではありません。この方法がコピーアンドペーストよりも優れているかどうかを判断できます。)

#define MAXES (SHRT)(INT)(LONG)(PATH)(DOESNT_EXIST)

#if !BOOST_PP_IS_ITERATING

/* This portion of the file (from here to #else) is the "main" file */

#include <values.h>
#include <stdio.h>
#include <boost/preprocessor.hpp>

/* Define a function print_maxes that iterates over the bottom portion of this
 * file for each Word in MAXES */
#define BOOST_PP_FILENAME_1 "max.c"
#define BOOST_PP_ITERATION_LIMITS (0,BOOST_PP_DEC(BOOST_PP_SEQ_SIZE(MAXES)))
void print_maxes(void) {
#include BOOST_PP_ITERATE()
}

int main(int argc, char *argv[])
{
    print_maxes();
}

#else

/* This portion of the file is evaluated multiple times, with
 * BOOST_PP_ITERATION() resolving to a different number every time */

/* Use BOOST_PP_ITERATION() to look up the current Word in MAXES */
#define CURRENT BOOST_PP_SEQ_ELEM(BOOST_PP_ITERATION(), MAXES)
#define CURRENT_MAX BOOST_PP_CAT(CURRENT, _MAX)

#if CURRENT_MAX
printf("The max of " BOOST_PP_STRINGIZE(CURRENT) " is %lld\n", (long long) CURRENT_MAX);
#else
printf("The max of " BOOST_PP_STRINGIZE(CURRENT) " is undefined\n");
#endif

#undef CURRENT
#undef CURRENT_MAX

#endif
13
Josh Kelley

私は以前にそれを試しました。問題は、#がマクロパラメータを文字列化するためにすでに予約されていることです。 #defineのようなプリプロセッサトークンとしては解析されません。

私が持っている唯一の解決策は不正行為です-定義のセットとして_XXX_MAXを持つ型のリストを作成し、それを使用します。私はプリプロセッサで自動化された方法でリストを作成する方法がわからないので、試しません。このリストは、リストが長すぎず、あまり集中的に保守されないことが想定されています。

#define PRINT_MAX(type) printf("%lld\n", _TYPE##_MAX);
#define HAVE_MAX(type) _TYPE##_MAX // not sure if this works 


/* a repetitious block of code that I cannot factor out - this is the cheat */
#ifdef HAVE_MAX(INT)
#define PRINT_INT_MAX PRINT_MAX(INT)
#endif

#ifdef HAVE_MAX(LONG)
#define PRINT_LONG_MAX PRINT_MAX(LONG)
#endif
/* end of cheat */


#define print_max(type) PRINT_##TYPE##_MAX
4
Arkadiy

テンプレートとは異なり、プリプロセッサは turing-complete ではありません。マクロ内の#ifdefは使用できません。唯一の解決策は、一致するprint_maxが定義されている型に対してのみ_MAXを呼び出すようにすることです。 INT_MAX。コンパイラは、そうでない場合は必ず通知します。

0

整数値のみに関心があり、2の補数と8ビットバイトを使用するハードウェアを想定している限り:

// Of course all this MAX/MIN stuff assumes 2's compilment, with 8-bit bytes...

#define LARGEST_INTEGRAL_TYPE long long

/* This will evaluate to TRUE for an unsigned type, and FALSE for a signed
 * type.  We use 'signed char' since it should be the smallest signed type
 * (which will sign-extend up to <type>'s size) vs. possibly overflowing if
 * going in the other direction (from a larger type to a smaller one).
 */
#define ISUNSIGNED(type) (((type) ((signed char) -1)) > (type) 0)

/* We must test for the "signed-ness" of <type> to determine how to calculate
 * the minimum/maximum value.
 *
 * e.g., If a typedef'ed type name is passed in that is actually an unsigned
 * type:
 *
 *  typedef unsigned int Oid;
 *  MAXIMUM_(Oid);
 */
#define MINIMUM_(type)  ((type) (ISUNSIGNED(type) ? MINIMUM_UNSIGNED_(type)   \
                              : MINIMUM_SIGNED_(  type)))

#define MAXIMUM_(type)  ((type) (ISUNSIGNED(type) ? MAXIMUM_UNSIGNED_(type)   \
                          : MAXIMUM_SIGNED_(  type)))

/* Minumum unsigned value; zero, by definition -- we really only have this
 * macro for symmetry.
 */
#define MINIMUM_UNSIGNED_(type)     ((type) 0)

// Maximum unsigned value; all 1's.
#define MAXIMUM_UNSIGNED_(type)         \
     ((~((unsigned LARGEST_INTEGRAL_TYPE) 0))   \
      >> ((sizeof(LARGEST_INTEGRAL_TYPE) - sizeof(type)) * 8))

/* Minimum signed value; a 1 in the most-significant bit.
 *
 * We use LARGEST_INTEGRAL_TYPE as our base type for the initial bit-shift
 * because we should never overflow (i.e., <type> should always be the same
 * size or smaller than LARGEST_INTEGRAL_TYPE).
 */
#define MINIMUM_SIGNED_(type)       \
  ((type)               \
   ((signed LARGEST_INTEGRAL_TYPE)  \
    (~((unsigned LARGEST_INTEGRAL_TYPE) 0x0) << ((sizeof(type) * 8) - 1))))

// Maximum signed value; 0 in most-significant bit; remaining bits all 1's.
#define MAXIMUM_SIGNED_(type)       (~MINIMUM_SIGNED_(type))
0
Gary H

これを行う簡単な方法はありません。最も近いのは、次のような多数のIFDEFマクロを#defineすることです。

#undef IFDEF_INT_MAX
#ifdef INT_MAX
#define IFDEF_INT_MAX(X)  X
#else
#define IFDEF_INT_MAX(X)
#endif

#undef IFDEF_BLAH_MAX
#ifdef BLAH_MAX
#define IFDEF_BLAH_MAX(X)  X
#else
#define IFDEF_BLAH_MAX(X)
#endif

     :

それらはたくさん必要になるので(そしてそれらは複数の場所で役立つかもしれません)、それらを必要なときにいつでも含めることができる独自のヘッダーファイル 'ifdefs.h'にこれらすべてを貼り付けることは非常に理にかなっています。 「対象マクロ」のリストからifdef.hを再生成するスクリプトを書くこともできます

次に、あなたのコードは

#include "ifdefs.h"
#define print_max(TYPE) \
IFDEF_##TYPE##_MAX( printf("%lld\n", TYPE##_MAX); )

print_max(INT);
print_max(BLAH);
0
Chris Dodd

##演算子が#ifdefで許可されていない場合はそうは思いません。私はこれを試しました:

#define _print_max(TYPE) \
#ifdef TYPE \
printf("%lld\n", _TYPE); \
#endif

#define print_max(TYPE) _print_max(MAX##_TYPE)


void main() 
{
    print_max(INT)
}

それでも機能しませんでした(#ifdef TYPEは好きではありませんでした)。問題は、#ifdefが#define引数ではなく#definedシンボルのみを受け入れることです。これらは2つの異なるものです。

0
Ferruccio