ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/SheepShaver/src/include/thunks.h
Revision: 1.1
Committed: 2003-12-04T17:26:38Z (20 years, 6 months ago) by gbeauche
Content type: text/plain
Branch: MAIN
Log Message:
Add new thunking system for 64-bit fixes.

File Contents

# User Rev Content
1 gbeauche 1.1 /*
2     * thunks.h - Thunks to share data and code with MacOS
3     *
4     * SheepShaver (C) 1997-2002 Christian Bauer and Marc Hellwig
5     *
6     * This program is free software; you can redistribute it and/or modify
7     * it under the terms of the GNU General Public License as published by
8     * the Free Software Foundation; either version 2 of the License, or
9     * (at your option) any later version.
10     *
11     * This program is distributed in the hope that it will be useful,
12     * but WITHOUT ANY WARRANTY; without even the implied warranty of
13     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14     * GNU General Public License for more details.
15     *
16     * You should have received a copy of the GNU General Public License
17     * along with this program; if not, write to the Free Software
18     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19     */
20    
21     #ifndef THUNKS_H
22     #define THUNKS_H
23    
24     #include "cpu_emulation.h"
25    
26     /*
27     * Native function invocation
28     */
29    
30     enum {
31     NATIVE_PATCH_NAME_REGISTRY,
32     NATIVE_VIDEO_INSTALL_ACCEL,
33     NATIVE_VIDEO_VBL,
34     NATIVE_VIDEO_DO_DRIVER_IO,
35     NATIVE_ETHER_IRQ,
36     NATIVE_ETHER_INIT,
37     NATIVE_ETHER_TERM,
38     NATIVE_ETHER_OPEN,
39     NATIVE_ETHER_CLOSE,
40     NATIVE_ETHER_WPUT,
41     NATIVE_ETHER_RSRV,
42     NATIVE_SERIAL_NOTHING,
43     NATIVE_SERIAL_OPEN,
44     NATIVE_SERIAL_PRIME_IN,
45     NATIVE_SERIAL_PRIME_OUT,
46     NATIVE_SERIAL_CONTROL,
47     NATIVE_SERIAL_STATUS,
48     NATIVE_SERIAL_CLOSE,
49     NATIVE_GET_RESOURCE,
50     NATIVE_GET_1_RESOURCE,
51     NATIVE_GET_IND_RESOURCE,
52     NATIVE_GET_1_IND_RESOURCE,
53     NATIVE_R_GET_RESOURCE,
54     NATIVE_DISABLE_INTERRUPT,
55     NATIVE_ENABLE_INTERRUPT,
56     NATIVE_MAKE_EXECUTABLE,
57     NATIVE_OP_MAX
58     };
59    
60     // Initialize the thunks system
61     extern bool ThunksInit(void);
62    
63     // Return the fake PowerPC opcode to handle specified native code
64     #if EMULATED_PPC
65     extern uint32 NativeOpcode(int selector);
66     #endif
67    
68     // Return the native function descriptor (TVECT)
69     extern uint32 NativeTVECT(int selector);
70    
71     // Return the native function address
72     extern uint32 NativeFunction(int selector);
73    
74    
75     /*
76     * Helpers to share 32-bit addressable data with MacOS
77     */
78    
79     class SheepMem {
80     static uint32 align(uint32 size);
81     protected:
82     static uintptr base;
83     static uintptr top;
84     static const uint32 size = 0x40000;
85     public:
86     static bool Init(void);
87     static void Exit(void);
88     static uintptr Reserve(uint32 size);
89     static void Release(uint32 size);
90     friend class SheepVar;
91     };
92    
93     inline uint32 SheepMem::align(uint32 size)
94     {
95     // Align on 4 bytes boundaries
96     return (size + 3) & -4;
97     }
98    
99     inline uintptr SheepMem::Reserve(uint32 size)
100     {
101     top -= align(size);
102     assert(top >= base);
103     return top;
104     }
105    
106     inline void SheepMem::Release(uint32 size)
107     {
108     top += align(size);
109     }
110    
111     class SheepVar
112     {
113     uintptr m_base;
114     uint32 m_size;
115     public:
116     SheepVar(uint32 requested_size);
117     ~SheepVar() { SheepMem::Release(m_size); }
118     uintptr addr() const { return m_base; }
119     void *ptr() const { return (void *)addr(); }
120     };
121    
122     inline SheepVar::SheepVar(uint32 requested_size)
123     {
124     m_size = SheepMem::align(requested_size);
125     m_base = SheepMem::Reserve(m_size);
126     }
127    
128     // TODO: optimize for 32-bit platforms
129    
130     template< int size >
131     struct SheepArray : public SheepVar
132     {
133     SheepArray() : SheepVar(size) { }
134     uint8 *ptr() const { return (uint8 *)addr(); }
135     };
136    
137     struct SheepVar32 : public SheepVar
138     {
139     SheepVar32() : SheepVar(4) { }
140     SheepVar32(uint32 value) : SheepVar(4) { set_value(value); }
141     uint32 value() const { return ReadMacInt32(addr()); }
142     void set_value(uint32 v) { WriteMacInt32(addr(), v); }
143     uint32 *ptr() const { return (uint32 *)addr(); }
144     };
145    
146     struct SheepString : public SheepVar
147     {
148     SheepString(const char *str) : SheepVar(strlen(str) + 1)
149     { if (str) strcpy((char *)addr(), str); else WriteMacInt8(addr(), 0); }
150     char *value() const
151     { return (char *)addr(); }
152     char *ptr() const
153     { return (char *)addr(); }
154     };
155    
156     #endif