提交 d1fe2b24 编写于 作者: B bellard

self modifying code also tests translation block chaining invalidation


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@184 c046a42c-6fe2-441c-8c8c-71466251a162
上级 d4e8164f
......@@ -1218,15 +1218,18 @@ uint8_t code[] = {
0xc3, /* ret */
};
typedef int FuncType(void);
void test_self_modifying_code(void)
{
int (*func)(void);
int i;
func = (void *)code;
printf("self modifying code:\n");
printf("func1 = 0x%x\n", func());
code[1] = 0x2;
printf("func1 = 0x%x\n", func());
printf("func1 = 0x%x\n", ((FuncType *)code)());
for(i = 2; i <= 4; i++) {
code[1] = i;
printf("func%d = 0x%x\n", i, ((FuncType *)code)());
}
}
static void *call_end __init_call = NULL;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册