2 * arch/ia64/kernel/entry.S
6 * Copyright (C) 1998-2003, 2005 Hewlett-Packard Co
7 * David Mosberger-Tang <davidm@hpl.hp.com>
8 * Copyright (C) 1999, 2002-2003
9 * Asit Mallick <Asit.K.Mallick@intel.com>
10 * Don Dugger <Don.Dugger@intel.com>
11 * Suresh Siddha <suresh.b.siddha@intel.com>
12 * Fenghua Yu <fenghua.yu@intel.com>
13 * Copyright (C) 1999 VA Linux Systems
14 * Copyright (C) 1999 Walt Drummond <drummond@valinux.com>
17 * ia64_switch_to now places correct virtual mapping in in TR2 for
18 * kernel stack. This allows us to handle interrupts without changing
21 * Jonathan Nicklin <nicklin@missioncriticallinux.com>
22 * Patrick O'Rourke <orourke@missioncriticallinux.com>
26 * Copyright (c) 2008 Isaku Yamahata <yamahata at valinux co jp>
27 * VA Linux Systems Japan K.K.
31 * Global (preserved) predicate usage on syscall entry/exit path:
40 #include <asm/asmmacro.h>
41 #include <asm/cache.h>
42 #include <asm/errno.h>
43 #include <asm/kregs.h>
44 #include <asm/asm-offsets.h>
45 #include <asm/pgtable.h>
46 #include <asm/percpu.h>
47 #include <asm/processor.h>
48 #include <asm/thread_info.h>
49 #include <asm/unistd.h>
50 #include <asm/ftrace.h>
51 #include <asm/export.h>
56 * execve() is special because in case of success, we need to
57 * setup a null register window frame.
61 * Allocate 8 input registers since ptrace() may clobber them
63 .prologue ASM_UNW_PRLG_RP|ASM_UNW_PRLG_PFS, ASM_UNW_PRLG_GRSAVE(8)
64 alloc loc1=ar.pfs,8,2,3,0
67 mov out0=in0 // filename
68 ;; // stop bit between alloc and call
71 br.call.sptk.many rp=sys_execve
74 mov ar.pfs=loc1 // restore ar.pfs
75 sxt4 r8=r8 // return 64-bit result
79 (p6) mov ar.pfs=r0 // clear ar.pfs on success
80 (p7) br.ret.sptk.many rp
83 * In theory, we'd have to zap this state only to prevent leaking of
84 * security sensitive state (e.g., if current->mm->dumpable is zero). However,
85 * this executes in less than 20 cycles even on Itanium, so it's not worth
88 mov ar.unat=0; mov ar.lc=0
89 mov r4=0; mov f2=f0; mov b1=r0
90 mov r5=0; mov f3=f0; mov b2=r0
91 mov r6=0; mov f4=f0; mov b3=r0
92 mov r7=0; mov f5=f0; mov b4=r0
93 ldf.fill f12=[sp]; mov f13=f0; mov b5=r0
94 ldf.fill f14=[sp]; ldf.fill f15=[sp]; mov f16=f0
95 ldf.fill f17=[sp]; ldf.fill f18=[sp]; mov f19=f0
96 ldf.fill f20=[sp]; ldf.fill f21=[sp]; mov f22=f0
97 ldf.fill f23=[sp]; ldf.fill f24=[sp]; mov f25=f0
98 ldf.fill f26=[sp]; ldf.fill f27=[sp]; mov f28=f0
99 ldf.fill f29=[sp]; ldf.fill f30=[sp]; mov f31=f0
104 * sys_clone2(u64 flags, u64 ustack_base, u64 ustack_size, u64 parent_tidptr, u64 child_tidptr,
107 GLOBAL_ENTRY(sys_clone2)
109 * Allocate 8 input registers since ptrace() may clobber them
111 .prologue ASM_UNW_PRLG_RP|ASM_UNW_PRLG_PFS, ASM_UNW_PRLG_GRSAVE(8)
112 alloc r16=ar.pfs,8,2,6,0
114 adds r2=PT(R16)+IA64_SWITCH_STACK_SIZE+16,sp
116 mov loc1=r16 // save ar.pfs across do_fork
120 tbit.nz p6,p0=in0,CLONE_SETTLS_BIT
121 mov out3=in3 // parent_tidptr: valid only w/CLONE_PARENT_SETTID
123 (p6) st8 [r2]=in5 // store TLS in r16 for copy_thread()
124 mov out4=in4 // child_tidptr: valid only w/CLONE_CHILD_SETTID or CLONE_CHILD_CLEARTID
125 mov out0=in0 // out0 = clone_flags
126 br.call.sptk.many rp=do_fork
128 adds sp=IA64_SWITCH_STACK_SIZE,sp // pop the switch stack
135 * sys_clone(u64 flags, u64 ustack_base, u64 parent_tidptr, u64 child_tidptr, u64 tls)
136 * Deprecated. Use sys_clone2() instead.
138 GLOBAL_ENTRY(sys_clone)
140 * Allocate 8 input registers since ptrace() may clobber them
142 .prologue ASM_UNW_PRLG_RP|ASM_UNW_PRLG_PFS, ASM_UNW_PRLG_GRSAVE(8)
143 alloc r16=ar.pfs,8,2,6,0
145 adds r2=PT(R16)+IA64_SWITCH_STACK_SIZE+16,sp
147 mov loc1=r16 // save ar.pfs across do_fork
150 mov out2=16 // stacksize (compensates for 16-byte scratch area)
151 tbit.nz p6,p0=in0,CLONE_SETTLS_BIT
152 mov out3=in2 // parent_tidptr: valid only w/CLONE_PARENT_SETTID
154 (p6) st8 [r2]=in4 // store TLS in r13 (tp)
155 mov out4=in3 // child_tidptr: valid only w/CLONE_CHILD_SETTID or CLONE_CHILD_CLEARTID
156 mov out0=in0 // out0 = clone_flags
157 br.call.sptk.many rp=do_fork
159 adds sp=IA64_SWITCH_STACK_SIZE,sp // pop the switch stack
166 * prev_task <- ia64_switch_to(struct task_struct *next)
167 * With Ingo's new scheduler, interrupts are disabled when this routine gets
168 * called. The code starting at .map relies on this. The rest of the code
169 * doesn't care about the interrupt masking status.
171 GLOBAL_ENTRY(ia64_switch_to)
173 alloc r16=ar.pfs,1,0,0,0
177 adds r22=IA64_TASK_THREAD_KSP_OFFSET,r13
179 mov r27=IA64_KR(CURRENT_STACK)
180 adds r21=IA64_TASK_THREAD_KSP_OFFSET,in0
181 dep r20=0,in0,61,3 // physical address of "next"
183 st8 [r22]=sp // save kernel stack pointer of old task
184 shr.u r26=r20,IA64_GRANULE_SHIFT
188 * If we've already mapped this task's page, we can skip doing it again.
190 (p6) cmp.eq p7,p6=r26,r27
191 (p6) br.cond.dpnt .map
194 ld8 sp=[r21] // load kernel stack pointer of new task
195 MOV_TO_KR(CURRENT, in0, r8, r9) // update "current" application register
196 mov r8=r13 // return pointer to previously running task
197 mov r13=in0 // set "current" pointer
202 sync.i // ensure "fc"s done by this CPU are visible on other CPUs
204 br.ret.sptk.many rp // boogie on out in new context
207 RSM_PSR_IC(r25) // interrupts (psr.i) are already disabled here
211 or r23=r25,r20 // construct PA | page properties
212 mov r25=IA64_GRANULE_SHIFT<<2
214 MOV_TO_ITIR(p0, r25, r8)
215 MOV_TO_IFA(in0, r8) // VA of next task...
217 mov r25=IA64_TR_CURRENT_STACK
218 MOV_TO_KR(CURRENT_STACK, r26, r8, r9) // remember last page we mapped...
220 itr.d dtr[r25]=r23 // wire in new mapping...
221 SSM_PSR_IC_AND_SRLZ_D(r8, r9) // reenable the psr.ic bit
226 * Note that interrupts are enabled during save_switch_stack and load_switch_stack. This
227 * means that we may get an interrupt with "sp" pointing to the new kernel stack while
228 * ar.bspstore is still pointing to the old kernel backing store area. Since ar.rsc,
229 * ar.rnat, ar.bsp, and ar.bspstore are all preserved by interrupts, this is not a
230 * problem. Also, we don't need to specify unwind information for preserved registers
231 * that are not modified in save_switch_stack as the right unwind information is already
232 * specified at the call-site of save_switch_stack.
238 * - b7 holds address to return to
239 * - rp (b0) holds return address to save
241 GLOBAL_ENTRY(save_switch_stack)
244 flushrs // flush dirty regs to backing store (must be first in insn group)
246 mov r17=ar.unat // preserve caller's
248 #ifdef CONFIG_ITANIUM
251 adds r14=SW(R4)+16,sp
253 st8.spill [r14]=r4,16 // spill r4
254 lfetch.fault.excl.nt1 [r3],128
256 lfetch.fault.excl.nt1 [r2],128
257 lfetch.fault.excl.nt1 [r3],128
259 lfetch.fault.excl [r2]
260 lfetch.fault.excl [r3]
261 adds r15=SW(R5)+16,sp
267 st8.spill [r14]=r4,SW(R6)-SW(R4) // spill r4 and prefetch offset 0x1c0
268 lfetch.fault.excl.nt1 [r3],128 // prefetch offset 0x010
270 lfetch.fault.excl.nt1 [r3],128 // prefetch offset 0x090
271 lfetch.fault.excl.nt1 [r2],128 // prefetch offset 0x190
273 lfetch.fault.excl.nt1 [r3] // prefetch offset 0x110
274 lfetch.fault.excl.nt1 [r2] // prefetch offset 0x210
275 adds r15=SW(R5)+16,sp
278 st8.spill [r15]=r5,SW(R7)-SW(R5) // spill r5
279 mov.m ar.rsc=0 // put RSE in mode: enforced lazy, little endian, pl 0
280 add r2=SW(F2)+16,sp // r2 = &sw->f2
282 st8.spill [r14]=r6,SW(B0)-SW(R6) // spill r6
283 mov.m r18=ar.fpsr // preserve fpsr
284 add r3=SW(F3)+16,sp // r3 = &sw->f3
291 st8.spill [r15]=r7,SW(B2)-SW(R7) // spill r7
294 // since we're done with the spills, read and save ar.unat:
296 mov.m r20=ar.bspstore
302 st8 [r14]=r21,SW(B1)-SW(B0) // save b0
303 st8 [r15]=r23,SW(B3)-SW(B2) // save b2
307 st8 [r14]=r22,SW(B4)-SW(B1) // save b1
308 st8 [r15]=r24,SW(AR_PFS)-SW(B3) // save b3
309 mov r21=ar.lc // I-unit
310 stf.spill [r2]=f12,32
311 stf.spill [r3]=f13,32
313 st8 [r14]=r25,SW(B5)-SW(B4) // save b4
314 st8 [r15]=r16,SW(AR_LC)-SW(AR_PFS) // save ar.pfs
315 stf.spill [r2]=f14,32
316 stf.spill [r3]=f15,32
318 st8 [r14]=r26 // save b5
319 st8 [r15]=r21 // save ar.lc
320 stf.spill [r2]=f16,32
321 stf.spill [r3]=f17,32
323 stf.spill [r2]=f18,32
324 stf.spill [r3]=f19,32
326 stf.spill [r2]=f20,32
327 stf.spill [r3]=f21,32
329 stf.spill [r2]=f22,32
330 stf.spill [r3]=f23,32
332 stf.spill [r2]=f24,32
333 stf.spill [r3]=f25,32
335 stf.spill [r2]=f26,32
336 stf.spill [r3]=f27,32
338 stf.spill [r2]=f28,32
339 stf.spill [r3]=f29,32
341 stf.spill [r2]=f30,SW(AR_UNAT)-SW(F30)
342 stf.spill [r3]=f31,SW(PR)-SW(F31)
343 add r14=SW(CALLER_UNAT)+16,sp
345 st8 [r2]=r29,SW(AR_RNAT)-SW(AR_UNAT) // save ar.unat
346 st8 [r14]=r17,SW(AR_FPSR)-SW(CALLER_UNAT) // save caller_unat
349 st8 [r2]=r19,SW(AR_BSPSTORE)-SW(AR_RNAT) // save ar.rnat
350 st8 [r3]=r21 // save predicate registers
352 st8 [r2]=r20 // save ar.bspstore
353 st8 [r14]=r18 // save fpsr
354 mov ar.rsc=3 // put RSE back into eager mode, pl 0
356 END(save_switch_stack)
360 * - "invala" MUST be done at call site (normally in DO_LOAD_SWITCH_STACK)
361 * - b7 holds address to return to
362 * - must not touch r8-r11
364 GLOBAL_ENTRY(load_switch_stack)
369 lfetch.fault.nt1 [sp]
370 adds r2=SW(AR_BSPSTORE)+16,sp
371 adds r3=SW(AR_UNAT)+16,sp
372 mov ar.rsc=0 // put RSE into enforced lazy mode
373 adds r14=SW(CALLER_UNAT)+16,sp
374 adds r15=SW(AR_FPSR)+16,sp
376 ld8 r27=[r2],(SW(B0)-SW(AR_BSPSTORE)) // bspstore
377 ld8 r29=[r3],(SW(B1)-SW(AR_UNAT)) // unat
379 ld8 r21=[r2],16 // restore b0
380 ld8 r22=[r3],16 // restore b1
382 ld8 r23=[r2],16 // restore b2
383 ld8 r24=[r3],16 // restore b3
385 ld8 r25=[r2],16 // restore b4
386 ld8 r26=[r3],16 // restore b5
388 ld8 r16=[r2],(SW(PR)-SW(AR_PFS)) // ar.pfs
389 ld8 r17=[r3],(SW(AR_RNAT)-SW(AR_LC)) // ar.lc
391 ld8 r28=[r2] // restore pr
392 ld8 r30=[r3] // restore rnat
394 ld8 r18=[r14],16 // restore caller's unat
395 ld8 r19=[r15],24 // restore fpsr
403 ldf.fill f12=[r14],32
404 ldf.fill f13=[r15],32
406 ldf.fill f14=[r14],32
407 ldf.fill f15=[r15],32
409 ldf.fill f16=[r14],32
410 ldf.fill f17=[r15],32
412 ldf.fill f18=[r14],32
413 ldf.fill f19=[r15],32
416 ldf.fill f20=[r14],32
417 ldf.fill f21=[r15],32
420 ldf.fill f22=[r14],32
421 ldf.fill f23=[r15],32
425 mov ar.unat=r29 // establish unat holding the NaT bits for r4-r7
428 ldf.fill f24=[r14],32
429 ldf.fill f25=[r15],32
432 ldf.fill f26=[r14],32
433 ldf.fill f27=[r15],32
436 ldf.fill f28=[r14],32
437 ldf.fill f29=[r15],32
440 ldf.fill f30=[r14],32
441 ldf.fill f31=[r15],24
451 mov ar.unat=r18 // restore caller's unat
452 mov ar.rnat=r30 // must restore after bspstore but before rsc!
453 mov ar.fpsr=r19 // restore fpsr
454 mov ar.rsc=3 // put RSE back into eager mode, pl 0
456 END(load_switch_stack)
459 * Invoke a system call, but do some tracing before and after the call.
460 * We MUST preserve the current register frame throughout this routine
461 * because some system calls (such as ia64_execve) directly
464 GLOBAL_ENTRY(ia64_trace_syscall)
465 PT_REGS_UNWIND_INFO(0)
467 * We need to preserve the scratch registers f6-f11 in case the system
470 adds r16=PT(F6)+16,sp
471 adds r17=PT(F7)+16,sp
473 stf.spill [r16]=f6,32
474 stf.spill [r17]=f7,32
476 stf.spill [r16]=f8,32
477 stf.spill [r17]=f9,32
481 br.call.sptk.many rp=syscall_trace_enter // give parent a chance to catch syscall args
482 cmp.lt p6,p0=r8,r0 // check tracehook
483 adds r2=PT(R8)+16,sp // r2 = &pt_regs.r8
484 adds r3=PT(R10)+16,sp // r3 = &pt_regs.r10
486 (p6) br.cond.sptk strace_error // syscall failed ->
487 adds r16=PT(F6)+16,sp
488 adds r17=PT(F7)+16,sp
498 // the syscall number may have changed, so re-load it and re-calculate the
499 // syscall entry-point:
500 adds r15=PT(R15)+16,sp // r15 = &pt_regs.r15 (syscall #)
503 mov r3=NR_syscalls - 1
506 movl r16=sys_call_table
508 shladd r20=r15,3,r16 // r20 = sys_call_table + 8*(syscall-1024)
511 (p6) ld8 r20=[r20] // load address of syscall entry point
512 (p7) movl r20=sys_ni_syscall
515 br.call.sptk.many rp=b6 // do the syscall
516 .strace_check_retval:
517 cmp.lt p6,p0=r8,r0 // syscall failed?
518 adds r2=PT(R8)+16,sp // r2 = &pt_regs.r8
519 adds r3=PT(R10)+16,sp // r3 = &pt_regs.r10
521 (p6) br.cond.sptk strace_error // syscall failed ->
522 ;; // avoid RAW on r10
524 .mem.offset 0,0; st8.spill [r2]=r8 // store return value in slot for r8
525 .mem.offset 8,0; st8.spill [r3]=r10 // clear error indication in slot for r10
526 br.call.sptk.many rp=syscall_trace_leave // give parent a chance to catch return value
528 (pUStk) cmp.eq.unc p6,p0=r0,r0 // p6 <- pUStk
529 (pUStk) rsm psr.i // disable interrupts
530 br.cond.sptk ia64_work_pending_syscall_end
533 ld8 r3=[r2] // load pt_regs.r8
534 sub r9=0,r8 // negate return value to get errno value
536 cmp.ne p6,p0=r3,r0 // is pt_regs.r8!=0?
537 adds r3=16,r2 // r3=&pt_regs.r10
541 br.cond.sptk .strace_save_retval
542 END(ia64_trace_syscall)
545 * When traced and returning from sigreturn, we invoke syscall_trace but then
546 * go straight to ia64_leave_kernel rather than ia64_leave_syscall.
548 GLOBAL_ENTRY(ia64_strace_leave_kernel)
549 PT_REGS_UNWIND_INFO(0)
551 * Some versions of gas generate bad unwind info if the first instruction of a
552 * procedure doesn't go into the first slot of a bundle. This is a workaround.
556 br.call.sptk.many rp=syscall_trace_leave // give parent a chance to catch return value
558 .ret4: br.cond.sptk ia64_leave_kernel
559 END(ia64_strace_leave_kernel)
562 .prologue ASM_UNW_PRLG_RP|ASM_UNW_PRLG_PFS, ASM_UNW_PRLG_GRSAVE(0)
563 /* call the kernel_thread payload; fn is in r4, arg - in r5 */
564 alloc loc1=ar.pfs,0,3,1,0
568 ld8 r14 = [r4], 8 // fn.address
571 ld8 gp = [r4] // fn.gp
573 br.call.sptk.many rp=b6 // fn(arg)
577 /* ... and if it has returned, we are going to userland */
578 cmp.ne pKStk,pUStk=r0,r0
582 GLOBAL_ENTRY(ia64_ret_from_clone)
583 PT_REGS_UNWIND_INFO(0)
585 * Some versions of gas generate bad unwind info if the first instruction of a
586 * procedure doesn't go into the first slot of a bundle. This is a workaround.
591 * We need to call schedule_tail() to complete the scheduling process.
592 * Called by ia64_switch_to() after do_fork()->copy_thread(). r8 contains the
593 * address of the previously executing task.
595 br.call.sptk.many rp=ia64_invoke_schedule_tail
598 (pKStk) br.call.sptk.many rp=call_payload
599 adds r2=TI_FLAGS+IA64_TASK_SIZE,r13
604 and r2=_TIF_SYSCALL_TRACEAUDIT,r2
607 (p6) br.cond.spnt .strace_check_retval
608 ;; // added stop bits to prevent r8 dependency
609 END(ia64_ret_from_clone)
611 GLOBAL_ENTRY(ia64_ret_from_syscall)
612 PT_REGS_UNWIND_INFO(0)
613 cmp.ge p6,p7=r8,r0 // syscall executed successfully?
614 adds r2=PT(R8)+16,sp // r2 = &pt_regs.r8
615 mov r10=r0 // clear error indication in r10
616 (p7) br.cond.spnt handle_syscall_error // handle potential syscall failure
617 END(ia64_ret_from_syscall)
621 * ia64_leave_syscall(): Same as ia64_leave_kernel, except that it doesn't
622 * need to switch to bank 0 and doesn't restore the scratch registers.
623 * To avoid leaking kernel bits, the scratch registers are set to
624 * the following known-to-be-safe values:
626 * r1: restored (global pointer)
628 * r3: 1 (when returning to user-level)
629 * r8-r11: restored (syscall return value(s))
630 * r12: restored (user-level stack pointer)
631 * r13: restored (user-level thread pointer)
632 * r14: set to __kernel_syscall_via_epc
633 * r15: restored (syscall #)
637 * r20: user-level ar.fpsr
640 * r23: user-level ar.bspstore
641 * r24: user-level ar.rnat
642 * r25: user-level ar.unat
643 * r26: user-level ar.pfs
644 * r27: user-level ar.rsc
646 * r29: user-level psr
647 * r30: user-level cfm
650 * pr: restored (user-level pr)
651 * b0: restored (user-level rp)
653 * b7: set to __kernel_syscall_via_epc
654 * ar.unat: restored (user-level ar.unat)
655 * ar.pfs: restored (user-level ar.pfs)
656 * ar.rsc: restored (user-level ar.rsc)
657 * ar.rnat: restored (user-level ar.rnat)
658 * ar.bspstore: restored (user-level ar.bspstore)
659 * ar.fpsr: restored (user-level ar.fpsr)
664 GLOBAL_ENTRY(ia64_leave_syscall)
665 PT_REGS_UNWIND_INFO(0)
667 * work.need_resched etc. mustn't get changed by this CPU before it returns to
668 * user- or fsys-mode, hence we disable interrupts early on.
670 * p6 controls whether current_thread_info()->flags needs to be check for
671 * extra work. We always check for extra work when returning to user-level.
672 * With CONFIG_PREEMPT, we also check for extra work when the preempt_count
673 * is 0. After extra work processing has been completed, execution
674 * resumes at ia64_work_processed_syscall with p6 set to 1 if the extra-work-check
675 * needs to be redone.
677 #ifdef CONFIG_PREEMPT
678 RSM_PSR_I(p0, r2, r18) // disable interrupts
679 cmp.eq pLvSys,p0=r0,r0 // pLvSys=1: leave from syscall
680 (pKStk) adds r20=TI_PRE_COUNT+IA64_TASK_SIZE,r13
682 .pred.rel.mutex pUStk,pKStk
683 (pKStk) ld4 r21=[r20] // r21 <- preempt_count
684 (pUStk) mov r21=0 // r21 <- 0
686 cmp.eq p6,p0=r21,r0 // p6 <- pUStk || (preempt_count == 0)
687 #else /* !CONFIG_PREEMPT */
688 RSM_PSR_I(pUStk, r2, r18)
689 cmp.eq pLvSys,p0=r0,r0 // pLvSys=1: leave from syscall
690 (pUStk) cmp.eq.unc p6,p0=r0,r0 // p6 <- pUStk
692 .global ia64_work_processed_syscall;
693 ia64_work_processed_syscall:
694 #ifdef CONFIG_VIRT_CPU_ACCOUNTING_NATIVE
695 adds r2=PT(LOADRS)+16,r12
696 MOV_FROM_ITC(pUStk, p9, r22, r19) // fetch time at leave
697 adds r18=TI_FLAGS+IA64_TASK_SIZE,r13
699 (p6) ld4 r31=[r18] // load current_thread_info()->flags
700 ld8 r19=[r2],PT(B6)-PT(LOADRS) // load ar.rsc value for "loadrs"
701 adds r3=PT(AR_BSPSTORE)+16,r12 // deferred
704 adds r2=PT(LOADRS)+16,r12
705 adds r3=PT(AR_BSPSTORE)+16,r12
706 adds r18=TI_FLAGS+IA64_TASK_SIZE,r13
708 (p6) ld4 r31=[r18] // load current_thread_info()->flags
709 ld8 r19=[r2],PT(B6)-PT(LOADRS) // load ar.rsc value for "loadrs"
713 mov r16=ar.bsp // M2 get existing backing store pointer
714 ld8 r18=[r2],PT(R9)-PT(B6) // load b6
715 (p6) and r15=TIF_WORK_MASK,r31 // any work other than TIF_SYSCALL_TRACE?
717 ld8 r23=[r3],PT(R11)-PT(AR_BSPSTORE) // load ar.bspstore (may be garbage)
718 (p6) cmp4.ne.unc p6,p0=r15, r0 // any special work pending?
719 (p6) br.cond.spnt .work_pending_syscall
721 // start restoring the state saved on the kernel stack (struct pt_regs):
722 ld8 r9=[r2],PT(CR_IPSR)-PT(R9)
723 ld8 r11=[r3],PT(CR_IIP)-PT(R11)
724 (pNonSys) break 0 // bug check: we shouldn't be here if pNonSys is TRUE!
726 invala // M0|1 invalidate ALAT
727 RSM_PSR_I_IC(r28, r29, r30) // M2 turn off interrupts and interruption collection
728 cmp.eq p9,p0=r0,r0 // A set p9 to indicate that we should restore cr.ifs
730 ld8 r29=[r2],16 // M0|1 load cr.ipsr
731 ld8 r28=[r3],16 // M0|1 load cr.iip
732 #ifdef CONFIG_VIRT_CPU_ACCOUNTING_NATIVE
733 (pUStk) add r14=TI_AC_LEAVE+IA64_TASK_SIZE,r13
735 ld8 r30=[r2],16 // M0|1 load cr.ifs
736 ld8 r25=[r3],16 // M0|1 load ar.unat
737 (pUStk) add r15=IA64_TASK_THREAD_ON_USTACK_OFFSET,r13
740 mov r22=r0 // A clear r22
742 ld8 r30=[r2],16 // M0|1 load cr.ifs
743 ld8 r25=[r3],16 // M0|1 load ar.unat
744 (pUStk) add r14=IA64_TASK_THREAD_ON_USTACK_OFFSET,r13
747 ld8 r26=[r2],PT(B0)-PT(AR_PFS) // M0|1 load ar.pfs
748 MOV_FROM_PSR(pKStk, r22, r21) // M2 read PSR now that interrupts are disabled
751 ld8 r21=[r2],PT(AR_RNAT)-PT(B0) // M0|1 load b0
752 ld8 r27=[r3],PT(PR)-PT(AR_RSC) // M0|1 load ar.rsc
753 mov f6=f0 // F clear f6
755 ld8 r24=[r2],PT(AR_FPSR)-PT(AR_RNAT) // M0|1 load ar.rnat (may be garbage)
756 ld8 r31=[r3],PT(R1)-PT(PR) // M0|1 load predicates
757 mov f7=f0 // F clear f7
759 ld8 r20=[r2],PT(R12)-PT(AR_FPSR) // M0|1 load ar.fpsr
760 ld8.fill r1=[r3],16 // M0|1 load r1
761 (pUStk) mov r17=1 // A
763 #ifdef CONFIG_VIRT_CPU_ACCOUNTING_NATIVE
764 (pUStk) st1 [r15]=r17 // M2|3
766 (pUStk) st1 [r14]=r17 // M2|3
768 ld8.fill r13=[r3],16 // M0|1
769 mov f8=f0 // F clear f8
771 ld8.fill r12=[r2] // M0|1 restore r12 (sp)
772 ld8.fill r15=[r3] // M0|1 restore r15
773 mov b6=r18 // I0 restore b6
775 LOAD_PHYS_STACK_REG_SIZE(r17)
776 mov f9=f0 // F clear f9
777 (pKStk) br.cond.dpnt.many skip_rbs_switch // B
779 srlz.d // M0 ensure interruption collection is off (for cover)
780 shr.u r18=r19,16 // I0|1 get byte size of existing "dirty" partition
781 COVER // B add current frame into dirty partition & set cr.ifs
783 #ifdef CONFIG_VIRT_CPU_ACCOUNTING_NATIVE
784 mov r19=ar.bsp // M2 get new backing store pointer
785 st8 [r14]=r22 // M save time at leave
786 mov f10=f0 // F clear f10
788 mov r22=r0 // A clear r22
789 movl r14=__kernel_syscall_via_epc // X
792 mov r19=ar.bsp // M2 get new backing store pointer
793 mov f10=f0 // F clear f10
796 movl r14=__kernel_syscall_via_epc // X
799 mov.m ar.csd=r0 // M2 clear ar.csd
800 mov.m ar.ccv=r0 // M2 clear ar.ccv
801 mov b7=r14 // I0 clear b7 (hint with __kernel_syscall_via_epc)
803 mov.m ar.ssd=r0 // M2 clear ar.ssd
804 mov f11=f0 // F clear f11
805 br.cond.sptk.many rbs_switch // B
806 END(ia64_leave_syscall)
808 GLOBAL_ENTRY(ia64_leave_kernel)
809 PT_REGS_UNWIND_INFO(0)
811 * work.need_resched etc. mustn't get changed by this CPU before it returns to
812 * user- or fsys-mode, hence we disable interrupts early on.
814 * p6 controls whether current_thread_info()->flags needs to be check for
815 * extra work. We always check for extra work when returning to user-level.
816 * With CONFIG_PREEMPT, we also check for extra work when the preempt_count
817 * is 0. After extra work processing has been completed, execution
818 * resumes at .work_processed_syscall with p6 set to 1 if the extra-work-check
819 * needs to be redone.
821 #ifdef CONFIG_PREEMPT
822 RSM_PSR_I(p0, r17, r31) // disable interrupts
823 cmp.eq p0,pLvSys=r0,r0 // pLvSys=0: leave from kernel
824 (pKStk) adds r20=TI_PRE_COUNT+IA64_TASK_SIZE,r13
826 .pred.rel.mutex pUStk,pKStk
827 (pKStk) ld4 r21=[r20] // r21 <- preempt_count
828 (pUStk) mov r21=0 // r21 <- 0
830 cmp.eq p6,p0=r21,r0 // p6 <- pUStk || (preempt_count == 0)
832 RSM_PSR_I(pUStk, r17, r31)
833 cmp.eq p0,pLvSys=r0,r0 // pLvSys=0: leave from kernel
834 (pUStk) cmp.eq.unc p6,p0=r0,r0 // p6 <- pUStk
836 .work_processed_kernel:
837 adds r17=TI_FLAGS+IA64_TASK_SIZE,r13
839 (p6) ld4 r31=[r17] // load current_thread_info()->flags
840 adds r21=PT(PR)+16,r12
843 lfetch [r21],PT(CR_IPSR)-PT(PR)
844 adds r2=PT(B6)+16,r12
845 adds r3=PT(R16)+16,r12
848 ld8 r28=[r2],8 // load b6
849 adds r29=PT(R24)+16,r12
851 ld8.fill r16=[r3],PT(AR_CSD)-PT(R16)
852 adds r30=PT(AR_CCV)+16,r12
853 (p6) and r19=TIF_WORK_MASK,r31 // any work other than TIF_SYSCALL_TRACE?
856 ld8 r15=[r30] // load ar.ccv
857 (p6) cmp4.ne.unc p6,p0=r19, r0 // any special work pending?
859 ld8 r29=[r2],16 // load b7
860 ld8 r30=[r3],16 // load ar.csd
861 (p6) br.cond.spnt .work_pending
863 ld8 r31=[r2],16 // load ar.ssd
867 ld8.fill r10=[r3],PT(R17)-PT(R10)
869 ld8.fill r11=[r2],PT(R18)-PT(R11)
880 RSM_PSR_I_IC(r23, r22, r25) // initiate turning off of interrupt and interruption collection
881 invala // invalidate ALAT
897 ld8.fill r31=[r2],PT(F9)-PT(R31)
898 adds r3=PT(F10)-PT(F6),r3
900 ldf.fill f9=[r2],PT(F6)-PT(F9)
901 ldf.fill f10=[r3],PT(F8)-PT(F10)
903 ldf.fill f6=[r2],PT(F7)-PT(F6)
905 ldf.fill f7=[r2],PT(F11)-PT(F7)
908 srlz.d // ensure that inter. collection is off (VHPT is don't care, since text is pinned)
912 BSW_0(r2, r3, r15) // switch back to bank 0 (no stop bit required beforehand...)
914 (pUStk) mov r18=IA64_KR(CURRENT)// M2 (12 cycle read latency)
915 adds r16=PT(CR_IPSR)+16,r12
916 adds r17=PT(CR_IIP)+16,r12
918 #ifdef CONFIG_VIRT_CPU_ACCOUNTING_NATIVE
919 .pred.rel.mutex pUStk,pKStk
920 MOV_FROM_PSR(pKStk, r22, r29) // M2 read PSR now that interrupts are disabled
921 MOV_FROM_ITC(pUStk, p9, r22, r29) // M fetch time at leave
925 MOV_FROM_PSR(pKStk, r22, r29) // M2 read PSR now that interrupts are disabled
930 ld8 r29=[r16],16 // load cr.ipsr
931 ld8 r28=[r17],16 // load cr.iip
933 ld8 r30=[r16],16 // load cr.ifs
934 ld8 r25=[r17],16 // load ar.unat
936 ld8 r26=[r16],16 // load ar.pfs
937 ld8 r27=[r17],16 // load ar.rsc
938 cmp.eq p9,p0=r0,r0 // set p9 to indicate that we should restore cr.ifs
940 ld8 r24=[r16],16 // load ar.rnat (may be garbage)
941 ld8 r23=[r17],16 // load ar.bspstore (may be garbage)
943 ld8 r31=[r16],16 // load predicates
944 ld8 r21=[r17],16 // load b0
946 ld8 r19=[r16],16 // load ar.rsc value for "loadrs"
947 ld8.fill r1=[r17],16 // load r1
949 ld8.fill r12=[r16],16
950 ld8.fill r13=[r17],16
951 #ifdef CONFIG_VIRT_CPU_ACCOUNTING_NATIVE
952 (pUStk) adds r3=TI_AC_LEAVE+IA64_TASK_SIZE,r18
954 (pUStk) adds r18=IA64_TASK_THREAD_ON_USTACK_OFFSET,r18
957 ld8 r20=[r16],16 // ar.fpsr
958 ld8.fill r15=[r17],16
959 #ifdef CONFIG_VIRT_CPU_ACCOUNTING_NATIVE
960 (pUStk) adds r18=IA64_TASK_THREAD_ON_USTACK_OFFSET,r18 // deferred
963 ld8.fill r14=[r16],16
967 #ifdef CONFIG_VIRT_CPU_ACCOUNTING_NATIVE
968 // mmi_ : ld8 st1 shr;; mmi_ : st8 st1 shr;;
969 // mib : mov add br -> mib : ld8 add br
970 // bbb_ : br nop cover;; mbb_ : mov br cover;;
972 // no one require bsp in r16 if (pKStk) branch is selected.
973 (pUStk) st8 [r3]=r22 // save time at leave
974 (pUStk) st1 [r18]=r17 // restore current->thread.on_ustack
975 shr.u r18=r19,16 // get byte size of existing "dirty" partition
977 ld8.fill r3=[r16] // deferred
978 LOAD_PHYS_STACK_REG_SIZE(r17)
979 (pKStk) br.cond.dpnt skip_rbs_switch
980 mov r16=ar.bsp // get existing backing store pointer
983 (pUStk) st1 [r18]=r17 // restore current->thread.on_ustack
984 shr.u r18=r19,16 // get byte size of existing "dirty" partition
986 mov r16=ar.bsp // get existing backing store pointer
987 LOAD_PHYS_STACK_REG_SIZE(r17)
988 (pKStk) br.cond.dpnt skip_rbs_switch
992 * Restore user backing store.
994 * NOTE: alloc, loadrs, and cover can't be predicated.
996 (pNonSys) br.cond.dpnt dont_preserve_current_frame
997 COVER // add current frame into dirty partition and set cr.ifs
999 mov r19=ar.bsp // get new backing store pointer
1001 sub r16=r16,r18 // krbs = old bsp - size of dirty partition
1002 cmp.ne p9,p0=r0,r0 // clear p9 to skip restore of cr.ifs
1004 sub r19=r19,r16 // calculate total byte size of dirty partition
1005 add r18=64,r18 // don't force in0-in7 into memory...
1007 shl r19=r19,16 // shift size of dirty partition into loadrs position
1009 dont_preserve_current_frame:
1011 * To prevent leaking bits between the kernel and user-space,
1012 * we must clear the stacked registers in the "invalid" partition here.
1013 * Not pretty, but at least it's fast (3.34 registers/cycle on Itanium,
1014 * 5 registers/cycle on McKinley).
1016 # define pRecurse p6
1018 #ifdef CONFIG_ITANIUM
1023 alloc loc0=ar.pfs,2,Nregs-2,2,0
1024 shr.u loc1=r18,9 // RNaTslots <= floor(dirtySize / (64*8))
1025 sub r17=r17,r18 // r17 = (physStackedSize + 8) - dirtySize
1027 mov ar.rsc=r19 // load ar.rsc to be used for "loadrs"
1028 shladd in0=loc1,3,r17
1033 #ifdef CONFIG_ITANIUM
1036 alloc loc0=ar.pfs,2,Nregs-2,2,0
1037 cmp.lt pRecurse,p0=Nregs*8,in0 // if more than Nregs regs left to clear, (re)curse
1038 add out0=-Nregs*8,in0
1040 add out1=1,in1 // increment recursion count
1042 nop.b 0 // can't do br.call here because of alloc (WAW on CFM)
1051 (pRecurse) br.call.sptk.many b0=rse_clear_invalid
1056 cmp.ne pReturn,p0=r0,in1 // if recursion count != 0, we need to do a br.ret
1060 (pReturn) br.ret.sptk.many b0
1062 #else /* !CONFIG_ITANIUM */
1063 alloc loc0=ar.pfs,2,Nregs-2,2,0
1064 cmp.lt pRecurse,p0=Nregs*8,in0 // if more than Nregs regs left to clear, (re)curse
1065 add out0=-Nregs*8,in0
1066 add out1=1,in1 // increment recursion count
1075 (pRecurse) br.call.dptk.few b0=rse_clear_invalid
1079 cmp.ne pReturn,p0=r0,in1 // if recursion count != 0, we need to do a br.ret
1082 (pReturn) br.ret.dptk.many b0
1083 #endif /* !CONFIG_ITANIUM */
1087 alloc r17=ar.pfs,0,0,0,0 // drop current register frame
1092 mov ar.unat=r25 // M2
1093 (pKStk) extr.u r22=r22,21,1 // I0 extract current value of psr.pp from r22
1094 (pLvSys)mov r19=r0 // A clear r19 for leave_syscall, no-op otherwise
1096 (pUStk) mov ar.bspstore=r23 // M2
1097 (pKStk) dep r29=r22,r29,21,1 // I0 update ipsr.pp with psr.pp
1098 (pLvSys)mov r16=r0 // A clear r16 for leave_syscall, no-op otherwise
1100 MOV_TO_IPSR(p0, r29, r25) // M2
1101 mov ar.pfs=r26 // I0
1102 (pLvSys)mov r17=r0 // A clear r17 for leave_syscall, no-op otherwise
1104 MOV_TO_IFS(p9, r30, r25)// M2
1106 (pLvSys)mov r18=r0 // A clear r18 for leave_syscall, no-op otherwise
1108 mov ar.fpsr=r20 // M2
1109 MOV_TO_IIP(r28, r25) // M2
1112 (pUStk) mov ar.rnat=r24 // M2 must happen with RSE in lazy mode
1116 mov ar.rsc=r27 // M2
1122 * r20 = ¤t->thread_info->pre_count (if CONFIG_PREEMPT)
1123 * r31 = current->thread_info->flags
1125 * p6 = TRUE if work-pending-check needs to be redone
1127 * Interrupts are disabled on entry, reenabled depend on work, and
1130 .work_pending_syscall:
1137 tbit.z p6,p0=r31,TIF_NEED_RESCHED // is resched not needed?
1138 (p6) br.cond.sptk.few .notify
1139 br.call.spnt.many rp=preempt_schedule_irq
1140 .ret9: cmp.eq p6,p0=r0,r0 // p6 <- 1 (re-check)
1141 (pLvSys)br.cond.sptk.few ia64_work_pending_syscall_end
1142 br.cond.sptk.many .work_processed_kernel
1145 (pUStk) br.call.spnt.many rp=notify_resume_user
1146 .ret10: cmp.ne p6,p0=r0,r0 // p6 <- 0 (don't re-check)
1147 (pLvSys)br.cond.sptk.few ia64_work_pending_syscall_end
1148 br.cond.sptk.many .work_processed_kernel
1150 .global ia64_work_pending_syscall_end;
1151 ia64_work_pending_syscall_end:
1152 adds r2=PT(R8)+16,r12
1153 adds r3=PT(R10)+16,r12
1157 br.cond.sptk.many ia64_work_processed_syscall
1158 END(ia64_leave_kernel)
1160 ENTRY(handle_syscall_error)
1162 * Some system calls (e.g., ptrace, mmap) can return arbitrary values which could
1163 * lead us to mistake a negative return value as a failed syscall. Those syscall
1164 * must deposit a non-zero value in pt_regs.r8 to indicate an error. If
1165 * pt_regs.r8 is zero, we assume that the call completed successfully.
1167 PT_REGS_UNWIND_INFO(0)
1168 ld8 r3=[r2] // load pt_regs.r8
1170 cmp.eq p6,p7=r3,r0 // is pt_regs.r8==0?
1173 (p7) sub r8=0,r8 // negate return value to get errno
1174 br.cond.sptk ia64_leave_syscall
1175 END(handle_syscall_error)
1178 * Invoke schedule_tail(task) while preserving in0-in7, which may be needed
1179 * in case a system call gets restarted.
1181 GLOBAL_ENTRY(ia64_invoke_schedule_tail)
1182 .prologue ASM_UNW_PRLG_RP|ASM_UNW_PRLG_PFS, ASM_UNW_PRLG_GRSAVE(8)
1183 alloc loc1=ar.pfs,8,2,1,0
1185 mov out0=r8 // Address of previous task
1187 br.call.sptk.many rp=schedule_tail
1188 .ret11: mov ar.pfs=loc1
1191 END(ia64_invoke_schedule_tail)
1194 * Setup stack and call do_notify_resume_user(), keeping interrupts
1197 * Note that pSys and pNonSys need to be set up by the caller.
1198 * We declare 8 input registers so the system call args get preserved,
1199 * in case we need to restart a system call.
1201 GLOBAL_ENTRY(notify_resume_user)
1202 .prologue ASM_UNW_PRLG_RP|ASM_UNW_PRLG_PFS, ASM_UNW_PRLG_GRSAVE(8)
1203 alloc loc1=ar.pfs,8,2,3,0 // preserve all eight input regs in case of syscall restart!
1205 mov loc0=rp // save return address
1206 mov out0=0 // there is no "oldset"
1207 adds out1=8,sp // out1=&sigscratch->ar_pfs
1208 (pSys) mov out2=1 // out2==1 => we're in a syscall
1210 (pNonSys) mov out2=0 // out2==0 => not a syscall
1212 .spillsp ar.unat, 16
1213 st8 [sp]=r9,-16 // allocate space for ar.unat and save it
1214 st8 [out1]=loc1,-8 // save ar.pfs, out1=&sigscratch
1216 br.call.sptk.many rp=do_notify_resume_user
1218 adds sp=16,sp // pop scratch stack space
1220 ld8 r9=[sp] // load new unat from sigscratch->scratch_unat
1226 END(notify_resume_user)
1228 ENTRY(sys_rt_sigreturn)
1229 PT_REGS_UNWIND_INFO(0)
1231 * Allocate 8 input registers since ptrace() may clobber them
1233 alloc r2=ar.pfs,8,0,1,0
1238 cmp.eq pNonSys,pSys=r0,r0 // sigreturn isn't a normal syscall...
1241 * leave_kernel() restores f6-f11 from pt_regs, but since the streamlined
1242 * syscall-entry path does not save them we save them here instead. Note: we
1243 * don't need to save any other registers that are not saved by the stream-lined
1244 * syscall path, because restore_sigcontext() restores them.
1246 adds r16=PT(F6)+32,sp
1247 adds r17=PT(F7)+32,sp
1249 stf.spill [r16]=f6,32
1250 stf.spill [r17]=f7,32
1252 stf.spill [r16]=f8,32
1253 stf.spill [r17]=f9,32
1257 adds out0=16,sp // out0 = &sigscratch
1258 br.call.sptk.many rp=ia64_rt_sigreturn
1259 .ret19: .restore sp,0
1262 ld8 r9=[sp] // load new ar.unat
1263 mov.sptk b7=r8,ia64_leave_kernel
1267 END(sys_rt_sigreturn)
1269 GLOBAL_ENTRY(ia64_prepare_handle_unaligned)
1272 * r16 = fake ar.pfs, we simply need to make sure privilege is still 0
1275 DO_SAVE_SWITCH_STACK
1276 br.call.sptk.many rp=ia64_handle_unaligned // stack frame setup in ivt
1278 DO_LOAD_SWITCH_STACK
1279 br.cond.sptk.many rp // goes to ia64_leave_kernel
1280 END(ia64_prepare_handle_unaligned)
1283 // unw_init_running(void (*callback)(info, arg), void *arg)
1285 # define EXTRA_FRAME_SIZE ((UNW_FRAME_INFO_SIZE+15)&~15)
1287 GLOBAL_ENTRY(unw_init_running)
1288 .prologue ASM_UNW_PRLG_RP|ASM_UNW_PRLG_PFS, ASM_UNW_PRLG_GRSAVE(2)
1289 alloc loc1=ar.pfs,2,3,3,0
1294 DO_SAVE_SWITCH_STACK
1297 .prologue ASM_UNW_PRLG_RP|ASM_UNW_PRLG_PFS, ASM_UNW_PRLG_GRSAVE(2)
1298 .fframe IA64_SWITCH_STACK_SIZE+EXTRA_FRAME_SIZE
1299 SWITCH_STACK_SAVES(EXTRA_FRAME_SIZE)
1300 adds sp=-EXTRA_FRAME_SIZE,sp
1303 adds out0=16,sp // &info
1304 mov out1=r13 // current
1305 adds out2=16+EXTRA_FRAME_SIZE,sp // &switch_stack
1306 br.call.sptk.many rp=unw_init_frame_info
1307 1: adds out0=16,sp // &info
1309 mov loc2=gp // save gp across indirect function call
1313 br.call.sptk.many rp=b6 // invoke the callback function
1314 1: mov gp=loc2 // restore gp
1316 // For now, we don't allow changing registers from within
1317 // unw_init_running; if we ever want to allow that, we'd
1318 // have to do a load_switch_stack here:
1320 adds sp=IA64_SWITCH_STACK_SIZE+EXTRA_FRAME_SIZE,sp
1325 END(unw_init_running)
1326 EXPORT_SYMBOL(unw_init_running)
1328 #ifdef CONFIG_FUNCTION_TRACER
1329 #ifdef CONFIG_DYNAMIC_FTRACE
1330 GLOBAL_ENTRY(_mcount)
1333 EXPORT_SYMBOL(_mcount)
1338 GLOBAL_ENTRY(ftrace_caller)
1339 alloc out0 = ar.pfs, 8, 0, 4, 0
1345 br.call.sptk.many b0 = ftrace_patch_gp
1346 //this might be called from module, so we must patch gp
1351 .global ftrace_call;
1358 alloc loc0 = ar.pfs, 4, 4, 2, 0
1365 adds out0 = -MCOUNT_INSN_SIZE, out0
1369 br.call.sptk.many b0 = b6
1380 GLOBAL_ENTRY(_mcount)
1381 movl r2 = ftrace_stub
1382 movl r3 = ftrace_trace_function;;
1385 cmp.eq p7,p0 = r2, r3
1386 (p7) br.sptk.many ftrace_stub
1389 alloc loc0 = ar.pfs, 4, 4, 2, 0
1396 adds out0 = -MCOUNT_INSN_SIZE, out0
1400 br.call.sptk.many b0 = b6
1411 GLOBAL_ENTRY(ftrace_stub)
1413 movl r2 = _mcount_ret_helper
1426 #endif /* CONFIG_FUNCTION_TRACER */
1430 .globl sys_call_table
1432 data8 sys_ni_syscall // This must be sys_ni_syscall! See ivt.S.
1433 data8 sys_exit // 1025
1438 data8 sys_creat // 1030
1443 data8 sys_fchdir // 1035
1448 data8 sys_lseek // 1040
1453 data8 sys_setuid // 1045
1458 data8 sys_sync // 1050
1463 data8 sys_mkdir // 1055
1468 data8 ia64_brk // 1060
1473 data8 sys_ioctl // 1065
1478 data8 sys_dup2 // 1070
1483 data8 sys_getresgid // 1075
1488 data8 sys_setpgid // 1080
1491 data8 sys_sethostname
1493 data8 sys_getrlimit // 1085
1495 data8 sys_gettimeofday
1496 data8 sys_settimeofday
1498 data8 sys_poll // 1090
1503 data8 sys_swapoff // 1095
1508 data8 sys_fchown // 1100
1509 data8 ia64_getpriority
1510 data8 sys_setpriority
1513 data8 sys_gettid // 1105
1518 data8 sys_msgsnd // 1110
1523 data8 sys_shmdt // 1115
1528 data8 sys_ni_syscall // 1120 /* was: ia64_oldstat */
1529 data8 sys_ni_syscall /* was: ia64_oldlstat */
1530 data8 sys_ni_syscall /* was: ia64_oldfstat */
1533 data8 sys_remap_file_pages // 1125
1537 data8 sys_setdomainname
1538 data8 sys_newuname // 1130
1540 data8 sys_ni_syscall /* was: ia64_create_module */
1541 data8 sys_init_module
1542 data8 sys_delete_module
1543 data8 sys_ni_syscall // 1135 /* was: sys_get_kernel_syms */
1544 data8 sys_ni_syscall /* was: sys_query_module */
1548 data8 sys_personality // 1140
1549 data8 sys_ni_syscall // sys_afs_syscall
1553 data8 sys_flock // 1145
1558 data8 sys_sysctl // 1150
1563 data8 sys_mprotect // 1155
1567 data8 sys_munlockall
1568 data8 sys_sched_getparam // 1160
1569 data8 sys_sched_setparam
1570 data8 sys_sched_getscheduler
1571 data8 sys_sched_setscheduler
1572 data8 sys_sched_yield
1573 data8 sys_sched_get_priority_max // 1165
1574 data8 sys_sched_get_priority_min
1575 data8 sys_sched_rr_get_interval
1577 data8 sys_ni_syscall // old nfsservctl
1578 data8 sys_prctl // 1170
1579 data8 sys_getpagesize
1581 data8 sys_pciconfig_read
1582 data8 sys_pciconfig_write
1583 data8 sys_perfmonctl // 1175
1584 data8 sys_sigaltstack
1585 data8 sys_rt_sigaction
1586 data8 sys_rt_sigpending
1587 data8 sys_rt_sigprocmask
1588 data8 sys_rt_sigqueueinfo // 1180
1589 data8 sys_rt_sigreturn
1590 data8 sys_rt_sigsuspend
1591 data8 sys_rt_sigtimedwait
1593 data8 sys_capget // 1185
1595 data8 sys_sendfile64
1596 data8 sys_ni_syscall // sys_getpmsg (STREAMS)
1597 data8 sys_ni_syscall // sys_putpmsg (STREAMS)
1598 data8 sys_socket // 1190
1603 data8 sys_getsockname // 1195
1604 data8 sys_getpeername
1605 data8 sys_socketpair
1608 data8 sys_recv // 1200
1611 data8 sys_setsockopt
1612 data8 sys_getsockopt
1613 data8 sys_sendmsg // 1205
1615 data8 sys_pivot_root
1618 data8 sys_newstat // 1210
1622 data8 sys_getdents64
1623 data8 sys_getunwind // 1215
1628 data8 sys_getxattr // 1220
1632 data8 sys_llistxattr
1633 data8 sys_flistxattr // 1225
1634 data8 sys_removexattr
1635 data8 sys_lremovexattr
1636 data8 sys_fremovexattr
1638 data8 sys_futex // 1230
1639 data8 sys_sched_setaffinity
1640 data8 sys_sched_getaffinity
1641 data8 sys_set_tid_address
1642 data8 sys_fadvise64_64
1643 data8 sys_tgkill // 1235
1644 data8 sys_exit_group
1645 data8 sys_lookup_dcookie
1647 data8 sys_io_destroy
1648 data8 sys_io_getevents // 1240
1651 data8 sys_epoll_create
1653 data8 sys_epoll_wait // 1245
1654 data8 sys_restart_syscall
1655 data8 sys_semtimedop
1656 data8 sys_timer_create
1657 data8 sys_timer_settime
1658 data8 sys_timer_gettime // 1250
1659 data8 sys_timer_getoverrun
1660 data8 sys_timer_delete
1661 data8 sys_clock_settime
1662 data8 sys_clock_gettime
1663 data8 sys_clock_getres // 1255
1664 data8 sys_clock_nanosleep
1668 data8 sys_get_mempolicy // 1260
1669 data8 sys_set_mempolicy
1672 data8 sys_mq_timedsend
1673 data8 sys_mq_timedreceive // 1265
1675 data8 sys_mq_getsetattr
1676 data8 sys_kexec_load
1677 data8 sys_ni_syscall // reserved for vserver
1678 data8 sys_waitid // 1270
1680 data8 sys_request_key
1682 data8 sys_ioprio_set
1683 data8 sys_ioprio_get // 1275
1684 data8 sys_move_pages
1685 data8 sys_inotify_init
1686 data8 sys_inotify_add_watch
1687 data8 sys_inotify_rm_watch
1688 data8 sys_migrate_pages // 1280
1693 data8 sys_futimesat // 1285
1694 data8 sys_newfstatat
1698 data8 sys_symlinkat // 1290
1699 data8 sys_readlinkat
1703 data8 sys_ppoll // 1295
1706 data8 sys_set_robust_list
1707 data8 sys_get_robust_list
1708 data8 sys_sync_file_range // 1300
1713 data8 sys_epoll_pwait // 1305
1716 data8 sys_ni_syscall
1718 data8 sys_timerfd_create // 1310
1719 data8 sys_timerfd_settime
1720 data8 sys_timerfd_gettime
1723 data8 sys_epoll_create1 // 1315
1726 data8 sys_inotify_init1
1728 data8 sys_pwritev // 1320
1729 data8 sys_rt_tgsigqueueinfo
1731 data8 sys_fanotify_init
1732 data8 sys_fanotify_mark
1733 data8 sys_prlimit64 // 1325
1734 data8 sys_name_to_handle_at
1735 data8 sys_open_by_handle_at
1736 data8 sys_clock_adjtime
1738 data8 sys_setns // 1330
1740 data8 sys_process_vm_readv
1741 data8 sys_process_vm_writev
1743 data8 sys_finit_module // 1335
1744 data8 sys_sched_setattr
1745 data8 sys_sched_getattr
1748 data8 sys_memfd_create // 1340
1751 data8 sys_userfaultfd
1752 data8 sys_membarrier
1753 data8 sys_kcmp // 1345
1755 data8 sys_copy_file_range
1759 .org sys_call_table + 8*NR_syscalls // guard against failures to increase NR_syscalls