1 | #include "stdafx.h"
|
---|
2 |
|
---|
3 | #include <Compiler.h>
|
---|
4 |
|
---|
5 | #include "../BasicCompiler_Common/common.h"
|
---|
6 | #include "Opcode.h"
|
---|
7 |
|
---|
8 | #ifdef _AMD64_
|
---|
9 | #include "../BasicCompiler64/FunctionValue.h"
|
---|
10 | #else
|
---|
11 | #include "../BasicCompiler32/FunctionValue.h"
|
---|
12 | #endif
|
---|
13 |
|
---|
14 | int GetFunctionFromName(char *FuncName){
|
---|
15 | if( lstrcmpi( FuncName, "CUDbl" ) == 0 ) return FUNC_CUDBL;
|
---|
16 | if( lstrcmpi( FuncName, "Fix" ) == 0 ) return FUNC_FIX;
|
---|
17 | if( lstrcmpi( FuncName, "Len" ) == 0 ) return FUNC_LEN;
|
---|
18 | if( lstrcmpi( FuncName, "AddressOf" ) == 0 ) return FUNC_ADDRESSOF;
|
---|
19 | if( lstrcmpi( FuncName, "SizeOf" ) == 0 ) return FUNC_SIZEOF;
|
---|
20 | if( lstrcmpi( FuncName, "VarPtr" ) == 0 ) return FUNC_VARPTR;
|
---|
21 | if( lstrcmpi( FuncName, "ObjPtr" ) == 0 ) return FUNC_OBJPTR;
|
---|
22 | if( lstrcmpi( FuncName, "__delegate_dynamicmethod_call" ) == 0 ) return FUNC_DELEGATE_DYNAMICMETHOD_CALL;
|
---|
23 | if( lstrcmpi( FuncName, "__delegate_staticmethod_call" ) == 0 ) return FUNC_DELEGATE_STATICMETHOD_CALL;
|
---|
24 | if( lstrcmpi( FuncName, "_System_GetNowScopeCatchAddresses" ) == 0 )return FUNC_SYSTEM_GET_NOW_SCOPE_CATCH_ADDRESS;
|
---|
25 | if( lstrcmpi( FuncName, "_System_GetNowScopeFinallyAddresses" ) == 0 )return FUNC_SYSTEM_GET_NOW_SCOPE_FINALLY_ADDRESS;
|
---|
26 | if( lstrcmpi( FuncName, "_System_GetBp" ) == 0 ) return FUNC_SYSTEM_GET_BP;
|
---|
27 | if( lstrcmpi( FuncName, "_System_GetSp" ) == 0 ) return FUNC_SYSTEM_GET_SP;
|
---|
28 | if( lstrcmp( FuncName, "_System_GetComVtbl" ) == 0 ) return FUNC_SYSTEM_GET_COM_VTBL;
|
---|
29 | if( lstrcmp( FuncName, "_System_GetVtblList" ) == 0 ) return FUNC_SYSTEM_GET_VTBL_LIST;
|
---|
30 | if( lstrcmp( FuncName, "_System_GetDefaultConstructor" ) == 0 ) return FUNC_SYSTEM_GET_DEFAULT_CONSTRUCTOR;
|
---|
31 | if( lstrcmp( FuncName, "_System_GetDestructor" ) == 0 ) return FUNC_SYSTEM_GET_DESTRUCTOR;
|
---|
32 | if( lstrcmpi( FuncName, "GetDouble" ) == 0 ) return FUNC_GETDOUBLE;
|
---|
33 | if( lstrcmpi( FuncName, "GetSingle" ) == 0 ) return FUNC_GETSINGLE;
|
---|
34 | if( lstrcmpi( FuncName, "GetQWord" ) == 0 ) return FUNC_GETQWORD;
|
---|
35 | if( lstrcmpi( FuncName, "GetDWord" ) == 0 ) return FUNC_GETDWORD;
|
---|
36 | if( lstrcmpi( FuncName, "GetWord" ) == 0 ) return FUNC_GETWORD;
|
---|
37 | if( lstrcmpi( FuncName, "GetByte" ) == 0 ) return FUNC_GETBYTE;
|
---|
38 | return 0;
|
---|
39 | }
|
---|
40 |
|
---|
41 | void Opcode_Func_Fix(const char *lpszParms){
|
---|
42 | Type resultType;
|
---|
43 | if( !NumOpe( lpszParms, Type(), resultType ) ){
|
---|
44 | return;
|
---|
45 | }
|
---|
46 |
|
---|
47 | if( resultType.IsDouble() ){
|
---|
48 | //fld qword ptr[esp]
|
---|
49 | compiler.codeGenerator.op_fld_ptr_esp(DEF_DOUBLE);
|
---|
50 |
|
---|
51 | //fnstcw word ptr[esp]
|
---|
52 | compiler.codeGenerator.PutOld(
|
---|
53 | (char)0xD9,
|
---|
54 | (char)0x3C,
|
---|
55 | (char)0x24
|
---|
56 | );
|
---|
57 |
|
---|
58 | //mov ax,word ptr[esp]
|
---|
59 | compiler.codeGenerator.op_mov_RM( sizeof(short), REG_EAX, REG_ESP, 0, MOD_BASE );
|
---|
60 |
|
---|
61 | //or ah,0Ch
|
---|
62 | compiler.codeGenerator.PutOld(
|
---|
63 | (char)0x80,
|
---|
64 | (char)0xCC,
|
---|
65 | (char)0x0C
|
---|
66 | );
|
---|
67 |
|
---|
68 | //mov word ptr[esp-2],ax
|
---|
69 | compiler.codeGenerator.op_mov_MR( sizeof(short), REG_EAX, REG_ESP, -2, MOD_BASE_DISP8 );
|
---|
70 |
|
---|
71 | //fldcw word ptr[esp-2]
|
---|
72 | compiler.codeGenerator.PutOld(
|
---|
73 | (char)0xD9,
|
---|
74 | (char)0x6C,
|
---|
75 | (char)0x24,
|
---|
76 | (char)0xFE
|
---|
77 | );
|
---|
78 |
|
---|
79 | //fistp dword ptr[esp+4]
|
---|
80 | compiler.codeGenerator.PutOld(
|
---|
81 | (char)0xDB,
|
---|
82 | (char)0x5C,
|
---|
83 | (char)0x24,
|
---|
84 | (char)0x04
|
---|
85 | );
|
---|
86 |
|
---|
87 | //fldcw word ptr[esp]
|
---|
88 | compiler.codeGenerator.PutOld(
|
---|
89 | (char)0xD9,
|
---|
90 | (char)0x2C,
|
---|
91 | (char)0x24
|
---|
92 | );
|
---|
93 |
|
---|
94 | //add esp,4
|
---|
95 | compiler.codeGenerator.op_add_esp(4);
|
---|
96 | }
|
---|
97 | else if( resultType.IsSingle() ){
|
---|
98 | //fld dword ptr[esp]
|
---|
99 | compiler.codeGenerator.op_fld_ptr_esp(DEF_SINGLE);
|
---|
100 |
|
---|
101 | //sub esp,4
|
---|
102 | compiler.codeGenerator.op_sub_esp(4);
|
---|
103 |
|
---|
104 | //fnstcw word ptr[esp]
|
---|
105 | compiler.codeGenerator.PutOld(
|
---|
106 | (char)0xD9,
|
---|
107 | (char)0x3C,
|
---|
108 | (char)0x24
|
---|
109 | );
|
---|
110 |
|
---|
111 | //mov ax,word ptr[esp]
|
---|
112 | compiler.codeGenerator.op_mov_RM( sizeof(short), REG_EAX, REG_ESP, 0, MOD_BASE );
|
---|
113 |
|
---|
114 | //or ah,0Ch
|
---|
115 | compiler.codeGenerator.PutOld(
|
---|
116 | (char)0x80,
|
---|
117 | (char)0xCC,
|
---|
118 | (char)0x0C
|
---|
119 | );
|
---|
120 |
|
---|
121 | //mov word ptr[esp-2],ax
|
---|
122 | compiler.codeGenerator.op_mov_MR( sizeof(short), REG_EAX, REG_ESP, -2, MOD_BASE_DISP8 );
|
---|
123 |
|
---|
124 | //fldcw word ptr[esp-2]
|
---|
125 | compiler.codeGenerator.PutOld(
|
---|
126 | (char)0xD9,
|
---|
127 | (char)0x6C,
|
---|
128 | (char)0x24,
|
---|
129 | (char)0xFE
|
---|
130 | );
|
---|
131 |
|
---|
132 | //fistp dword ptr[esp+4]
|
---|
133 | compiler.codeGenerator.PutOld(
|
---|
134 | (char)0xDB,
|
---|
135 | (char)0x5C,
|
---|
136 | (char)0x24,
|
---|
137 | (char)0x04
|
---|
138 | );
|
---|
139 |
|
---|
140 | //fldcw word ptr[esp]
|
---|
141 | compiler.codeGenerator.PutOld(
|
---|
142 | (char)0xD9,
|
---|
143 | (char)0x2C,
|
---|
144 | (char)0x24
|
---|
145 | );
|
---|
146 |
|
---|
147 | //add esp,4
|
---|
148 | compiler.codeGenerator.op_add_esp(4);
|
---|
149 | }
|
---|
150 | else if( resultType.Is64() ){
|
---|
151 | //pop eax
|
---|
152 | compiler.codeGenerator.op_pop(REG_EAX);
|
---|
153 |
|
---|
154 | //add esp,4
|
---|
155 | compiler.codeGenerator.op_add_esp(4);
|
---|
156 |
|
---|
157 | //push eax
|
---|
158 | compiler.codeGenerator.op_push(REG_EAX);
|
---|
159 | }
|
---|
160 |
|
---|
161 | //pop eax
|
---|
162 | compiler.codeGenerator.op_pop(REG_EAX);
|
---|
163 | }
|
---|
164 |
|
---|
165 | void Opcode_Func_CUDbl(const char *Parameter){
|
---|
166 | Type resultType;
|
---|
167 | if( !NumOpe(Parameter,Type(),resultType) ){
|
---|
168 | return;
|
---|
169 | }
|
---|
170 | ChangeTypeToLong(resultType.GetBasicType());
|
---|
171 |
|
---|
172 | //pop eax
|
---|
173 | compiler.codeGenerator.op_pop(REG_EAX);
|
---|
174 |
|
---|
175 | //push 0
|
---|
176 | compiler.codeGenerator.op_push_V( 0 );
|
---|
177 |
|
---|
178 | //push eax
|
---|
179 | compiler.codeGenerator.op_push(REG_EAX);
|
---|
180 |
|
---|
181 | //fild qword ptr[esp]
|
---|
182 | compiler.codeGenerator.op_fld_ptr_esp(DEF_INT64);
|
---|
183 |
|
---|
184 | //add esp,8
|
---|
185 | compiler.codeGenerator.op_add_esp(8);
|
---|
186 | }
|
---|
187 | void Opcode_Func_Len(const char *Parameter){
|
---|
188 | BOOL bArrayHead;
|
---|
189 |
|
---|
190 | const char *tempParm=Parameter;
|
---|
191 | char temporary[VN_SIZE];
|
---|
192 | char temp2[32];
|
---|
193 | Type type;
|
---|
194 | if( !GetVarType(Parameter,type,0) ){
|
---|
195 | sprintf(temporary,"_System_DummyStr2=%s",Parameter);
|
---|
196 | OpcodeCalc(temporary);
|
---|
197 |
|
---|
198 | lstrcpy(temp2,"_System_DummyStr2");
|
---|
199 | tempParm=temp2;
|
---|
200 |
|
---|
201 | type.SetType( DEF_OBJECT, compiler.GetObjectModule().meta.GetClasses().GetStringClassPtr() );
|
---|
202 | }
|
---|
203 |
|
---|
204 | if( type.IsStringClass() ){
|
---|
205 | //Stringオブジェクトの場合
|
---|
206 | sprintf(temporary,"%s.Length",tempParm);
|
---|
207 |
|
---|
208 | int reg=REG_RAX;
|
---|
209 | NumOpe(temporary,Type(),Type());
|
---|
210 |
|
---|
211 | //pop eax
|
---|
212 | compiler.codeGenerator.op_pop(REG_EAX);
|
---|
213 |
|
---|
214 | return;
|
---|
215 | }
|
---|
216 |
|
---|
217 | Subscripts subscripts;
|
---|
218 | RELATIVE_VAR RelativeVar;
|
---|
219 | if(!GetVarOffsetReadOnly(tempParm,&RelativeVar,type,&subscripts)) return;
|
---|
220 |
|
---|
221 | if(type.GetBasicType()&FLAG_PTR){
|
---|
222 | type.SetBasicType( type.GetBasicType() & ( ~FLAG_PTR ) );
|
---|
223 |
|
---|
224 | bArrayHead=1;
|
---|
225 | }
|
---|
226 | else bArrayHead=0;
|
---|
227 |
|
---|
228 | int typeSize = type.GetSize();
|
---|
229 |
|
---|
230 | if(bArrayHead) typeSize*=JumpSubScripts(subscripts);
|
---|
231 |
|
---|
232 | //mov eax,typeSize
|
---|
233 | compiler.codeGenerator.op_mov_RV( REG_EAX, typeSize );
|
---|
234 | }
|
---|
235 |
|
---|
236 | void _Opcode_Func_AddressOf( const char *methodInstanceName, const UserProc &userProc )
|
---|
237 | {
|
---|
238 | if( userProc.IsVirtual() ){
|
---|
239 | ///////////////////////////////
|
---|
240 | // 仮想関数の場合
|
---|
241 | // thisポインタをrcxにコピー
|
---|
242 | ///////////////////////////////
|
---|
243 |
|
---|
244 | const CClass *pobj_c;
|
---|
245 |
|
---|
246 | char ObjectName[VN_SIZE];
|
---|
247 | ReferenceKind referenceKind;
|
---|
248 | SplitObjectName( methodInstanceName, ObjectName, referenceKind );
|
---|
249 |
|
---|
250 | if(ObjectName[0]){
|
---|
251 | if(lstrcmpi(ObjectName,"Super")==0) goto InClassMember;
|
---|
252 | else{
|
---|
253 | RELATIVE_VAR RelativeVar;
|
---|
254 | Type type;
|
---|
255 | if(!GetVarOffsetReadOnly(ObjectName,&RelativeVar,type)) return;
|
---|
256 | SetVarPtrToEax(&RelativeVar);
|
---|
257 |
|
---|
258 | //mov ecx,eax
|
---|
259 | compiler.codeGenerator.op_mov_RR(REG_ECX,REG_EAX);
|
---|
260 |
|
---|
261 | //参照タイプが整合しているかをチェック
|
---|
262 | if( !( type.IsObject() && referenceKind == RefDot
|
---|
263 | || type.IsObjectPtr() && referenceKind == RefPointer ) )
|
---|
264 | {
|
---|
265 | compiler.errorMessenger.Output(104,ObjectName,cp);
|
---|
266 | }
|
---|
267 |
|
---|
268 | if(type.IsObjectPtr()){
|
---|
269 | //mov ecx,dword ptr[ecx]
|
---|
270 | compiler.codeGenerator.op_mov_RM(sizeof(long),REG_ECX,REG_ECX,0,MOD_BASE);
|
---|
271 | }
|
---|
272 | }
|
---|
273 | }
|
---|
274 | else{
|
---|
275 | InClassMember:
|
---|
276 | //自身のオブジェクトのThisポインタをrcxにコピー
|
---|
277 | SetThisPtrToReg(REG_RCX);
|
---|
278 |
|
---|
279 | pobj_c=compiler.pCompilingClass;
|
---|
280 | }
|
---|
281 |
|
---|
282 |
|
---|
283 | int vtblIndex;
|
---|
284 | if( pobj_c->IsInterface() )
|
---|
285 | {
|
---|
286 | // インターフェイスメソッド呼び出し
|
---|
287 |
|
---|
288 | int offset_vtbl = compiler.GetObjectModule().meta.GetClasses().GetInterfaceInfoClassPtr()->GetMemberOffset( "__vtbl" );
|
---|
289 |
|
---|
290 |
|
---|
291 | // vtblのポインタを取得
|
---|
292 | //mov edx,dword ptr[ecx+offset_vtbl]
|
---|
293 | compiler.codeGenerator.op_mov_RM( sizeof(long), REG_EDX, REG_ECX, offset_vtbl, MOD_BASE_DISP8 );
|
---|
294 |
|
---|
295 | int offset_this = compiler.GetObjectModule().meta.GetClasses().GetInterfaceInfoClassPtr()->GetMemberOffset( "__this" );
|
---|
296 |
|
---|
297 |
|
---|
298 |
|
---|
299 | // インターフェイスの場合は更に__thisを取得する
|
---|
300 | //mov rcx,qword ptr[rcx+offset_this]
|
---|
301 | compiler.codeGenerator.op_mov_RM( sizeof(long), REG_ECX, REG_ECX, offset_this, MOD_BASE_DISP8 );
|
---|
302 |
|
---|
303 | int vtblMasterListIndex;
|
---|
304 | pobj_c->GetVtblMasterListIndexAndVtblIndex( &userProc, vtblMasterListIndex, vtblIndex );
|
---|
305 | if( vtblMasterListIndex != 0 )
|
---|
306 | {
|
---|
307 | compiler.errorMessenger.OutputFatalError();
|
---|
308 | }
|
---|
309 | }
|
---|
310 | else if( pobj_c->IsComInterface() )
|
---|
311 | {
|
---|
312 | // COMインターフェイス メソッド呼び出し
|
---|
313 |
|
---|
314 | //仮想関数(オブジェクトメソッド)呼び出し
|
---|
315 | // pObj -> vtbl1 -> func1
|
---|
316 | // -> func2
|
---|
317 | // -> func3
|
---|
318 |
|
---|
319 | int vtblMasterListIndex;
|
---|
320 | pobj_c->GetVtblMasterListIndexAndVtblIndex( &userProc, vtblMasterListIndex, vtblIndex );
|
---|
321 |
|
---|
322 | // vtblのポインタを取得
|
---|
323 | //mov edx,dword ptr[ecx]
|
---|
324 | compiler.codeGenerator.op_mov_RM( sizeof(long), REG_EDX, REG_ECX, 0, MOD_BASE );
|
---|
325 | }
|
---|
326 | else
|
---|
327 | {
|
---|
328 | //仮想関数(オブジェクトメソッド)呼び出し
|
---|
329 | // pObj -> vtbl_master_list -> vtbl1 -> func1
|
---|
330 | // -> func2
|
---|
331 | // -> func3
|
---|
332 | // -> vtbl2 -> func1
|
---|
333 | // -> func2
|
---|
334 | // -> func3
|
---|
335 |
|
---|
336 | int vtblMasterListIndex;
|
---|
337 | pobj_c->GetVtblMasterListIndexAndVtblIndex( &userProc, vtblMasterListIndex, vtblIndex );
|
---|
338 |
|
---|
339 | // vtblマスターリストのポインタを取得
|
---|
340 | //mov edx,dword ptr[ecx+sizeof(com_vtbl)]
|
---|
341 | compiler.codeGenerator.op_mov_RM( sizeof(long), REG_EDX, REG_ECX, PTR_SIZE, MOD_BASE_DISP8 );
|
---|
342 |
|
---|
343 | // vtblのポインタを取得
|
---|
344 | //mov edx,dword ptr[edx+vtblMasterListIndex]
|
---|
345 | compiler.codeGenerator.op_mov_RM( sizeof(long), REG_EDX, REG_EDX, vtblMasterListIndex*PTR_SIZE, MOD_BASE_DISP32 );
|
---|
346 | }
|
---|
347 |
|
---|
348 | //mov eax,dword ptr[edx+func_index]
|
---|
349 | if( vtblIndex * PTR_SIZE <= 0x7F )
|
---|
350 | {
|
---|
351 | compiler.codeGenerator.op_mov_RM(sizeof(long),REG_EAX,REG_EDX,vtblIndex*PTR_SIZE,MOD_BASE_DISP8);
|
---|
352 | }
|
---|
353 | else{
|
---|
354 | compiler.codeGenerator.op_mov_RM(sizeof(long),REG_EAX,REG_EDX,vtblIndex*PTR_SIZE,MOD_BASE_DISP32);
|
---|
355 | }
|
---|
356 | }
|
---|
357 | else{
|
---|
358 | //一般の関数
|
---|
359 |
|
---|
360 | //mov eax,ProcAddr
|
---|
361 | compiler.codeGenerator.op_addressof( REG_EAX, &userProc );
|
---|
362 | }
|
---|
363 |
|
---|
364 | userProc.Using();
|
---|
365 | }
|
---|
366 | void Opcode_CreateDelegate( const CClass &dgClass, const char *methodInstanceName, const UserProc &userProc )
|
---|
367 | {
|
---|
368 | /////////////////////////////////////////////////////////////////
|
---|
369 | // 関数ポインタをpush
|
---|
370 | /////////////////////////////////////////////////////////////////
|
---|
371 |
|
---|
372 | //push AddressOf(userProc)
|
---|
373 | _Opcode_Func_AddressOf( methodInstanceName, userProc );
|
---|
374 | compiler.codeGenerator.op_push( REG_EAX );
|
---|
375 |
|
---|
376 |
|
---|
377 | if( userProc.GetMethod().IsDynamic() )
|
---|
378 | {
|
---|
379 | /////////////////////////////////////////////////////////////////
|
---|
380 | // オブジェクト ポインタをpush
|
---|
381 | /////////////////////////////////////////////////////////////////
|
---|
382 |
|
---|
383 | // オブジェクト名を取得
|
---|
384 | char objectName[VN_SIZE];
|
---|
385 | char memberName[VN_SIZE];
|
---|
386 | char *thisPtrName = "This";
|
---|
387 | Type type;
|
---|
388 | if( SplitMemberName( methodInstanceName, objectName, memberName ) )
|
---|
389 | {
|
---|
390 | if( GetVarType( objectName, type, false ) )
|
---|
391 | {
|
---|
392 | thisPtrName = objectName;
|
---|
393 | }
|
---|
394 | }
|
---|
395 |
|
---|
396 | // オブジェクト ポインタを取得
|
---|
397 | RELATIVE_VAR relativeVar;
|
---|
398 | GetVarOffsetReadOnly( thisPtrName, &relativeVar, type );
|
---|
399 | if( !type.IsObject() )
|
---|
400 | {
|
---|
401 | extern int cp;
|
---|
402 | compiler.errorMessenger.Output(1,NULL,cp);
|
---|
403 | return;
|
---|
404 | }
|
---|
405 |
|
---|
406 | SetVarPtrToEax( &relativeVar );
|
---|
407 |
|
---|
408 | //mov eax,dword ptr[eax]
|
---|
409 | compiler.codeGenerator.op_mov_RM( sizeof(long), REG_EAX, REG_EAX, 0, MOD_BASE );
|
---|
410 |
|
---|
411 | //push eax
|
---|
412 | compiler.codeGenerator.op_push( REG_EAX );
|
---|
413 | }
|
---|
414 |
|
---|
415 |
|
---|
416 | /////////////////////////////////////////////////////////////////
|
---|
417 | // call _CreateDynamicDelegate/_CreateStaticDelegate
|
---|
418 | /////////////////////////////////////////////////////////////////
|
---|
419 |
|
---|
420 | std::vector<const UserProc *> subs;
|
---|
421 | if( userProc.GetMethod().IsDynamic() )
|
---|
422 | {
|
---|
423 | dgClass.GetStaticMethods().Enum( "_CreateDynamicDelegate", subs );
|
---|
424 | }
|
---|
425 | else
|
---|
426 | {
|
---|
427 | dgClass.GetStaticMethods().Enum( "_CreateStaticDelegate", subs );
|
---|
428 | }
|
---|
429 |
|
---|
430 | // call _CreateDynamicDelegate
|
---|
431 | compiler.codeGenerator.op_call( subs[0] );
|
---|
432 | }
|
---|
433 | void Opcode_Func_AddressOf( const char *name, const Type &baseType, bool isCallOn, Type &resultType )
|
---|
434 | {
|
---|
435 | extern int cp;
|
---|
436 |
|
---|
437 | const Parameters *pBaseParams = NULL;
|
---|
438 | const Type *pBaseReturnType = NULL;
|
---|
439 | if( baseType.IsProcPtr() )
|
---|
440 | {
|
---|
441 | // 左辺で関数ポインタを要求されているとき
|
---|
442 | const ProcPointer *pTempProcPointer = compiler.GetObjectModule().meta.GetProcPointers()[baseType.GetIndex()];
|
---|
443 | pBaseParams = &pTempProcPointer->Params();
|
---|
444 | pBaseReturnType = &pTempProcPointer->ReturnType();
|
---|
445 | }
|
---|
446 | else if( baseType.IsDelegate() )
|
---|
447 | {
|
---|
448 | // 左辺でデリゲートを要求されているとき
|
---|
449 | const Delegate *pTempDelegate = &baseType.GetClass().GetDelegate();
|
---|
450 | pBaseParams = &pTempDelegate->Params();
|
---|
451 | pBaseReturnType = &pTempDelegate->ReturnType();
|
---|
452 | }
|
---|
453 |
|
---|
454 | const UserProc *pUserProc;
|
---|
455 | if( pBaseParams && pBaseReturnType )
|
---|
456 | {
|
---|
457 | //左辺の型にのっとり、オーバーロードを解決
|
---|
458 |
|
---|
459 | std::vector<const UserProc *> subs;
|
---|
460 | GetOverloadSubHash( name, subs );
|
---|
461 | if( subs.size() == 0 ){
|
---|
462 | compiler.errorMessenger.Output(27,name,cp);
|
---|
463 | return;
|
---|
464 | }
|
---|
465 |
|
---|
466 | //オーバーロードを解決
|
---|
467 | pUserProc=OverloadSolution( name, subs, *pBaseParams, Type(), Type() );
|
---|
468 |
|
---|
469 | if( isCallOn )
|
---|
470 | {
|
---|
471 | // コード生成を伴う場合はエラーチェックを行う
|
---|
472 |
|
---|
473 | if( baseType.IsDelegate() )
|
---|
474 | {
|
---|
475 | // デリゲート
|
---|
476 | // 共変戻り値、反変引数をサポート
|
---|
477 | if( !(
|
---|
478 | pBaseParams->Equals( pUserProc->Params(), true )
|
---|
479 | && ( pBaseReturnType->Equals( pUserProc->ReturnType() ) || pBaseReturnType->IsCovariant( pUserProc->ReturnType() ) )
|
---|
480 | ) )
|
---|
481 | {
|
---|
482 | compiler.errorMessenger.Output(67, name, cp );
|
---|
483 | }
|
---|
484 | }
|
---|
485 | else
|
---|
486 | {
|
---|
487 | // 関数ポインタ
|
---|
488 | if( !(
|
---|
489 | pBaseParams->Equals( pUserProc->Params() )
|
---|
490 | && pBaseReturnType->Equals( pUserProc->ReturnType() )
|
---|
491 | ) )
|
---|
492 | {
|
---|
493 | compiler.errorMessenger.Output(66, name, cp );
|
---|
494 | }
|
---|
495 | }
|
---|
496 | }
|
---|
497 |
|
---|
498 | if(!pUserProc){
|
---|
499 | compiler.errorMessenger.Output(27,name,cp);
|
---|
500 | return;
|
---|
501 | }
|
---|
502 | }
|
---|
503 | else{
|
---|
504 | pUserProc=GetSubHash(name);
|
---|
505 | if(!pUserProc){
|
---|
506 | compiler.errorMessenger.Output(27,name,cp);
|
---|
507 | return;
|
---|
508 | }
|
---|
509 | }
|
---|
510 |
|
---|
511 | if( baseType.IsDelegate() )
|
---|
512 | {
|
---|
513 | if( isCallOn )
|
---|
514 | {
|
---|
515 | // デリゲートのとき
|
---|
516 | Opcode_CreateDelegate( baseType.GetClass(), name, *pUserProc );
|
---|
517 | }
|
---|
518 | resultType = baseType;
|
---|
519 | }
|
---|
520 | else
|
---|
521 | {
|
---|
522 | if( isCallOn )
|
---|
523 | {
|
---|
524 | // 関数ポインタのとき
|
---|
525 | _Opcode_Func_AddressOf( name, *pUserProc );
|
---|
526 | }
|
---|
527 | resultType.SetBasicType( DEF_PTR_VOID );
|
---|
528 | }
|
---|
529 | }
|
---|
530 | void Opcode_Func_SizeOf( const string &typeName ){
|
---|
531 | Type tempType;
|
---|
532 | if( !compiler.StringToType( typeName, tempType ) ){
|
---|
533 | compiler.errorMessenger.Output(3,typeName,cp);
|
---|
534 | return;
|
---|
535 | }
|
---|
536 |
|
---|
537 | int typeSize = ( tempType.IsObject() ) ?
|
---|
538 | tempType.GetClass().GetSize() : tempType.GetSize();
|
---|
539 |
|
---|
540 | //mov eax,size
|
---|
541 | compiler.codeGenerator.op_mov_RV( REG_EAX, typeSize );
|
---|
542 | }
|
---|
543 | void Opcode_Func_VarPtr( const char *Parameter, Type &resultType, bool isCallOn ){
|
---|
544 | if( isCallOn == false ){
|
---|
545 | // 戻り値の型を取得するだけ
|
---|
546 |
|
---|
547 | //変数のアドレスを取得
|
---|
548 | if(!GetVarType( Parameter, resultType, true )) return;
|
---|
549 |
|
---|
550 | resultType.PtrLevelUp();
|
---|
551 |
|
---|
552 | return;
|
---|
553 | }
|
---|
554 |
|
---|
555 | RELATIVE_VAR RelativeVar;
|
---|
556 |
|
---|
557 | //変数のアドレスを取得
|
---|
558 | if(!GetVarOffsetReadOnly( Parameter, &RelativeVar, resultType )) return;
|
---|
559 |
|
---|
560 | int beforeType = resultType.GetBasicType();
|
---|
561 |
|
---|
562 | resultType.PtrLevelUp();
|
---|
563 |
|
---|
564 | SetVarPtrToEax(&RelativeVar);
|
---|
565 | }
|
---|
566 | void Opcode_Func_ObjPtr( const char *Parameter, Type &resultType, bool isCallOn ){
|
---|
567 | if( isCallOn == false ){
|
---|
568 | // 戻り値の型を取得するだけ
|
---|
569 |
|
---|
570 | //変数のアドレスを取得
|
---|
571 | if(!GetVarType( Parameter, resultType, true )) return;
|
---|
572 |
|
---|
573 | resultType.PtrLevelUp();
|
---|
574 |
|
---|
575 | return;
|
---|
576 | }
|
---|
577 |
|
---|
578 | RELATIVE_VAR RelativeVar;
|
---|
579 |
|
---|
580 | //変数のアドレスを取得
|
---|
581 | if(!GetVarOffsetReadOnly( Parameter, &RelativeVar, resultType )) return;
|
---|
582 |
|
---|
583 | int beforeType = resultType.GetBasicType();
|
---|
584 |
|
---|
585 | resultType.PtrLevelUp();
|
---|
586 |
|
---|
587 | SetVarPtrToEax(&RelativeVar);
|
---|
588 |
|
---|
589 | if( lstrcmpi( Parameter, "This" )==0 ){
|
---|
590 | // Thisの場合は特別にオブジェクトポインタが返ってくるので、何もせずに抜ける
|
---|
591 | }
|
---|
592 | else if( beforeType == DEF_OBJECT ){
|
---|
593 | //参照をオブジェクトポインタに変更
|
---|
594 |
|
---|
595 | //mov eax,dword ptr[eax]
|
---|
596 | compiler.codeGenerator.op_mov_RM( sizeof(long), REG_EAX, REG_EAX, 0, MOD_BASE );
|
---|
597 | }
|
---|
598 | else{
|
---|
599 | compiler.errorMessenger.Output(134,NULL,cp );
|
---|
600 | }
|
---|
601 | }
|
---|
602 |
|
---|
603 | void Opcode_Func_delegate_call( const char *paramsStr, Type &resultType, bool isDynamicCall, bool isCallOn )
|
---|
604 | {
|
---|
605 | if( isCallOn )
|
---|
606 | {
|
---|
607 | int i = 0;
|
---|
608 | char methodPtrParamStr[VN_SIZE];
|
---|
609 | i = GetOneParameter( paramsStr, i, methodPtrParamStr );
|
---|
610 |
|
---|
611 | char objPtrValueStr[VN_SIZE]="";
|
---|
612 | if( isDynamicCall )
|
---|
613 | {
|
---|
614 | i = GetOneParameter( paramsStr, i, objPtrValueStr );
|
---|
615 | }
|
---|
616 |
|
---|
617 | Opcode_CallDelegate( compiler.pCompilingClass->GetDelegate(), methodPtrParamStr, objPtrValueStr, paramsStr + i );
|
---|
618 | }
|
---|
619 |
|
---|
620 | resultType = UserProc::CompilingUserProc().ReturnType();
|
---|
621 | }
|
---|
622 | void Opcode_Func_System_Get_Bp()
|
---|
623 | {
|
---|
624 | //mov eax,ebp
|
---|
625 | compiler.codeGenerator.op_mov_RR(REG_EAX,REG_EBP);
|
---|
626 | }
|
---|
627 | void Opcode_Func_System_Get_Sp()
|
---|
628 | {
|
---|
629 | //mov eax,esp
|
---|
630 | compiler.codeGenerator.op_mov_RR(REG_EAX,REG_ESP);
|
---|
631 | }
|
---|
632 |
|
---|
633 | void Opcode_Func_System_GetComVtbl( const char *parameter )
|
---|
634 | {
|
---|
635 | Type classType;
|
---|
636 | compiler.StringToType( parameter, classType );
|
---|
637 |
|
---|
638 | // mov eax,com_vtbl
|
---|
639 | compiler.codeGenerator.op_mov_RV_com_vtbl( REG_EAX, &classType.GetClass() );
|
---|
640 | }
|
---|
641 | void Opcode_Func_System_GetVtblList( const char *parameter )
|
---|
642 | {
|
---|
643 | Type classType;
|
---|
644 | compiler.StringToType( parameter, classType );
|
---|
645 |
|
---|
646 | // mov eax,com_vtbl
|
---|
647 | compiler.codeGenerator.op_mov_RV_vtbl( REG_EAX, &classType.GetClass() );
|
---|
648 | }
|
---|
649 | void Opcode_Func_System_GetDefaultConstructor( const char *parameter )
|
---|
650 | {
|
---|
651 | Type classType;
|
---|
652 | compiler.StringToType( parameter, classType );
|
---|
653 |
|
---|
654 | if( classType.GetClass().GetConstructorMethod() )
|
---|
655 | {
|
---|
656 | //mov eax,ProcAddr
|
---|
657 | compiler.codeGenerator.op_addressof( REG_EAX, &classType.GetClass().GetConstructorMethod()->GetUserProc() );
|
---|
658 | }
|
---|
659 | else
|
---|
660 | {
|
---|
661 | // デフォルトコンストラクタを持たない
|
---|
662 |
|
---|
663 | //xor eax,eax
|
---|
664 | compiler.codeGenerator.op_zero_reg( REG_EAX );
|
---|
665 | }
|
---|
666 | }
|
---|
667 | void Opcode_Func_System_GetDestructor( const char *parameter )
|
---|
668 | {
|
---|
669 | Type classType;
|
---|
670 | compiler.StringToType( parameter, classType );
|
---|
671 |
|
---|
672 | //mov eax,ProcAddr
|
---|
673 | compiler.codeGenerator.op_addressof( REG_EAX, &classType.GetClass().GetDestructorMethod()->GetUserProc() );
|
---|
674 | }
|
---|
675 |
|
---|
676 | void Opcode_Func_GetPtrData(const char *Parameter,const int type){
|
---|
677 | Type tempType;
|
---|
678 | if( !NumOpe(Parameter,Type(),tempType) ){
|
---|
679 | return;
|
---|
680 | }
|
---|
681 | if(!tempType.IsWhole()){
|
---|
682 | compiler.errorMessenger.Output(11,Parameter,cp);
|
---|
683 | return;
|
---|
684 | }
|
---|
685 | ChangeTypeToLong(tempType.GetBasicType());
|
---|
686 |
|
---|
687 | if(type==DEF_DOUBLE){
|
---|
688 | //pop eax
|
---|
689 | compiler.codeGenerator.op_pop(REG_EAX);
|
---|
690 |
|
---|
691 | //fld qword ptr[eax]
|
---|
692 | compiler.codeGenerator.PutOld(
|
---|
693 | (char)0xDD,
|
---|
694 | (char)0x00
|
---|
695 | );
|
---|
696 | }
|
---|
697 | else if(type==DEF_SINGLE||type==DEF_DWORD){
|
---|
698 | //pop eax
|
---|
699 | compiler.codeGenerator.op_pop(REG_EAX);
|
---|
700 |
|
---|
701 | //mov eax,dword ptr[eax]
|
---|
702 | compiler.codeGenerator.op_mov_RM( sizeof(long), REG_EAX, REG_EAX, 0, MOD_BASE );
|
---|
703 | }
|
---|
704 | else if(type==DEF_QWORD){
|
---|
705 | //pop ecx
|
---|
706 | compiler.codeGenerator.op_pop(REG_ECX);
|
---|
707 |
|
---|
708 | //mov eax,dword ptr[ecx]
|
---|
709 | compiler.codeGenerator.op_mov_RM(sizeof(long),REG_EAX,REG_ECX,0,MOD_BASE);
|
---|
710 |
|
---|
711 | //mov edx,dword ptr[ecx+sizeof(long)]
|
---|
712 | compiler.codeGenerator.op_mov_RM(sizeof(long),REG_EDX,REG_ECX,sizeof(long),MOD_BASE_DISP8);
|
---|
713 | }
|
---|
714 | else if(type==DEF_WORD){
|
---|
715 | //pop ebx
|
---|
716 | compiler.codeGenerator.op_pop(REG_EBX);
|
---|
717 |
|
---|
718 | //xor eax,eax
|
---|
719 | compiler.codeGenerator.op_xor_RR(REG_EAX);
|
---|
720 |
|
---|
721 | //mov ax,word ptr[ebx]
|
---|
722 | compiler.codeGenerator.op_mov_RM( sizeof(short), REG_EAX, REG_EBX, 0, MOD_BASE );
|
---|
723 | }
|
---|
724 | else if(type==DEF_BYTE){
|
---|
725 | //pop ebx
|
---|
726 | compiler.codeGenerator.op_pop(REG_EBX);
|
---|
727 |
|
---|
728 | //xor eax,eax
|
---|
729 | compiler.codeGenerator.op_xor_RR(REG_EAX);
|
---|
730 |
|
---|
731 | //mov al,byte ptr[ebx]
|
---|
732 | compiler.codeGenerator.op_mov_RM( sizeof(char), REG_EAX, REG_EBX, 0, MOD_BASE );
|
---|
733 | }
|
---|
734 | }
|
---|
735 |
|
---|
736 | bool Opcode_CallFunc( const char *Parameter, const int FuncNum, const Type &baseType, Type &resultType, bool isCallOn )
|
---|
737 | {
|
---|
738 | switch(FuncNum){
|
---|
739 | case FUNC_FIX:
|
---|
740 | if( isCallOn ) Opcode_Func_Fix(Parameter);
|
---|
741 | resultType.SetBasicType( DEF_LONG );
|
---|
742 | break;
|
---|
743 | case FUNC_CUDBL:
|
---|
744 | if( isCallOn ) Opcode_Func_CUDbl(Parameter);
|
---|
745 | resultType.SetBasicType( DEF_DOUBLE );
|
---|
746 | break;
|
---|
747 | case FUNC_LEN:
|
---|
748 | if( isCallOn ) Opcode_Func_Len(Parameter);
|
---|
749 | resultType.SetBasicType( DEF_LONG );
|
---|
750 | break;
|
---|
751 | case FUNC_ADDRESSOF:
|
---|
752 | Opcode_Func_AddressOf( Parameter, baseType, isCallOn, resultType );
|
---|
753 | break;
|
---|
754 | case FUNC_SIZEOF:
|
---|
755 | if( isCallOn ) Opcode_Func_SizeOf(Parameter);
|
---|
756 | resultType.SetBasicType( DEF_LONG );
|
---|
757 | break;
|
---|
758 | case FUNC_VARPTR:
|
---|
759 | Opcode_Func_VarPtr( Parameter, resultType, isCallOn );
|
---|
760 | break;
|
---|
761 | case FUNC_OBJPTR:
|
---|
762 | Opcode_Func_ObjPtr( Parameter, resultType, isCallOn );
|
---|
763 | break;
|
---|
764 | case FUNC_DELEGATE_DYNAMICMETHOD_CALL:
|
---|
765 | Opcode_Func_delegate_call( Parameter, resultType, true, isCallOn );
|
---|
766 | break;
|
---|
767 | case FUNC_DELEGATE_STATICMETHOD_CALL:
|
---|
768 | Opcode_Func_delegate_call( Parameter, resultType, false, isCallOn );
|
---|
769 | break;
|
---|
770 | case FUNC_SYSTEM_GET_NOW_SCOPE_CATCH_ADDRESS:
|
---|
771 | if( isCallOn ) Exception::Opcode_Func_System_GetNowScopeCatchAddress();
|
---|
772 | resultType.SetBasicType( DEF_PTR_VOID );
|
---|
773 | break;
|
---|
774 | case FUNC_SYSTEM_GET_NOW_SCOPE_FINALLY_ADDRESS:
|
---|
775 | if( isCallOn ) Exception::Opcode_Func_System_GetNowScopeFinallyAddress();
|
---|
776 | resultType.SetBasicType( DEF_PTR_VOID );
|
---|
777 | break;
|
---|
778 | case FUNC_SYSTEM_GET_BP:
|
---|
779 | if( isCallOn ) Opcode_Func_System_Get_Bp();
|
---|
780 | resultType.SetBasicType( DEF_LONG );
|
---|
781 | break;
|
---|
782 | case FUNC_SYSTEM_GET_SP:
|
---|
783 | if( isCallOn ) Opcode_Func_System_Get_Sp();
|
---|
784 | resultType.SetBasicType( DEF_LONG );
|
---|
785 | break;
|
---|
786 | case FUNC_SYSTEM_GET_COM_VTBL:
|
---|
787 | if( isCallOn ) Opcode_Func_System_GetComVtbl( Parameter );
|
---|
788 | resultType.SetBasicType( DEF_PTR_VOID );
|
---|
789 | break;
|
---|
790 | case FUNC_SYSTEM_GET_VTBL_LIST:
|
---|
791 | if( isCallOn ) Opcode_Func_System_GetVtblList( Parameter );
|
---|
792 | resultType.SetBasicType( DEF_PTR_VOID );
|
---|
793 | break;
|
---|
794 | case FUNC_SYSTEM_GET_DEFAULT_CONSTRUCTOR:
|
---|
795 | if( isCallOn ) Opcode_Func_System_GetDefaultConstructor( Parameter );
|
---|
796 | resultType.SetBasicType( DEF_PTR_VOID );
|
---|
797 | break;
|
---|
798 | case FUNC_SYSTEM_GET_DESTRUCTOR:
|
---|
799 | if( isCallOn ) Opcode_Func_System_GetDestructor( Parameter );
|
---|
800 | resultType.SetBasicType( DEF_PTR_VOID );
|
---|
801 | break;
|
---|
802 |
|
---|
803 | case FUNC_GETDOUBLE:
|
---|
804 | if( isCallOn ) Opcode_Func_GetPtrData(Parameter,DEF_DOUBLE);
|
---|
805 | resultType.SetBasicType( DEF_DOUBLE );
|
---|
806 | break;
|
---|
807 | case FUNC_GETSINGLE:
|
---|
808 | if( isCallOn ) Opcode_Func_GetPtrData(Parameter,DEF_SINGLE);
|
---|
809 | resultType.SetBasicType( DEF_SINGLE );
|
---|
810 | break;
|
---|
811 | case FUNC_GETQWORD:
|
---|
812 | if( isCallOn ) Opcode_Func_GetPtrData(Parameter,DEF_QWORD);
|
---|
813 | resultType.SetBasicType( DEF_QWORD );
|
---|
814 | break;
|
---|
815 | case FUNC_GETDWORD:
|
---|
816 | if( isCallOn ) Opcode_Func_GetPtrData(Parameter,DEF_DWORD);
|
---|
817 | resultType.SetBasicType( DEF_DWORD );
|
---|
818 | break;
|
---|
819 | case FUNC_GETWORD:
|
---|
820 | if( isCallOn ) Opcode_Func_GetPtrData(Parameter,DEF_WORD);
|
---|
821 | resultType.SetBasicType( DEF_WORD );
|
---|
822 | break;
|
---|
823 | case FUNC_GETBYTE:
|
---|
824 | if( isCallOn ) Opcode_Func_GetPtrData(Parameter,DEF_BYTE);
|
---|
825 | resultType.SetBasicType( DEF_BYTE );
|
---|
826 | break;
|
---|
827 | default:
|
---|
828 | return false;
|
---|
829 | }
|
---|
830 | return true;
|
---|
831 | }
|
---|