[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 | void Call_DebugSys_SaveContext(){
|
---|
| 11 | //call _System_GetEip
|
---|
[206] | 12 | extern const UserProc *pSub_System_GetEip;
|
---|
[225] | 13 | compiler.codeGenerator.op_call(pSub_System_GetEip);
|
---|
[3] | 14 |
|
---|
| 15 | //push eax
|
---|
[225] | 16 | compiler.codeGenerator.op_push(REG_EAX);
|
---|
[3] | 17 |
|
---|
| 18 | //push ebp
|
---|
[225] | 19 | compiler.codeGenerator.op_push(REG_EBP);
|
---|
[3] | 20 |
|
---|
| 21 | //call _DebugSys_SaveContext
|
---|
[206] | 22 | extern const UserProc *pSub_DebugSys_SaveContext;
|
---|
[225] | 23 | compiler.codeGenerator.op_call(pSub_DebugSys_SaveContext);
|
---|
[3] | 24 | }
|
---|
| 25 |
|
---|
[76] | 26 | bool Opcode_CallProcPtr( const char *variable, const char *lpszParms,ProcPointer *pProcPointer){
|
---|
[3] | 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 | //パラメータオブジェクトを生成
|
---|
[71] | 39 | ParamImpl *pobj_parameter=0;
|
---|
[76] | 40 | pobj_parameter=new ParamImpl(lpszParms);
|
---|
[3] | 41 |
|
---|
[77] | 42 | // デフォルト引数を適用
|
---|
| 43 | pobj_parameter->ApplyDefaultParameters( pProcPointer->Params() );
|
---|
| 44 |
|
---|
[3] | 45 | //エラーチェック
|
---|
[75] | 46 | if( !pobj_parameter->ErrorCheck(variable,pProcPointer->Params() ) ){
|
---|
[31] | 47 | //パラメータにエラーがあるときは処理を終える
|
---|
[76] | 48 | return false;
|
---|
[31] | 49 | }
|
---|
[3] | 50 |
|
---|
[20] | 51 | //一時オブジェクトを生成
|
---|
[75] | 52 | pobj_parameter->NewTempParameters( variable,pProcPointer->Params() );
|
---|
[20] | 53 |
|
---|
[3] | 54 | //レジスタ、スタックフレームにセット
|
---|
[75] | 55 | pobj_parameter->SetParameter(variable,pProcPointer->Params() );
|
---|
[3] | 56 |
|
---|
| 57 |
|
---|
| 58 |
|
---|
[20] | 59 | ////////////////////////
|
---|
| 60 | // call
|
---|
| 61 | ////////////////////////
|
---|
[3] | 62 | RELATIVE_VAR RelativeVar;
|
---|
[76] | 63 | GetVarOffsetReadOnly(variable,&RelativeVar,Type());
|
---|
[3] | 64 | SetVarPtrToEax(&RelativeVar);
|
---|
| 65 |
|
---|
| 66 | //mov eax,dword ptr[eax]
|
---|
[235] | 67 | compiler.codeGenerator.op_mov_RM( sizeof(long), REG_EAX, REG_EAX, 0, MOD_BASE );
|
---|
[3] | 68 |
|
---|
| 69 | //call eax
|
---|
[235] | 70 | compiler.codeGenerator.op_call_R( REG_EAX );
|
---|
[3] | 71 |
|
---|
[20] | 72 |
|
---|
| 73 |
|
---|
| 74 | //一時オブジェクトを破棄
|
---|
| 75 | pobj_parameter->DeleteTempParameters();
|
---|
| 76 |
|
---|
| 77 | //パラメータオブジェクトを破棄
|
---|
| 78 | delete pobj_parameter;
|
---|
| 79 |
|
---|
[76] | 80 | return true;
|
---|
[3] | 81 | }
|
---|
| 82 |
|
---|
[206] | 83 | bool Opcode_CallProc(const char *Parameter,const UserProc *pUserProc,DWORD dwFlags,const char *ObjectName,int RefType){
|
---|
[51] | 84 | int i2;
|
---|
[3] | 85 |
|
---|
[75] | 86 | if( pUserProc->IsMacro() ){
|
---|
| 87 | if( lstrcmpi( pUserProc->GetName().c_str(), "Print" ) == 0 ){
|
---|
[3] | 88 | Opcode_Print(Parameter,0);
|
---|
[76] | 89 | return true;
|
---|
[3] | 90 | }
|
---|
[75] | 91 | if( lstrcmpi( pUserProc->GetName().c_str(), "Input" ) == 0 ){
|
---|
[3] | 92 | Opcode_Input(Parameter);
|
---|
[76] | 93 | return true;
|
---|
[3] | 94 | }
|
---|
[75] | 95 | if( lstrcmpi( pUserProc->GetName().c_str(), "Write" ) == 0 ){
|
---|
[3] | 96 | Opcode_Print(Parameter,1);
|
---|
[76] | 97 | return true;
|
---|
[3] | 98 | }
|
---|
| 99 | }
|
---|
| 100 |
|
---|
[75] | 101 | pUserProc->Using();
|
---|
[3] | 102 |
|
---|
[47] | 103 | bool isStatic = false;
|
---|
[76] | 104 | const CClass *pobj_c = NULL;
|
---|
[135] | 105 | const CMethod *pMethod = NULL;
|
---|
[75] | 106 | if( pUserProc->GetParentClassPtr() ){
|
---|
[3] | 107 | //クラスのメンバ関数を呼び出す場合はアクセスチェックを行う
|
---|
[97] | 108 | if(ObjectName[0] && (dwFlags&PROCFLAG_NEW)==0){
|
---|
[3] | 109 | if(lstrcmpi(ObjectName,"Super")==0){
|
---|
[27] | 110 | //クラスメンバ関数内から基底クラスの呼び出し
|
---|
[206] | 111 | pobj_c=compiler.pCompilingClass;
|
---|
[3] | 112 | }
|
---|
| 113 | else{
|
---|
[47] | 114 | //"->"によってオブジェクトを指定する通常のメンバ関数呼び出し
|
---|
[76] | 115 | Type varType;
|
---|
| 116 | GetVarType( ObjectName, varType, false );
|
---|
| 117 | pobj_c = &varType.GetClass();
|
---|
| 118 | if( NATURAL_TYPE( varType.GetBasicType() ) != DEF_OBJECT ){
|
---|
[265] | 119 | pobj_c=compiler.GetObjectModule().meta.GetClasses().Find(ObjectName);
|
---|
[47] | 120 | if( pobj_c ){
|
---|
| 121 | isStatic = true;
|
---|
| 122 | }
|
---|
| 123 | else{
|
---|
| 124 | SetError(300,NULL,cp);
|
---|
| 125 | }
|
---|
[3] | 126 | }
|
---|
| 127 | }
|
---|
| 128 | }
|
---|
| 129 | else{
|
---|
| 130 | if(dwFlags&PROCFLAG_NEW){
|
---|
| 131 | //New演算子によるコンストラクタ呼び出し
|
---|
[75] | 132 | pobj_c=pUserProc->GetParentClassPtr();
|
---|
[3] | 133 | }
|
---|
| 134 | else{
|
---|
| 135 | //クラスメンバ関数内から同一クラスのメンバ関数の呼び出し
|
---|
[206] | 136 | pobj_c=compiler.pCompilingClass;
|
---|
[3] | 137 | }
|
---|
| 138 | }
|
---|
| 139 |
|
---|
| 140 |
|
---|
[18] | 141 | /////////////////////////////////
|
---|
| 142 | // メソッド情報を取得
|
---|
| 143 | /////////////////////////////////
|
---|
[27] | 144 | pMethod = NULL;
|
---|
[135] | 145 | if( ! isStatic ) pMethod = pobj_c->GetMethods().GetMethodPtr( pUserProc );
|
---|
[27] | 146 | if( ! pMethod ){
|
---|
[18] | 147 | //動的メソッドが取得できなかったときは静的メソッドを当たる
|
---|
[135] | 148 | pMethod = pobj_c->GetStaticMethods().GetMethodPtr( pUserProc );
|
---|
[18] | 149 | if( !pMethod ){
|
---|
| 150 | SetError(300,NULL,cp);
|
---|
[76] | 151 | return false;
|
---|
[3] | 152 | }
|
---|
[26] | 153 |
|
---|
| 154 | //静的メンバ
|
---|
[47] | 155 | isStatic = true;
|
---|
[3] | 156 | }
|
---|
| 157 |
|
---|
| 158 |
|
---|
| 159 | //////////////////////////////
|
---|
| 160 | // アクセスエラーチェック
|
---|
| 161 | //////////////////////////////
|
---|
| 162 |
|
---|
| 163 | if(ObjectName[0]){
|
---|
| 164 | //外部からの呼び出し
|
---|
[206] | 165 | if(pobj_c==compiler.pCompilingClass){
|
---|
[3] | 166 | //同一クラスオブジェクトの場合はプライベートアクセスを容認する
|
---|
[137] | 167 | if( pMethod->IsNoneAccess() ){
|
---|
[75] | 168 | SetError(109,pUserProc->GetName(),cp);
|
---|
[76] | 169 | return false;
|
---|
[3] | 170 | }
|
---|
| 171 | }
|
---|
| 172 | else{
|
---|
[137] | 173 | if( pMethod->IsPrivate()
|
---|
| 174 | || pMethod->IsNoneAccess() ){
|
---|
[75] | 175 | SetError(109,pUserProc->GetName(),cp);
|
---|
[76] | 176 | return false;
|
---|
[3] | 177 | }
|
---|
[137] | 178 | if( pMethod->IsProtected() ){
|
---|
[75] | 179 | SetError(110,pUserProc->GetName(),cp);
|
---|
[76] | 180 | return false;
|
---|
[3] | 181 | }
|
---|
| 182 | }
|
---|
| 183 | }
|
---|
| 184 | else{
|
---|
| 185 | //クラス内部からの呼び出し(継承によるACCESS_NONのみをエラーとする)
|
---|
[137] | 186 | if( pMethod->IsNoneAccess() ){
|
---|
[75] | 187 | SetError(109,pUserProc->GetName(),cp);
|
---|
[76] | 188 | return false;
|
---|
[3] | 189 | }
|
---|
| 190 | }
|
---|
| 191 | }
|
---|
| 192 |
|
---|
| 193 |
|
---|
| 194 | ///////////////////////////////////////////////////////////////
|
---|
[64] | 195 | // _System_LocalThisのダミーをセット
|
---|
[3] | 196 | ///////////////////////////////////////////////////////////////
|
---|
| 197 |
|
---|
| 198 | char temporary[VN_SIZE]={0};
|
---|
[75] | 199 | if( pUserProc->GetParentClassPtr() && isStatic == false ){
|
---|
[3] | 200 | //_System_LocalThis(第一パラメータ)のダミーを作成
|
---|
| 201 | lstrcpy(temporary,"0,");
|
---|
| 202 | }
|
---|
| 203 |
|
---|
| 204 | if(Parameter[0]=='\0'&&temporary[0])
|
---|
| 205 | temporary[lstrlen(temporary)-1]=0;
|
---|
| 206 | else lstrcat(temporary,Parameter);
|
---|
| 207 |
|
---|
| 208 |
|
---|
| 209 | ////////////////////////
|
---|
| 210 | // パラメータをセット
|
---|
| 211 | ////////////////////////
|
---|
| 212 |
|
---|
| 213 | //パラメータオブジェクトを生成
|
---|
[71] | 214 | ParamImpl *pobj_parameter=0;
|
---|
| 215 | pobj_parameter=new ParamImpl(temporary);
|
---|
[3] | 216 |
|
---|
[77] | 217 | // デフォルト引数を適用
|
---|
| 218 | pobj_parameter->ApplyDefaultParameters( pUserProc->RealParams() );
|
---|
| 219 |
|
---|
[3] | 220 | //エラーチェック
|
---|
[75] | 221 | if( !pobj_parameter->ErrorCheck(pUserProc->GetName(),pUserProc->RealParams(),pUserProc->GetSecondParmNum() ) ){
|
---|
[31] | 222 | //パラメータにエラーがあるときは処理を終える
|
---|
[76] | 223 | return false;
|
---|
[31] | 224 | }
|
---|
[3] | 225 |
|
---|
[75] | 226 | if(pUserProc->IsMacro()){
|
---|
[3] | 227 | //マクロ関数の場合は、パラメータ省略を考慮する
|
---|
[75] | 228 | pobj_parameter->MacroParameterSupport( pUserProc->RealParams() );
|
---|
[3] | 229 | }
|
---|
| 230 |
|
---|
[20] | 231 | //一時オブジェクトを生成
|
---|
[75] | 232 | int tempSize = pobj_parameter->NewTempParameters( pUserProc->GetName(),pUserProc->RealParams(),pUserProc->GetRealSecondParmNum() );
|
---|
[20] | 233 |
|
---|
[3] | 234 | //レジスタ、スタックフレームにセット
|
---|
[75] | 235 | int ParmSize = pobj_parameter->SetParameter(pUserProc->GetName(),pUserProc->RealParams(),pUserProc->GetRealSecondParmNum() );
|
---|
[3] | 236 |
|
---|
[75] | 237 | if(pUserProc->ReturnType().IsStruct() ){
|
---|
[3] | 238 | //////////////////////////////////////////////////////
|
---|
[64] | 239 | // 戻り値に構造体インスタンスを持つ場合
|
---|
| 240 | // ※ByRef _System_ReturnValue パラメータをセット
|
---|
[3] | 241 | //////////////////////////////////////////////////////
|
---|
| 242 |
|
---|
[75] | 243 | int object_size = pUserProc->ReturnType().GetClass().GetSize();
|
---|
[3] | 244 |
|
---|
| 245 | //push object_size
|
---|
[225] | 246 | compiler.codeGenerator.op_push_V(object_size);
|
---|
[3] | 247 |
|
---|
| 248 | //call calloc
|
---|
[206] | 249 | extern const UserProc *pSub_calloc;
|
---|
[225] | 250 | compiler.codeGenerator.op_call(pSub_calloc);
|
---|
[3] | 251 |
|
---|
| 252 | //push eax
|
---|
[225] | 253 | compiler.codeGenerator.op_push(REG_EAX);
|
---|
[3] | 254 | }
|
---|
| 255 |
|
---|
| 256 |
|
---|
[75] | 257 | if( pUserProc->GetParentClassPtr() && isStatic == false ){
|
---|
[3] | 258 | //////////////////////////////////////////////////////
|
---|
| 259 | // メンバ関数の場合
|
---|
| 260 | // ※_System_LocalThis パラメータをセット
|
---|
| 261 | //////////////////////////////////////////////////////
|
---|
| 262 |
|
---|
[97] | 263 | if(ObjectName[0] && (dwFlags&PROCFLAG_NEW)==0){
|
---|
[3] | 264 | if(lstrcmpi(ObjectName,"Super")==0) goto InClassMember;
|
---|
[18] | 265 | else{
|
---|
| 266 | RELATIVE_VAR RelativeVar;
|
---|
[135] | 267 | if( pMethod->IsConst() ){
|
---|
[18] | 268 | //Constアクセスが可能なメソッドの場合
|
---|
[76] | 269 | if( !GetVarOffsetReadOnly( ObjectName, &RelativeVar, Type() ) ){
|
---|
| 270 | return false;
|
---|
| 271 | }
|
---|
[18] | 272 | }
|
---|
| 273 | else{
|
---|
| 274 | //Constアクセスが不可能なメソッドの場合
|
---|
[76] | 275 | if( !GetVarOffsetReadWrite( ObjectName, &RelativeVar, Type() ) ){
|
---|
| 276 | return false;
|
---|
| 277 | }
|
---|
[18] | 278 | }
|
---|
[3] | 279 |
|
---|
[18] | 280 | SetVarPtrToEax(&RelativeVar);
|
---|
[3] | 281 |
|
---|
[64] | 282 | // 参照を実体ポインタにする
|
---|
[225] | 283 | compiler.codeGenerator.op_mov_RM( sizeof(long), REG_ECX, REG_EAX, 0, MOD_BASE );
|
---|
[3] | 284 | }
|
---|
| 285 | }
|
---|
| 286 | else{
|
---|
| 287 | InClassMember:
|
---|
| 288 | if(dwFlags&PROCFLAG_NEW){
|
---|
| 289 | //New演算子によるコンストラクタ呼び出しの場合
|
---|
[64] | 290 |
|
---|
[3] | 291 | //mov ecx,dword ptr[esp+ParmSize]
|
---|
[225] | 292 | compiler.codeGenerator.op_mov_RM( sizeof(long), REG_ECX, REG_ESP, ParmSize + tempSize, MOD_BASE_DISP32 );
|
---|
[3] | 293 | }
|
---|
| 294 | else{
|
---|
| 295 | //Thisポインタをecxにコピー
|
---|
| 296 | SetThisPtrToReg(REG_ECX);
|
---|
| 297 | }
|
---|
| 298 | }
|
---|
| 299 |
|
---|
| 300 | //push ecx
|
---|
[225] | 301 | compiler.codeGenerator.op_push(REG_ECX);
|
---|
[3] | 302 | }
|
---|
| 303 |
|
---|
[75] | 304 | if( pUserProc->IsVirtual() ){
|
---|
[3] | 305 | //仮想関数(オブジェクトメソッド)呼び出し
|
---|
| 306 | //pObj->func_table->func1
|
---|
| 307 | // ->func2
|
---|
| 308 | // ->func3
|
---|
| 309 |
|
---|
| 310 | //mov edx,dword ptr[ecx]
|
---|
[235] | 311 | compiler.codeGenerator.op_mov_RM( sizeof(long), REG_EDX, REG_ECX, 0, MOD_BASE );
|
---|
[3] | 312 |
|
---|
[75] | 313 | i2 = pobj_c->GetFuncNumInVtbl( pUserProc );
|
---|
[3] | 314 |
|
---|
| 315 | //call dword ptr[edx+func_index]
|
---|
| 316 | if(i2*PTR_SIZE<=0x7F){
|
---|
[250] | 317 | compiler.codeGenerator.PutOld(
|
---|
| 318 | (char)0xFF,
|
---|
| 319 | (char)0x52,
|
---|
| 320 | (char)(i2*PTR_SIZE)
|
---|
| 321 | );
|
---|
[3] | 322 | }
|
---|
| 323 | else{
|
---|
[250] | 324 | compiler.codeGenerator.PutOld(
|
---|
| 325 | (char)0xFF,
|
---|
| 326 | (char)0x92
|
---|
| 327 | );
|
---|
| 328 | compiler.codeGenerator.PutOld( (long)(i2*PTR_SIZE), Schedule::None );
|
---|
[3] | 329 | }
|
---|
| 330 | }
|
---|
| 331 | else{
|
---|
| 332 | //通常呼び出し
|
---|
| 333 |
|
---|
| 334 | //call ProcAddr
|
---|
[225] | 335 | compiler.codeGenerator.op_call(pUserProc);
|
---|
[3] | 336 | }
|
---|
| 337 |
|
---|
[75] | 338 | if(pUserProc->IsCdecl()){
|
---|
[3] | 339 | //add esp,ParmSize
|
---|
[225] | 340 | compiler.codeGenerator.op_add_esp(ParmSize);
|
---|
[3] | 341 | }
|
---|
| 342 |
|
---|
[20] | 343 | //一時オブジェクトを破棄
|
---|
| 344 | pobj_parameter->DeleteTempParameters();
|
---|
| 345 |
|
---|
| 346 | //パラメータオブジェクトを破棄
|
---|
| 347 | delete pobj_parameter;
|
---|
[76] | 348 |
|
---|
| 349 | return true;
|
---|
[3] | 350 | }
|
---|
| 351 |
|
---|
[250] | 352 | bool Opcode_CallDllProc( const char *lpszParms, const DllProc *pDllProc ){
|
---|
[3] | 353 |
|
---|
| 354 | extern BOOL bDebugCompile;
|
---|
| 355 | extern BOOL bDebugSupportProc;
|
---|
[113] | 356 | if(bDebugCompile&&bDebugSupportProc==0&& pDllProc->IsEqualSymbol( "DebugBreak" ) ){
|
---|
[3] | 357 | Call_DebugSys_SaveContext();
|
---|
[75] | 358 | }
|
---|
[3] | 359 |
|
---|
| 360 |
|
---|
| 361 | ////////////////////////
|
---|
| 362 | // パラメータのセット
|
---|
| 363 | ////////////////////////
|
---|
| 364 |
|
---|
| 365 | //パラメータオブジェクトを生成
|
---|
[71] | 366 | ParamImpl *pobj_parameter=0;
|
---|
[76] | 367 | pobj_parameter=new ParamImpl(lpszParms);
|
---|
[3] | 368 |
|
---|
[77] | 369 | // デフォルト引数を適用
|
---|
| 370 | pobj_parameter->ApplyDefaultParameters( pDllProc->Params() );
|
---|
| 371 |
|
---|
[3] | 372 | //エラーチェック
|
---|
[75] | 373 | if( !pobj_parameter->ErrorCheck( pDllProc->GetName(), pDllProc->Params() ) ){
|
---|
[31] | 374 | //パラメータにエラーがあるときは処理を終える
|
---|
[76] | 375 | return false;
|
---|
[31] | 376 | }
|
---|
[3] | 377 |
|
---|
[45] | 378 | //一時オブジェクトを生成
|
---|
[75] | 379 | pobj_parameter->NewTempParameters( pDllProc->GetName(), pDllProc->Params() );
|
---|
[45] | 380 |
|
---|
[3] | 381 | //レジスタ、スタックフレームにセット
|
---|
[75] | 382 | int ParmSize = pobj_parameter->SetParameter(pDllProc->GetName(), pDllProc->Params() );
|
---|
[3] | 383 |
|
---|
| 384 |
|
---|
| 385 | //動的リンクされたプロシージャの呼び出し
|
---|
| 386 |
|
---|
| 387 | //call dword ptr[LookupTable]
|
---|
[250] | 388 | compiler.codeGenerator.op_call( pDllProc );
|
---|
[3] | 389 |
|
---|
[75] | 390 | if(pDllProc->IsCdecl()){
|
---|
[3] | 391 | //add esp,ParmSize
|
---|
[225] | 392 | compiler.codeGenerator.op_add_esp(ParmSize);
|
---|
[3] | 393 | }
|
---|
| 394 |
|
---|
[45] | 395 | //一時オブジェクトを破棄
|
---|
| 396 | pobj_parameter->DeleteTempParameters();
|
---|
| 397 |
|
---|
| 398 | //パラメータオブジェクトを破棄
|
---|
| 399 | delete pobj_parameter;
|
---|
| 400 |
|
---|
[76] | 401 | return true;
|
---|
[3] | 402 | }
|
---|