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