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