source: dev/trunk/ab5.0/abdev/compiler_x64/Compile_Var.cpp@ 746

Last change on this file since 746 was 746, checked in by dai, 16 years ago

[745]を64bit版にマージ。

File size: 35.7 KB
RevLine 
[206]1#include "stdafx.h"
2
[3]3#include "Opcode.h"
4
5//変数
[206]6// TODO: xml未完成
[3]7int AllLocalVarSize;
8
[514]9using namespace ActiveBasic::Compiler;
[3]10
[75]11void SetRelativeOffset( Type &resultType, RELATIVE_VAR *pRelativeVar,const char *lpPtrOffset){
[3]12 /////////////////////////////////////////////
13 // 先頭ポインタをr12に取得してメモリへ退避
14 /////////////////////////////////////////////
15
[308]16 SetReg_WholeVariable(Type(DEF_INT64),pRelativeVar,REG_R11);
[3]17
18 //mov qword ptr[rsp+offset],r11 ※スタックフレームを利用
19 pobj_sf->push(REG_R11);
20
21
22 ////////////////////////////////
23 // 添え字を計算する
24 ////////////////////////////////
25
26 int reg=REG_NON;
[75]27 Type type;
28 NumOpe( &reg, lpPtrOffset, Type(), type );
29 if( !type.IsWhole() ){
[468]30 compiler.errorMessenger.Output(46,NULL,cp);
[75]31 }
32 ExtendTypeTo64(type.GetBasicType(),reg);
[3]33
34 if(reg==REG_R14){
35 //mov r14,qword ptr[rsp+offset] ※スタックフレームを利用
36 pobj_sf->pop(REG_R14);
37 }
38
[75]39 if( resultType.PtrLevel() ){
40 resultType.PtrLevelDown();
[64]41
[75]42 int typeSize = resultType.GetSize();
43 if(typeSize>=2){
[64]44 //imul reg,i2
[226]45 compiler.codeGenerator.op_imul_RV(sizeof(_int64),reg,typeSize);
[3]46 }
47 }
48 else{
49 //エラー
[468]50 compiler.errorMessenger.Output(1,NULL,cp);
[3]51 return;
52 }
53
54
55 //////////////////////////////
56 // 先頭ポインタに添え字を加算
57 //////////////////////////////
58
59 //mov r11,qword ptr[rsp+offset] ※スタックフレームを利用
60 pobj_sf->pop(REG_R11);
61
62 //add r11,reg
[228]63 compiler.codeGenerator.op_add_RR(REG_R11,reg);
[3]64}
[64]65void SetRelativeOffset( RELATIVE_VAR &relativeVar ){
66 if(relativeVar.dwKind==VAR_DIRECTMEM){
67 //mov r11,qword ptr[r11]
[226]68 compiler.codeGenerator.op_mov_RM(sizeof(_int64),REG_R11,REG_R11,0,MOD_BASE);
[64]69 }
70 else{
71 //直接参照に切り替え
72 SetVarPtrToReg(REG_R12,&relativeVar);
73 relativeVar.dwKind=VAR_DIRECTMEM;
74
75 //mov r11,qword ptr[r12]
[226]76 compiler.codeGenerator.op_mov_RM(sizeof(_int64),REG_R11,REG_R12,0,MOD_BASE);
[64]77 }
78}
[206]79bool GetArrayOffset(const Subscripts &subscripts,char *array, const Type &type){
[3]80 extern HANDLE hHeap;
[75]81 int i,i2,i3,i4;
[3]82 char temporary[VN_SIZE],*pParm[MAX_PARMS];
83
84 for(i=0,i2=0,i3=0;;i++,i2++){
85 if(array[i]=='('){
86 i4=GetStringInPare(temporary+i2,array+i);
87 i+=i4-1;
88 i2+=i4-1;
89 continue;
90 }
91 if(array[i]=='['){
92 i4=GetStringInBracket(temporary+i2,array+i);
93 i+=i4-1;
94 i2+=i4-1;
95 continue;
96 }
97 if(array[i]==','||array[i]=='\0'){
[206]98 if( i3 >= (int)subscripts.size() )
99 {
[3]100 for(i3--;i3>=0;i3--) HeapDefaultFree(pParm[i3]);
[75]101 return false;
[3]102 }
103
104 temporary[i2]=0;
105
106 pParm[i3]=(char *)HeapAlloc(hHeap,0,lstrlen(temporary)+1);
107 lstrcpy(pParm[i3],temporary);
108
109 i3++;
110
111 if(array[i]=='\0'){
[206]112 if( i3 < (int)subscripts.size() )
113 {
[3]114 for(i3--;i3>=0;i3--) HeapDefaultFree(pParm[i3]);
[75]115 return false;
[3]116 }
117 break;
118 }
119
120 i2=-1;
121 continue;
122 }
123 temporary[i2]=array[i];
124 }
125
126 //mov qword ptr[rsp+offset],r11 ※スタックフレームを利用
127 pobj_sf->push(REG_R11);
128
129 //xor r12,r12
[226]130 compiler.codeGenerator.op_zero_reg(REG_R12);
[3]131
132 for(i=i3-1;i>=0;i--){
133 //mov qword ptr[rsp+offset],r12 ※スタックフレームを利用
134 pobj_sf->push(REG_R12);
135
136 int reg=REG_NON;
[75]137 Type type;
[436]138 bool isNeedHeapFreeStructure;
139 NumOpe( &reg, pParm[i], Type( DEF_LONG ), type, &isNeedHeapFreeStructure );
140 if( type.IsObject() )
141 {
[3]142 //キャスト演算子のオーバーロードに対応する
143 CallCastOperatorProc(reg,
[75]144 type,
[436]145 isNeedHeapFreeStructure, Type(DEF_LONG) );
[75]146 type.SetBasicType( DEF_LONG );
[3]147 }
148
[436]149 if( !type.IsWhole() )
150 {
[468]151 compiler.errorMessenger.Output(46,NULL,cp);
[75]152 }
153 ExtendTypeTo64( type.GetBasicType(), reg );
[3]154
155 if(reg==REG_R14){
156 //mov r14,qword ptr[rsp+offset] ※スタックフレームを利用
157 pobj_sf->pop(REG_R14);
158 }
159
160 //mov r12,qword ptr[rsp+offset] ※スタックフレームを利用
161 pobj_sf->pop(REG_R12);
162
[206]163 for(i2=i+1,i4=1;i2<i3;i2++) i4*=subscripts[i2]+1;
[3]164
165 //imul reg,i4
[226]166 compiler.codeGenerator.op_imul_RV(sizeof(_int64),reg,i4);
[3]167
168 //add r12,reg
[228]169 compiler.codeGenerator.op_add_RR(REG_R12,reg);
[3]170
171 HeapDefaultFree(pParm[i]);
172 }
173
174 //imul r12,TypeSize
[228]175 compiler.codeGenerator.op_imul_RV( sizeof(_int64), REG_R12, type.GetSize() );
[3]176
177 //mov r11,qword ptr[rsp+offset] ※スタックフレームを利用
178 pobj_sf->pop(REG_R11);
179
180 //add r11,r12
[228]181 compiler.codeGenerator.op_add_RR( REG_R11, REG_R12 );
[3]182
[75]183 return true;
[3]184}
[316]185bool _member_offset(bool isErrorEnabled, bool isWriteAccess, const Type &classType, const char *member, RELATIVE_VAR *pRelativeVar, Type &resultType, BOOL bPrivateAccess)
186{
187 const CClass &objClass = classType.GetClass();
[3]188
189 //////////////////////////////////////
190 // クラス、配列の構成要素を解析する
191 //////////////////////////////////////
192
193 char VarName[VN_SIZE]; //変数名
194 char array[VN_SIZE]; //第1次配列
195 char lpPtrOffset[VN_SIZE]; //第2次配列
196 char NestMember[VN_SIZE]; //入れ子メンバ
[206]197 ReferenceKind refType;
[3]198 lstrcpy(VarName,member);
[75]199 if(!GetVarFormatString(VarName,array,lpPtrOffset,NestMember,refType)) return false;
[3]200
201
202 ////////////////////////////
203 // メンバオフセットを取得
204 ////////////////////////////
205
[584]206 const Member *pMember = objClass.FindDynamicMember( VarName );
[410]207 if( !pMember )
208 {
[468]209 if(isErrorEnabled) compiler.errorMessenger.Output(103,VarName,cp);
[75]210 return false;
[3]211 }
212
[410]213 int offset = objClass.GetMemberOffset( VarName );
[3]214
[40]215
[3]216 //アクセシビリティをチェック
[584]217 if( compiler.IsCompilingClass() && &objClass == &compiler.GetCompilingClass() ){
[3]218 //同一クラスオブジェクトの場合はプライベートアクセスを容認する
[137]219 if(pMember->IsNoneAccess()){
[468]220 if(isErrorEnabled) compiler.errorMessenger.Output(107,VarName,cp);
[75]221 return false;
[3]222 }
223 }
224 else{
[137]225 if((bPrivateAccess==0&&pMember->IsPrivate())||
226 pMember->IsNoneAccess()){
[468]227 if(isErrorEnabled) compiler.errorMessenger.Output(107,VarName,cp);
[75]228 return false;
[3]229 }
[137]230 else if(bPrivateAccess==0&&pMember->IsProtected()){
[468]231 if(isErrorEnabled) compiler.errorMessenger.Output(108,VarName,cp);
[75]232 return false;
[3]233 }
234 }
235
[17]236 //Const定義の場合は書き込みアクセスを制限する
237 //※コンストラクタをコンパイル中の場合は例外的に許可する
[40]238 if( pMember->IsConst() && //定数メンバである
[17]239 isWriteAccess && //書き込みアクセスを要求されている
[75]240 objClass.IsCompilingConstructor() == false //コンストラクタ コンパイル中を除く
[17]241 ){
242 //Const定義の変数に書き込みアクセスをしようとした場合
[468]243 compiler.errorMessenger.Output(61,VarName,cp);
[17]244 }
245
[137]246 resultType = pMember->GetType();
[3]247
[316]248 // 型パラメータを解決
249 ResolveFormalGenericTypeParameter( resultType, classType );
250
[3]251 //ポインタ変数の場合
[75]252 if( resultType.IsPointer() ){
[206]253 if( pMember->GetSubscripts().size() == 0 ){
[3]254 lstrcpy(lpPtrOffset,array);
255 array[0]=0;
256 }
257 }
258 else{
259 if(lpPtrOffset[0]){
[468]260 if(isErrorEnabled) compiler.errorMessenger.Output(16,member,cp);
[75]261 return false;
[3]262 }
263 }
264
265 if(offset){
266 //add r11,offset
[228]267 compiler.codeGenerator.op_add_RV( REG_R11, offset );
[3]268 }
269
270 if(array[0]){
271 //配列オフセット
[206]272 if(!GetArrayOffset(pMember->GetSubscripts(),array,pMember->GetType())){
[468]273 if(isErrorEnabled) compiler.errorMessenger.Output(14,member,cp);
[339]274 return false;
[3]275 }
276 }
[206]277 else if( pMember->GetSubscripts().size() > 0 ){
[75]278 resultType.SetBasicType( resultType.GetBasicType() | FLAG_PTR );
[3]279 }
280
281 if(NestMember[0]){
282 //入れ子構造の場合
283
[75]284 if( resultType.IsObject() || resultType.IsStruct() ){
[206]285 if( refType != RefDot ){
[468]286 if(isErrorEnabled) compiler.errorMessenger.Output(104,member,cp);
[75]287 return false;
[3]288 }
[64]289
[75]290 if( resultType.IsObject() ){
[64]291 // 参照内容へのポインタを抽出
292 SetRelativeOffset( *pRelativeVar );
293 }
[3]294 }
[75]295 else if( resultType.IsObjectPtr() || resultType.IsStructPtr() ){
[3]296 //構造体ポインタ型メンバ変数
297
298 if(lpPtrOffset[0]){
299 //pObj[n].member
[75]300 if( ( resultType.IsObjectPtr() || resultType.IsStructPtr() )
[206]301 && refType != RefDot ){
[468]302 if(isErrorEnabled) compiler.errorMessenger.Output(104,member,cp);
[75]303 return false;
[3]304 }
305
306 //直接参照に切り替え
[75]307 SetRelativeOffset(resultType,pRelativeVar,lpPtrOffset);
[3]308 pRelativeVar->dwKind=VAR_DIRECTMEM;
309
310 lpPtrOffset[0]=0;
311 }
312 else{
313 //pObj->member
[75]314 if( (resultType.IsObjectPtr() || resultType.IsStructPtr() )
[206]315 && refType != RefPointer ){
[468]316 if(isErrorEnabled) compiler.errorMessenger.Output(104,member,cp);
[75]317 return false;
[3]318 }
319
[64]320 SetRelativeOffset( *pRelativeVar );
[3]321 }
322 }
[75]323 else if( resultType.GetBasicType() == MAKE_PTR_TYPE(DEF_OBJECT,2)
324 || resultType.GetBasicType() == MAKE_PTR_TYPE(DEF_STRUCT,2)){
[3]325 //構造体ポインタのポインタ型メンバ変数
326
327 if(lpPtrOffset[0]){
328 //ppObj[n]->member
[206]329 if( refType != RefPointer ){
[468]330 if(isErrorEnabled) compiler.errorMessenger.Output(104,member,cp);
[75]331 return false;
[3]332 }
333
334 //直接参照に切り替え
[75]335 SetRelativeOffset(resultType,pRelativeVar,lpPtrOffset);
[3]336 pRelativeVar->dwKind=VAR_DIRECTMEM;
337
338 lpPtrOffset[0]=0;
339
340 //mov r11,qword ptr[r11]
[226]341 compiler.codeGenerator.op_mov_RM(sizeof(_int64),REG_R11,REG_R11,0,MOD_BASE);
[3]342 }
343 else{
[468]344 if(isErrorEnabled) compiler.errorMessenger.Output(104,member,cp);
[75]345 return false;
[3]346 }
347 }
348
[75]349 if(!_member_offset(
[17]350 isErrorEnabled,
351 isWriteAccess,
[316]352 pMember->GetType(),
[3]353 NestMember,
354 pRelativeVar,
[75]355 resultType,
356 0)) return false;
[3]357 }
358
359 if(lpPtrOffset[0]){
[75]360 SetRelativeOffset(resultType,pRelativeVar,lpPtrOffset);
[3]361 pRelativeVar->dwKind=VAR_DIRECTMEM;
362 }
363
[75]364 return true;
[3]365}
366
367int LocalVar_ThisPtrOffset;
368void SetThisPtrToReg(int reg){
369 //自身のオブジェクトのThisポインタをregにコピー
370
371 RELATIVE_VAR RelativeVar;
372 RelativeVar.dwKind=VAR_LOCAL;
373 RelativeVar.bOffsetOffset=0;
374 RelativeVar.offset=-LocalVar_ThisPtrOffset;
375
[308]376 SetReg_WholeVariable(Type(DEF_PTR_VOID),&RelativeVar,reg);
[3]377}
[206]378bool GetVarOffset(bool isErrorEnabled,bool isWriteAccess,const char *NameBuffer,RELATIVE_VAR *pRelativeVar,Type &resultType, Subscripts *pResultSubscripts ){
[107]379 char variable[VN_SIZE];
[3]380
381 if(NameBuffer[0]=='.'){
382 GetWithName(variable);
383 lstrcat(variable,NameBuffer);
384 }
385 else lstrcpy(variable,NameBuffer);
386
[106]387 // 名前空間を分離
388 char namespaceStr[VN_SIZE]="", simpleName[VN_SIZE];
[266]389 compiler.GetObjectModule().meta.GetNamespaces().SplitNamespace( variable, namespaceStr, simpleName );
[106]390
391 // 先頭オブジェクトまたはクラス名と入れ子メンバに分割
[206]392 ReferenceKind refType;
[106]393 char member[VN_SIZE],array[VN_SIZE],lpPtrOffset[VN_SIZE];
394 GetVarFormatString(simpleName,array,lpPtrOffset,member,refType);
[49]395
[106]396 // 名前空間を分離していた場合は結合
397 char VarName[VN_SIZE];
398 if( namespaceStr[0] ){
399 sprintf( VarName, "%s.%s", namespaceStr, simpleName );
[49]400 }
[106]401 else{
402 lstrcpy( VarName, simpleName );
403 }
[49]404
[206]405 const Subscripts *pSubscripts;
[11]406 bool bConst = false;
[3]407
408
[584]409 if( compiler.IsLocalAreaCompiling() ){
[3]410 //////////////////
411 // ローカル変数
412 //////////////////
413
[584]414 const Variable *pVar = compiler.GetCompilingUserProc().GetLocalVars().BackSearch(
415 LexicalAnalyzer::FullNameToSymbol( VarName ),
416 compiler.codeGenerator.lexicalScopes.GetNowLevel()
417 );
[75]418 if( pVar ){
[3]419 //ポインタ変数の場合
[206]420 if( pVar->GetType().IsPointer() ){
[75]421 if( !pVar->IsArray() ){
[3]422 lstrcpy(lpPtrOffset,array);
423 array[0]=0;
424 }
425 }
426 else{
427 if(lpPtrOffset[0]){
[468]428 compiler.errorMessenger.Output(16,variable,cp);
[3]429 pRelativeVar->dwKind=NON_VAR;
[75]430 return false;
[3]431 }
432 }
433
[206]434 pRelativeVar->offset=-pVar->GetOffsetAddress();
[3]435 pRelativeVar->bOffsetOffset=0;
[677]436 if( pVar->IsRef() || pVar->IsByValStructParameter() )
437 {
[40]438 // 参照型
439 pRelativeVar->dwKind = VAR_REFLOCAL;
440 }
[3]441 else pRelativeVar->dwKind=VAR_LOCAL;
[206]442 resultType = pVar->GetType();
443 pSubscripts = &pVar->GetSubscripts();
[75]444 bConst = pVar->IsConst();
[3]445
[316]446 /////////////////////////////////////////////////////////
447 // ☆★☆ ジェネリクスサポート ☆★☆
448
449 if( resultType.IsTypeParameter() )
450 {
451 // 型パラメータだったとき
452
453 int ptrLevel = PTR_LEVEL( resultType.GetBasicType() );
454
[425]455 // 制約クラス(指定されていないときはObjectクラス)にセットする
[316]456 resultType.SetBasicType( DEF_OBJECT );
457
458 for( int i=0; i<ptrLevel; i++ )
459 {
460 resultType.PtrLevelUp();
461 }
462 }
463
464 //
465 /////////////////////////////////////////////////////////
466
[3]467 goto ok;
468 }
469 }
470
[584]471 if( compiler.IsCompilingClass() ){
[3]472 //////////////////////
473 // クラスメンバの参照
474 //////////////////////
475
476 if(lstrcmpi(variable,"This")==0){
477 //自身のオブジェクトのThisポインタをr11にコピー
478 SetThisPtrToReg(REG_R11);
479
480 pRelativeVar->dwKind=VAR_DIRECTMEM;
481
[584]482 resultType.SetType( DEF_OBJECT, &compiler.GetCompilingClass() );
[75]483 return true;
[3]484 }
485
486 if(memicmp(variable,"This.",5)==0){
487 //Thisオブジェクトのメンバを参照するとき
488 SlideString(variable+5,-5);
489 lstrcpy(VarName,variable);
490 }
491 else{
[410]492 //クラス内の動的メンバを参照するとき(通常)
[3]493
[584]494 if( !compiler.GetCompilingClass().HasDynamicMember( VarName ) )
[410]495 {
496 goto NonClassMember;
[3]497 }
498 }
499
[18]500 //Const修飾子のメソッド内でメンバ書き込みアクセスが発生したとき
501 //(コンストラクタ、デストラクタ内を除く)
[584]502 const CMethod *pMethod = &compiler.GetCompilingUserProc().GetMethod();
[18]503 if( isWriteAccess &&
[135]504 pMethod->IsConst() &&
[584]505 compiler.GetCompilingClass().IsCompilingConstructor() == false &&
506 compiler.GetCompilingClass().IsCompilingDestructor() == false
[18]507 ){
[468]508 compiler.errorMessenger.Output(131, NULL, cp );
[18]509 }
510
[3]511 //自身のオブジェクトのThisポインタをr11にコピー
512 SetThisPtrToReg(REG_R11);
513
514 pRelativeVar->dwKind=VAR_DIRECTMEM;
[75]515 if(!_member_offset(
[17]516 isErrorEnabled,
517 isWriteAccess,
[584]518 Type( DEF_OBJECT, compiler.GetCompilingClass() ),
[17]519 variable,
520 pRelativeVar,
[75]521 resultType,1)) return false;
522 return true;
[3]523 }
524
525NonClassMember:
526
[75]527 {
528 const Variable *pVar;
[3]529
[75]530 //////////////////////////
531 // 静的ローカル変数
532 // ※"Static.Object.Method.Variable"
533 //////////////////////////
[3]534
[75]535 char temporary[VN_SIZE];
[584]536 if( compiler.IsLocalAreaCompiling() ){
[75]537 GetNowStaticVarFullName(VarName,temporary);
538
[514]539 pVar = compiler.GetObjectModule().meta.GetGlobalVars().Find( LexicalAnalyzer::FullNameToSymbol( temporary ) );
[75]540 if( pVar ){
541 goto GlobalOk;
542 }
[3]543 }
544
545
[75]546 //////////////////////////
547 // クラスの静的メンバ
548 //////////////////////////
[3]549
[75]550 if(member[0]){
551 lstrcpy(temporary,member);
[3]552
[103]553 // TODO: 名前空間を考慮したコードになっていない
554
[75]555 char tempMember[VN_SIZE];
556 char tempArray[VN_SIZE];
557 {
[206]558 ReferenceKind refType;
[75]559 GetVarFormatString(temporary,tempArray,lpPtrOffset,tempMember, refType );
560 }
[27]561
[633]562 const TypeDef *pTypeDef = compiler.GetObjectModule().meta.GetTypeDefs().Find(
[598]563 LexicalAnalyzer::FullNameToSymbol( VarName )
564 );
[633]565 if( pTypeDef )
566 {
[116]567 // TypeDef後の型名だったとき
[633]568 lstrcpy( VarName, pTypeDef->GetBaseName().c_str() );
[116]569 }
570
[75]571 char temp2[VN_SIZE];
572 sprintf(temp2,"%s.%s",VarName,temporary);
[514]573 pVar = compiler.GetObjectModule().meta.GetGlobalVars().Find( LexicalAnalyzer::FullNameToSymbol( temp2 ) );
[75]574 if( pVar ){
575 lstrcpy(member,tempMember);
576 lstrcpy(array,tempArray);
577 goto GlobalOk;
578 }
[3]579 }
580
[584]581 if( compiler.IsCompilingClass() ){
[75]582 //自身のクラスから静的メンバを参照する場合
583 char temp2[VN_SIZE];
[584]584 sprintf(temp2,"%s.%s",compiler.GetCompilingClass().GetName().c_str(),VarName);
[514]585 pVar = compiler.GetObjectModule().meta.GetGlobalVars().Find( LexicalAnalyzer::FullNameToSymbol( temp2 ) );
[75]586 if( pVar ){
587 goto GlobalOk;
588 }
[3]589 }
590
[75]591 /////////////////////
592 // グローバル変数
593 /////////////////////
[3]594
[584]595 pVar = compiler.GetObjectModule().meta.GetGlobalVars().BackSearch(
596 LexicalAnalyzer::FullNameToSymbol( VarName ),
597 compiler.codeGenerator.lexicalScopes.GetNowLevel()
598 );
[75]599 if( pVar ){
[3]600 goto GlobalOk;
601 }
602
[468]603 if(isErrorEnabled) compiler.errorMessenger.Output(3,variable,cp);
[75]604 pRelativeVar->dwKind=NON_VAR;
605 return false;
[27]606
607
[3]608
609GlobalOk:
[75]610 //ポインタ変数の場合
[206]611 if( pVar->GetType().IsPointer() ){
[75]612 if( !pVar->IsArray() ){
613 lstrcpy(lpPtrOffset,array);
614 array[0]=0;
615 }
[3]616 }
[75]617 else{
618 if(lpPtrOffset[0]){
[468]619 compiler.errorMessenger.Output(16,variable,cp);
[75]620 pRelativeVar->dwKind=NON_VAR;
621 return false;
622 }
[3]623 }
624
[206]625 pRelativeVar->offset=pVar->GetOffsetAddress();
[75]626 pRelativeVar->bOffsetOffset=0;
627 if( pVar->IsRef() ){
628 // 参照型
629 pRelativeVar->dwKind = VAR_REFGLOBAL;
630 }
631 else pRelativeVar->dwKind=VAR_GLOBAL;
[206]632 resultType = pVar->GetType();
633 pSubscripts=&pVar->GetSubscripts();
[75]634 bConst = pVar->IsConst();
[62]635 }
[3]636
637
638
639ok:
640
[18]641 if( bConst && isWriteAccess ){
[11]642 //Const定義の変数に書き込みアクセスをしようとした場合
[75]643 if( resultType.IsObject() ){
[18]644 //オブジェクト定数
[468]645 compiler.errorMessenger.Output(130, VarName, cp );
[18]646 }
647 else{
648 //一般のConst変数
[468]649 compiler.errorMessenger.Output(61,VarName,cp);
[18]650 }
[11]651 }
[3]652
[206]653 if( array[0] == 0 && pSubscripts->size() > 0 ){
[3]654 //配列の先頭ポインタを示す場合
[75]655 resultType.SetBasicType( resultType.GetBasicType() | FLAG_PTR );
[206]656
657 if( pResultSubscripts )
658 {
659 (*pResultSubscripts) = *pSubscripts;
660 }
[75]661 return true;
[3]662 }
663
[49]664 if( array[0] || member[0] ){
[3]665 //xor r11,r11(r11を0に初期化する)
666 //※r11は変数ベースアドレスからの相対オフセットを示す
[226]667 compiler.codeGenerator.op_zero_reg(REG_R11);
[3]668
669 pRelativeVar->bOffsetOffset=1;
670 }
671 if(array[0]){
[206]672 if(!GetArrayOffset(*pSubscripts,array,resultType)){
[468]673 compiler.errorMessenger.Output(14,variable,cp);
[3]674 pRelativeVar->dwKind=NON_VAR;
[75]675 return false;
[3]676 }
677 }
678 if(member[0]){
[75]679 if( resultType.IsObject() || resultType.IsStruct() ){
[3]680 //実態オブジェクトのメンバを参照(obj.member)
[206]681 if( refType != RefDot ){
[468]682 compiler.errorMessenger.Output(104,VarName,cp);
[3]683 pRelativeVar->dwKind=NON_VAR;
[75]684 return false;
[3]685 }
[64]686
[75]687 if( resultType.IsObject() ){
[64]688 // 参照内容へのポインタを抽出
689 SetRelativeOffset( *pRelativeVar );
690 }
[3]691 }
[75]692 else if( resultType.IsObjectPtr() || resultType.IsStructPtr() ){
[3]693 //ポインタオブジェクトが示すメンバを参照
694 if(lpPtrOffset[0]){
695 //pObj[n].member
[206]696 if( refType != RefDot ){
[468]697 compiler.errorMessenger.Output(104,VarName,cp);
[3]698 pRelativeVar->dwKind=NON_VAR;
[75]699 return false;
[3]700 }
[75]701 SetRelativeOffset(resultType,pRelativeVar,lpPtrOffset);
[3]702 pRelativeVar->dwKind=VAR_DIRECTMEM;
703 }
704 else{
705 //pObj->member
[206]706 if( refType != RefPointer ){
[468]707 compiler.errorMessenger.Output(104,VarName,cp);
[3]708 pRelativeVar->dwKind=NON_VAR;
[75]709 return false;
[3]710 }
711
712 SetVarPtrToReg(REG_R12,pRelativeVar);
713 pRelativeVar->dwKind=VAR_DIRECTMEM;
714
715 //mov r11,qword ptr[r12]
[226]716 compiler.codeGenerator.op_mov_RM(sizeof(_int64),REG_R11,REG_R12,0,MOD_BASE);
[3]717 }
718 }
[75]719 else if( resultType.GetBasicType()==MAKE_PTR_TYPE(DEF_OBJECT,2) || resultType.GetBasicType()==MAKE_PTR_TYPE(DEF_STRUCT,2)){
[3]720 //ポインタオブジェクトが示すメンバを参照
721 if(lpPtrOffset[0]){
722 //ppObj[n]->member
[206]723 if( refType != RefPointer ){
[468]724 compiler.errorMessenger.Output(104,VarName,cp);
[3]725 pRelativeVar->dwKind=NON_VAR;
[75]726 return false;
[3]727 }
728
[75]729 SetRelativeOffset(resultType,pRelativeVar,lpPtrOffset);
[3]730 pRelativeVar->dwKind=VAR_DIRECTMEM;
731
732
733 SetVarPtrToReg(REG_R12,pRelativeVar);
734
735 //mov r11,qword ptr[r12]
[226]736 compiler.codeGenerator.op_mov_RM(sizeof(_int64),REG_R11,REG_R12,0,MOD_BASE);
[3]737 }
738 else{
[468]739 compiler.errorMessenger.Output(104,VarName,cp);
[3]740 pRelativeVar->dwKind=NON_VAR;
[75]741 return false;
[3]742 }
743 }
744 else{
[468]745 compiler.errorMessenger.Output(102,VarName,cp);
[3]746 pRelativeVar->dwKind=NON_VAR;
[75]747 return false;
[3]748 }
[17]749
[75]750 if(!_member_offset(
[17]751 isErrorEnabled,
752 isWriteAccess,
[316]753 resultType,
[75]754 member,pRelativeVar,resultType,0)) return false;
[17]755
[75]756 return true;
[3]757 }
758
759 if(lpPtrOffset[0]){
[75]760 SetRelativeOffset(resultType,pRelativeVar,lpPtrOffset);
[3]761 pRelativeVar->dwKind=VAR_DIRECTMEM;
762 }
763
[75]764 return true;
[3]765}
766
[206]767bool SetInitGlobalData(int offset,const Type &type,const Subscripts &subscripts,const char *lpszInitBuf){
768 int i2,i3;
[3]769 char temporary[VN_SIZE];
[138]770 char InitBuf[VN_SIZE];
771 lstrcpy( InitBuf, lpszInitBuf );
[3]772
773 if(InitBuf[0]=='['){
774 SlideString(InitBuf+1,-1);
775 InitBuf[lstrlen(InitBuf)-1]=0;
776
[75]777 int typeSize = type.GetSize();
[3]778
[206]779 if( subscripts.size() > 0 ){
780 Subscripts nestSubscripts;
781 for( int i=1; i<(int)subscripts.size(); i++ )
782 {
783 nestSubscripts.push_back( subscripts[i] );
784 }
785
786 typeSize*=JumpSubScripts( nestSubscripts );
787 {
788 int i=0;
789 i2=0;
790 while(1){
791 if( subscripts[0] < i2 ){
[468]792 compiler.errorMessenger.Output(41,0,cp);
[206]793 return 0;
794 }
795 i=GetOneParameter(InitBuf,i,temporary);
796 if(!SetInitGlobalData(
797 offset+i2*typeSize,
798 type,
799 nestSubscripts,
800 temporary)) return false;
801 i2++;
802 if(InitBuf[i]=='\0') break;
[3]803 }
804 }
[75]805 return true;
[3]806 }
807
[75]808 if(type.IsStruct()){
809 const CClass &objClass = type.GetClass();
[3]810
[140]811 int i = 0;
[584]812 BOOST_FOREACH( Member *pMember, objClass.GetDynamicMembers() ){
[140]813 if(InitBuf[i]=='\0'){
[468]814 compiler.errorMessenger.Output(41,0,cp);
[140]815 return false;
816 }
817
[3]818 i=GetOneParameter(InitBuf,i,temporary);
819
[410]820 i3=objClass.GetMemberOffset( pMember->GetName().c_str() );
[3]821
822 if(!SetInitGlobalData(offset+i3,
[140]823 pMember->GetType(),
[206]824 pMember->GetSubscripts(),
[75]825 temporary)) return false;
[3]826 }
[75]827 return true;
[3]828 }
829
[468]830 compiler.errorMessenger.Output(41,0,cp);
[75]831 return false;
[3]832 }
833
[20]834
835 ///////////////////////////////////////
836 // 単発式([]で囲まれていない)
837 ///////////////////////////////////////
838
[206]839 if( subscripts.size() > 0 ){
[468]840 compiler.errorMessenger.Output(41,0,cp);
[75]841 return false;
[3]842 }
843
844 double dbl;
845 _int64 i64data;
[75]846 Type calcType;
[3]847
[75]848 if( !StaticCalculation(false, InitBuf,type.GetBasicType(),&i64data,calcType) ){
[9]849 //動的データだった場合
[75]850 return false;
[9]851 }
[75]852 if( calcType.IsReal() ){
[3]853 memcpy(&dbl,&i64data,sizeof(double));
854 i64data=(_int64)dbl;
855 }
856 else dbl=(double)i64data;
857
858 //型チェック
859 CheckDifferentType(
860 type,
[75]861 calcType,
[3]862 0,0);
863
[75]864 if( type.IsDouble() ){
[308]865 compiler.GetObjectModule().meta.GetGlobalVars().initAreaBuffer.Overwrite(
866 offset,
867 (const char *)&dbl,
868 sizeof(double)
869 );
[75]870 }
871 else if( type.IsSingle() ){
[308]872 float flt = (float)dbl;
873 compiler.GetObjectModule().meta.GetGlobalVars().initAreaBuffer.Overwrite(
874 offset,
875 (const char *)&flt,
876 sizeof(float)
877 );
[75]878 }
879 else if( type.Is64() || type.IsPointer() ){
[454]880 if( type.GetBasicType() == typeOfPtrChar && type.GetIndex() == LITERAL_STRING ){
[3]881 //文字列定数のとき
882
883 char *temp;
884 temp=(char *)i64data;
[746]885 i2 = compiler.AddStringToDataTable( temp );
[3]886 HeapDefaultFree(temp);
887
888 //mov rax,DataPos
[242]889 compiler.codeGenerator.op_mov_RV(sizeof(_int64),REG_RAX,i2, Schedule::DataTable );
[3]890
891 //mov qword ptr[offset],rax
[232]892 compiler.codeGenerator.op_mov_MR(sizeof(_int64),REG_RAX,0,offset,MOD_DISP32, Schedule::GlobalVar );
[3]893 }
894 else{
[308]895 compiler.GetObjectModule().meta.GetGlobalVars().initAreaBuffer.Overwrite(
896 offset,
897 (const char *)&i64data,
898 sizeof(_int64)
899 );
[3]900 }
901 }
[75]902 else if( type.IsDWord() || type.IsLong() ){
[308]903 long l = (long)i64data;
904 compiler.GetObjectModule().meta.GetGlobalVars().initAreaBuffer.Overwrite(
905 offset,
906 (const char *)&l,
907 sizeof(long)
908 );
[75]909 }
910 else if( type.IsWord() || type.IsInteger() ){
[308]911 short s = (short)i64data;
912 compiler.GetObjectModule().meta.GetGlobalVars().initAreaBuffer.Overwrite(
913 offset,
914 (const char *)&s,
915 sizeof(short)
916 );
[75]917 }
918 else if( type.IsSByte() || type.IsByte() || type.IsBoolean() ){
[308]919 char c = (char)i64data;
920 compiler.GetObjectModule().meta.GetGlobalVars().initAreaBuffer.Overwrite(
921 offset,
922 (const char *)&c,
923 sizeof(char)
924 );
[75]925 }
[3]926
[75]927 return true;
[3]928}
[206]929bool InitLocalVar(int offset,const Type &type,const Subscripts &subscripts,const char *lpszInitBuf){
930 int i2,i3;
[3]931 char temporary[VN_SIZE];
[138]932 char InitBuf[VN_SIZE];
933 lstrcpy( InitBuf, lpszInitBuf );
[3]934
935 if(InitBuf[0]=='['){
936 SlideString(InitBuf+1,-1);
937 InitBuf[lstrlen(InitBuf)-1]=0;
938
[75]939 int typeSize = type.GetSize();
[3]940
[206]941 if( subscripts.size() > 0 ){
942 Subscripts nestSubscripts;
943 for( int i=1; i<(int)subscripts.size(); i++ )
944 {
945 nestSubscripts.push_back( subscripts[i] );
946 }
947
948 typeSize*=JumpSubScripts( nestSubscripts );
949 {
950 int i=0;
951 i2=0;
952 while(1){
953 if( subscripts[0] < i2 ){
[468]954 compiler.errorMessenger.Output(41,0,cp);
[206]955 return 0;
956 }
957 i=GetOneParameter(InitBuf,i,temporary);
958 if(!InitLocalVar(
959 offset+i2*typeSize,
960 type,
961 nestSubscripts,
962 temporary)) return false;
963 i2++;
964 if(InitBuf[i]=='\0') break;
[3]965 }
966 }
[75]967 return true;
[3]968 }
969
[75]970 if(type.IsStruct()){
971 const CClass &objClass = type.GetClass();
[3]972
[140]973 int i = 0;
[584]974 BOOST_FOREACH( Member *pMember, objClass.GetDynamicMembers() ){
[140]975 if(InitBuf[i]=='\0'){
[468]976 compiler.errorMessenger.Output(41,0,cp);
[140]977 return false;
978 }
979
[3]980 i=GetOneParameter(InitBuf,i,temporary);
981
[410]982 i3=objClass.GetMemberOffset( pMember->GetName().c_str() );
[3]983
984 if(!InitLocalVar(offset+i3,
[140]985 pMember->GetType(),
[206]986 pMember->GetSubscripts(),
[75]987 temporary)) return false;
[3]988
989 if(InitBuf[i]=='\0') break;
990 }
[75]991 return true;
[3]992 }
993
[468]994 compiler.errorMessenger.Output(41,0,cp);
[75]995 return false;
[3]996 }
997
[41]998
999 ///////////////////////////////////////
1000 // 単発式([]で囲まれていない)
1001 ///////////////////////////////////////
1002
[206]1003 if( subscripts.size() > 0 ){
[468]1004 compiler.errorMessenger.Output(41,0,cp);
[75]1005 return false;
[3]1006 }
1007
1008 double dbl;
1009 _int64 i64data;
[75]1010 Type calcType;
1011
1012 if( !StaticCalculation(false, InitBuf,type.GetBasicType(),&i64data,calcType) ){
[9]1013 //動的データだった場合
[75]1014 return false;
[9]1015 }
[75]1016 if( calcType.IsReal() ){
[3]1017 memcpy(&dbl,&i64data,sizeof(double));
1018 i64data=(_int64)dbl;
1019 }
1020 else dbl=(double)i64data;
1021
1022 //型チェック
1023 CheckDifferentType(
1024 type,
[75]1025 calcType,
[3]1026 0,0);
1027
[75]1028 if( type.IsDouble() ){
[3]1029 memcpy(&i64data,&dbl,sizeof(double));
1030
1031 //mov rax,i64data
[232]1032 compiler.codeGenerator.op_mov_RV64(REG_RAX,i64data);
[3]1033
1034 //mov qword ptr[rsp+offset],rax
[254]1035 compiler.codeGenerator.localVarPertialSchedules.push_back(
1036 compiler.codeGenerator.op_mov_MR(sizeof(_int64),REG_RAX,REG_RSP,offset,MOD_BASE_DISP32, Schedule::None, true )
1037 );
[3]1038 }
[75]1039 else if( type.IsSingle() ){
[3]1040 float flt;
1041 flt=(float)dbl;
1042
1043 //mov dword ptr[rsp+offset],value
[254]1044 compiler.codeGenerator.localVarPertialSchedules.push_back(
1045 compiler.codeGenerator.op_mov_MV(sizeof(long),REG_RSP,offset, Schedule::None, true, USE_OFFSET,*(int *)&flt)
1046 );
[3]1047 }
[75]1048 else if( type.Is64() || type.IsPointer() ){
[454]1049 if( type.GetBasicType() == typeOfPtrChar && type.GetIndex() == LITERAL_STRING ){
[3]1050 //文字列定数のとき
1051
1052 char *temp;
1053 temp=(char *)i64data;
[746]1054 i2 = compiler.AddStringToDataTable( temp );
[3]1055 HeapDefaultFree(temp);
1056
1057 //mov rax,i2
[242]1058 compiler.codeGenerator.op_mov_RV(sizeof(_int64),REG_RAX,i2, Schedule::DataTable );
[3]1059
1060 //mov qword ptr[rsp+offset],rax
[254]1061 compiler.codeGenerator.localVarPertialSchedules.push_back(
1062 compiler.codeGenerator.op_mov_MR(sizeof(_int64),REG_RAX,REG_RSP,offset,MOD_BASE_DISP32, Schedule::None, true )
1063 );
[3]1064 }
1065 else{
1066 if(i64data&0xFFFFFFFF00000000){
1067 //mov rax,i64data
[232]1068 compiler.codeGenerator.op_mov_RV64(REG_RAX,i64data);
[3]1069
1070 //mov qword ptr[rsp+offset],rax
[254]1071 compiler.codeGenerator.localVarPertialSchedules.push_back(
1072 compiler.codeGenerator.op_mov_MR(sizeof(_int64),REG_RAX,REG_RSP,offset,MOD_BASE_DISP32, Schedule::None, true )
1073 );
[3]1074 }
1075 else{
1076 //mov qword ptr[rsp+offset],value
[254]1077 compiler.codeGenerator.localVarPertialSchedules.push_back(
1078 compiler.codeGenerator.op_mov_MV(sizeof(_int64),REG_RSP,offset, Schedule::None, true, USE_OFFSET,(int)i64data)
1079 );
[3]1080 }
1081 }
1082 }
[75]1083 else if( type.IsDWord() || type.IsLong() ){
[3]1084 //mov dword ptr[rsp+offset],value
[254]1085 compiler.codeGenerator.localVarPertialSchedules.push_back(
1086 compiler.codeGenerator.op_mov_MV(sizeof(long),REG_RSP,offset, Schedule::None, true, USE_OFFSET,(int)i64data)
1087 );
[3]1088 }
[75]1089 else if( type.IsWord() || type.IsInteger() ){
[3]1090 //mov word ptr[rsp+offset],value
[254]1091 compiler.codeGenerator.localVarPertialSchedules.push_back(
1092 compiler.codeGenerator.op_mov_MV(sizeof(short),REG_RSP,offset, Schedule::None, true, USE_OFFSET,(int)i64data)
1093 );
[3]1094 }
[75]1095 else if( type.IsSByte() || type.IsByte() || type.IsBoolean() ){
[3]1096 //mov byte ptr[rsp+offset],value
[254]1097 compiler.codeGenerator.localVarPertialSchedules.push_back(
1098 compiler.codeGenerator.op_mov_MV(sizeof(char),REG_RSP,offset, Schedule::None, true, USE_OFFSET,(int)i64data)
1099 );
[3]1100 }
[75]1101 return true;
[3]1102}
1103
[308]1104void dim( char *VarName, const Subscripts &subscripts, const Type &type,const char *InitBuf,const char *ConstractParameter,DWORD dwFlags)
1105{
[584]1106 if( compiler.IsGlobalAreaCompiling() ){
[64]1107 /////////////////////////
1108 // グローバル変数
1109 /////////////////////////
[3]1110
[206]1111 AddGlobalVariable(VarName,subscripts,type,InitBuf,ConstractParameter,dwFlags);
[64]1112 }
1113 else{
1114 /////////////////
1115 // ローカル変数
1116 /////////////////
1117
[584]1118 if( compiler.GetCompilingUserProc().GetLocalVars().DuplicateCheck( LexicalAnalyzer::FullNameToSymbol( VarName ), compiler.codeGenerator.lexicalScopes.GetNowLevel() ) ){
[75]1119 //2重定義のエラー
[468]1120 compiler.errorMessenger.Output(15,VarName,cp);
[75]1121 return;
[64]1122 }
1123
[75]1124 bool isConst = ( dwFlags & DIMFLAG_CONST ) ? true:false;
[64]1125
[584]1126 Variable *pVar = new Variable(
1127 ActiveBasic::Compiler::LexicalAnalyzer::FullNameToSymbol( VarName ),
1128 type,
1129 isConst,
1130 false,
1131 ConstractParameter,
1132 false
1133 );
[75]1134
[206]1135 if( subscripts.size() > 0 ){
[75]1136 //配列あり
[206]1137 pVar->SetArray( subscripts );
[64]1138 }
1139
[75]1140 //レキシカルスコープ
[254]1141 pVar->SetScopeLevel( compiler.codeGenerator.lexicalScopes.GetNowLevel() );
1142 pVar->SetScopeStartAddress( compiler.codeGenerator.lexicalScopes.GetStartAddress() );
[392]1143 pVar->isLiving = true;
[64]1144
[75]1145 //エラー用
1146 pVar->source_code_address=cp;
[64]1147
[75]1148 // 変数を追加
[584]1149 compiler.GetCompilingUserProc().GetLocalVars().push_back( pVar );
[75]1150
[64]1151 //アラインメントを考慮
[206]1152 if( pVar->GetType().IsStruct() ){
[232]1153 int alignment = pVar->GetType().GetClass().GetFixedAlignment();
[120]1154
[64]1155 if( alignment ){
1156 if( AllLocalVarSize % alignment ){
1157 AllLocalVarSize += alignment - (AllLocalVarSize % alignment);
1158 }
1159 }
[120]1160
1161 if( alignment == PTR_SIZE*2 ){
1162 // ポインタに要するサイズよりも一回り大きなアラインメントが指定されているとき
1163 // (例:CONTEXT構造体など)
1164 // 呼び出し側のオフセットズレを考慮する
1165
[584]1166 if( 0 == ( compiler.GetCompilingUserProc().RealParams().GetMemorySize() + PTR_SIZE /* ret分 */ ) % alignment ){
[120]1167 AllLocalVarSize += PTR_SIZE;
1168 }
1169 }
[64]1170 }
1171
[75]1172 AllLocalVarSize += pVar->GetMemorySize();
[206]1173 pVar->SetOffsetAddress( AllLocalVarSize );
[64]1174
1175 //レキシカルスコープ
[254]1176 pVar->SetScopeLevel( compiler.codeGenerator.lexicalScopes.GetNowLevel() );
1177 pVar->SetScopeStartAddress( compiler.codeGenerator.lexicalScopes.GetStartAddress() );
[392]1178 pVar->isLiving = true;
[64]1179
1180 if(InitBuf[0]){
1181 //初期代入時のみ、書き込みアクセスを許可する
[75]1182 if( isConst ){
1183 pVar->ConstOff();
1184 }
[64]1185
1186 int result = 0;
[206]1187 if( !pVar->GetType().IsObject() ){
1188 result = InitLocalVar(-pVar->GetOffsetAddress(),
1189 pVar->GetType(),
1190 pVar->GetSubscripts(),
[64]1191 InitBuf);
1192 }
1193
1194 if(!result){
1195 //動的な式だった場合は代入演算を行う
1196 char temporary[8192];
1197 sprintf(temporary,"%s=%s",VarName,InitBuf);
1198 OpcodeCalc(temporary);
1199 }
1200
[75]1201 if( isConst ){
1202 pVar->ConstOn();
1203 }
[64]1204 }
1205 else{
1206 //0初期化
1207
1208 //mov r8, 0
[226]1209 compiler.codeGenerator.op_zero_reg( REG_R8 );
[64]1210
1211 //mov rdx, VarSize
[226]1212 compiler.codeGenerator.op_mov_RV( sizeof(_int64), REG_RDX, pVar->GetMemorySize() );
[64]1213
1214 //mov rcx, rsp
[226]1215 compiler.codeGenerator.op_mov_RR( REG_RCX, REG_RSP );
[64]1216
1217 //add rcx, offset
[254]1218 compiler.codeGenerator.localVarPertialSchedules.push_back(
1219 compiler.codeGenerator.op_add_RV( REG_RCX, -pVar->GetOffsetAddress(), Schedule::None, true )
1220 );
[64]1221
1222 //call FillMemory
[75]1223 DllProc *pDllProc;
1224 pDllProc=GetDeclareHash("FillMemory");
[226]1225 compiler.codeGenerator.op_call( pDllProc );
[64]1226 }
1227 }
1228
[350]1229 //New呼び出し
1230 if( type.IsObject()
[370]1231 && !type.IsInterface() && !type.IsComInterface()
[350]1232 &&(dwFlags&DIMFLAG_NONCALL_CONSTRACTOR)==0
1233 &&InitBuf[0]=='\0')
1234 {
[64]1235 char objectSize[255];
[206]1236 if( subscripts.size() == 0 ){
[64]1237 objectSize[0] = 0;
1238 }
1239 else{
[206]1240 if( subscripts.size() > 1 ){
[468]1241 compiler.errorMessenger.Output(300,NULL,cp);
[64]1242 }
[206]1243 sprintf( objectSize, "%d", subscripts[0] );
[64]1244 }
[75]1245 Operator_New( type.GetClass(), objectSize, ConstractParameter, type );
[64]1246
[75]1247 Type tempType;
[64]1248 RELATIVE_VAR RelativeVar;
[75]1249 GetVarOffset( true, false, VarName, &RelativeVar, tempType );
[64]1250 if( RelativeVar.dwKind == VAR_DIRECTMEM ){
[468]1251 compiler.errorMessenger.OutputFatalError();
[64]1252 }
[308]1253 SetVariableFromRax( Type( DEF_OBJECT, *compiler.GetObjectModule().meta.GetClasses().GetObjectClassPtr() ), DEF_OBJECT, &RelativeVar );
[64]1254 }
1255}
[3]1256void SetVarPtrToReg(int reg,RELATIVE_VAR *pRelativeVar){
[468]1257 if(!IsGeneralReg(reg)) compiler.errorMessenger.Output(300,NULL,cp);
[3]1258
1259 if(pRelativeVar->dwKind==VAR_GLOBAL){
1260 if(pRelativeVar->bOffsetOffset){
1261 //add r11,offset
[232]1262 compiler.codeGenerator.op_add_RV( REG_R11, (long)pRelativeVar->offset, Schedule::GlobalVar );
[3]1263
1264 //mov reg,r11
[226]1265 compiler.codeGenerator.op_mov_RR(reg,REG_R11);
[3]1266 }
1267 else{
1268 //mov reg,offset
[232]1269 compiler.codeGenerator.op_mov_RV( sizeof(_int64), reg, (long)pRelativeVar->offset, Schedule::GlobalVar );
[3]1270 }
1271 }
[62]1272 else if( pRelativeVar->dwKind == VAR_REFGLOBAL ){
1273 if(pRelativeVar->bOffsetOffset){
1274 //add r11,qword ptr[offset]
[232]1275 compiler.codeGenerator.op_add_RM( sizeof(_int64), REG_R11, REG_NON, (int)pRelativeVar->offset, MOD_DISP32, Schedule::GlobalVar );
[62]1276 }
1277 else{
1278 //mov r11,qword ptr[offset]
[232]1279 compiler.codeGenerator.op_mov_RM(sizeof(_int64),REG_R11,REG_NON,(int)pRelativeVar->offset,MOD_DISP32, Schedule::GlobalVar );
[62]1280 }
1281
1282 goto directmem;
1283 }
[3]1284 else if(pRelativeVar->dwKind==VAR_LOCAL){
1285 if(pRelativeVar->bOffsetOffset){
1286 //add r11,offset
[254]1287 compiler.codeGenerator.localVarPertialSchedules.push_back(
1288 compiler.codeGenerator.op_add_RV( REG_R11, (long)pRelativeVar->offset, Schedule::None, true )
1289 );
[3]1290
1291 //add r11,rsp
[228]1292 compiler.codeGenerator.op_add_RR(REG_R11,REG_RSP);
[3]1293
1294 //mov reg,r11
[226]1295 compiler.codeGenerator.op_mov_RR(reg,REG_R11);
[3]1296 }
1297 else{
1298 //mov reg,rsp
[226]1299 compiler.codeGenerator.op_mov_RR(reg,REG_RSP);
[3]1300
1301 //add reg,offset
[254]1302 compiler.codeGenerator.localVarPertialSchedules.push_back(
1303 compiler.codeGenerator.op_add_RV(reg,(long)pRelativeVar->offset, Schedule::None, true )
1304 );
[3]1305 }
1306 }
[40]1307 else if( pRelativeVar->dwKind == VAR_REFLOCAL ){
[3]1308 if(pRelativeVar->bOffsetOffset){
1309 //add r11,qword ptr[rsp+offset]
[254]1310 compiler.codeGenerator.localVarPertialSchedules.push_back(
1311 compiler.codeGenerator.op_add_RM( sizeof(_int64), REG_R11, REG_RSP, (long)pRelativeVar->offset, MOD_BASE_DISP32, Schedule::None, true )
1312 );
[3]1313 }
1314 else{
1315 //mov r11,qword ptr[rsp+offset]
[254]1316 compiler.codeGenerator.localVarPertialSchedules.push_back(
1317 compiler.codeGenerator.op_mov_RM(sizeof(_int64),REG_R11,REG_RSP,(int)pRelativeVar->offset,MOD_BASE_DISP32, Schedule::None, true )
1318 );
[3]1319 }
1320
1321 goto directmem;
1322 }
1323 else if(pRelativeVar->dwKind==VAR_DIRECTMEM){
1324directmem:
1325 //mov reg,r11
[226]1326 compiler.codeGenerator.op_mov_RR(reg,REG_R11);
[3]1327 }
1328}
[95]1329
[643]1330bool Compile_AddGlobalRootsForGc()
1331{
[206]1332 const UserProc *pUserProc_AddGlobalRootPtr = GetClassMethod( "_System_CGarbageCollection", "AddGlobalRootPtr" );
[643]1333 if( !pUserProc_AddGlobalRootPtr )
1334 {
[468]1335 compiler.errorMessenger.Output(3, "_System_CGarbageCollection.AddGlobalRootPtr", -1 );
[95]1336 return false;
1337 }
1338
[266]1339 BOOST_FOREACH( const Variable *pVar, compiler.GetObjectModule().meta.GetGlobalVars() ){
[206]1340 if( pVar->GetType().IsObject() || pVar->GetType().IsPointer() || pVar->GetType().IsStruct() ){
[95]1341 // オブジェクトまたはポインタだったとき
1342 // ※構造体も含む(暫定対応)
1343
1344 // 変数領域に要するLONG_PTR単位の個数を引き渡す
1345 //mov r8,count
[226]1346 compiler.codeGenerator.op_mov_RV(sizeof(_int64), REG_R8,pVar->GetMemorySize()/PTR_SIZE);
[95]1347
1348 // ルートポインタを引き渡す
1349 //mov rdx,offset
[232]1350 compiler.codeGenerator.op_mov_RV(sizeof(_int64), REG_RDX,(int)pVar->GetOffsetAddress(), Schedule::GlobalVar );
[95]1351
1352 // Thisポインタを引き渡す
1353 SetThisPtrToReg(REG_RCX);
1354
1355 // call AddGlobalRootPtr
[226]1356 compiler.codeGenerator.op_call( pUserProc_AddGlobalRootPtr );
[95]1357 }
1358 }
1359
1360 return true;
1361}
Note: See TracBrowser for help on using the repository browser.