[206] | 1 | #include "stdafx.h"
|
---|
| 2 |
|
---|
[226] | 3 | #include <Compiler.h>
|
---|
| 4 |
|
---|
[3] | 5 | #include "../BasicCompiler_Common/common.h"
|
---|
| 6 | #include "Opcode.h"
|
---|
| 7 |
|
---|
[75] | 8 | void FreeTempObject(int reg,const CClass *pobj_c){
|
---|
[3] | 9 | if(!IsSafeReg(reg)) SetError(300,NULL,cp);
|
---|
| 10 |
|
---|
| 11 | ////////////////////////////////////////////////
|
---|
| 12 | // 演算過程で利用した一時オブジェクトを破棄
|
---|
| 13 | // Thisポインタをr14レジスタを介して渡す
|
---|
| 14 | ////////////////////////////////////////////////
|
---|
| 15 |
|
---|
[135] | 16 | const CMethod *method = pobj_c->GetDestructorMethod();
|
---|
[51] | 17 | if( method ){
|
---|
[3] | 18 | //mov rcx,reg
|
---|
[226] | 19 | compiler.codeGenerator.op_mov_RR(REG_RCX,reg);
|
---|
[3] | 20 |
|
---|
| 21 | //call DestructorProcAddr
|
---|
[226] | 22 | compiler.codeGenerator.op_call( &method->GetUserProc() );
|
---|
[3] | 23 | }
|
---|
| 24 |
|
---|
| 25 | //mov rcx,reg
|
---|
[226] | 26 | compiler.codeGenerator.op_mov_RR(REG_RCX,reg);
|
---|
[3] | 27 |
|
---|
| 28 | //call free
|
---|
[206] | 29 | extern const UserProc *pSub_free;
|
---|
[226] | 30 | compiler.codeGenerator.op_call(pSub_free);
|
---|
[3] | 31 | }
|
---|
| 32 |
|
---|
[436] | 33 | int CallOperatorProc(BYTE idCalc, const Type &baseType, int *type_stack,LONG_PTR *index_stack,bool isNeedHeapFreeStructureStack[],int &sp)
|
---|
[350] | 34 | {
|
---|
| 35 | Type leftType( type_stack[sp-2], index_stack[sp-2] );
|
---|
| 36 | Type rightType( type_stack[sp-1] & (~FLAG_CAST), index_stack[sp-1] );
|
---|
| 37 |
|
---|
[3] | 38 | //オーバーロードされたオペレータ関数を呼び出す
|
---|
[350] | 39 | const CClass *pobj_c = &leftType.GetClass();
|
---|
[3] | 40 |
|
---|
[206] | 41 | std::vector<const UserProc *> subs;
|
---|
[345] | 42 | pobj_c->GetDynamicMethods().Enum( idCalc, subs );
|
---|
[50] | 43 | if( subs.size() == 0 ){
|
---|
[3] | 44 | return 0;
|
---|
| 45 | }
|
---|
| 46 |
|
---|
| 47 |
|
---|
| 48 | //項の数
|
---|
| 49 | BOOL bTwoTerm=1;
|
---|
| 50 | if(idCalc==CALC_AS) bTwoTerm=0;
|
---|
| 51 |
|
---|
| 52 |
|
---|
| 53 | /////////////////////////////////////////////
|
---|
| 54 | // オーバーロード解決用のパラメータを設定
|
---|
| 55 | /////////////////////////////////////////////
|
---|
| 56 |
|
---|
[75] | 57 | Parameters params;
|
---|
[3] | 58 |
|
---|
[350] | 59 | if(bTwoTerm)
|
---|
| 60 | {
|
---|
| 61 | params.push_back( new Parameter( "", rightType ) );
|
---|
[3] | 62 | }
|
---|
| 63 |
|
---|
| 64 | //オーバーロードを解決
|
---|
| 65 | char temporary[255];
|
---|
| 66 | if(idCalc==CALC_EQUAL) lstrcpy(temporary,"==");
|
---|
| 67 | else GetCalcName(idCalc,temporary);
|
---|
[425] | 68 | const UserProc *pUserProc = OverloadSolution( temporary, subs, params, baseType, leftType );
|
---|
[3] | 69 |
|
---|
[75] | 70 | if(!pUserProc){
|
---|
| 71 | if(bTwoTerm){
|
---|
| 72 | delete params[0];
|
---|
| 73 | }
|
---|
[3] | 74 | return -1;
|
---|
| 75 | }
|
---|
| 76 | else{
|
---|
| 77 | //オーバーロードされていないが、パラメータ個数が一致しないとき
|
---|
[75] | 78 | if(params.size()!=pUserProc->Params().size()){
|
---|
| 79 | if(bTwoTerm){
|
---|
| 80 | delete params[0];
|
---|
| 81 | }
|
---|
[3] | 82 | return -1;
|
---|
| 83 | }
|
---|
| 84 | }
|
---|
| 85 |
|
---|
[76] | 86 | for(int i=0;i<(int)params.size();i++){
|
---|
[3] | 87 | CheckDifferentType(
|
---|
[308] | 88 | *pUserProc->Params()[i],
|
---|
| 89 | *params[i],
|
---|
[448] | 90 | NULL,
|
---|
[3] | 91 | i);
|
---|
| 92 | }
|
---|
| 93 |
|
---|
[75] | 94 | if(bTwoTerm){
|
---|
| 95 | delete params[0];
|
---|
| 96 | }
|
---|
[3] | 97 |
|
---|
[350] | 98 | int right_side_size = rightType.GetSize();
|
---|
[75] | 99 |
|
---|
[3] | 100 | if(bTwoTerm){
|
---|
[75] | 101 | if( pUserProc->RealParams()[1]->IsStruct() &&pUserProc->RealParams()[1]->IsRef() == false ){
|
---|
[3] | 102 | //一時オブジェクトはメソッド内で破棄される
|
---|
[436] | 103 | isNeedHeapFreeStructureStack[sp-1] = false;
|
---|
[3] | 104 | }
|
---|
| 105 | }
|
---|
| 106 |
|
---|
[75] | 107 |
|
---|
| 108 | if( pUserProc->ReturnType().IsStruct() ){
|
---|
[3] | 109 | //////////////////////////////////////////////////////
|
---|
[64] | 110 | // 戻り値に構造体インスタンスを持つ場合
|
---|
| 111 | // ※ByRef _System_ReturnValue パラメータ用領域を取得
|
---|
[3] | 112 | //////////////////////////////////////////////////////
|
---|
| 113 |
|
---|
| 114 |
|
---|
| 115 | //////////////////////////////////////////////////////
|
---|
| 116 | ///// レジスタ資源のバックアップ
|
---|
| 117 | { BACKUP_REGISTER_RESOURCE
|
---|
| 118 | //////////////////////////////////////////////////////
|
---|
| 119 |
|
---|
[75] | 120 | int object_size = pUserProc->ReturnType().GetClass().GetSize();
|
---|
[3] | 121 |
|
---|
| 122 | //mov rcx,object_size
|
---|
[226] | 123 | compiler.codeGenerator.op_mov_RV(sizeof(_int64),REG_RCX,object_size);
|
---|
[3] | 124 |
|
---|
| 125 | //call calloc
|
---|
[206] | 126 | extern const UserProc *pSub_calloc;
|
---|
[226] | 127 | compiler.codeGenerator.op_call(pSub_calloc);
|
---|
[3] | 128 |
|
---|
| 129 | //mov r13,rax
|
---|
[226] | 130 | compiler.codeGenerator.op_mov_RR(REG_R13,REG_RAX);
|
---|
[3] | 131 |
|
---|
| 132 | /////////////////////////////////////////////
|
---|
| 133 | ////// レジスタ資源を復元
|
---|
| 134 | RESTORE_REGISTER_RESOURCE
|
---|
| 135 | }////////////////////////////////////////////
|
---|
| 136 | }
|
---|
| 137 |
|
---|
| 138 | int reg1,reg2;
|
---|
| 139 | if(bTwoTerm){
|
---|
| 140 | //右の項(実数の場合が未完成)
|
---|
[75] | 141 | SetOneTermToReg_Whole64Calc(type_stack[sp-1],®2);
|
---|
[3] | 142 | pobj_reg->UnlockReg();
|
---|
[75] | 143 | if( !pUserProc->RealParams()[1]->IsRef() == false ){
|
---|
[64] | 144 | //一時参照を作成
|
---|
| 145 | pobj_sf->push( reg2 );
|
---|
| 146 | pobj_sf->mov_sp( reg2 );
|
---|
| 147 | }
|
---|
[3] | 148 | }
|
---|
| 149 |
|
---|
| 150 | //左の項
|
---|
| 151 | SetOneTermToReg_Whole64Calc(DEF_INT64,®1);
|
---|
| 152 | pobj_reg->UnlockReg();
|
---|
| 153 |
|
---|
| 154 | //ヒープ解放用に退避
|
---|
[436] | 155 | if(isNeedHeapFreeStructureStack[sp-1]){
|
---|
[3] | 156 | //mov qword ptr[rsp+offset],reg2 ※スタックフレームを利用
|
---|
| 157 | pobj_sf->push(reg2);
|
---|
| 158 | }
|
---|
[436] | 159 | if(isNeedHeapFreeStructureStack[sp-2]){
|
---|
[3] | 160 | //mov qword ptr[rsp+offset],reg1 ※スタックフレームを利用
|
---|
| 161 | pobj_sf->push(reg1);
|
---|
| 162 | }
|
---|
| 163 |
|
---|
| 164 |
|
---|
| 165 |
|
---|
| 166 | //////////////////////////////////////////////////////
|
---|
| 167 | ///// レジスタ資源のバックアップ
|
---|
| 168 | { BACKUP_REGISTER_RESOURCE
|
---|
| 169 | //////////////////////////////////////////////////////
|
---|
| 170 |
|
---|
| 171 | if(reg1==REG_RDX||reg1==REG_R8){
|
---|
| 172 | //mov r14,reg1
|
---|
[226] | 173 | compiler.codeGenerator.op_mov_RR(REG_R14,reg1);
|
---|
[3] | 174 | reg1=REG_R14;
|
---|
| 175 | }
|
---|
| 176 |
|
---|
| 177 |
|
---|
| 178 | if(bTwoTerm){
|
---|
[75] | 179 | if( pUserProc->ReturnType().IsStruct() ){
|
---|
[3] | 180 | //mov r8,reg2
|
---|
[226] | 181 | compiler.codeGenerator.op_mov_RR(REG_R8,reg2);
|
---|
[3] | 182 | }
|
---|
| 183 | else{
|
---|
| 184 | //mov rdx,reg2
|
---|
[226] | 185 | compiler.codeGenerator.op_mov_RR(REG_RDX,reg2);
|
---|
[3] | 186 | }
|
---|
| 187 | }
|
---|
| 188 |
|
---|
[75] | 189 | if( pUserProc->ReturnType().IsStruct() ){
|
---|
[3] | 190 | //mov rdx,r13
|
---|
[226] | 191 | compiler.codeGenerator.op_mov_RR(REG_RDX,REG_R13);
|
---|
[3] | 192 | }
|
---|
| 193 |
|
---|
| 194 | //mov rcx,reg1
|
---|
[226] | 195 | compiler.codeGenerator.op_mov_RR(REG_RCX,reg1);
|
---|
[3] | 196 |
|
---|
| 197 | //call operator_proc
|
---|
[226] | 198 | compiler.codeGenerator.op_call(pUserProc);
|
---|
[3] | 199 |
|
---|
[75] | 200 | if( !pUserProc->ReturnType().IsNull() ){
|
---|
[3] | 201 | //戻り値を一時的に退避
|
---|
| 202 |
|
---|
| 203 | //mov r13,rax
|
---|
[226] | 204 | compiler.codeGenerator.op_mov_RR(REG_R13,REG_RAX);
|
---|
[3] | 205 | }
|
---|
| 206 |
|
---|
| 207 |
|
---|
| 208 | /////////////////////////////////////////////
|
---|
| 209 | ////// レジスタ資源を復元
|
---|
| 210 | RESTORE_REGISTER_RESOURCE
|
---|
| 211 | }////////////////////////////////////////////
|
---|
| 212 |
|
---|
| 213 |
|
---|
| 214 |
|
---|
[436] | 215 | if( isNeedHeapFreeStructureStack[sp-2] || isNeedHeapFreeStructureStack[sp-1] )
|
---|
| 216 | {
|
---|
[3] | 217 | //////////////////////////////////////////////////////
|
---|
| 218 | ///// レジスタ資源のバックアップ
|
---|
| 219 | { BACKUP_REGISTER_RESOURCE
|
---|
| 220 | //////////////////////////////////////////////////////
|
---|
| 221 |
|
---|
[436] | 222 | if( isNeedHeapFreeStructureStack[sp-2] )
|
---|
| 223 | {
|
---|
[3] | 224 | //mov r14,qword ptr[rsp+offset] ※スタックフレームを利用
|
---|
| 225 | pobj_sf->pop(REG_R14);
|
---|
| 226 |
|
---|
| 227 | FreeTempObject(REG_R14,(CClass *)index_stack[sp-2]);
|
---|
| 228 | }
|
---|
[436] | 229 | if( isNeedHeapFreeStructureStack[sp-1] )
|
---|
| 230 | {
|
---|
[3] | 231 | //mov r14,qword ptr[rsp+offset] ※スタックフレームを利用
|
---|
| 232 | pobj_sf->pop(REG_R14);
|
---|
| 233 |
|
---|
| 234 | FreeTempObject(REG_R14,(CClass *)index_stack[sp-1]);
|
---|
| 235 | }
|
---|
| 236 |
|
---|
| 237 | /////////////////////////////////////////////
|
---|
| 238 | ////// レジスタ資源を復元
|
---|
| 239 | RESTORE_REGISTER_RESOURCE
|
---|
| 240 | }////////////////////////////////////////////
|
---|
| 241 | }
|
---|
| 242 |
|
---|
[64] | 243 | if(bTwoTerm){
|
---|
[75] | 244 | if( !pUserProc->RealParams()[1]->IsRef() == false ){
|
---|
[64] | 245 | //一時参照を破棄
|
---|
| 246 | pobj_sf->pop();
|
---|
| 247 | }
|
---|
| 248 | }
|
---|
| 249 |
|
---|
[75] | 250 | if( !pUserProc->ReturnType().IsNull() ){
|
---|
[3] | 251 | //戻り値をreg1にセット
|
---|
| 252 | reg1=pobj_reg->LockReg();
|
---|
| 253 |
|
---|
| 254 | //mov reg1,r13
|
---|
[226] | 255 | compiler.codeGenerator.op_mov_RR(reg1,REG_R13);
|
---|
[3] | 256 | }
|
---|
| 257 |
|
---|
| 258 | sp--;
|
---|
[75] | 259 | type_stack[sp-1]=pUserProc->ReturnType().GetBasicType();
|
---|
| 260 | index_stack[sp-1]=pUserProc->ReturnType().GetIndex();
|
---|
[3] | 261 |
|
---|
[436] | 262 | if( pUserProc->ReturnType().IsStruct() )
|
---|
| 263 | {
|
---|
[64] | 264 | //構造体が戻ったときはヒープ領域にインスタンスが格納されている
|
---|
[3] | 265 | //※後にfreeする必要あり
|
---|
[436] | 266 | isNeedHeapFreeStructureStack[sp-1] = true;
|
---|
[3] | 267 | }
|
---|
[436] | 268 | else
|
---|
| 269 | {
|
---|
| 270 | isNeedHeapFreeStructureStack[sp-1] = false;
|
---|
| 271 | }
|
---|
[3] | 272 |
|
---|
| 273 | return 1;
|
---|
| 274 | }
|
---|
| 275 |
|
---|
[75] | 276 | void CallCastOperatorProc(int reg,Type &calcType,BOOL bCalcUseHeap,const Type &toType){
|
---|
| 277 | int type_stack[10];
|
---|
[3] | 278 | LONG_PTR index_stack[10];
|
---|
[436] | 279 | bool array_bUseHeap[10];
|
---|
[3] | 280 | int sp=2;
|
---|
| 281 | int iRet;
|
---|
| 282 |
|
---|
| 283 |
|
---|
| 284 | //////////////////////////////////////////////////////
|
---|
| 285 | ///// レジスタ資源のバックアップ
|
---|
| 286 | { BACKUP_REGISTER_RESOURCE
|
---|
| 287 | //////////////////////////////////////////////////////
|
---|
| 288 |
|
---|
| 289 | //regを第一項目としてロック
|
---|
| 290 | pobj_reg=new CRegister(reg);
|
---|
| 291 | pobj_reg->LockReg();
|
---|
| 292 |
|
---|
| 293 | if(bCalcUseHeap){
|
---|
| 294 | //未解放のインスタンスが存在する旨を示す警告
|
---|
| 295 | SetError(-105,NULL,cp);
|
---|
| 296 | }
|
---|
| 297 |
|
---|
| 298 | //左辺
|
---|
[75] | 299 | type_stack[0]=calcType.GetBasicType();
|
---|
| 300 | index_stack[0]=calcType.GetIndex();
|
---|
[3] | 301 | array_bUseHeap[0]=0;
|
---|
[75] | 302 | type_stack[1]=toType.GetBasicType();
|
---|
| 303 | index_stack[1]=toType.GetIndex();
|
---|
[3] | 304 | array_bUseHeap[1]=0;
|
---|
| 305 |
|
---|
[75] | 306 | iRet=CallOperatorProc(CALC_AS,toType,type_stack,index_stack,array_bUseHeap,sp);
|
---|
[3] | 307 |
|
---|
| 308 | pobj_reg->UnlockReg();
|
---|
| 309 |
|
---|
| 310 | /////////////////////////////////////////////
|
---|
| 311 | ////// レジスタ資源を復元
|
---|
| 312 | RESTORE_REGISTER_RESOURCE
|
---|
| 313 | }////////////////////////////////////////////
|
---|
| 314 |
|
---|
| 315 |
|
---|
| 316 | if(iRet==1){
|
---|
| 317 | //成功したとき
|
---|
[75] | 318 | calcType.SetType( type_stack[0], index_stack[0] );
|
---|
[3] | 319 | return;
|
---|
| 320 | }
|
---|
| 321 | else if(iRet==-1){
|
---|
| 322 | //エラーが発行されたとき
|
---|
| 323 | return;
|
---|
| 324 | }
|
---|
| 325 |
|
---|
| 326 | //エラーを発行
|
---|
| 327 | SetError(-1,"キャスト演算子がオーバーロードされていません。",cp);
|
---|
| 328 | }
|
---|
| 329 |
|
---|
[38] | 330 | //インデクサ(getter)を呼び出す
|
---|
[339] | 331 | void CallIndexerGetterProc(int reg, const Type &classType, const char *ObjectName,char *Parameter,Type &resultType, DWORD dwProcFlags ){
|
---|
[3] | 332 |
|
---|
[206] | 333 | std::vector<const UserProc *> subs;
|
---|
[345] | 334 | classType.GetClass().GetDynamicMethods().Enum( CALC_ARRAY_GET, subs );
|
---|
[50] | 335 | if( subs.size() == 0 ){
|
---|
[3] | 336 | return;
|
---|
| 337 | }
|
---|
| 338 |
|
---|
[316] | 339 | const UserProc *pUserProc = subs[0];
|
---|
| 340 |
|
---|
[3] | 341 | //////////////////////////////////////////////////////
|
---|
| 342 | ///// レジスタ資源のバックアップ
|
---|
| 343 | { BACKUP_REGISTER_RESOURCE
|
---|
| 344 | //////////////////////////////////////////////////////
|
---|
| 345 |
|
---|
[339] | 346 | Opcode_CallProc(Parameter,pUserProc,dwProcFlags,ObjectName);
|
---|
[316] | 347 | resultType = pUserProc->ReturnType();
|
---|
[3] | 348 |
|
---|
| 349 | //mov reg,rax
|
---|
[226] | 350 | compiler.codeGenerator.op_mov_RR(reg,REG_RAX);
|
---|
[3] | 351 |
|
---|
| 352 | /////////////////////////////////////////////
|
---|
| 353 | ////// レジスタ資源を復元
|
---|
| 354 | RESTORE_REGISTER_RESOURCE
|
---|
| 355 | }////////////////////////////////////////////
|
---|
| 356 |
|
---|
[316] | 357 |
|
---|
| 358 | // 型パラメータを解決
|
---|
| 359 | ResolveFormalGenericTypeParameter( resultType, classType, pUserProc );
|
---|
[3] | 360 | }
|
---|