1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
|
/*
* tclCompileStubs.c --
*
* This file contains the wrapper functions for the unsupported
* tclCompile functions.
*
* Copyright (c) 1998-1999 by Scriptics Corporation.
* All rights reserved.
*
* RCS: @(#) $Id: tclCompileStubs.c,v 1.1.2.1 1999/03/05 20:18:04 stanton Exp $
*/
#include "tclCompile.h"
/*
* WARNING: This file is automatically generated by the tools/genStubs.tcl
* script. Any modifications to the function declarations below should be made
* in the generic/tclInt.decls script.
*/
/* !BEGIN!: Do not edit below this line. */
/*
* Exported stub functions:
*/
/* Slot 0 */
void
TclCleanupByteCode(codePtr)
ByteCode * codePtr;
{
(tclCompileStubsPtr->tclCleanupByteCode)(codePtr);
}
/* Slot 1 */
int
TclCompileExpr(interp, string, lastChar, flags, envPtr)
Tcl_Interp * interp;
char * string;
char * lastChar;
int flags;
CompileEnv * envPtr;
{
return (tclCompileStubsPtr->tclCompileExpr)(interp, string, lastChar, flags, envPtr);
}
/* Slot 2 */
int
TclCompileQuotes(interp, string, lastChar, termChar, flags, envPtr)
Tcl_Interp * interp;
char * string;
char * lastChar;
int termChar;
int flags;
CompileEnv * envPtr;
{
return (tclCompileStubsPtr->tclCompileQuotes)(interp, string, lastChar, termChar, flags, envPtr);
}
/* Slot 3 */
int
TclCompileString(interp, string, lastChar, flags, envPtr)
Tcl_Interp * interp;
char * string;
char * lastChar;
int flags;
CompileEnv * envPtr;
{
return (tclCompileStubsPtr->tclCompileString)(interp, string, lastChar, flags, envPtr);
}
/* Slot 4 */
int
TclCompileDollarVar(interp, string, lastChar, flags, envPtr)
Tcl_Interp * interp;
char * string;
char * lastChar;
int flags;
CompileEnv * envPtr;
{
return (tclCompileStubsPtr->tclCompileDollarVar)(interp, string, lastChar, flags, envPtr);
}
/* Slot 5 */
int
TclCreateAuxData(clientData, typePtr, envPtr)
ClientData clientData;
AuxDataType * typePtr;
CompileEnv * envPtr;
{
return (tclCompileStubsPtr->tclCreateAuxData)(clientData, typePtr, envPtr);
}
/* Slot 6 */
ExecEnv *
TclCreateExecEnv(interp)
Tcl_Interp * interp;
{
return (tclCompileStubsPtr->tclCreateExecEnv)(interp);
}
/* Slot 7 */
void
TclDeleteExecEnv(eePtr)
ExecEnv * eePtr;
{
(tclCompileStubsPtr->tclDeleteExecEnv)(eePtr);
}
/* Slot 8 */
void
TclEmitForwardJump(envPtr, jumpType, jumpFixupPtr)
CompileEnv * envPtr;
TclJumpType jumpType;
JumpFixup * jumpFixupPtr;
{
(tclCompileStubsPtr->tclEmitForwardJump)(envPtr, jumpType, jumpFixupPtr);
}
/* Slot 9 */
AuxDataType *
TclGetAuxDataType(typeName)
char * typeName;
{
return (tclCompileStubsPtr->tclGetAuxDataType)(typeName);
}
/* Slot 10 */
ExceptionRange *
TclGetExceptionRangeForPc(pc, catchOnly, codePtr)
unsigned char * pc;
int catchOnly;
ByteCode* codePtr;
{
return (tclCompileStubsPtr->tclGetExceptionRangeForPc)(pc, catchOnly, codePtr);
}
/* Slot 11 */
InstructionDesc *
TclGetInstructionTable()
{
return (tclCompileStubsPtr->tclGetInstructionTable)();
}
/* Slot 12 */
int
TclExecuteByteCode(interp, codePtr)
Tcl_Interp * interp;
ByteCode * codePtr;
{
return (tclCompileStubsPtr->tclExecuteByteCode)(interp, codePtr);
}
/* Slot 13 */
void
TclExpandCodeArray(envPtr)
CompileEnv * envPtr;
{
(tclCompileStubsPtr->tclExpandCodeArray)(envPtr);
}
/* Slot 14 */
void
TclExpandJumpFixupArray(fixupArrayPtr)
JumpFixupArray * fixupArrayPtr;
{
(tclCompileStubsPtr->tclExpandJumpFixupArray)(fixupArrayPtr);
}
/* Slot 15 */
void
TclFinalizeAuxDataTypeTable()
{
(tclCompileStubsPtr->tclFinalizeAuxDataTypeTable)();
}
/* Slot 16 */
int
TclFixupForwardJump(envPtr, jumpFixupPtr, jumpDist, distThreshold)
CompileEnv * envPtr;
JumpFixup * jumpFixupPtr;
int jumpDist;
int distThreshold;
{
return (tclCompileStubsPtr->tclFixupForwardJump)(envPtr, jumpFixupPtr, jumpDist, distThreshold);
}
/* Slot 17 */
void
TclFreeCompileEnv(envPtr)
CompileEnv * envPtr;
{
(tclCompileStubsPtr->tclFreeCompileEnv)(envPtr);
}
/* Slot 18 */
void
TclFreeJumpFixupArray(fixupArrayPtr)
JumpFixupArray * fixupArrayPtr;
{
(tclCompileStubsPtr->tclFreeJumpFixupArray)(fixupArrayPtr);
}
/* Slot 19 */
void
TclInitAuxDataTypeTable()
{
(tclCompileStubsPtr->tclInitAuxDataTypeTable)();
}
/* Slot 20 */
void
TclInitByteCodeObj(objPtr, envPtr)
Tcl_Obj * objPtr;
CompileEnv * envPtr;
{
(tclCompileStubsPtr->tclInitByteCodeObj)(objPtr, envPtr);
}
/* Slot 21 */
void
TclInitCompileEnv(interp, envPtr, string)
Tcl_Interp * interp;
CompileEnv * envPtr;
char * string;
{
(tclCompileStubsPtr->tclInitCompileEnv)(interp, envPtr, string);
}
/* Slot 22 */
void
TclInitJumpFixupArray(fixupArrayPtr)
JumpFixupArray * fixupArrayPtr;
{
(tclCompileStubsPtr->tclInitJumpFixupArray)(fixupArrayPtr);
}
/* Slot 23 */
int
TclObjIndexForString(start, length, allocStrRep, inHeap, envPtr)
char * start;
int length;
int allocStrRep;
int inHeap;
CompileEnv * envPtr;
{
return (tclCompileStubsPtr->tclObjIndexForString)(start, length, allocStrRep, inHeap, envPtr);
}
/* Slot 24 */
int
TclPrintInstruction(codePtr, pc)
ByteCode* codePtr;
unsigned char * pc;
{
return (tclCompileStubsPtr->tclPrintInstruction)(codePtr, pc);
}
/* Slot 25 */
void
TclPrintSource(outFile, string, maxChars)
FILE * outFile;
char * string;
int maxChars;
{
(tclCompileStubsPtr->tclPrintSource)(outFile, string, maxChars);
}
/* Slot 26 */
void
TclRegisterAuxDataType(typePtr)
AuxDataType * typePtr;
{
(tclCompileStubsPtr->tclRegisterAuxDataType)(typePtr);
}
/* !END!: Do not edit above this line. */
|