OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [linux/] [linux-2.4/] [include/] [asm-sh64/] [elf.h] - Diff between revs 1276 and 1765

Only display areas with differences | Details | Blame | View Log

Rev 1276 Rev 1765
#ifndef __ASM_SH64_ELF_H
#ifndef __ASM_SH64_ELF_H
#define __ASM_SH64_ELF_H
#define __ASM_SH64_ELF_H
 
 
/*
/*
 * This file is subject to the terms and conditions of the GNU General Public
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 * for more details.
 *
 *
 * include/asm-sh64/elf.h
 * include/asm-sh64/elf.h
 *
 *
 * Copyright (C) 2000, 2001  Paolo Alberelli
 * Copyright (C) 2000, 2001  Paolo Alberelli
 *
 *
 */
 */
 
 
/*
/*
 * ELF register definitions..
 * ELF register definitions..
 */
 */
 
 
#include <asm/ptrace.h>
#include <asm/ptrace.h>
#include <asm/user.h>
#include <asm/user.h>
#include <asm/byteorder.h>
#include <asm/byteorder.h>
 
 
typedef unsigned long elf_greg_t;
typedef unsigned long elf_greg_t;
 
 
#define ELF_NGREG (sizeof (struct pt_regs) / sizeof(elf_greg_t))
#define ELF_NGREG (sizeof (struct pt_regs) / sizeof(elf_greg_t))
typedef elf_greg_t elf_gregset_t[ELF_NGREG];
typedef elf_greg_t elf_gregset_t[ELF_NGREG];
 
 
typedef struct user_fpu_struct elf_fpregset_t;
typedef struct user_fpu_struct elf_fpregset_t;
 
 
/*
/*
 * This is used to ensure we don't load something for the wrong architecture.
 * This is used to ensure we don't load something for the wrong architecture.
 */
 */
#define elf_check_arch(x) ( (x)->e_machine == EM_SH )
#define elf_check_arch(x) ( (x)->e_machine == EM_SH )
 
 
/*
/*
 * These are used to set parameters in the core dumps.
 * These are used to set parameters in the core dumps.
 */
 */
#define ELF_CLASS       ELFCLASS32
#define ELF_CLASS       ELFCLASS32
#ifdef __LITTLE_ENDIAN__
#ifdef __LITTLE_ENDIAN__
#define ELF_DATA        ELFDATA2LSB
#define ELF_DATA        ELFDATA2LSB
#else
#else
#define ELF_DATA        ELFDATA2MSB
#define ELF_DATA        ELFDATA2MSB
#endif
#endif
#define ELF_ARCH        EM_SH
#define ELF_ARCH        EM_SH
 
 
#define USE_ELF_CORE_DUMP
#define USE_ELF_CORE_DUMP
#define ELF_EXEC_PAGESIZE       4096
#define ELF_EXEC_PAGESIZE       4096
 
 
/* This is the location that an ET_DYN program is loaded if exec'ed.  Typical
/* This is the location that an ET_DYN program is loaded if exec'ed.  Typical
   use of this is to invoke "./ld.so someprog" to test out a new version of
   use of this is to invoke "./ld.so someprog" to test out a new version of
   the loader.  We need to make sure that it is out of the way of the program
   the loader.  We need to make sure that it is out of the way of the program
   that it will "exec", and that there is sufficient room for the brk.  */
   that it will "exec", and that there is sufficient room for the brk.  */
 
 
#define ELF_ET_DYN_BASE         (2 * TASK_SIZE / 3)
#define ELF_ET_DYN_BASE         (2 * TASK_SIZE / 3)
 
 
 
 
#define ELF_CORE_COPY_REGS(_dest,_regs)                         \
#define ELF_CORE_COPY_REGS(_dest,_regs)                         \
        memcpy((char *) &_dest, (char *) _regs,                 \
        memcpy((char *) &_dest, (char *) _regs,                 \
               sizeof(struct pt_regs));
               sizeof(struct pt_regs));
 
 
/* This yields a mask that user programs can use to figure out what
/* This yields a mask that user programs can use to figure out what
   instruction set this CPU supports.  This could be done in user space,
   instruction set this CPU supports.  This could be done in user space,
   but it's not easy, and we've already done it here.  */
   but it's not easy, and we've already done it here.  */
 
 
#define ELF_HWCAP       (0)
#define ELF_HWCAP       (0)
 
 
/* This yields a string that ld.so will use to load implementation
/* This yields a string that ld.so will use to load implementation
   specific libraries for optimization.  This is more specific in
   specific libraries for optimization.  This is more specific in
   intent than poking at uname or /proc/cpuinfo.
   intent than poking at uname or /proc/cpuinfo.
 
 
   For the moment, we have only optimizations for the Intel generations,
   For the moment, we have only optimizations for the Intel generations,
   but that could change... */
   but that could change... */
 
 
#define ELF_PLATFORM  (NULL)
#define ELF_PLATFORM  (NULL)
 
 
#define ELF_PLAT_INIT(_r, load_addr) \
#define ELF_PLAT_INIT(_r, load_addr) \
  do { _r->regs[0]=0; _r->regs[1]=0; _r->regs[2]=0; _r->regs[3]=0; \
  do { _r->regs[0]=0; _r->regs[1]=0; _r->regs[2]=0; _r->regs[3]=0; \
       _r->regs[4]=0; _r->regs[5]=0; _r->regs[6]=0; _r->regs[7]=0; \
       _r->regs[4]=0; _r->regs[5]=0; _r->regs[6]=0; _r->regs[7]=0; \
       _r->regs[8]=0; _r->regs[9]=0; _r->regs[10]=0; _r->regs[11]=0; \
       _r->regs[8]=0; _r->regs[9]=0; _r->regs[10]=0; _r->regs[11]=0; \
       _r->regs[12]=0; _r->regs[13]=0; _r->regs[14]=0; _r->regs[15]=0; \
       _r->regs[12]=0; _r->regs[13]=0; _r->regs[14]=0; _r->regs[15]=0; \
       _r->regs[16]=0; _r->regs[17]=0; _r->regs[18]=0; _r->regs[19]=0; \
       _r->regs[16]=0; _r->regs[17]=0; _r->regs[18]=0; _r->regs[19]=0; \
       _r->regs[20]=0; _r->regs[21]=0; _r->regs[22]=0; _r->regs[23]=0; \
       _r->regs[20]=0; _r->regs[21]=0; _r->regs[22]=0; _r->regs[23]=0; \
       _r->regs[24]=0; _r->regs[25]=0; _r->regs[26]=0; _r->regs[27]=0; \
       _r->regs[24]=0; _r->regs[25]=0; _r->regs[26]=0; _r->regs[27]=0; \
       _r->regs[28]=0; _r->regs[29]=0; _r->regs[30]=0; _r->regs[31]=0; \
       _r->regs[28]=0; _r->regs[29]=0; _r->regs[30]=0; _r->regs[31]=0; \
       _r->regs[32]=0; _r->regs[33]=0; _r->regs[34]=0; _r->regs[35]=0; \
       _r->regs[32]=0; _r->regs[33]=0; _r->regs[34]=0; _r->regs[35]=0; \
       _r->regs[36]=0; _r->regs[37]=0; _r->regs[38]=0; _r->regs[39]=0; \
       _r->regs[36]=0; _r->regs[37]=0; _r->regs[38]=0; _r->regs[39]=0; \
       _r->regs[40]=0; _r->regs[41]=0; _r->regs[42]=0; _r->regs[43]=0; \
       _r->regs[40]=0; _r->regs[41]=0; _r->regs[42]=0; _r->regs[43]=0; \
       _r->regs[44]=0; _r->regs[45]=0; _r->regs[46]=0; _r->regs[47]=0; \
       _r->regs[44]=0; _r->regs[45]=0; _r->regs[46]=0; _r->regs[47]=0; \
       _r->regs[48]=0; _r->regs[49]=0; _r->regs[50]=0; _r->regs[51]=0; \
       _r->regs[48]=0; _r->regs[49]=0; _r->regs[50]=0; _r->regs[51]=0; \
       _r->regs[52]=0; _r->regs[53]=0; _r->regs[54]=0; _r->regs[55]=0; \
       _r->regs[52]=0; _r->regs[53]=0; _r->regs[54]=0; _r->regs[55]=0; \
       _r->regs[56]=0; _r->regs[57]=0; _r->regs[58]=0; _r->regs[59]=0; \
       _r->regs[56]=0; _r->regs[57]=0; _r->regs[58]=0; _r->regs[59]=0; \
       _r->regs[60]=0; _r->regs[61]=0; _r->regs[62]=0; \
       _r->regs[60]=0; _r->regs[61]=0; _r->regs[62]=0; \
       _r->tregs[0]=0; _r->tregs[1]=0; _r->tregs[2]=0; _r->tregs[3]=0; \
       _r->tregs[0]=0; _r->tregs[1]=0; _r->tregs[2]=0; _r->tregs[3]=0; \
       _r->tregs[4]=0; _r->tregs[5]=0; _r->tregs[6]=0; _r->tregs[7]=0; \
       _r->tregs[4]=0; _r->tregs[5]=0; _r->tregs[6]=0; _r->tregs[7]=0; \
       _r->sr = SR_FD | SR_MMU; } while (0)
       _r->sr = SR_FD | SR_MMU; } while (0)
 
 
#ifdef __KERNEL__
#ifdef __KERNEL__
#define SET_PERSONALITY(ex, ibcs2) set_personality(PER_LINUX_32BIT)
#define SET_PERSONALITY(ex, ibcs2) set_personality(PER_LINUX_32BIT)
#endif
#endif
 
 
#endif /* __ASM_SH64_ELF_H */
#endif /* __ASM_SH64_ELF_H */
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.