2 * arch/alpha/kernel/traps.c
4 * (C) Copyright 1994 Linus Torvalds
8 * This file initializes the trap entry points
11 #include <linux/config.h>
13 #include <linux/sched.h>
14 #include <linux/tty.h>
15 #include <linux/delay.h>
16 #include <linux/smp_lock.h>
17 #include <linux/module.h>
18 #include <linux/init.h>
19 #include <linux/kallsyms.h>
21 #include <asm/gentrap.h>
22 #include <asm/uaccess.h>
23 #include <asm/unaligned.h>
24 #include <asm/sysinfo.h>
25 #include <asm/hwrpb.h>
26 #include <asm/mmu_context.h>
30 /* Work-around for some SRMs which mishandle opDEC faults. */
37 __asm__ __volatile__ (
38 /* Load the address of... */
40 /* A stub instruction fault handler. Just add 4 to the
46 /* Install the instruction fault handler. */
48 " call_pal %[wrent]\n"
49 /* With that in place, the fault from the round-to-minf fp
50 insn will arrive either at the "lda 4" insn (bad) or one
51 past that (good). This places the correct fixup in %0. */
53 " cvttq/svm $f31,$f31\n"
55 : [fix] "=r" (opDEC_fix)
56 : [rti] "n" (PAL_rti), [wrent] "n" (PAL_wrent)
57 : "$0", "$1", "$16", "$17", "$22", "$23", "$24", "$25");
60 printk("opDEC fixup enabled.\n");
64 dik_show_regs(struct pt_regs *regs, unsigned long *r9_15)
66 printk("pc = [<%016lx>] ra = [<%016lx>] ps = %04lx %s\n",
67 regs->pc, regs->r26, regs->ps, print_tainted());
68 print_symbol("pc is at %s\n", regs->pc);
69 print_symbol("ra is at %s\n", regs->r26 );
70 printk("v0 = %016lx t0 = %016lx t1 = %016lx\n",
71 regs->r0, regs->r1, regs->r2);
72 printk("t2 = %016lx t3 = %016lx t4 = %016lx\n",
73 regs->r3, regs->r4, regs->r5);
74 printk("t5 = %016lx t6 = %016lx t7 = %016lx\n",
75 regs->r6, regs->r7, regs->r8);
78 printk("s0 = %016lx s1 = %016lx s2 = %016lx\n",
79 r9_15[9], r9_15[10], r9_15[11]);
80 printk("s3 = %016lx s4 = %016lx s5 = %016lx\n",
81 r9_15[12], r9_15[13], r9_15[14]);
82 printk("s6 = %016lx\n", r9_15[15]);
85 printk("a0 = %016lx a1 = %016lx a2 = %016lx\n",
86 regs->r16, regs->r17, regs->r18);
87 printk("a3 = %016lx a4 = %016lx a5 = %016lx\n",
88 regs->r19, regs->r20, regs->r21);
89 printk("t8 = %016lx t9 = %016lx t10= %016lx\n",
90 regs->r22, regs->r23, regs->r24);
91 printk("t11= %016lx pv = %016lx at = %016lx\n",
92 regs->r25, regs->r27, regs->r28);
93 printk("gp = %016lx sp = %p\n", regs->gp, regs+1);
100 static char * ireg_name[] = {"v0", "t0", "t1", "t2", "t3", "t4", "t5", "t6",
101 "t7", "s0", "s1", "s2", "s3", "s4", "s5", "s6",
102 "a0", "a1", "a2", "a3", "a4", "a5", "t8", "t9",
103 "t10", "t11", "ra", "pv", "at", "gp", "sp", "zero"};
107 dik_show_code(unsigned int *pc)
112 for (i = -6; i < 2; i++) {
114 if (__get_user(insn, (unsigned int __user *)pc + i))
116 printk("%c%08x%c", i ? ' ' : '<', insn, i ? ' ' : '>');
122 dik_show_trace(unsigned long *sp)
126 while (0x1ff8 & (unsigned long) sp) {
127 extern char _stext[], _etext[];
128 unsigned long tmp = *sp;
130 if (tmp < (unsigned long) &_stext)
132 if (tmp >= (unsigned long) &_etext)
134 printk("[<%lx>]", tmp);
135 print_symbol(" %s", tmp);
145 static int kstack_depth_to_print = 24;
147 void show_stack(struct task_struct *task, unsigned long *sp)
149 unsigned long *stack;
153 * debugging aid: "show_stack(NULL);" prints the
154 * back trace for this cpu.
157 sp=(unsigned long*)&sp;
160 for(i=0; i < kstack_depth_to_print; i++) {
161 if (((long) stack & (THREAD_SIZE-1)) == 0)
163 if (i && ((i % 4) == 0))
165 printk("%016lx ", *stack++);
171 void dump_stack(void)
173 show_stack(NULL, NULL);
176 EXPORT_SYMBOL(dump_stack);
179 die_if_kernel(char * str, struct pt_regs *regs, long err, unsigned long *r9_15)
184 printk("CPU %d ", hard_smp_processor_id());
186 printk("%s(%d): %s %ld\n", current->comm, current->pid, str, err);
187 dik_show_regs(regs, r9_15);
188 dik_show_trace((unsigned long *)(regs+1));
189 dik_show_code((unsigned int *)regs->pc);
191 if (test_and_set_thread_flag (TIF_DIE_IF_KERNEL)) {
192 printk("die_if_kernel recursion detected.\n");
199 #ifndef CONFIG_MATHEMU
200 static long dummy_emul(void) { return 0; }
201 long (*alpha_fp_emul_imprecise)(struct pt_regs *regs, unsigned long writemask)
202 = (void *)dummy_emul;
203 long (*alpha_fp_emul) (unsigned long pc)
204 = (void *)dummy_emul;
206 long alpha_fp_emul_imprecise(struct pt_regs *regs, unsigned long writemask);
207 long alpha_fp_emul (unsigned long pc);
211 do_entArith(unsigned long summary, unsigned long write_mask,
212 struct pt_regs *regs)
214 long si_code = FPE_FLTINV;
218 /* Software-completion summary bit is set, so try to
219 emulate the instruction. If the processor supports
220 precise exceptions, we don't have to search. */
221 if (!amask(AMASK_PRECISE_TRAP))
222 si_code = alpha_fp_emul(regs->pc - 4);
224 si_code = alpha_fp_emul_imprecise(regs, write_mask);
228 die_if_kernel("Arithmetic fault", regs, 0, NULL);
230 info.si_signo = SIGFPE;
232 info.si_code = si_code;
233 info.si_addr = (void __user *) regs->pc;
234 send_sig_info(SIGFPE, &info, current);
238 do_entIF(unsigned long type, struct pt_regs *regs)
243 if ((regs->ps & ~IPL_MAX) == 0) {
245 const unsigned int *data
246 = (const unsigned int *) regs->pc;
247 printk("Kernel bug at %s:%d\n",
248 (const char *)(data[1] | (long)data[2] << 32),
251 die_if_kernel((type == 1 ? "Kernel Bug" : "Instruction fault"),
256 case 0: /* breakpoint */
257 info.si_signo = SIGTRAP;
259 info.si_code = TRAP_BRKPT;
261 info.si_addr = (void __user *) regs->pc;
263 if (ptrace_cancel_bpt(current)) {
264 regs->pc -= 4; /* make pc point to former bpt */
267 send_sig_info(SIGTRAP, &info, current);
270 case 1: /* bugcheck */
271 info.si_signo = SIGTRAP;
273 info.si_code = __SI_FAULT;
274 info.si_addr = (void __user *) regs->pc;
276 send_sig_info(SIGTRAP, &info, current);
279 case 2: /* gentrap */
280 info.si_addr = (void __user *) regs->pc;
281 info.si_trapno = regs->r16;
282 switch ((long) regs->r16) {
339 info.si_signo = signo;
342 info.si_addr = (void __user *) regs->pc;
343 send_sig_info(signo, &info, current);
347 if (implver() == IMPLVER_EV4) {
350 /* The some versions of SRM do not handle
351 the opDEC properly - they return the PC of the
352 opDEC fault, not the instruction after as the
353 Alpha architecture requires. Here we fix it up.
354 We do this by intentionally causing an opDEC
355 fault during the boot sequence and testing if
356 we get the correct PC. If not, we set a flag
357 to correct it every time through. */
358 regs->pc += opDEC_fix;
360 /* EV4 does not implement anything except normal
361 rounding. Everything else will come here as
362 an illegal instruction. Emulate them. */
363 si_code = alpha_fp_emul(regs->pc - 4);
367 info.si_signo = SIGFPE;
369 info.si_code = si_code;
370 info.si_addr = (void __user *) regs->pc;
371 send_sig_info(SIGFPE, &info, current);
377 case 3: /* FEN fault */
378 /* Irritating users can call PAL_clrfen to disable the
379 FPU for the process. The kernel will then trap in
380 do_switch_stack and undo_switch_stack when we try
381 to save and restore the FP registers.
383 Given that GCC by default generates code that uses the
384 FP registers, PAL_clrfen is not useful except for DoS
385 attacks. So turn the bleeding FPU back on and be done
387 current_thread_info()->pcb.flags |= 1;
388 __reload_thread(¤t_thread_info()->pcb);
392 default: /* unexpected instruction-fault type */
396 info.si_signo = SIGILL;
398 info.si_code = ILL_ILLOPC;
399 info.si_addr = (void __user *) regs->pc;
400 send_sig_info(SIGILL, &info, current);
403 /* There is an ifdef in the PALcode in MILO that enables a
404 "kernel debugging entry point" as an unprivileged call_pal.
406 We don't want to have anything to do with it, but unfortunately
407 several versions of MILO included in distributions have it enabled,
408 and if we don't put something on the entry point we'll oops. */
411 do_entDbg(struct pt_regs *regs)
415 die_if_kernel("Instruction fault", regs, 0, NULL);
417 info.si_signo = SIGILL;
419 info.si_code = ILL_ILLOPC;
420 info.si_addr = (void __user *) regs->pc;
421 force_sig_info(SIGILL, &info, current);
426 * entUna has a different register layout to be reasonably simple. It
427 * needs access to all the integer registers (the kernel doesn't use
428 * fp-regs), and it needs to have them in order for simpler access.
430 * Due to the non-standard register layout (and because we don't want
431 * to handle floating-point regs), user-mode unaligned accesses are
432 * handled separately by do_entUnaUser below.
434 * Oh, btw, we don't handle the "gp" register correctly, but if we fault
435 * on a gp-register unaligned load/store, something is _very_ wrong
436 * in the kernel anyway..
439 unsigned long regs[32];
440 unsigned long ps, pc, gp, a0, a1, a2;
443 struct unaligned_stat {
444 unsigned long count, va, pc;
448 /* Macro for exception fixup code to access integer registers. */
449 #define una_reg(r) (regs.regs[(r) >= 16 && (r) <= 18 ? (r)+19 : (r)])
453 do_entUna(void * va, unsigned long opcode, unsigned long reg,
454 unsigned long a3, unsigned long a4, unsigned long a5,
457 long error, tmp1, tmp2, tmp3, tmp4;
458 unsigned long pc = regs.pc - 4;
459 const struct exception_table_entry *fixup;
461 unaligned[0].count++;
462 unaligned[0].va = (unsigned long) va;
463 unaligned[0].pc = pc;
465 /* We don't want to use the generic get/put unaligned macros as
466 we want to trap exceptions. Only if we actually get an
467 exception will we decide whether we should have caught it. */
470 case 0x0c: /* ldwu */
471 __asm__ __volatile__(
472 "1: ldq_u %1,0(%3)\n"
473 "2: ldq_u %2,1(%3)\n"
477 ".section __ex_table,\"a\"\n"
479 " lda %1,3b-1b(%0)\n"
481 " lda %2,3b-2b(%0)\n"
483 : "=r"(error), "=&r"(tmp1), "=&r"(tmp2)
487 una_reg(reg) = tmp1|tmp2;
491 __asm__ __volatile__(
492 "1: ldq_u %1,0(%3)\n"
493 "2: ldq_u %2,3(%3)\n"
497 ".section __ex_table,\"a\"\n"
499 " lda %1,3b-1b(%0)\n"
501 " lda %2,3b-2b(%0)\n"
503 : "=r"(error), "=&r"(tmp1), "=&r"(tmp2)
507 una_reg(reg) = (int)(tmp1|tmp2);
511 __asm__ __volatile__(
512 "1: ldq_u %1,0(%3)\n"
513 "2: ldq_u %2,7(%3)\n"
517 ".section __ex_table,\"a\"\n"
519 " lda %1,3b-1b(%0)\n"
521 " lda %2,3b-2b(%0)\n"
523 : "=r"(error), "=&r"(tmp1), "=&r"(tmp2)
527 una_reg(reg) = tmp1|tmp2;
530 /* Note that the store sequences do not indicate that they change
531 memory because it _should_ be affecting nothing in this context.
532 (Otherwise we have other, much larger, problems.) */
534 __asm__ __volatile__(
535 "1: ldq_u %2,1(%5)\n"
536 "2: ldq_u %1,0(%5)\n"
543 "3: stq_u %2,1(%5)\n"
544 "4: stq_u %1,0(%5)\n"
546 ".section __ex_table,\"a\"\n"
548 " lda %2,5b-1b(%0)\n"
550 " lda %1,5b-2b(%0)\n"
552 " lda $31,5b-3b(%0)\n"
554 " lda $31,5b-4b(%0)\n"
556 : "=r"(error), "=&r"(tmp1), "=&r"(tmp2),
557 "=&r"(tmp3), "=&r"(tmp4)
558 : "r"(va), "r"(una_reg(reg)), "0"(0));
564 __asm__ __volatile__(
565 "1: ldq_u %2,3(%5)\n"
566 "2: ldq_u %1,0(%5)\n"
573 "3: stq_u %2,3(%5)\n"
574 "4: stq_u %1,0(%5)\n"
576 ".section __ex_table,\"a\"\n"
578 " lda %2,5b-1b(%0)\n"
580 " lda %1,5b-2b(%0)\n"
582 " lda $31,5b-3b(%0)\n"
584 " lda $31,5b-4b(%0)\n"
586 : "=r"(error), "=&r"(tmp1), "=&r"(tmp2),
587 "=&r"(tmp3), "=&r"(tmp4)
588 : "r"(va), "r"(una_reg(reg)), "0"(0));
594 __asm__ __volatile__(
595 "1: ldq_u %2,7(%5)\n"
596 "2: ldq_u %1,0(%5)\n"
603 "3: stq_u %2,7(%5)\n"
604 "4: stq_u %1,0(%5)\n"
606 ".section __ex_table,\"a\"\n\t"
608 " lda %2,5b-1b(%0)\n"
610 " lda %1,5b-2b(%0)\n"
612 " lda $31,5b-3b(%0)\n"
614 " lda $31,5b-4b(%0)\n"
616 : "=r"(error), "=&r"(tmp1), "=&r"(tmp2),
617 "=&r"(tmp3), "=&r"(tmp4)
618 : "r"(va), "r"(una_reg(reg)), "0"(0));
625 printk("Bad unaligned kernel access at %016lx: %p %lx %ld\n",
626 pc, va, opcode, reg);
630 /* Ok, we caught the exception, but we don't want it. Is there
631 someone to pass it along to? */
632 if ((fixup = search_exception_tables(pc)) != 0) {
634 newpc = fixup_exception(una_reg, fixup, pc);
636 printk("Forwarding unaligned exception at %lx (%lx)\n",
644 * Yikes! No one to forward the exception to.
645 * Since the registers are in a weird format, dump them ourselves.
649 printk("%s(%d): unhandled unaligned exception\n",
650 current->comm, current->pid);
652 printk("pc = [<%016lx>] ra = [<%016lx>] ps = %04lx\n",
653 pc, una_reg(26), regs.ps);
654 printk("r0 = %016lx r1 = %016lx r2 = %016lx\n",
655 una_reg(0), una_reg(1), una_reg(2));
656 printk("r3 = %016lx r4 = %016lx r5 = %016lx\n",
657 una_reg(3), una_reg(4), una_reg(5));
658 printk("r6 = %016lx r7 = %016lx r8 = %016lx\n",
659 una_reg(6), una_reg(7), una_reg(8));
660 printk("r9 = %016lx r10= %016lx r11= %016lx\n",
661 una_reg(9), una_reg(10), una_reg(11));
662 printk("r12= %016lx r13= %016lx r14= %016lx\n",
663 una_reg(12), una_reg(13), una_reg(14));
664 printk("r15= %016lx\n", una_reg(15));
665 printk("r16= %016lx r17= %016lx r18= %016lx\n",
666 una_reg(16), una_reg(17), una_reg(18));
667 printk("r19= %016lx r20= %016lx r21= %016lx\n",
668 una_reg(19), una_reg(20), una_reg(21));
669 printk("r22= %016lx r23= %016lx r24= %016lx\n",
670 una_reg(22), una_reg(23), una_reg(24));
671 printk("r25= %016lx r27= %016lx r28= %016lx\n",
672 una_reg(25), una_reg(27), una_reg(28));
673 printk("gp = %016lx sp = %p\n", regs.gp, ®s+1);
675 dik_show_code((unsigned int *)pc);
676 dik_show_trace((unsigned long *)(®s+1));
678 if (test_and_set_thread_flag (TIF_DIE_IF_KERNEL)) {
679 printk("die_if_kernel recursion detected.\n");
687 * Convert an s-floating point value in memory format to the
688 * corresponding value in register format. The exponent
689 * needs to be remapped to preserve non-finite values
690 * (infinities, not-a-numbers, denormals).
692 static inline unsigned long
693 s_mem_to_reg (unsigned long s_mem)
695 unsigned long frac = (s_mem >> 0) & 0x7fffff;
696 unsigned long sign = (s_mem >> 31) & 0x1;
697 unsigned long exp_msb = (s_mem >> 30) & 0x1;
698 unsigned long exp_low = (s_mem >> 23) & 0x7f;
701 exp = (exp_msb << 10) | exp_low; /* common case */
703 if (exp_low == 0x7f) {
707 if (exp_low == 0x00) {
713 return (sign << 63) | (exp << 52) | (frac << 29);
717 * Convert an s-floating point value in register format to the
718 * corresponding value in memory format.
720 static inline unsigned long
721 s_reg_to_mem (unsigned long s_reg)
723 return ((s_reg >> 62) << 30) | ((s_reg << 5) >> 34);
727 * Handle user-level unaligned fault. Handling user-level unaligned
728 * faults is *extremely* slow and produces nasty messages. A user
729 * program *should* fix unaligned faults ASAP.
731 * Notice that we have (almost) the regular kernel stack layout here,
732 * so finding the appropriate registers is a little more difficult
733 * than in the kernel case.
735 * Finally, we handle regular integer load/stores only. In
736 * particular, load-linked/store-conditionally and floating point
737 * load/stores are not supported. The former make no sense with
738 * unaligned faults (they are guaranteed to fail) and I don't think
739 * the latter will occur in any decent program.
741 * Sigh. We *do* have to handle some FP operations, because GCC will
742 * uses them as temporary storage for integer memory to memory copies.
743 * However, we need to deal with stt/ldt and sts/lds only.
746 #define OP_INT_MASK ( 1L << 0x28 | 1L << 0x2c /* ldl stl */ \
747 | 1L << 0x29 | 1L << 0x2d /* ldq stq */ \
748 | 1L << 0x0c | 1L << 0x0d /* ldwu stw */ \
749 | 1L << 0x0a | 1L << 0x0e ) /* ldbu stb */
751 #define OP_WRITE_MASK ( 1L << 0x26 | 1L << 0x27 /* sts stt */ \
752 | 1L << 0x2c | 1L << 0x2d /* stl stq */ \
753 | 1L << 0x0d | 1L << 0x0e ) /* stw stb */
755 #define R(x) ((size_t) &((struct pt_regs *)0)->x)
757 static int unauser_reg_offsets[32] = {
758 R(r0), R(r1), R(r2), R(r3), R(r4), R(r5), R(r6), R(r7), R(r8),
759 /* r9 ... r15 are stored in front of regs. */
760 -56, -48, -40, -32, -24, -16, -8,
761 R(r16), R(r17), R(r18),
762 R(r19), R(r20), R(r21), R(r22), R(r23), R(r24), R(r25), R(r26),
763 R(r27), R(r28), R(gp),
770 do_entUnaUser(void __user * va, unsigned long opcode,
771 unsigned long reg, struct pt_regs *regs)
774 static long last_time = 0;
776 unsigned long tmp1, tmp2, tmp3, tmp4;
777 unsigned long fake_reg, *reg_addr = &fake_reg;
781 /* Check the UAC bits to decide what the user wants us to do
782 with the unaliged access. */
784 if (!test_thread_flag (TIF_UAC_NOPRINT)) {
785 if (cnt >= 5 && jiffies - last_time > 5*HZ) {
789 printk("%s(%d): unaligned trap at %016lx: %p %lx %ld\n",
790 current->comm, current->pid,
791 regs->pc - 4, va, opcode, reg);
795 if (test_thread_flag (TIF_UAC_SIGBUS))
797 /* Not sure why you'd want to use this, but... */
798 if (test_thread_flag (TIF_UAC_NOFIX))
801 /* Don't bother reading ds in the access check since we already
802 know that this came from the user. Also rely on the fact that
803 the page at TASK_SIZE is unmapped and so can't be touched anyway. */
804 if (!__access_ok((unsigned long)va, 0, USER_DS))
807 ++unaligned[1].count;
808 unaligned[1].va = (unsigned long)va;
809 unaligned[1].pc = regs->pc - 4;
811 if ((1L << opcode) & OP_INT_MASK) {
812 /* it's an integer load/store */
814 reg_addr = (unsigned long *)
815 ((char *)regs + unauser_reg_offsets[reg]);
816 } else if (reg == 30) {
817 /* usp in PAL regs */
820 /* zero "register" */
825 /* We don't want to use the generic get/put unaligned macros as
826 we want to trap exceptions. Only if we actually get an
827 exception will we decide whether we should have caught it. */
830 case 0x0c: /* ldwu */
831 __asm__ __volatile__(
832 "1: ldq_u %1,0(%3)\n"
833 "2: ldq_u %2,1(%3)\n"
837 ".section __ex_table,\"a\"\n"
839 " lda %1,3b-1b(%0)\n"
841 " lda %2,3b-2b(%0)\n"
843 : "=r"(error), "=&r"(tmp1), "=&r"(tmp2)
847 *reg_addr = tmp1|tmp2;
851 __asm__ __volatile__(
852 "1: ldq_u %1,0(%3)\n"
853 "2: ldq_u %2,3(%3)\n"
857 ".section __ex_table,\"a\"\n"
859 " lda %1,3b-1b(%0)\n"
861 " lda %2,3b-2b(%0)\n"
863 : "=r"(error), "=&r"(tmp1), "=&r"(tmp2)
867 alpha_write_fp_reg(reg, s_mem_to_reg((int)(tmp1|tmp2)));
871 __asm__ __volatile__(
872 "1: ldq_u %1,0(%3)\n"
873 "2: ldq_u %2,7(%3)\n"
877 ".section __ex_table,\"a\"\n"
879 " lda %1,3b-1b(%0)\n"
881 " lda %2,3b-2b(%0)\n"
883 : "=r"(error), "=&r"(tmp1), "=&r"(tmp2)
887 alpha_write_fp_reg(reg, tmp1|tmp2);
891 __asm__ __volatile__(
892 "1: ldq_u %1,0(%3)\n"
893 "2: ldq_u %2,3(%3)\n"
897 ".section __ex_table,\"a\"\n"
899 " lda %1,3b-1b(%0)\n"
901 " lda %2,3b-2b(%0)\n"
903 : "=r"(error), "=&r"(tmp1), "=&r"(tmp2)
907 *reg_addr = (int)(tmp1|tmp2);
911 __asm__ __volatile__(
912 "1: ldq_u %1,0(%3)\n"
913 "2: ldq_u %2,7(%3)\n"
917 ".section __ex_table,\"a\"\n"
919 " lda %1,3b-1b(%0)\n"
921 " lda %2,3b-2b(%0)\n"
923 : "=r"(error), "=&r"(tmp1), "=&r"(tmp2)
927 *reg_addr = tmp1|tmp2;
930 /* Note that the store sequences do not indicate that they change
931 memory because it _should_ be affecting nothing in this context.
932 (Otherwise we have other, much larger, problems.) */
934 __asm__ __volatile__(
935 "1: ldq_u %2,1(%5)\n"
936 "2: ldq_u %1,0(%5)\n"
943 "3: stq_u %2,1(%5)\n"
944 "4: stq_u %1,0(%5)\n"
946 ".section __ex_table,\"a\"\n"
948 " lda %2,5b-1b(%0)\n"
950 " lda %1,5b-2b(%0)\n"
952 " lda $31,5b-3b(%0)\n"
954 " lda $31,5b-4b(%0)\n"
956 : "=r"(error), "=&r"(tmp1), "=&r"(tmp2),
957 "=&r"(tmp3), "=&r"(tmp4)
958 : "r"(va), "r"(*reg_addr), "0"(0));
964 fake_reg = s_reg_to_mem(alpha_read_fp_reg(reg));
968 __asm__ __volatile__(
969 "1: ldq_u %2,3(%5)\n"
970 "2: ldq_u %1,0(%5)\n"
977 "3: stq_u %2,3(%5)\n"
978 "4: stq_u %1,0(%5)\n"
980 ".section __ex_table,\"a\"\n"
982 " lda %2,5b-1b(%0)\n"
984 " lda %1,5b-2b(%0)\n"
986 " lda $31,5b-3b(%0)\n"
988 " lda $31,5b-4b(%0)\n"
990 : "=r"(error), "=&r"(tmp1), "=&r"(tmp2),
991 "=&r"(tmp3), "=&r"(tmp4)
992 : "r"(va), "r"(*reg_addr), "0"(0));
998 fake_reg = alpha_read_fp_reg(reg);
1001 case 0x2d: /* stq */
1002 __asm__ __volatile__(
1003 "1: ldq_u %2,7(%5)\n"
1004 "2: ldq_u %1,0(%5)\n"
1011 "3: stq_u %2,7(%5)\n"
1012 "4: stq_u %1,0(%5)\n"
1014 ".section __ex_table,\"a\"\n\t"
1016 " lda %2,5b-1b(%0)\n"
1018 " lda %1,5b-2b(%0)\n"
1020 " lda $31,5b-3b(%0)\n"
1022 " lda $31,5b-4b(%0)\n"
1024 : "=r"(error), "=&r"(tmp1), "=&r"(tmp2),
1025 "=&r"(tmp3), "=&r"(tmp4)
1026 : "r"(va), "r"(*reg_addr), "0"(0));
1032 /* What instruction were you trying to use, exactly? */
1036 /* Only integer loads should get here; everyone else returns early. */
1042 regs->pc -= 4; /* make pc point to faulting insn */
1043 info.si_signo = SIGSEGV;
1046 /* We need to replicate some of the logic in mm/fault.c,
1047 since we don't have access to the fault code in the
1048 exception handling return path. */
1049 if (!__access_ok((unsigned long)va, 0, USER_DS))
1050 info.si_code = SEGV_ACCERR;
1052 struct mm_struct *mm = current->mm;
1053 down_read(&mm->mmap_sem);
1054 if (find_vma(mm, (unsigned long)va))
1055 info.si_code = SEGV_ACCERR;
1057 info.si_code = SEGV_MAPERR;
1058 up_read(&mm->mmap_sem);
1061 send_sig_info(SIGSEGV, &info, current);
1066 info.si_signo = SIGBUS;
1068 info.si_code = BUS_ADRALN;
1070 send_sig_info(SIGBUS, &info, current);
1077 /* Tell PAL-code what global pointer we want in the kernel. */
1078 register unsigned long gptr __asm__("$29");
1081 /* Hack for Multia (UDB) and JENSEN: some of their SRMs have
1082 a bug in the handling of the opDEC fault. Fix it up if so. */
1083 if (implver() == IMPLVER_EV4)