~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/nios2/kernel/asm-offsets.c

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 // SPDX-License-Identifier: GPL-2.0-or-later
  2 /*
  3  * Copyright (C) 2011 Tobias Klauser <tklauser@distanz.ch>
  4  */
  5 
  6 #include <linux/stddef.h>
  7 #include <linux/sched.h>
  8 #include <linux/kernel_stat.h>
  9 #include <linux/ptrace.h>
 10 #include <linux/hardirq.h>
 11 #include <linux/thread_info.h>
 12 #include <linux/kbuild.h>
 13 
 14 int main(void)
 15 {
 16         /* struct task_struct */
 17         OFFSET(TASK_THREAD, task_struct, thread);
 18         BLANK();
 19 
 20         /* struct thread_struct */
 21         OFFSET(THREAD_KSP, thread_struct, ksp);
 22         OFFSET(THREAD_KPSR, thread_struct, kpsr);
 23         BLANK();
 24 
 25         /* struct pt_regs */
 26         OFFSET(PT_ORIG_R2, pt_regs, orig_r2);
 27         OFFSET(PT_ORIG_R7, pt_regs, orig_r7);
 28 
 29         OFFSET(PT_R1, pt_regs, r1);
 30         OFFSET(PT_R2, pt_regs, r2);
 31         OFFSET(PT_R3, pt_regs, r3);
 32         OFFSET(PT_R4, pt_regs, r4);
 33         OFFSET(PT_R5, pt_regs, r5);
 34         OFFSET(PT_R6, pt_regs, r6);
 35         OFFSET(PT_R7, pt_regs, r7);
 36         OFFSET(PT_R8, pt_regs, r8);
 37         OFFSET(PT_R9, pt_regs, r9);
 38         OFFSET(PT_R10, pt_regs, r10);
 39         OFFSET(PT_R11, pt_regs, r11);
 40         OFFSET(PT_R12, pt_regs, r12);
 41         OFFSET(PT_R13, pt_regs, r13);
 42         OFFSET(PT_R14, pt_regs, r14);
 43         OFFSET(PT_R15, pt_regs, r15);
 44         OFFSET(PT_EA, pt_regs, ea);
 45         OFFSET(PT_RA, pt_regs, ra);
 46         OFFSET(PT_FP, pt_regs, fp);
 47         OFFSET(PT_SP, pt_regs, sp);
 48         OFFSET(PT_GP, pt_regs, gp);
 49         OFFSET(PT_ESTATUS, pt_regs, estatus);
 50         DEFINE(PT_REGS_SIZE, sizeof(struct pt_regs));
 51         BLANK();
 52 
 53         /* struct switch_stack */
 54         OFFSET(SW_R16, switch_stack, r16);
 55         OFFSET(SW_R17, switch_stack, r17);
 56         OFFSET(SW_R18, switch_stack, r18);
 57         OFFSET(SW_R19, switch_stack, r19);
 58         OFFSET(SW_R20, switch_stack, r20);
 59         OFFSET(SW_R21, switch_stack, r21);
 60         OFFSET(SW_R22, switch_stack, r22);
 61         OFFSET(SW_R23, switch_stack, r23);
 62         OFFSET(SW_FP, switch_stack, fp);
 63         OFFSET(SW_GP, switch_stack, gp);
 64         OFFSET(SW_RA, switch_stack, ra);
 65         DEFINE(SWITCH_STACK_SIZE, sizeof(struct switch_stack));
 66         BLANK();
 67 
 68         /* struct thread_info */
 69         OFFSET(TI_FLAGS, thread_info, flags);
 70         OFFSET(TI_PREEMPT_COUNT, thread_info, preempt_count);
 71         BLANK();
 72 
 73         return 0;
 74 }
 75 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php