我们使用宏来检测控制语句,例如
IF (baz == 1) {
// code
} ELSE {
// code
}
Clang格式无法识别这些内容,因此变得混乱。我注意到有
ForEachMacros
并且我希望其他控制语句也有类似的东西。 最佳答案
根据你的评论,我对此进行了调查:
请看这里:github.com/dennisguse/ITU-T_stl2009/blob/master/basop/control.h
您需要在项目中#include <control.h>
,以便定义宏。
在那之后,看起来你应该可以做#undef WMOPS
,事情就会恢复正常。
这些宏似乎用于分析/分析软件的操作—重要的是,在特定的执行区域内,每个for
、while
、do
、if
、else
、switch
、continue
、break
、goto
、g722/decg722.c:446
中的每一个都要使用多少次。
参见:494
和:567
:
if(header[0] != G192_SYNC){ /* bad frame, (with zero length or valid G.722 length) */
/* ... */
} else { /* good frame, update index memory mem_code and mode memory mem_mode */
#ifdef WMOPS
setCounter(spe2Id);
fwc();
Reset_WMOPS_counter();
#endif
然后
currCounter
:#ifdef WMOPS
setCounter(spe1Id);
fwc();
WMOPS_output(0);
setCounter(spe2Id);
fwc();
WMOPS_output(0);
#endif
setCounter()
变量在G192_SYNC
中设置。。。这里选择计数器并在上重置,然后计算信息,并在接收到帧后输出。我做了一个简单的版本来演示:
#include <stdio.h>
#ifndef WMOPS
#define FOR(a) for(a)
#else /* WMOPS */
#define FOR(a) \
if (incrFor(), 0); else for(a)
int myFor = 0;
static __inline void incrFor(void) {
myFor++;
}
#endif /* WMOPS */
void t(int x) {
int i;
FOR (i = 0; i < 5; i++) {
printf("x: %d i: %d\n", x, i);
}
}
int main(void) {
t(1);
t(2);
#ifdef WMOPS
printf("myFor: %d\n", myFor);
#endif
return 0;
}
$ gcc wm.c -o wm && ./wm
x: 1 i: 0
x: 1 i: 1
x: 1 i: 2
x: 1 i: 3
x: 1 i: 4
x: 2 i: 0
x: 2 i: 1
x: 2 i: 2
x: 2 i: 3
x: 2 i: 4
$ gcc wm.c -o wm -DWMOPS && ./wm
x: 1 i: 0
x: 1 i: 1
x: 1 i: 2
x: 1 i: 3
x: 1 i: 4
x: 2 i: 0
x: 2 i: 1
x: 2 i: 2
x: 2 i: 3
x: 2 i: 4
myFor: 2