| 1 | #include "stdafx.h"
|
|---|
| 2 |
|
|---|
| 3 | #include <jenga/include/smoothie/Smoothie.h>
|
|---|
| 4 |
|
|---|
| 5 | #include <Compiler.h>
|
|---|
| 6 |
|
|---|
| 7 | #include "../BasicCompiler_Common/common.h"
|
|---|
| 8 | #include "Opcode.h"
|
|---|
| 9 |
|
|---|
| 10 | void Call_DebugSys_SaveContext(){
|
|---|
| 11 | //call _System_GetEip
|
|---|
| 12 | extern const UserProc *pSub_System_GetEip;
|
|---|
| 13 | compiler.codeGenerator.op_call(pSub_System_GetEip);
|
|---|
| 14 |
|
|---|
| 15 | //push eax
|
|---|
| 16 | compiler.codeGenerator.op_push(REG_EAX);
|
|---|
| 17 |
|
|---|
| 18 | //push ebp
|
|---|
| 19 | compiler.codeGenerator.op_push(REG_EBP);
|
|---|
| 20 |
|
|---|
| 21 | //call _DebugSys_SaveContext
|
|---|
| 22 | extern const UserProc *pSub_DebugSys_SaveContext;
|
|---|
| 23 | compiler.codeGenerator.op_call(pSub_DebugSys_SaveContext);
|
|---|
| 24 | }
|
|---|
| 25 |
|
|---|
| 26 | bool Opcode_CallProcPtr( const char *variable, const char *lpszParms,ProcPointer *pProcPointer){
|
|---|
| 27 |
|
|---|
| 28 | extern BOOL bDebugCompile;
|
|---|
| 29 | extern BOOL bDebugSupportProc;
|
|---|
| 30 | if(bDebugCompile&&bDebugSupportProc==0)
|
|---|
| 31 | Call_DebugSys_SaveContext();
|
|---|
| 32 |
|
|---|
| 33 |
|
|---|
| 34 | ////////////////////////
|
|---|
| 35 | // パラメータのセット
|
|---|
| 36 | ////////////////////////
|
|---|
| 37 |
|
|---|
| 38 | //パラメータオブジェクトを生成
|
|---|
| 39 | ParamImpl *pobj_parameter=0;
|
|---|
| 40 | pobj_parameter=new ParamImpl(lpszParms);
|
|---|
| 41 |
|
|---|
| 42 | // デフォルト引数を適用
|
|---|
| 43 | pobj_parameter->ApplyDefaultParameters( pProcPointer->Params() );
|
|---|
| 44 |
|
|---|
| 45 | //エラーチェック
|
|---|
| 46 | if( !pobj_parameter->ErrorCheck(variable,pProcPointer->Params() ) ){
|
|---|
| 47 | //パラメータにエラーがあるときは処理を終える
|
|---|
| 48 | return false;
|
|---|
| 49 | }
|
|---|
| 50 |
|
|---|
| 51 | //一時オブジェクトを生成
|
|---|
| 52 | pobj_parameter->NewTempParameters( variable,pProcPointer->Params() );
|
|---|
| 53 |
|
|---|
| 54 | //レジスタ、スタックフレームにセット
|
|---|
| 55 | pobj_parameter->SetParameter(variable,pProcPointer->Params() );
|
|---|
| 56 |
|
|---|
| 57 |
|
|---|
| 58 |
|
|---|
| 59 | ////////////////////////
|
|---|
| 60 | // call
|
|---|
| 61 | ////////////////////////
|
|---|
| 62 | RELATIVE_VAR RelativeVar;
|
|---|
| 63 | GetVarOffsetReadOnly(variable,&RelativeVar,Type());
|
|---|
| 64 | SetVarPtrToEax(&RelativeVar);
|
|---|
| 65 |
|
|---|
| 66 | //mov eax,dword ptr[eax]
|
|---|
| 67 | compiler.codeGenerator.op_mov_RM( sizeof(long), REG_EAX, REG_EAX, 0, MOD_BASE );
|
|---|
| 68 |
|
|---|
| 69 | //call eax
|
|---|
| 70 | compiler.codeGenerator.op_call_R( REG_EAX );
|
|---|
| 71 |
|
|---|
| 72 |
|
|---|
| 73 |
|
|---|
| 74 | //一時オブジェクトを破棄
|
|---|
| 75 | pobj_parameter->DeleteTempParameters();
|
|---|
| 76 |
|
|---|
| 77 | //パラメータオブジェクトを破棄
|
|---|
| 78 | delete pobj_parameter;
|
|---|
| 79 |
|
|---|
| 80 | return true;
|
|---|
| 81 | }
|
|---|
| 82 |
|
|---|
| 83 | bool Opcode_CallProc(const char *Parameter,const UserProc *pUserProc,DWORD dwFlags,const char *ObjectName )
|
|---|
| 84 | {
|
|---|
| 85 | if( pUserProc->IsMacro() ){
|
|---|
| 86 | if( lstrcmpi( pUserProc->GetName().c_str(), "Print" ) == 0 ){
|
|---|
| 87 | Opcode_Print(Parameter,0);
|
|---|
| 88 | return true;
|
|---|
| 89 | }
|
|---|
| 90 | if( lstrcmpi( pUserProc->GetName().c_str(), "Input" ) == 0 ){
|
|---|
| 91 | Opcode_Input(Parameter);
|
|---|
| 92 | return true;
|
|---|
| 93 | }
|
|---|
| 94 | if( lstrcmpi( pUserProc->GetName().c_str(), "Write" ) == 0 ){
|
|---|
| 95 | Opcode_Print(Parameter,1);
|
|---|
| 96 | return true;
|
|---|
| 97 | }
|
|---|
| 98 | }
|
|---|
| 99 |
|
|---|
| 100 | pUserProc->Using();
|
|---|
| 101 |
|
|---|
| 102 | bool isStatic = false;
|
|---|
| 103 | const CClass *pobj_c = NULL;
|
|---|
| 104 | const CMethod *pMethod = NULL;
|
|---|
| 105 | Type leftType;
|
|---|
| 106 | bool isFixedClass = false;
|
|---|
| 107 | if( pUserProc->GetParentClassPtr() ){
|
|---|
| 108 | //クラスのメンバ関数を呼び出す場合はアクセスチェックを行う
|
|---|
| 109 | if(ObjectName[0] && (dwFlags&PROCFLAG_NEW)==0)
|
|---|
| 110 | {
|
|---|
| 111 | if(lstrcmpi(ObjectName,"Super")==0)
|
|---|
| 112 | {
|
|---|
| 113 | //クラスメンバ関数内から基底クラスの呼び出し
|
|---|
| 114 | pobj_c=&compiler.pCompilingClass->GetSuperClass();
|
|---|
| 115 |
|
|---|
| 116 | isFixedClass = true;
|
|---|
| 117 | }
|
|---|
| 118 | else
|
|---|
| 119 | {
|
|---|
| 120 | //"->"によってオブジェクトを指定する通常のメンバ関数呼び出し
|
|---|
| 121 | Type varType;
|
|---|
| 122 | GetVarType( ObjectName, varType, false );
|
|---|
| 123 | if( NATURAL_TYPE( varType.GetBasicType() ) == DEF_OBJECT )
|
|---|
| 124 | {
|
|---|
| 125 | pobj_c = &varType.GetClass();
|
|---|
| 126 | leftType = varType;
|
|---|
| 127 | }
|
|---|
| 128 | else
|
|---|
| 129 | {
|
|---|
| 130 | pobj_c=compiler.GetObjectModule().meta.GetClasses().Find(ObjectName);
|
|---|
| 131 | if( pobj_c ){
|
|---|
| 132 | isStatic = true;
|
|---|
| 133 | }
|
|---|
| 134 | else{
|
|---|
| 135 | SetError(300,NULL,cp);
|
|---|
| 136 | }
|
|---|
| 137 | }
|
|---|
| 138 | }
|
|---|
| 139 | }
|
|---|
| 140 | else{
|
|---|
| 141 | if(dwFlags&PROCFLAG_NEW){
|
|---|
| 142 | GetVarType( ObjectName, leftType, false );
|
|---|
| 143 |
|
|---|
| 144 | //New演算子によるコンストラクタ呼び出し
|
|---|
| 145 | pobj_c=pUserProc->GetParentClassPtr();
|
|---|
| 146 | }
|
|---|
| 147 | else{
|
|---|
| 148 | //クラスメンバ関数内から同一クラスのメンバ関数の呼び出し
|
|---|
| 149 | pobj_c=compiler.pCompilingClass;
|
|---|
| 150 | }
|
|---|
| 151 | }
|
|---|
| 152 |
|
|---|
| 153 |
|
|---|
| 154 | /////////////////////////////////
|
|---|
| 155 | // メソッド情報を取得
|
|---|
| 156 | /////////////////////////////////
|
|---|
| 157 | pMethod = NULL;
|
|---|
| 158 | if( ! isStatic ) pMethod = pobj_c->GetDynamicMethodOrInterfaceMethod( pUserProc );
|
|---|
| 159 | if( ! pMethod ){
|
|---|
| 160 | //動的メソッドが取得できなかったときは静的メソッドを当たる
|
|---|
| 161 | pMethod = pobj_c->GetStaticMethods().GetMethodPtr( pUserProc );
|
|---|
| 162 | if( !pMethod ){
|
|---|
| 163 | SetError(300,NULL,cp);
|
|---|
| 164 | return false;
|
|---|
| 165 | }
|
|---|
| 166 |
|
|---|
| 167 | //静的メンバ
|
|---|
| 168 | isStatic = true;
|
|---|
| 169 | }
|
|---|
| 170 |
|
|---|
| 171 |
|
|---|
| 172 | //////////////////////////////
|
|---|
| 173 | // アクセスエラーチェック
|
|---|
| 174 | //////////////////////////////
|
|---|
| 175 |
|
|---|
| 176 | if(ObjectName[0]){
|
|---|
| 177 | //外部からの呼び出し
|
|---|
| 178 | if(pobj_c==compiler.pCompilingClass){
|
|---|
| 179 | //同一クラスオブジェクトの場合はプライベートアクセスを容認する
|
|---|
| 180 | if( pMethod->IsNoneAccess() ){
|
|---|
| 181 | SetError(109,pUserProc->GetName(),cp);
|
|---|
| 182 | return false;
|
|---|
| 183 | }
|
|---|
| 184 | }
|
|---|
| 185 | else{
|
|---|
| 186 | if( pMethod->IsPrivate()
|
|---|
| 187 | || pMethod->IsNoneAccess() ){
|
|---|
| 188 | SetError(109,pUserProc->GetName(),cp);
|
|---|
| 189 | return false;
|
|---|
| 190 | }
|
|---|
| 191 | if( !pMethod->GetUserProc().GetParentClass().IsEqualsOrSubClass( pobj_c ) && pMethod->IsProtected() ){
|
|---|
| 192 | SetError(110,pUserProc->GetName(),cp);
|
|---|
| 193 | return false;
|
|---|
| 194 | }
|
|---|
| 195 | }
|
|---|
| 196 | }
|
|---|
| 197 | else{
|
|---|
| 198 | //クラス内部からの呼び出し(継承によるACCESS_NONのみをエラーとする)
|
|---|
| 199 | if( pMethod->IsNoneAccess() ){
|
|---|
| 200 | SetError(109,pUserProc->GetName(),cp);
|
|---|
| 201 | return false;
|
|---|
| 202 | }
|
|---|
| 203 | }
|
|---|
| 204 | }
|
|---|
| 205 |
|
|---|
| 206 |
|
|---|
| 207 | ///////////////////////////////////////////////////////////////
|
|---|
| 208 | // _System_LocalThisのダミーをセット
|
|---|
| 209 | ///////////////////////////////////////////////////////////////
|
|---|
| 210 |
|
|---|
| 211 | char temporary[VN_SIZE]={0};
|
|---|
| 212 | if( pUserProc->GetParentClassPtr() && isStatic == false ){
|
|---|
| 213 | //_System_LocalThis(第一パラメータ)のダミーを作成
|
|---|
| 214 | lstrcpy(temporary,"0,");
|
|---|
| 215 | }
|
|---|
| 216 | if( pUserProc->ReturnType().IsStruct() ){
|
|---|
| 217 | // ※ByRef _System_ReturnValue パラメータのダミーをセット
|
|---|
| 218 | lstrcat(temporary,"0,");
|
|---|
| 219 | }
|
|---|
| 220 |
|
|---|
| 221 | if(Parameter[0]=='\0'&&temporary[0])
|
|---|
| 222 | temporary[lstrlen(temporary)-1]=0;
|
|---|
| 223 | else lstrcat(temporary,Parameter);
|
|---|
| 224 |
|
|---|
| 225 |
|
|---|
| 226 | ////////////////////////
|
|---|
| 227 | // パラメータをセット
|
|---|
| 228 | ////////////////////////
|
|---|
| 229 |
|
|---|
| 230 | //パラメータオブジェクトを生成
|
|---|
| 231 | ParamImpl *pobj_parameter=0;
|
|---|
| 232 | pobj_parameter=new ParamImpl(temporary);
|
|---|
| 233 |
|
|---|
| 234 | // デフォルト引数を適用
|
|---|
| 235 | pobj_parameter->ApplyDefaultParameters( pUserProc->RealParams() );
|
|---|
| 236 |
|
|---|
| 237 | // 型パラメータを適用
|
|---|
| 238 | pobj_parameter->SetLeftType( leftType );
|
|---|
| 239 |
|
|---|
| 240 | //エラーチェック
|
|---|
| 241 | if( !pobj_parameter->ErrorCheck(pUserProc->GetName(),pUserProc->RealParams(),pUserProc->GetSecondParmNum() ) ){
|
|---|
| 242 | //パラメータにエラーがあるときは処理を終える
|
|---|
| 243 | return false;
|
|---|
| 244 | }
|
|---|
| 245 |
|
|---|
| 246 | if(pUserProc->IsMacro()){
|
|---|
| 247 | //マクロ関数の場合は、パラメータ省略を考慮する
|
|---|
| 248 | pobj_parameter->MacroParameterSupport( pUserProc->RealParams() );
|
|---|
| 249 | }
|
|---|
| 250 |
|
|---|
| 251 | //一時オブジェクトを生成
|
|---|
| 252 | int tempSize = pobj_parameter->NewTempParameters( pUserProc->GetName(),pUserProc->RealParams(),pUserProc->GetRealSecondParmNum() );
|
|---|
| 253 |
|
|---|
| 254 | //レジスタ、スタックフレームにセット
|
|---|
| 255 | int ParmSize = pobj_parameter->SetParameter(pUserProc->GetName(),pUserProc->RealParams(),pUserProc->GetRealSecondParmNum(), pUserProc );
|
|---|
| 256 |
|
|---|
| 257 | if(pUserProc->ReturnType().IsStruct() ){
|
|---|
| 258 | //////////////////////////////////////////////////////
|
|---|
| 259 | // 戻り値に構造体インスタンスを持つ場合
|
|---|
| 260 | // ※ByRef _System_ReturnValue パラメータをセット
|
|---|
| 261 | //////////////////////////////////////////////////////
|
|---|
| 262 |
|
|---|
| 263 | int object_size = pUserProc->ReturnType().GetClass().GetSize();
|
|---|
| 264 |
|
|---|
| 265 | //push object_size
|
|---|
| 266 | compiler.codeGenerator.op_push_V(object_size);
|
|---|
| 267 |
|
|---|
| 268 | //call calloc
|
|---|
| 269 | extern const UserProc *pSub_calloc;
|
|---|
| 270 | compiler.codeGenerator.op_call(pSub_calloc);
|
|---|
| 271 |
|
|---|
| 272 | //push eax
|
|---|
| 273 | compiler.codeGenerator.op_push(REG_EAX);
|
|---|
| 274 |
|
|---|
| 275 | ParmSize += PTR_SIZE;
|
|---|
| 276 | }
|
|---|
| 277 |
|
|---|
| 278 |
|
|---|
| 279 | if( pUserProc->GetParentClassPtr() && isStatic == false ){
|
|---|
| 280 | //////////////////////////////////////////////////////
|
|---|
| 281 | // メンバ関数の場合
|
|---|
| 282 | // ※_System_LocalThis パラメータをecxにセット
|
|---|
| 283 | //////////////////////////////////////////////////////
|
|---|
| 284 |
|
|---|
| 285 | if(ObjectName[0] && (dwFlags&PROCFLAG_NEW)==0){
|
|---|
| 286 | if(lstrcmpi(ObjectName,"Super")==0) goto InClassMember;
|
|---|
| 287 | else{
|
|---|
| 288 | RELATIVE_VAR RelativeVar;
|
|---|
| 289 | if( pMethod->IsConst() ){
|
|---|
| 290 | //Constアクセスが可能なメソッドの場合
|
|---|
| 291 | if( !GetVarOffsetReadOnly( ObjectName, &RelativeVar, Type() ) ){
|
|---|
| 292 | return false;
|
|---|
| 293 | }
|
|---|
| 294 | }
|
|---|
| 295 | else{
|
|---|
| 296 | //Constアクセスが不可能なメソッドの場合
|
|---|
| 297 | if( !GetVarOffsetReadWrite( ObjectName, &RelativeVar, Type() ) ){
|
|---|
| 298 | return false;
|
|---|
| 299 | }
|
|---|
| 300 | }
|
|---|
| 301 |
|
|---|
| 302 | SetVarPtrToEax(&RelativeVar);
|
|---|
| 303 |
|
|---|
| 304 | // 参照を実体ポインタにする
|
|---|
| 305 | compiler.codeGenerator.op_mov_RM( sizeof(long), REG_ECX, REG_EAX, 0, MOD_BASE );
|
|---|
| 306 | }
|
|---|
| 307 | }
|
|---|
| 308 | else{
|
|---|
| 309 | InClassMember:
|
|---|
| 310 | if(dwFlags&PROCFLAG_NEW){
|
|---|
| 311 | //New演算子によるコンストラクタ呼び出しの場合
|
|---|
| 312 |
|
|---|
| 313 | //mov ecx,dword ptr[esp+ParmSize]
|
|---|
| 314 | compiler.codeGenerator.op_mov_RM( sizeof(long), REG_ECX, REG_ESP, ParmSize + tempSize, MOD_BASE_DISP32 );
|
|---|
| 315 | }
|
|---|
| 316 | else{
|
|---|
| 317 | //Thisポインタをecxにコピー
|
|---|
| 318 | SetThisPtrToReg(REG_ECX);
|
|---|
| 319 | }
|
|---|
| 320 | }
|
|---|
| 321 | }
|
|---|
| 322 |
|
|---|
| 323 | if( pUserProc->IsVirtual() && !isFixedClass )
|
|---|
| 324 | {
|
|---|
| 325 | int vtblIndex;
|
|---|
| 326 | if( pobj_c->IsInterface() )
|
|---|
| 327 | {
|
|---|
| 328 | // インターフェイス メソッド呼び出し
|
|---|
| 329 |
|
|---|
| 330 | int offset_vtbl = compiler.GetObjectModule().meta.GetClasses().GetInterfaceInfoClassPtr()->GetMemberOffset( "__vtbl" );
|
|---|
| 331 |
|
|---|
| 332 |
|
|---|
| 333 | // vtblのポインタを取得
|
|---|
| 334 | //mov edx,dword ptr[ecx+offset_vtbl]
|
|---|
| 335 | compiler.codeGenerator.op_mov_RM( sizeof(long), REG_EDX, REG_ECX, offset_vtbl, MOD_BASE_DISP8 );
|
|---|
| 336 |
|
|---|
| 337 | int offset_this = compiler.GetObjectModule().meta.GetClasses().GetInterfaceInfoClassPtr()->GetMemberOffset( "__this" );
|
|---|
| 338 |
|
|---|
| 339 |
|
|---|
| 340 |
|
|---|
| 341 | // インターフェイスの場合は更に__thisを取得する
|
|---|
| 342 | //mov ecx,qword ptr[ecx+offset_this]
|
|---|
| 343 | compiler.codeGenerator.op_mov_RM( sizeof(long), REG_ECX, REG_ECX, offset_this, MOD_BASE_DISP8 );
|
|---|
| 344 |
|
|---|
| 345 | int vtblMasterListIndex;
|
|---|
| 346 | pobj_c->GetVtblMasterListIndexAndVtblIndex( pUserProc, vtblMasterListIndex, vtblIndex );
|
|---|
| 347 | if( vtblMasterListIndex != 0 )
|
|---|
| 348 | {
|
|---|
| 349 | SetError();
|
|---|
| 350 | }
|
|---|
| 351 | }
|
|---|
| 352 | else if( pobj_c->IsComInterface() )
|
|---|
| 353 | {
|
|---|
| 354 | // COMインターフェイス メソッド呼び出し
|
|---|
| 355 |
|
|---|
| 356 | //仮想関数(オブジェクトメソッド)呼び出し
|
|---|
| 357 | // pObj -> vtbl1 -> func1
|
|---|
| 358 | // -> func2
|
|---|
| 359 | // -> func3
|
|---|
| 360 |
|
|---|
| 361 | int vtblMasterListIndex;
|
|---|
| 362 | pobj_c->GetVtblMasterListIndexAndVtblIndex( pUserProc, vtblMasterListIndex, vtblIndex );
|
|---|
| 363 |
|
|---|
| 364 | // vtblのポインタを取得
|
|---|
| 365 | //mov edx,dword ptr[ecx]
|
|---|
| 366 | compiler.codeGenerator.op_mov_RM( sizeof(long), REG_EDX, REG_ECX, 0, MOD_BASE );
|
|---|
| 367 | }
|
|---|
| 368 | else
|
|---|
| 369 | {
|
|---|
| 370 | //仮想関数(オブジェクトメソッド)呼び出し
|
|---|
| 371 | // pObj -> vtbl_master_list -> vtbl1 -> func1
|
|---|
| 372 | // -> func2
|
|---|
| 373 | // -> func3
|
|---|
| 374 | // -> vtbl2 -> func1
|
|---|
| 375 | // -> func2
|
|---|
| 376 | // -> func3
|
|---|
| 377 |
|
|---|
| 378 | int vtblMasterListIndex;
|
|---|
| 379 | pobj_c->GetVtblMasterListIndexAndVtblIndex( pUserProc, vtblMasterListIndex, vtblIndex );
|
|---|
| 380 |
|
|---|
| 381 | // vtblマスターリストのポインタを取得
|
|---|
| 382 | //mov edx,dword ptr[ecx+sizeof(com_vtbl)]
|
|---|
| 383 | compiler.codeGenerator.op_mov_RM( sizeof(long), REG_EDX, REG_ECX, PTR_SIZE, MOD_BASE_DISP8 );
|
|---|
| 384 |
|
|---|
| 385 | // vtblのポインタを取得
|
|---|
| 386 | //mov edx,dword ptr[edx+vtblMasterListIndex]
|
|---|
| 387 | compiler.codeGenerator.op_mov_RM( sizeof(long), REG_EDX, REG_EDX, vtblMasterListIndex*PTR_SIZE, MOD_BASE_DISP32 );
|
|---|
| 388 | }
|
|---|
| 389 |
|
|---|
| 390 | //push ecx
|
|---|
| 391 | compiler.codeGenerator.op_push(REG_ECX);
|
|---|
| 392 |
|
|---|
| 393 | //call dword ptr[edx+func_index]
|
|---|
| 394 | if( vtblIndex * PTR_SIZE <= 0x7F )
|
|---|
| 395 | {
|
|---|
| 396 | compiler.codeGenerator.PutOld(
|
|---|
| 397 | (char)0xFF,
|
|---|
| 398 | (char)0x52,
|
|---|
| 399 | (char)(vtblIndex*PTR_SIZE)
|
|---|
| 400 | );
|
|---|
| 401 | }
|
|---|
| 402 | else{
|
|---|
| 403 | compiler.codeGenerator.PutOld(
|
|---|
| 404 | (char)0xFF,
|
|---|
| 405 | (char)0x92
|
|---|
| 406 | );
|
|---|
| 407 | compiler.codeGenerator.PutOld( (long)(vtblIndex*PTR_SIZE), Schedule::None );
|
|---|
| 408 | }
|
|---|
| 409 | }
|
|---|
| 410 | else{
|
|---|
| 411 | //通常呼び出し
|
|---|
| 412 |
|
|---|
| 413 | if( pUserProc->GetParentClassPtr() && isStatic == false )
|
|---|
| 414 | {
|
|---|
| 415 | //push ecx
|
|---|
| 416 | compiler.codeGenerator.op_push(REG_ECX);
|
|---|
| 417 | }
|
|---|
| 418 |
|
|---|
| 419 | //call ProcAddr
|
|---|
| 420 | compiler.codeGenerator.op_call(pUserProc);
|
|---|
| 421 | }
|
|---|
| 422 |
|
|---|
| 423 | if(pUserProc->IsCdecl()){
|
|---|
| 424 | //add esp,ParmSize
|
|---|
| 425 | compiler.codeGenerator.op_add_esp(ParmSize);
|
|---|
| 426 | }
|
|---|
| 427 |
|
|---|
| 428 | //一時オブジェクトを破棄
|
|---|
| 429 | pobj_parameter->DeleteTempParameters();
|
|---|
| 430 |
|
|---|
| 431 | //パラメータオブジェクトを破棄
|
|---|
| 432 | delete pobj_parameter;
|
|---|
| 433 |
|
|---|
| 434 | return true;
|
|---|
| 435 | }
|
|---|
| 436 |
|
|---|
| 437 | bool Opcode_CallDllProc( const char *lpszParms, const DllProc *pDllProc ){
|
|---|
| 438 |
|
|---|
| 439 | extern BOOL bDebugCompile;
|
|---|
| 440 | extern BOOL bDebugSupportProc;
|
|---|
| 441 | if(bDebugCompile&&bDebugSupportProc==0&& pDllProc->IsEqualSymbol( "DebugBreak" ) ){
|
|---|
| 442 | Call_DebugSys_SaveContext();
|
|---|
| 443 | }
|
|---|
| 444 |
|
|---|
| 445 |
|
|---|
| 446 | ////////////////////////
|
|---|
| 447 | // パラメータのセット
|
|---|
| 448 | ////////////////////////
|
|---|
| 449 |
|
|---|
| 450 | //パラメータオブジェクトを生成
|
|---|
| 451 | ParamImpl *pobj_parameter=0;
|
|---|
| 452 | pobj_parameter=new ParamImpl(lpszParms);
|
|---|
| 453 |
|
|---|
| 454 | // デフォルト引数を適用
|
|---|
| 455 | pobj_parameter->ApplyDefaultParameters( pDllProc->Params() );
|
|---|
| 456 |
|
|---|
| 457 | //エラーチェック
|
|---|
| 458 | if( !pobj_parameter->ErrorCheck( pDllProc->GetName(), pDllProc->Params() ) ){
|
|---|
| 459 | //パラメータにエラーがあるときは処理を終える
|
|---|
| 460 | return false;
|
|---|
| 461 | }
|
|---|
| 462 |
|
|---|
| 463 | //一時オブジェクトを生成
|
|---|
| 464 | pobj_parameter->NewTempParameters( pDllProc->GetName(), pDllProc->Params() );
|
|---|
| 465 |
|
|---|
| 466 | //レジスタ、スタックフレームにセット
|
|---|
| 467 | int ParmSize = pobj_parameter->SetParameter(pDllProc->GetName(), pDllProc->Params() );
|
|---|
| 468 |
|
|---|
| 469 |
|
|---|
| 470 | //動的リンクされたプロシージャの呼び出し
|
|---|
| 471 |
|
|---|
| 472 | //call dword ptr[LookupTable]
|
|---|
| 473 | compiler.codeGenerator.op_call( pDllProc );
|
|---|
| 474 |
|
|---|
| 475 | if(pDllProc->IsCdecl()){
|
|---|
| 476 | //add esp,ParmSize
|
|---|
| 477 | compiler.codeGenerator.op_add_esp(ParmSize);
|
|---|
| 478 | }
|
|---|
| 479 |
|
|---|
| 480 | //一時オブジェクトを破棄
|
|---|
| 481 | pobj_parameter->DeleteTempParameters();
|
|---|
| 482 |
|
|---|
| 483 | //パラメータオブジェクトを破棄
|
|---|
| 484 | delete pobj_parameter;
|
|---|
| 485 |
|
|---|
| 486 | return true;
|
|---|
| 487 | }
|
|---|
| 488 |
|
|---|
| 489 | void Opcode_CallDelegate( const Delegate &dg, const char *methodPtrValueStr, const char *objPtrValueStr, const char *params )
|
|---|
| 490 | {
|
|---|
| 491 | extern BOOL bDebugCompile;
|
|---|
| 492 | extern BOOL bDebugSupportProc;
|
|---|
| 493 | if(bDebugCompile&&bDebugSupportProc==0)
|
|---|
| 494 | Call_DebugSys_SaveContext();
|
|---|
| 495 |
|
|---|
| 496 |
|
|---|
| 497 | ///////////////////////////////////////////////////////////////
|
|---|
| 498 | // _System_LocalThisのダミーをセット
|
|---|
| 499 | ///////////////////////////////////////////////////////////////
|
|---|
| 500 |
|
|---|
| 501 | char temporary[VN_SIZE]={0};
|
|---|
| 502 | bool isDynamicCall = false;
|
|---|
| 503 | if( objPtrValueStr && objPtrValueStr[0] ){
|
|---|
| 504 | //_System_LocalThis(第一パラメータ)のダミーを作成
|
|---|
| 505 | lstrcpy(temporary,"0,");
|
|---|
| 506 |
|
|---|
| 507 | isDynamicCall = true;
|
|---|
| 508 | }
|
|---|
| 509 | if( dg.ReturnType().IsStruct() ){
|
|---|
| 510 | // ※ByRef _System_ReturnValue パラメータのダミーをセット
|
|---|
| 511 | lstrcat(temporary,"0,");
|
|---|
| 512 | }
|
|---|
| 513 |
|
|---|
| 514 | if(params[0]=='\0'&&temporary[0])
|
|---|
| 515 | temporary[lstrlen(temporary)-1]=0;
|
|---|
| 516 | else lstrcat(temporary,params);
|
|---|
| 517 |
|
|---|
| 518 |
|
|---|
| 519 | const Parameters *pParams = &dg.Params();
|
|---|
| 520 | if( isDynamicCall )
|
|---|
| 521 | {
|
|---|
| 522 | pParams = &dg.GetDynamicParams();
|
|---|
| 523 | }
|
|---|
| 524 |
|
|---|
| 525 |
|
|---|
| 526 | ParamImpl *pobj_parameter = new ParamImpl( temporary );
|
|---|
| 527 |
|
|---|
| 528 | //一時オブジェクトを生成
|
|---|
| 529 | pobj_parameter->NewTempParameters( dg.GetName(), *pParams );
|
|---|
| 530 |
|
|---|
| 531 | //レジスタ、スタックフレームにセット
|
|---|
| 532 | int ParmSize = pobj_parameter->SetParameter( dg.GetName(), *pParams );
|
|---|
| 533 |
|
|---|
| 534 |
|
|---|
| 535 | if( objPtrValueStr && objPtrValueStr[0] )
|
|---|
| 536 | {
|
|---|
| 537 | RELATIVE_VAR RelativeVar;
|
|---|
| 538 | //Constアクセスが不可能なメソッドの場合
|
|---|
| 539 | if( !GetVarOffsetReadWrite( objPtrValueStr, &RelativeVar, Type() ) ){
|
|---|
| 540 | Jenga::Throw( "Opcode_CallDelegate関数内で呼ばれるGetVarOffsetReadWrite関数に失敗" );
|
|---|
| 541 | return;
|
|---|
| 542 | }
|
|---|
| 543 |
|
|---|
| 544 | SetVarPtrToEax(&RelativeVar);
|
|---|
| 545 |
|
|---|
| 546 | // 参照を実体ポインタにする
|
|---|
| 547 | compiler.codeGenerator.op_mov_RM( sizeof(long), REG_ECX, REG_EAX, 0, MOD_BASE );
|
|---|
| 548 |
|
|---|
| 549 | //push ecx
|
|---|
| 550 | compiler.codeGenerator.op_push(REG_ECX);
|
|---|
| 551 | }
|
|---|
| 552 |
|
|---|
| 553 |
|
|---|
| 554 | {
|
|---|
| 555 | ////////////////////////
|
|---|
| 556 | // call
|
|---|
| 557 | ////////////////////////
|
|---|
| 558 | RELATIVE_VAR RelativeVar;
|
|---|
| 559 | GetVarOffsetReadOnly( methodPtrValueStr, &RelativeVar, Type() );
|
|---|
| 560 | SetVarPtrToEax( &RelativeVar );
|
|---|
| 561 |
|
|---|
| 562 | //mov eax,dword ptr[eax]
|
|---|
| 563 | compiler.codeGenerator.op_mov_RM( sizeof(long), REG_EAX, REG_EAX, 0, MOD_BASE );
|
|---|
| 564 |
|
|---|
| 565 | //call eax
|
|---|
| 566 | compiler.codeGenerator.op_call_R( REG_EAX );
|
|---|
| 567 | }
|
|---|
| 568 |
|
|---|
| 569 |
|
|---|
| 570 | //一時オブジェクトを破棄
|
|---|
| 571 | pobj_parameter->DeleteTempParameters();
|
|---|
| 572 |
|
|---|
| 573 | //パラメータオブジェクトを破棄
|
|---|
| 574 | delete pobj_parameter;
|
|---|
| 575 | }
|
|---|