2 * Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
3 * Licensed under the GPL
7 #include "kern_constants.h"
12 #include "sysdep/ptrace.h"
14 /* Set during early boot */
15 static int host_has_cmov = 1;
16 static jmp_buf cmov_test_return;
18 static void cmov_sigill_test_handler(int sig)
21 longjmp(cmov_test_return, 1);
24 void arch_check_bugs(void)
26 struct sigaction old, new;
28 printk(UM_KERN_INFO "Checking for host processor cmov support...");
29 new.sa_handler = cmov_sigill_test_handler;
31 /* Make sure that SIGILL is enabled after the handler longjmps back */
32 new.sa_flags = SA_NODEFER;
33 sigemptyset(&new.sa_mask);
34 sigaction(SIGILL, &new, &old);
36 if (setjmp(cmov_test_return) == 0) {
37 unsigned long foo = 0;
38 __asm__ __volatile__("cmovz %0, %1" : "=r" (foo) : "0" (foo));
39 printk(UM_KERN_CONT "Yes\n");
41 printk(UM_KERN_CONT "No\n");
43 sigaction(SIGILL, &old, &new);
46 void arch_examine_signal(int sig, struct uml_pt_regs *regs)
51 * This is testing for a cmov (0x0f 0x4x) instruction causing a
54 if ((sig != SIGILL) || (TASK_PID(get_current()) != 1))
57 if (copy_from_user_proc(tmp, (void *) UPT_IP(regs), 2)) {
58 printk(UM_KERN_ERR "SIGILL in init, could not read "
63 if ((tmp[0] != 0x0f) || ((tmp[1] & 0xf0) != 0x40))
66 if (host_has_cmov == 0)
67 printk(UM_KERN_ERR "SIGILL caused by cmov, which this "
68 "processor doesn't implement. Boot a filesystem "
69 "compiled for older processors");
70 else if (host_has_cmov == 1)
71 printk(UM_KERN_ERR "SIGILL caused by cmov, which this "
72 "processor claims to implement");
74 printk(UM_KERN_ERR "Bad value for host_has_cmov (%d)",