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