1 | #include "stdafx.h"
|
---|
2 |
|
---|
3 | #include <Compiler.h>
|
---|
4 |
|
---|
5 | #include "../BasicCompiler_Common/common.h"
|
---|
6 | #include "opcode.h"
|
---|
7 |
|
---|
8 | void _call_constructor( const CClass *pobj_c,const char *CreateParameter,int ObjectSize,BOOL bSomeObjects){
|
---|
9 | ////////////////////////////
|
---|
10 | // コンストラクタの呼び出し
|
---|
11 | ////////////////////////////
|
---|
12 |
|
---|
13 | //この関数を使用する場合は、
|
---|
14 | //・ebxにオブジェクトの個数(複数個の場合のみ)
|
---|
15 | //・スタックフレームの先頭参照位置に先頭Thisポインタ
|
---|
16 | //をセットしておかなければならない
|
---|
17 |
|
---|
18 |
|
---|
19 | //jnzの番地
|
---|
20 | /*extern int obp;
|
---|
21 | int jnz_back = obp;*/
|
---|
22 |
|
---|
23 | if(bSomeObjects){
|
---|
24 | SetError();
|
---|
25 | //mov qword ptr[rsp+offset],rbx ※スタックフレームを利用
|
---|
26 | //pobj_sf->push(REG_RBX);
|
---|
27 |
|
---|
28 | // ※ここでプッシュされた値はコンストラクタのthisポインタとなる
|
---|
29 | //mov qword ptr[rsp+offset],rax ※スタックフレームを利用
|
---|
30 | //pobj_sf->push(REG_RAX);
|
---|
31 | }
|
---|
32 |
|
---|
33 |
|
---|
34 | ////////////////////////
|
---|
35 | // オーバーロードを解決
|
---|
36 | ////////////////////////
|
---|
37 |
|
---|
38 | std::vector<const UserProc *> subs;
|
---|
39 | pobj_c->GetDynamicMethods().Enum( pobj_c->GetName().c_str(), subs );
|
---|
40 |
|
---|
41 | const UserProc *pUserProc;
|
---|
42 | if( subs.size() > 0 ){
|
---|
43 | //オーバーロードを解決
|
---|
44 | pUserProc=OverloadSolutionWithStrParam(pobj_c->GetName().c_str(),
|
---|
45 | subs,CreateParameter,"");
|
---|
46 |
|
---|
47 | if(!pUserProc) return;
|
---|
48 | }
|
---|
49 |
|
---|
50 | //コンストラクタを呼び出す
|
---|
51 | Opcode_CallProc(CreateParameter,
|
---|
52 | pUserProc,
|
---|
53 | PROCFLAG_NEW,"");
|
---|
54 |
|
---|
55 | {
|
---|
56 | // 動的型情報をセットする
|
---|
57 | // obj._System_SetType( _System_TypeBase_Search( fullName ) )
|
---|
58 | subs.clear();
|
---|
59 | pobj_c->GetDynamicMethods().Enum( "_System_SetType", subs );
|
---|
60 | if( subs.size() == 1 ){
|
---|
61 | char temporary[VN_SIZE];
|
---|
62 | sprintf( temporary, "_System_TypeBase_Search(\"%s\"))", pobj_c->GetFullName().c_str() );
|
---|
63 |
|
---|
64 | Opcode_CallProc(temporary,
|
---|
65 | subs[0],
|
---|
66 | PROCFLAG_NEW,"");
|
---|
67 | }
|
---|
68 | else{
|
---|
69 | SetError();
|
---|
70 | }
|
---|
71 | }
|
---|
72 |
|
---|
73 | if(bSomeObjects){
|
---|
74 | /*
|
---|
75 | //mov rax,qword ptr[rsp+offset] ※スタックフレームを利用
|
---|
76 | pobj_sf->pop(REG_RAX);
|
---|
77 |
|
---|
78 | //mov rbx,qword ptr[rsp+offset] ※スタックフレームを利用
|
---|
79 | pobj_sf->pop(REG_RBX);
|
---|
80 |
|
---|
81 | //add rax,TypeSize
|
---|
82 | compiler.codeGenerator.op_add_RV( REG_RAX, ObjectSize );
|
---|
83 |
|
---|
84 | //sub rbx,1
|
---|
85 | compiler.codeGenerator.op_sub_RV( sizeof(_int64), REG_RBX, 1 );
|
---|
86 |
|
---|
87 | //jnz ↑
|
---|
88 | compiler.codeGenerator.op_jne( jnz_back-obp, sizeof(long), false, true );
|
---|
89 | */
|
---|
90 | }
|
---|
91 | }
|
---|
92 | void Operator_New( const CClass &objClass, const char *objectSizeStr, const char *parameter, const Type &baseType )
|
---|
93 | {
|
---|
94 | const CClass *pClass = &objClass;
|
---|
95 |
|
---|
96 | if( pClass->IsInterface() )
|
---|
97 | {
|
---|
98 | pClass = compiler.GetObjectModule().meta.GetClasses().GetInterfaceInfoClassPtr();
|
---|
99 | }
|
---|
100 |
|
---|
101 | int typeSize = pClass->GetSize();
|
---|
102 |
|
---|
103 | if( pClass->IsAbstract() ){
|
---|
104 | //抽象クラスだったとき
|
---|
105 | SetError(125,pClass->GetName().c_str(),cp);
|
---|
106 | }
|
---|
107 |
|
---|
108 | BOOL bSomeObjects=0;
|
---|
109 | if(objectSizeStr[0]){
|
---|
110 | bSomeObjects=1;
|
---|
111 |
|
---|
112 | int reg=REG_RAX;
|
---|
113 | Type tempType;
|
---|
114 | NumOpe(®,objectSizeStr,Type(),tempType);
|
---|
115 | if( !tempType.IsWhole() ) SetError(49,NULL,cp);
|
---|
116 |
|
---|
117 | //※添え字上限値であることを考慮
|
---|
118 | //add rax,1
|
---|
119 | compiler.codeGenerator.op_add_RV(REG_RAX,1);
|
---|
120 |
|
---|
121 | //オブジェクトの個数をrbxに一時保持
|
---|
122 | //※rbxは関数が呼ばれても不変
|
---|
123 | //mov rbx,rax
|
---|
124 | compiler.codeGenerator.op_mov_RR(REG_RBX,REG_RAX);
|
---|
125 |
|
---|
126 | //imul rax,size
|
---|
127 | compiler.codeGenerator.op_imul_RV(sizeof(_int64),REG_RAX,typeSize);
|
---|
128 |
|
---|
129 | //add rax,OBJECT_HEAD_SIZE
|
---|
130 | compiler.codeGenerator.op_add_RV(REG_RAX,OBJECT_HEAD_SIZE);
|
---|
131 |
|
---|
132 | //mov rcx,rax
|
---|
133 | compiler.codeGenerator.op_mov_RR(REG_RCX,REG_RAX);
|
---|
134 | }
|
---|
135 | else{
|
---|
136 | //オブジェクトの個数をrbxに一時保持
|
---|
137 | //※rbxは関数が呼ばれても不変
|
---|
138 | //mov rbx,1
|
---|
139 | compiler.codeGenerator.op_mov_RV(sizeof(_int64),REG_RBX,1);
|
---|
140 |
|
---|
141 | //mov rcx,typeSize+OBJECT_HEAD_SIZE
|
---|
142 | compiler.codeGenerator.op_mov_RV(sizeof(_int64),REG_RCX,typeSize+OBJECT_HEAD_SIZE);
|
---|
143 | }
|
---|
144 |
|
---|
145 | if( baseType.IsObject() ){
|
---|
146 | // オブジェクト インスタンス
|
---|
147 | // ※DeleteはGCで処理
|
---|
148 |
|
---|
149 | //call _System_GC_malloc_ForObject
|
---|
150 | extern const UserProc *pSub_System_GC_malloc_ForObject;
|
---|
151 | compiler.codeGenerator.op_call(pSub_System_GC_malloc_ForObject);
|
---|
152 | }
|
---|
153 | else{
|
---|
154 | // オブジェクトポインタ
|
---|
155 | // ※明示的なDeleteが必要
|
---|
156 |
|
---|
157 | //call _System_GC_malloc_ForObjectPtr
|
---|
158 | extern const UserProc *pSub_System_GC_malloc_ForObjectPtr;
|
---|
159 | compiler.codeGenerator.op_call(pSub_System_GC_malloc_ForObjectPtr);
|
---|
160 | }
|
---|
161 |
|
---|
162 |
|
---|
163 | /*
|
---|
164 | 確保されたヒープ領域のポインタ(callocの戻り値eax)をpPtrとすると、
|
---|
165 | pPtr-=OBJECT_HEAD_SIZE ... ( sizeof(DWORD)*4 )
|
---|
166 | pPtr[0]=オブジェクトの個数
|
---|
167 | pPtr[1]=オブジェクトのサイズ
|
---|
168 | pPtr[2]=デストラクタの関数ポインタ
|
---|
169 | pPtr[3]=reserve
|
---|
170 | */
|
---|
171 |
|
---|
172 |
|
---|
173 | //mov qword ptr[rax],rbx(オブジェクトの個数)
|
---|
174 | compiler.codeGenerator.op_mov_MR(sizeof(_int64),REG_RBX,REG_RAX,0,MOD_BASE);
|
---|
175 |
|
---|
176 | //add rax,PTR_SIZE
|
---|
177 | compiler.codeGenerator.op_add_RV(REG_RAX,PTR_SIZE);
|
---|
178 |
|
---|
179 |
|
---|
180 | //mov qword ptr[rax],typeSize(オブジェクトのサイズ)
|
---|
181 | compiler.codeGenerator.op_mov_MV(sizeof(_int64),REG_RAX,0, Schedule::None, false, NON_OFFSET,typeSize);
|
---|
182 |
|
---|
183 | //add rax,PTR_SIZE
|
---|
184 | compiler.codeGenerator.op_add_RV(REG_RAX,PTR_SIZE);
|
---|
185 |
|
---|
186 |
|
---|
187 | const CMethod *method = pClass->GetDestructorMethod();
|
---|
188 | if( method == NULL ) return;
|
---|
189 |
|
---|
190 | //mov rcx,DestructorProcAddr(デストラクタの関数ポインタ)
|
---|
191 | compiler.codeGenerator.op_addressof( REG_RCX, &method->GetUserProc() );
|
---|
192 |
|
---|
193 | //mov qword ptr[rax],rcx
|
---|
194 | compiler.codeGenerator.op_mov_MR(sizeof(_int64),REG_RCX,REG_RAX,0,MOD_BASE);
|
---|
195 |
|
---|
196 | //add rax,PTR_SIZE
|
---|
197 | compiler.codeGenerator.op_add_RV(REG_RAX,PTR_SIZE);
|
---|
198 |
|
---|
199 |
|
---|
200 | // リザーブ領域
|
---|
201 | //add rax,PTR_SIZE
|
---|
202 | compiler.codeGenerator.op_add_RV(REG_RAX,PTR_SIZE);
|
---|
203 |
|
---|
204 |
|
---|
205 | // ※ここでプッシュされた値はNew演算子の戻り値となる
|
---|
206 | //mov qword ptr[rsp+offset],rax ※スタックフレームを利用
|
---|
207 | pobj_sf->push(REG_RAX);
|
---|
208 |
|
---|
209 |
|
---|
210 | //仮想関数テーブルを初期化
|
---|
211 | if( pClass->IsExistVirtualFunctions()
|
---|
212 | && !pClass->IsAbstract() )
|
---|
213 | {
|
---|
214 | // mov rcx,com_vtbl
|
---|
215 | compiler.codeGenerator.op_mov_RV_com_vtbl( REG_RCX, pClass );
|
---|
216 |
|
---|
217 | //mov qword ptr[rax],rcx
|
---|
218 | compiler.codeGenerator.op_mov_MR(sizeof(_int64),REG_RCX,REG_RAX,0,MOD_BASE);
|
---|
219 |
|
---|
220 | // mov rcx,vtblAddress
|
---|
221 | compiler.codeGenerator.op_mov_RV_vtbl( REG_RCX, pClass );
|
---|
222 |
|
---|
223 | //mov qword ptr[rax+sizeof(com_vtbl)],rcx
|
---|
224 | compiler.codeGenerator.op_mov_MR(sizeof(_int64),REG_RCX,REG_RAX,PTR_SIZE,MOD_BASE_DISP8);
|
---|
225 |
|
---|
226 |
|
---|
227 | // 仮想関数になるメソッドに使用チェックをつける
|
---|
228 | BOOST_FOREACH( const CMethod *pMethod, pClass->GetDynamicMethods() )
|
---|
229 | {
|
---|
230 | if( pMethod->IsVirtual() )
|
---|
231 | {
|
---|
232 | pMethod->GetUserProc().Using();
|
---|
233 | }
|
---|
234 | }
|
---|
235 | BOOST_FOREACH( const ::Interface *pInterface, pClass->GetInterfaces() )
|
---|
236 | {
|
---|
237 | BOOST_FOREACH( const CMethod *pMethod, pInterface->GetDynamicMethods() )
|
---|
238 | {
|
---|
239 | if( pMethod->IsVirtual() )
|
---|
240 | {
|
---|
241 | pMethod->GetUserProc().Using();
|
---|
242 | }
|
---|
243 | }
|
---|
244 | }
|
---|
245 | }
|
---|
246 |
|
---|
247 |
|
---|
248 | /////////////////////////////////////////////////////////////////////
|
---|
249 |
|
---|
250 | ////////////////////////////
|
---|
251 | // コンストラクタの呼び出し
|
---|
252 | ////////////////////////////
|
---|
253 |
|
---|
254 | _call_constructor(pClass,parameter,typeSize,bSomeObjects);
|
---|
255 |
|
---|
256 |
|
---|
257 | //mov rax,qword ptr[rsp+offset] ※スタックフレームを利用
|
---|
258 | pobj_sf->pop(REG_RAX);
|
---|
259 | }
|
---|
260 | void OpcodeDelete(const char *Parameter, bool isSweeping){
|
---|
261 | int reg=REG_RAX;
|
---|
262 | Type tempType;
|
---|
263 | if( !NumOpe(®,Parameter,Type(),tempType) ){
|
---|
264 | return;
|
---|
265 | }
|
---|
266 | if(!( tempType.IsObjectPtr() || tempType.IsVoidPtr() )) SetError(122,NULL,cp);
|
---|
267 |
|
---|
268 | //sub rax,OBJECT_HEAD_SIZE
|
---|
269 | compiler.codeGenerator.op_sub_RV(sizeof(_int64),REG_RAX,OBJECT_HEAD_SIZE);
|
---|
270 |
|
---|
271 | //mov qword ptr[rsp+offset],rax ※スタックフレームを利用
|
---|
272 | pobj_sf->push(REG_RAX);
|
---|
273 |
|
---|
274 |
|
---|
275 | //mov rbx,qword ptr[rax](オブジェクトの個数)
|
---|
276 | compiler.codeGenerator.op_mov_RM(sizeof(_int64),REG_RBX,REG_RAX,0,MOD_BASE);
|
---|
277 |
|
---|
278 | //add rax,PTR_SIZE
|
---|
279 | compiler.codeGenerator.op_add_RV(REG_RAX,PTR_SIZE);
|
---|
280 |
|
---|
281 |
|
---|
282 | //mov rsi,qword ptr[rax](オブジェクトのサイズ)
|
---|
283 | compiler.codeGenerator.op_mov_RM(sizeof(_int64),REG_RSI,REG_RAX,0,MOD_BASE);
|
---|
284 |
|
---|
285 | //add rax,PTR_SIZE
|
---|
286 | compiler.codeGenerator.op_add_RV(REG_RAX,PTR_SIZE);
|
---|
287 |
|
---|
288 |
|
---|
289 | //mov rdi,qword ptr[rax](デストラクタの関数ポインタ)
|
---|
290 | compiler.codeGenerator.op_mov_RM(sizeof(_int64),REG_RDI,REG_RAX,0,MOD_BASE);
|
---|
291 |
|
---|
292 | //add rax,PTR_SIZE
|
---|
293 | compiler.codeGenerator.op_add_RV(REG_RAX,PTR_SIZE);
|
---|
294 |
|
---|
295 |
|
---|
296 | // リザーブ領域
|
---|
297 | //add rax,PTR_SIZE
|
---|
298 | compiler.codeGenerator.op_add_RV(REG_RAX,PTR_SIZE);
|
---|
299 |
|
---|
300 |
|
---|
301 | //mov rcx,rax
|
---|
302 | compiler.codeGenerator.op_mov_RR(REG_RCX,REG_RAX);
|
---|
303 |
|
---|
304 |
|
---|
305 | //jnzの番地
|
---|
306 | //int jnz_back=obp;
|
---|
307 |
|
---|
308 | //mov qword ptr[rsp+offset],rcx ※スタックフレームを利用
|
---|
309 | pobj_sf->push(REG_RCX);
|
---|
310 |
|
---|
311 | //call rdi
|
---|
312 | compiler.codeGenerator.PutOld(
|
---|
313 | (char)0xFF,
|
---|
314 | (char)0xD7
|
---|
315 | );
|
---|
316 |
|
---|
317 | //mov rcx,qword ptr[rsp+offset] ※スタックフレームを利用
|
---|
318 | pobj_sf->pop(REG_RCX);
|
---|
319 |
|
---|
320 | //add rcx,rsi
|
---|
321 | compiler.codeGenerator.op_add_RR(REG_RCX,REG_RSI);
|
---|
322 |
|
---|
323 | //sub rbx,1
|
---|
324 | compiler.codeGenerator.op_sub_RV(sizeof(_int64),REG_RBX,1);
|
---|
325 |
|
---|
326 | //jnz ↑
|
---|
327 | //compiler.codeGenerator.op_jne( jnz_back-obp, sizeof(long), false, true );
|
---|
328 |
|
---|
329 |
|
---|
330 | //////////////////////////////////////////
|
---|
331 | // オブジェクトメンバ変数用のメモリを解放
|
---|
332 | //////////////////////////////////////////
|
---|
333 |
|
---|
334 | //mov rcx,qword ptr[rsp+offset] ※スタックフレームを利用
|
---|
335 | pobj_sf->pop(REG_RCX);
|
---|
336 |
|
---|
337 | if( isSweeping ){
|
---|
338 | //call _System_GC_free_for_SweepingDelete
|
---|
339 | extern const UserProc *pSub_System_GC_free_for_SweepingDelete;
|
---|
340 | compiler.codeGenerator.op_call(pSub_System_GC_free_for_SweepingDelete);
|
---|
341 | }
|
---|
342 | else{
|
---|
343 | //call free
|
---|
344 | extern const UserProc *pSub_free;
|
---|
345 | compiler.codeGenerator.op_call(pSub_free);
|
---|
346 | }
|
---|
347 | }
|
---|