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

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

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ 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-only
  2 /*
  3  * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
  4  */
  5 
  6 #include <linux/sched.h>
  7 #include <linux/mm.h>
  8 #include <linux/interrupt.h>
  9 #include <linux/thread_info.h>
 10 #include <linux/kbuild.h>
 11 #include <linux/ptrace.h>
 12 #include <asm/hardirq.h>
 13 #include <asm/page.h>
 14 
 15 
 16 int main(void)
 17 {
 18         DEFINE(TASK_THREAD, offsetof(struct task_struct, thread));
 19         DEFINE(TASK_THREAD_INFO, offsetof(struct task_struct, stack));
 20 
 21         BLANK();
 22 
 23         DEFINE(THREAD_CALLEE_REG, offsetof(struct thread_struct, callee_reg));
 24         DEFINE(THREAD_FAULT_ADDR,
 25                offsetof(struct thread_struct, fault_address));
 26 
 27         BLANK();
 28 
 29         DEFINE(THREAD_INFO_KSP, offsetof(struct thread_info, ksp));
 30         DEFINE(THREAD_INFO_FLAGS, offsetof(struct thread_info, flags));
 31         DEFINE(THREAD_INFO_PREEMPT_COUNT,
 32                offsetof(struct thread_info, preempt_count));
 33 
 34         BLANK();
 35 
 36         DEFINE(TASK_ACT_MM, offsetof(struct task_struct, active_mm));
 37         DEFINE(TASK_TGID, offsetof(struct task_struct, tgid));
 38         DEFINE(TASK_PID, offsetof(struct task_struct, pid));
 39         DEFINE(TASK_COMM, offsetof(struct task_struct, comm));
 40 
 41         DEFINE(MM_CTXT, offsetof(struct mm_struct, context));
 42         DEFINE(MM_PGD, offsetof(struct mm_struct, pgd));
 43 
 44         DEFINE(MM_CTXT_ASID, offsetof(mm_context_t, asid));
 45 
 46         BLANK();
 47 
 48         DEFINE(PT_status32, offsetof(struct pt_regs, status32));
 49         DEFINE(PT_event, offsetof(struct pt_regs, ecr));
 50         DEFINE(PT_bta, offsetof(struct pt_regs, bta));
 51         DEFINE(PT_sp, offsetof(struct pt_regs, sp));
 52         DEFINE(PT_r0, offsetof(struct pt_regs, r0));
 53         DEFINE(PT_r1, offsetof(struct pt_regs, r1));
 54         DEFINE(PT_r2, offsetof(struct pt_regs, r2));
 55         DEFINE(PT_r3, offsetof(struct pt_regs, r3));
 56         DEFINE(PT_r4, offsetof(struct pt_regs, r4));
 57         DEFINE(PT_r5, offsetof(struct pt_regs, r5));
 58         DEFINE(PT_r6, offsetof(struct pt_regs, r6));
 59         DEFINE(PT_r7, offsetof(struct pt_regs, r7));
 60         DEFINE(PT_r8, offsetof(struct pt_regs, r8));
 61         DEFINE(PT_r10, offsetof(struct pt_regs, r10));
 62         DEFINE(PT_r26, offsetof(struct pt_regs, r26));
 63         DEFINE(PT_ret, offsetof(struct pt_regs, ret));
 64         DEFINE(PT_blink, offsetof(struct pt_regs, blink));
 65         OFFSET(PT_fp, pt_regs, fp);
 66         DEFINE(PT_lpe, offsetof(struct pt_regs, lp_end));
 67         DEFINE(PT_lpc, offsetof(struct pt_regs, lp_count));
 68 #ifdef CONFIG_ISA_ARCV2
 69         OFFSET(PT_r12, pt_regs, r12);
 70         OFFSET(PT_r30, pt_regs, r30);
 71 #endif
 72 #ifdef CONFIG_ARC_HAS_ACCL_REGS
 73         OFFSET(PT_r58, pt_regs, r58);
 74         OFFSET(PT_r59, pt_regs, r59);
 75 #endif
 76 #ifdef CONFIG_ARC_DSP_SAVE_RESTORE_REGS
 77         OFFSET(PT_DSP_CTRL, pt_regs, DSP_CTRL);
 78 #endif
 79 
 80         DEFINE(SZ_CALLEE_REGS, sizeof(struct callee_regs));
 81         DEFINE(SZ_PT_REGS, sizeof(struct pt_regs));
 82 
 83         return 0;
 84 }
 85 

~ [ 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