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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [ecos-2.0/] [packages/] [services/] [loader/] [v2_0/] [include/] [mips_elf.h] - Blame information for rev 608

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 27 unneback
#ifndef CYGONCE_LOADER_MIPS_ELF_H
2
#define CYGONCE_LOADER_MIPS_ELF_H
3
 
4
//==========================================================================
5
//
6
//      mips_elf.h
7
//
8
//      MIPS specific ELF file format support
9
//
10
//==========================================================================
11
//####ECOSGPLCOPYRIGHTBEGIN####
12
// -------------------------------------------
13
// This file is part of eCos, the Embedded Configurable Operating System.
14
// Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
15
//
16
// eCos is free software; you can redistribute it and/or modify it under
17
// the terms of the GNU General Public License as published by the Free
18
// Software Foundation; either version 2 or (at your option) any later version.
19
//
20
// eCos is distributed in the hope that it will be useful, but WITHOUT ANY
21
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
22
// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
23
// for more details.
24
//
25
// You should have received a copy of the GNU General Public License along
26
// with eCos; if not, write to the Free Software Foundation, Inc.,
27
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
28
//
29
// As a special exception, if other files instantiate templates or use macros
30
// or inline functions from this file, or you compile this file and link it
31
// with other works to produce a work based on this file, this file does not
32
// by itself cause the resulting work to be covered by the GNU General Public
33
// License. However the source code for this file must still be made available
34
// in accordance with section (3) of the GNU General Public License.
35
//
36
// This exception does not invalidate any other reasons why a work based on
37
// this file might be covered by the GNU General Public License.
38
//
39
// Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
40
// at http://sources.redhat.com/ecos/ecos-license/
41
// -------------------------------------------
42
//####ECOSGPLCOPYRIGHTEND####
43
//==========================================================================
44
//#####DESCRIPTIONBEGIN####
45
//
46
// Author(s):    nickg
47
// Contributors: nickg
48
// Date:         2000-11-20
49
// Purpose:      Define MIPS ELF support
50
// Description:  This file contains definitions for configuring the dynamic
51
//               loader to deal with the MIPS specific parts of the ELF
52
//               file format.
53
//              
54
// Usage:
55
//              #include <cyg/loader/mips_elf.h>
56
//              ...
57
//              
58
//
59
//####DESCRIPTIONEND####
60
//
61
//==========================================================================
62
 
63
#include <pkgconf/system.h>
64
#include <pkgconf/hal.h>
65
 
66
 
67
#if defined(CYGPKG_HAL_MIPS)
68
 
69
#ifndef CYG_LOADER_DYNAMIC_LD
70
 
71
#include <cyg/infra/cyg_type.h>
72
 
73
//--------------------------------------------------------------------------
74
// Basic definitions
75
 
76
#define CYG_ELF_MACHINE     EM_MIPS
77
 
78
//--------------------------------------------------------------------------
79
// Relocation types
80
// Taken from bfd/include/elf/mips.h - not currently sure which of these
81
// are actually used in executables.
82
 
83
#define R_MIPS_NONE                     0
84
#define R_MIPS_16                       1
85
#define R_MIPS_32                       2
86
#define R_MIPS_REL32                    3
87
#define R_MIPS_26                       4
88
#define R_MIPS_HI16                     5
89
#define R_MIPS_LO16                     6
90
#define R_MIPS_GPREL16                  7
91
#define R_MIPS_LITERAL                  8
92
#define R_MIPS_GOT16                    9
93
#define R_MIPS_PC16                     10
94
#define R_MIPS_CALL16                   11
95
#define R_MIPS_GPREL32                  12
96
/* Irix and MIPS16 relocs currently omitted. */
97
/* These are GNU extensions to handle embedded-pic.  */
98
#define R_MIPS_PC32                     248
99
#define R_MIPS_PC64                     249
100
#define R_MIPS_GNU_REL16_S2             250
101
#define R_MIPS_GNU_REL_LO16             251
102
#define R_MIPS_GNU_REL_HI16             252
103
/* These are GNU extensions to enable C++ vtable garbage collection.  */
104
#define R_MIPS_GNU_VTINHERIT            253
105
#define R_MIPS_GNU_VTENTRY              254
106
 
107
//--------------------------------------------------------------------------
108
// Processor specific customization class for Cyg_LoadObject class.
109
 
110
#ifdef __cplusplus
111
 
112
class Cyg_LoadObject_Proc :
113
      public Cyg_LoadObject_Base
114
{
115
 public:
116
 
117
    inline Cyg_LoadObject_Proc()
118
        : Cyg_LoadObject_Base()
119
        {
120
        };
121
 
122
    inline Cyg_LoadObject_Proc( Cyg_LoaderStream& stream,
123
                    cyg_uint32 mode,
124
                    Cyg_LoaderMemAlloc *mem )
125
        : Cyg_LoadObject_Base( stream, mode, mem )
126
        {
127
        };
128
 
129
    inline ~Cyg_LoadObject_Proc() {};
130
 
131
    cyg_code apply_rel( unsigned char type, Elf32_Word sym, Elf32_Addr offset );
132
 
133
    cyg_code apply_rela( unsigned char type, Elf32_Word sym,
134
                         Elf32_Addr offset, Elf32_Sword addend );
135
};
136
 
137
//--------------------------------------------------------------------------
138
 
139
inline cyg_code Cyg_LoadObject_Proc::apply_rel( unsigned char type,
140
                                                Elf32_Word sym,
141
                                                Elf32_Addr offset )
142
{
143
    return 0;
144
}
145
 
146
inline cyg_code Cyg_LoadObject_Proc::apply_rela( unsigned char type,
147
                                                 Elf32_Word sym,
148
                                                 Elf32_Addr offset,
149
                                                 Elf32_Sword addend )
150
{
151
    return 0;
152
}
153
 
154
 
155
//--------------------------------------------------------------------------
156
 
157
#endif // __cplusplus
158
 
159
#else // CYG_LOADER_DYNAMIC_LD
160
 
161
//--------------------------------------------------------------------------
162
 
163
#define CYG_LOADER_DYNAMIC_PREFIX                                               \
164
        OUTPUT_FORMAT("elf32-bigmips", "elf32-bigmips", "elf32-littlemips")     \
165
        OUTPUT_ARCH("mips")
166
 
167
 
168
//--------------------------------------------------------------------------
169
 
170
#endif // CYG_LOADER_DYNAMIC_LD
171
 
172
#endif // defined(CYGPKG_HAL_MIPS) 
173
 
174
//--------------------------------------------------------------------------
175
#endif // ifndef CYGONCE_LOADER_MIPS_ELF_H
176
// End of mips_elf.h

powered by: WebSVN 2.1.0

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