[206] | 1 | #include "stdafx.h"
|
---|
| 2 |
|
---|
| 3 | #include <jenga/include/smoothie/LexicalAnalysis.h>
|
---|
| 4 |
|
---|
[226] | 5 | #include <Compiler.h>
|
---|
| 6 |
|
---|
[3] | 7 | #include "../BasicCompiler_Common/common.h"
|
---|
| 8 | #include "Opcode.h"
|
---|
| 9 |
|
---|
[75] | 10 | void FreeTempObject(int reg,const CClass *pobj_c){
|
---|
[3] | 11 | if(!IsSafeReg(reg)) SetError(300,NULL,cp);
|
---|
| 12 |
|
---|
| 13 | ////////////////////////////////////////////////
|
---|
| 14 | // 演算過程で利用した一時オブジェクトを破棄
|
---|
| 15 | // Thisポインタをr14レジスタを介して渡す
|
---|
| 16 | ////////////////////////////////////////////////
|
---|
| 17 |
|
---|
[135] | 18 | const CMethod *method = pobj_c->GetDestructorMethod();
|
---|
[51] | 19 | if( method ){
|
---|
[3] | 20 | //mov rcx,reg
|
---|
[226] | 21 | compiler.codeGenerator.op_mov_RR(REG_RCX,reg);
|
---|
[3] | 22 |
|
---|
| 23 | //call DestructorProcAddr
|
---|
[226] | 24 | compiler.codeGenerator.op_call( &method->GetUserProc() );
|
---|
[3] | 25 | }
|
---|
| 26 |
|
---|
| 27 | //mov rcx,reg
|
---|
[226] | 28 | compiler.codeGenerator.op_mov_RR(REG_RCX,reg);
|
---|
[3] | 29 |
|
---|
| 30 | //call free
|
---|
[206] | 31 | extern const UserProc *pSub_free;
|
---|
[226] | 32 | compiler.codeGenerator.op_call(pSub_free);
|
---|
[3] | 33 | }
|
---|
| 34 |
|
---|
[206] | 35 | int CallOperatorProc(BYTE idCalc, const Type &baseType, int *type_stack,LONG_PTR *index_stack,BOOL *bUseHeap,int &sp){
|
---|
[3] | 36 | //オーバーロードされたオペレータ関数を呼び出す
|
---|
| 37 | CClass *pobj_c;
|
---|
| 38 | pobj_c=(CClass *)index_stack[sp-2];
|
---|
| 39 |
|
---|
[206] | 40 | std::vector<const UserProc *> subs;
|
---|
[135] | 41 | pobj_c->GetMethods().Enum( idCalc, subs );
|
---|
[50] | 42 | if( subs.size() == 0 ){
|
---|
[3] | 43 | return 0;
|
---|
| 44 | }
|
---|
| 45 |
|
---|
| 46 |
|
---|
| 47 | //項の数
|
---|
| 48 | BOOL bTwoTerm=1;
|
---|
| 49 | if(idCalc==CALC_AS) bTwoTerm=0;
|
---|
| 50 |
|
---|
| 51 |
|
---|
| 52 | /////////////////////////////////////////////
|
---|
| 53 | // オーバーロード解決用のパラメータを設定
|
---|
| 54 | /////////////////////////////////////////////
|
---|
| 55 |
|
---|
[75] | 56 | Parameters params;
|
---|
[3] | 57 |
|
---|
| 58 | if(bTwoTerm){
|
---|
[75] | 59 | params.push_back( new Parameter( "", Type( type_stack[sp-1], index_stack[sp-1] ) ) );
|
---|
[3] | 60 | }
|
---|
| 61 |
|
---|
| 62 | //オーバーロードを解決
|
---|
| 63 | char temporary[255];
|
---|
| 64 | if(idCalc==CALC_EQUAL) lstrcpy(temporary,"==");
|
---|
| 65 | else GetCalcName(idCalc,temporary);
|
---|
[206] | 66 | const UserProc *pUserProc = OverloadSolution( temporary, subs, params, baseType );
|
---|
[3] | 67 |
|
---|
[75] | 68 | if(!pUserProc){
|
---|
| 69 | if(bTwoTerm){
|
---|
| 70 | delete params[0];
|
---|
| 71 | }
|
---|
[3] | 72 | return -1;
|
---|
| 73 | }
|
---|
| 74 | else{
|
---|
| 75 | //オーバーロードされていないが、パラメータ個数が一致しないとき
|
---|
[75] | 76 | if(params.size()!=pUserProc->Params().size()){
|
---|
| 77 | if(bTwoTerm){
|
---|
| 78 | delete params[0];
|
---|
| 79 | }
|
---|
[3] | 80 | return -1;
|
---|
| 81 | }
|
---|
| 82 | }
|
---|
| 83 |
|
---|
[76] | 84 | for(int i=0;i<(int)params.size();i++){
|
---|
[3] | 85 | CheckDifferentType(
|
---|
[75] | 86 | pUserProc->Params()[i]->GetBasicType(),
|
---|
| 87 | pUserProc->Params()[i]->GetIndex(),
|
---|
| 88 | params[i]->GetBasicType(),
|
---|
| 89 | params[i]->GetIndex(),
|
---|
[3] | 90 | "",
|
---|
| 91 | i);
|
---|
| 92 | }
|
---|
| 93 |
|
---|
[75] | 94 | if(bTwoTerm){
|
---|
| 95 | delete params[0];
|
---|
| 96 | }
|
---|
[3] | 97 |
|
---|
[75] | 98 | int right_side_size = GetTypeSize(type_stack[sp-1],index_stack[sp-1]);
|
---|
| 99 |
|
---|
[3] | 100 | if(bTwoTerm){
|
---|
[75] | 101 | if( pUserProc->RealParams()[1]->IsStruct() &&pUserProc->RealParams()[1]->IsRef() == false ){
|
---|
[3] | 102 | //一時オブジェクトはメソッド内で破棄される
|
---|
| 103 | bUseHeap[sp-1]=0;
|
---|
| 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 | //ヒープ解放用に退避
|
---|
| 155 | if(bUseHeap[sp-1]){
|
---|
| 156 | //mov qword ptr[rsp+offset],reg2 ※スタックフレームを利用
|
---|
| 157 | pobj_sf->push(reg2);
|
---|
| 158 | }
|
---|
| 159 | if(bUseHeap[sp-2]){
|
---|
| 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 |
|
---|
| 215 | if(bUseHeap[sp-2]||bUseHeap[sp-1]){
|
---|
| 216 |
|
---|
| 217 | //////////////////////////////////////////////////////
|
---|
| 218 | ///// レジスタ資源のバックアップ
|
---|
| 219 | { BACKUP_REGISTER_RESOURCE
|
---|
| 220 | //////////////////////////////////////////////////////
|
---|
| 221 |
|
---|
| 222 | if(bUseHeap[sp-2]){
|
---|
| 223 | //mov r14,qword ptr[rsp+offset] ※スタックフレームを利用
|
---|
| 224 | pobj_sf->pop(REG_R14);
|
---|
| 225 |
|
---|
| 226 | FreeTempObject(REG_R14,(CClass *)index_stack[sp-2]);
|
---|
| 227 | }
|
---|
| 228 | if(bUseHeap[sp-1]){
|
---|
| 229 | //mov r14,qword ptr[rsp+offset] ※スタックフレームを利用
|
---|
| 230 | pobj_sf->pop(REG_R14);
|
---|
| 231 |
|
---|
| 232 | FreeTempObject(REG_R14,(CClass *)index_stack[sp-1]);
|
---|
| 233 | }
|
---|
| 234 |
|
---|
| 235 | /////////////////////////////////////////////
|
---|
| 236 | ////// レジスタ資源を復元
|
---|
| 237 | RESTORE_REGISTER_RESOURCE
|
---|
| 238 | }////////////////////////////////////////////
|
---|
| 239 | }
|
---|
| 240 |
|
---|
[64] | 241 | if(bTwoTerm){
|
---|
[75] | 242 | if( !pUserProc->RealParams()[1]->IsRef() == false ){
|
---|
[64] | 243 | //一時参照を破棄
|
---|
| 244 | pobj_sf->pop();
|
---|
| 245 | }
|
---|
| 246 | }
|
---|
| 247 |
|
---|
[75] | 248 | if( !pUserProc->ReturnType().IsNull() ){
|
---|
[3] | 249 | //戻り値をreg1にセット
|
---|
| 250 | reg1=pobj_reg->LockReg();
|
---|
| 251 |
|
---|
| 252 | //mov reg1,r13
|
---|
[226] | 253 | compiler.codeGenerator.op_mov_RR(reg1,REG_R13);
|
---|
[3] | 254 | }
|
---|
| 255 |
|
---|
| 256 | sp--;
|
---|
[75] | 257 | type_stack[sp-1]=pUserProc->ReturnType().GetBasicType();
|
---|
| 258 | index_stack[sp-1]=pUserProc->ReturnType().GetIndex();
|
---|
[3] | 259 |
|
---|
[75] | 260 | if( pUserProc->ReturnType().IsStruct() ){
|
---|
[64] | 261 | //構造体が戻ったときはヒープ領域にインスタンスが格納されている
|
---|
[3] | 262 | //※後にfreeする必要あり
|
---|
| 263 | bUseHeap[sp-1]=1;
|
---|
| 264 | }
|
---|
| 265 | else bUseHeap[sp-1]=0;
|
---|
| 266 |
|
---|
| 267 | return 1;
|
---|
| 268 | }
|
---|
| 269 |
|
---|
[75] | 270 | void CallCastOperatorProc(int reg,Type &calcType,BOOL bCalcUseHeap,const Type &toType){
|
---|
| 271 | int type_stack[10];
|
---|
[3] | 272 | LONG_PTR index_stack[10];
|
---|
| 273 | BOOL array_bUseHeap[10];
|
---|
| 274 | int sp=2;
|
---|
| 275 | int iRet;
|
---|
| 276 |
|
---|
| 277 |
|
---|
| 278 | //////////////////////////////////////////////////////
|
---|
| 279 | ///// レジスタ資源のバックアップ
|
---|
| 280 | { BACKUP_REGISTER_RESOURCE
|
---|
| 281 | //////////////////////////////////////////////////////
|
---|
| 282 |
|
---|
| 283 | //regを第一項目としてロック
|
---|
| 284 | pobj_reg=new CRegister(reg);
|
---|
| 285 | pobj_reg->LockReg();
|
---|
| 286 |
|
---|
| 287 | if(bCalcUseHeap){
|
---|
| 288 | //未解放のインスタンスが存在する旨を示す警告
|
---|
| 289 | SetError(-105,NULL,cp);
|
---|
| 290 | }
|
---|
| 291 |
|
---|
| 292 | //左辺
|
---|
[75] | 293 | type_stack[0]=calcType.GetBasicType();
|
---|
| 294 | index_stack[0]=calcType.GetIndex();
|
---|
[3] | 295 | array_bUseHeap[0]=0;
|
---|
[75] | 296 | type_stack[1]=toType.GetBasicType();
|
---|
| 297 | index_stack[1]=toType.GetIndex();
|
---|
[3] | 298 | array_bUseHeap[1]=0;
|
---|
| 299 |
|
---|
[75] | 300 | iRet=CallOperatorProc(CALC_AS,toType,type_stack,index_stack,array_bUseHeap,sp);
|
---|
[3] | 301 |
|
---|
| 302 | pobj_reg->UnlockReg();
|
---|
| 303 |
|
---|
| 304 | /////////////////////////////////////////////
|
---|
| 305 | ////// レジスタ資源を復元
|
---|
| 306 | RESTORE_REGISTER_RESOURCE
|
---|
| 307 | }////////////////////////////////////////////
|
---|
| 308 |
|
---|
| 309 |
|
---|
| 310 | if(iRet==1){
|
---|
| 311 | //成功したとき
|
---|
[75] | 312 | calcType.SetType( type_stack[0], index_stack[0] );
|
---|
[3] | 313 | return;
|
---|
| 314 | }
|
---|
| 315 | else if(iRet==-1){
|
---|
| 316 | //エラーが発行されたとき
|
---|
| 317 | return;
|
---|
| 318 | }
|
---|
| 319 |
|
---|
| 320 | //エラーを発行
|
---|
| 321 | SetError(-1,"キャスト演算子がオーバーロードされていません。",cp);
|
---|
| 322 | }
|
---|
| 323 |
|
---|
[38] | 324 | //インデクサ(getter)を呼び出す
|
---|
[75] | 325 | void CallIndexerGetterProc(int reg,const CClass *pobj_Class,char *ObjectName,char *Parameter,Type &resultType ){
|
---|
[3] | 326 |
|
---|
[206] | 327 | std::vector<const UserProc *> subs;
|
---|
[135] | 328 | pobj_Class->GetMethods().Enum( CALC_ARRAY_GET, subs );
|
---|
[50] | 329 | if( subs.size() == 0 ){
|
---|
[3] | 330 | return;
|
---|
| 331 | }
|
---|
| 332 |
|
---|
| 333 | //////////////////////////////////////////////////////
|
---|
| 334 | ///// レジスタ資源のバックアップ
|
---|
| 335 | { BACKUP_REGISTER_RESOURCE
|
---|
| 336 | //////////////////////////////////////////////////////
|
---|
| 337 |
|
---|
[50] | 338 | Opcode_CallProc(Parameter,subs[0],0,ObjectName,DEF_OBJECT);
|
---|
[75] | 339 | resultType = subs[0]->ReturnType();
|
---|
[3] | 340 |
|
---|
| 341 | //mov reg,rax
|
---|
[226] | 342 | compiler.codeGenerator.op_mov_RR(reg,REG_RAX);
|
---|
[3] | 343 |
|
---|
| 344 | /////////////////////////////////////////////
|
---|
| 345 | ////// レジスタ資源を復元
|
---|
| 346 | RESTORE_REGISTER_RESOURCE
|
---|
| 347 | }////////////////////////////////////////////
|
---|
| 348 |
|
---|
| 349 | }
|
---|