source: dev/trunk/abdev/BasicCompiler64/Compile_CallProc.cpp@ 438

Last change on this file since 438 was 436, checked in by dai_9181, 16 years ago

関数の戻り値の構造体など、一時メモリに保持された構造体のメンバに直接アクセスした場合、その一時メモリの解放が正常に行われないバグを修正(64bit版も修正した)。

File size: 16.9 KB
RevLine 
[206]1#include "stdafx.h"
2
[183]3#include <jenga/include/smoothie/Smoothie.h>
4
[198]5#include <Compiler.h>
6
[3]7#include "../BasicCompiler_Common/common.h"
8#include "Opcode.h"
9
10void Call_DebugSys_SaveContext(){
11 //call _System_GetEip
[206]12 extern const UserProc *pSub_System_GetEip;
[226]13 compiler.codeGenerator.op_call(pSub_System_GetEip);
[3]14
15 //mov rdx,rax
[226]16 compiler.codeGenerator.op_mov_RR(REG_RDX,REG_RAX);
[3]17
18 //mov rcx,rsp
[226]19 compiler.codeGenerator.op_mov_RR(REG_RCX,REG_RSP);
[3]20
21 //call _DebugSys_SaveContext
[206]22 extern const UserProc *pSub_DebugSys_SaveContext;
[226]23 compiler.codeGenerator.op_call(pSub_DebugSys_SaveContext);
[3]24}
25
[330]26bool Opcode_CallProcPtr( const char *variable, const char *lpszParms,ProcPointer *pProcPointer)
27{
[3]28 extern BOOL bDebugCompile;
29 extern BOOL bDebugSupportProc;
30 if(bDebugCompile&&bDebugSupportProc==0)
31 Call_DebugSys_SaveContext();
32
33
34 ////////////////////////
35 // パラメータのセット
36 ////////////////////////
37
38 //パラメータオブジェクトを生成
[71]39 ParamImpl *pobj_parameter=0;
[75]40 pobj_parameter=new ParamImpl(lpszParms);
[3]41
[77]42 // デフォルト引数を適用
43 pobj_parameter->ApplyDefaultParameters( pProcPointer->Params() );
44
[3]45 //エラーチェック
[75]46 if( !pobj_parameter->ErrorCheck(variable,pProcPointer->Params() ) ){
[31]47 //パラメータにエラーがあるときは処理を終える
[75]48 return false;
[31]49 }
[3]50
51 //スタックフレームに存在する既存のパラメータをバックアップ
[75]52 pobj_parameter->BackupParameter( (int)pProcPointer->Params().size() );
[3]53
[20]54 //一時オブジェクトを生成
[75]55 pobj_parameter->NewTempParameters( variable,pProcPointer->Params() );
[20]56
[3]57 //レジスタ、スタックフレームにセット
[75]58 pobj_parameter->SetParameter(variable,pProcPointer->Params() );
[3]59
60
61
62 RELATIVE_VAR RelativeVar;
[75]63 GetVarOffsetReadOnly(variable,&RelativeVar,Type());
[3]64 SetVarPtrToReg(REG_RAX,&RelativeVar);
65
66 //mov rax,qword ptr[rax]
[226]67 compiler.codeGenerator.op_mov_RM(sizeof(_int64),REG_RAX,REG_RAX,0,MOD_BASE);
[3]68
69 //call rax
[228]70 compiler.codeGenerator.PutOld(
71 (char)0xFF,
72 (char)0xD0
73 );
[3]74
75
76 //レジスタのブロッキングを解除 ※パラメータセット時にロックされたレジスタ
77 pobj_BlockReg->clear();
78
[20]79 //一時オブジェクトを破棄
80 pobj_parameter->DeleteTempParameters();
81
[3]82 //スタックフレームに存在する既存のパラメータを復元
[75]83 pobj_parameter->RestoreParameter( (int)pProcPointer->Params().size() );
[3]84
85 //パラメータオブジェクトを破棄
86 delete pobj_parameter;
87
[75]88 return true;
[3]89}
90
[345]91bool Opcode_CallProc(const char *Parameter,const UserProc *pUserProc,DWORD dwFlags,const char *ObjectName)
92{
[75]93 if( pUserProc->IsMacro() ){
94 if( lstrcmpi( pUserProc->GetName().c_str(), "Print" ) == 0 ){
[3]95 Opcode_Print(Parameter,0);
[75]96 return true;
[3]97 }
[75]98 if( lstrcmpi( pUserProc->GetName().c_str(), "Input" ) == 0 ){
[3]99 Opcode_Input(Parameter);
[75]100 return true;
[3]101 }
[75]102 if( lstrcmpi( pUserProc->GetName().c_str(), "Write" ) == 0 ){
[3]103 Opcode_Print(Parameter,1);
[75]104 return true;
[3]105 }
106 }
107
[75]108 pUserProc->Using();
[3]109
[47]110 bool isStatic = false;
[75]111 const CClass *pobj_c = NULL;
[135]112 const CMethod *pMethod = NULL;
[304]113 Type leftType;
114 bool isFixedClass = false;
[75]115 if( pUserProc->GetParentClassPtr() ){
[3]116 //クラスのメンバ関数を呼び出す場合はアクセスチェックを行う
[304]117 if(ObjectName[0] && (dwFlags&PROCFLAG_NEW)==0)
118 {
119 if(lstrcmpi(ObjectName,"Super")==0)
120 {
[27]121 //クラスメンバ関数内から基底クラスの呼び出し
[304]122 pobj_c=&compiler.pCompilingClass->GetSuperClass();
123
124 isFixedClass = true;
[3]125 }
[304]126 else
127 {
[47]128 //"->"によってオブジェクトを指定する通常のメンバ関数呼び出し
[75]129 Type varType;
[416]130 if( GetTermType( ObjectName, varType ) )
[308]131 {
[416]132 if( varType.IsObject() )
133 {
134 pobj_c = &varType.GetClass();
135 leftType = varType;
136 }
[308]137 }
[416]138
139 if( !pobj_c )
[308]140 {
[266]141 pobj_c=compiler.GetObjectModule().meta.GetClasses().Find(ObjectName);
[47]142 if( pobj_c ){
143 isStatic = true;
144 }
145 else{
146 SetError(300,NULL,cp);
147 }
[3]148 }
149 }
150 }
151 else{
152 if(dwFlags&PROCFLAG_NEW){
[316]153 GetVarType( ObjectName, leftType, false );
154
[3]155 //New演算子によるコンストラクタ呼び出し
[75]156 pobj_c=pUserProc->GetParentClassPtr();
[3]157 }
158 else{
159 //クラスメンバ関数内から同一クラスのメンバ関数の呼び出し
[206]160 pobj_c=compiler.pCompilingClass;
[3]161 }
162 }
163
[18]164
165 /////////////////////////////////
166 // メソッド情報を取得
167 /////////////////////////////////
[27]168 pMethod = NULL;
[350]169 if( ! isStatic ) pMethod = pobj_c->GetDynamicMethodOrInterfaceMethod( pUserProc );
[27]170 if( ! pMethod ){
[18]171 //動的メソッドが取得できなかったときは静的メソッドを当たる
[135]172 pMethod = pobj_c->GetStaticMethods().GetMethodPtr( pUserProc );
[18]173 if( !pMethod ){
174 SetError(300,NULL,cp);
[75]175 return false;
[3]176 }
[26]177
178 //静的メンバ
[47]179 isStatic = true;
[3]180 }
181
182
183 //////////////////////////////
184 // アクセスエラーチェック
185 //////////////////////////////
186
187 if(ObjectName[0]){
188 //外部からの呼び出し
[206]189 if(pobj_c==compiler.pCompilingClass){
[3]190 //同一クラスオブジェクトの場合はプライベートアクセスを容認する
[137]191 if( pMethod->IsNoneAccess() ){
[75]192 SetError(109,pUserProc->GetName(),cp);
193 return false;
[3]194 }
195 }
196 else{
[137]197 if( pMethod->IsPrivate()
198 || pMethod->IsNoneAccess() ){
[75]199 SetError(109,pUserProc->GetName(),cp);
200 return false;
[3]201 }
[339]202 if( !pMethod->GetUserProc().GetParentClass().IsEqualsOrSubClass( pobj_c ) && pMethod->IsProtected() ){
[75]203 SetError(110,pUserProc->GetName(),cp);
204 return false;
[3]205 }
206 }
207 }
208 else{
209 //クラス内部からの呼び出し(継承によるACCESS_NONのみをエラーとする)
[137]210 if( pMethod->IsNoneAccess() ){
[75]211 SetError(109,pUserProc->GetName(),cp);
212 return false;
[3]213 }
214 }
215 }
216
217
218 ///////////////////////////////////////////////////////////////
[64]219 // _System_LocalThisのダミーをセット
[3]220 ///////////////////////////////////////////////////////////////
221
222 char temporary[VN_SIZE]={0};
[75]223 if( pUserProc->GetParentClassPtr() && isStatic == false ){
[3]224 //_System_LocalThis(第一パラメータ)のダミーを作成
225 lstrcpy(temporary,"0,");
226 }
[320]227 if( pUserProc->ReturnType().IsStruct() ){
228 // ※ByRef _System_ReturnValue パラメータのダミーをセット
229 lstrcat(temporary,"0,");
230 }
[3]231
232 if(Parameter[0]=='\0'&&temporary[0])
233 temporary[lstrlen(temporary)-1]=0;
234 else lstrcat(temporary,Parameter);
235
236
[64]237 //パラメータセット前のspオフセットを取得(Newの場合はここにThisポインタが格納されている)
238 int this_sp_offset = pobj_sf->GetNowSp();
239
240
[3]241 ////////////////////////
242 // パラメータをセット
243 ////////////////////////
244
245 //パラメータオブジェクトを生成
[71]246 ParamImpl *pobj_parameter=0;
247 pobj_parameter=new ParamImpl(temporary);
[3]248
[77]249 // デフォルト引数を適用
250 pobj_parameter->ApplyDefaultParameters( pUserProc->RealParams() );
251
[316]252 // 型パラメータを適用
253 pobj_parameter->SetLeftType( leftType );
254
[3]255 //エラーチェック
[75]256 if( !pobj_parameter->ErrorCheck(pUserProc->GetName(),pUserProc->RealParams(),pUserProc->GetSecondParmNum() ) ){
[31]257 //パラメータにエラーがあるときは処理を終える
[75]258 return false;
[31]259 }
[3]260
[75]261 if(pUserProc->IsMacro()){
[3]262 //マクロ関数の場合は、パラメータ省略を考慮する
[75]263 pobj_parameter->MacroParameterSupport( pUserProc->RealParams() );
[3]264 }
265
266 //スタックフレームに存在する既存のパラメータをバックアップ
[75]267 pobj_parameter->BackupParameter( (int)pUserProc->RealParams().size() );
[3]268
[20]269 //一時オブジェクトを生成
[75]270 pobj_parameter->NewTempParameters( pUserProc->GetName(),pUserProc->RealParams(),pUserProc->GetRealSecondParmNum() );
[20]271
[3]272 //レジスタ、スタックフレームにセット
[316]273 pobj_parameter->SetParameter(pUserProc->GetName(),pUserProc->RealParams(),pUserProc->GetRealSecondParmNum(), pUserProc );
[3]274
[320]275 if( pUserProc->ReturnType().IsStruct() ){
[3]276 //////////////////////////////////////////////////////
[64]277 // 戻り値に構造体インスタンスを持つ場合
278 // ※ByRef _System_ReturnValue パラメータをセット
[3]279 //////////////////////////////////////////////////////
280
281
282 //////////////////////////////////////////////////////
283 ///// レジスタ資源のバックアップ
284 { BACKUP_REGISTER_RESOURCE
285 //////////////////////////////////////////////////////
286
[75]287 int object_size = pUserProc->ReturnType().GetClass().GetSize();
[3]288
289 //mov rcx,object_size
[226]290 compiler.codeGenerator.op_mov_RV(sizeof(_int64),REG_RCX,object_size);
[3]291
292 //call calloc
[206]293 extern const UserProc *pSub_calloc;
[226]294 compiler.codeGenerator.op_call(pSub_calloc);
[3]295
296 //mov r13,rax
[226]297 compiler.codeGenerator.op_mov_RR(REG_R13,REG_RAX);
[3]298
299 /////////////////////////////////////////////
300 ////// レジスタ資源を復元
301 RESTORE_REGISTER_RESOURCE
302 }////////////////////////////////////////////
303
[75]304 if( pUserProc->GetParentClassPtr() && isStatic == false ){
[3]305 //mov rdx,r13
[226]306 compiler.codeGenerator.op_mov_RR(REG_RDX,REG_R13);
[3]307 }
308 else{
309 //mov rcx,r13
[226]310 compiler.codeGenerator.op_mov_RR(REG_RCX,REG_R13);
[3]311 }
312 }
313
314
[75]315 if( pUserProc->GetParentClassPtr() && isStatic == false ){
[3]316 ///////////////////////////////
317 // メンバ関数の場合
318 // thisポインタをrcxで受け渡す
319 ///////////////////////////////
320
[97]321 if(ObjectName[0] && (dwFlags&PROCFLAG_NEW)==0){
[3]322 if(lstrcmpi(ObjectName,"Super")==0) goto InClassMember;
323 else{
[436]324 bool isLiteral, isNeedHeapFreeStructure = false;
[420]325 Type baseType( DEF_OBJECT, *pUserProc->GetParentClassPtr() ) , resultType;
[436]326 if( !TermOpe( ObjectName, baseType, resultType, isLiteral, isNeedHeapFreeStructure, NULL, false, !pMethod->IsConst() ) )
[416]327 {
328 return false;
[18]329 }
[436]330 if( !resultType.IsObject() )
331 {
332 SetError();
333 }
[18]334
[416]335 // 実態ポインタをraxにコピー
336 compiler.codeGenerator.op_mov_RR( REG_RCX, REG_RAX );
[3]337 }
338 }
339 else{
340InClassMember:
341 if(dwFlags&PROCFLAG_NEW){
342 //New演算子によるコンストラクタ呼び出しの場合
343
344 //mov rcx,qword ptr[rsp+offset] ※スタックフレームを利用
[64]345 pobj_sf->ref_offset_data(REG_RCX, this_sp_offset);
[3]346 }
347 else{
348 //自身のオブジェクトのThisポインタをrcxにコピー
349 SetThisPtrToReg(REG_RCX);
350 }
351 }
352 }
353
[304]354 if( pUserProc->IsVirtual() && !isFixedClass ){
[349]355 int vtblIndex;
356 if( pobj_c->IsInterface() )
357 {
[370]358 // インターフェイス メソッド呼び出し
[3]359
[349]360 int offset_vtbl = compiler.GetObjectModule().meta.GetClasses().GetInterfaceInfoClassPtr()->GetMemberOffset( "__vtbl" );
[348]361
[349]362 // vtblのポインタを取得
363 //mov r11,qword ptr[rcx+offset_vtbl]
364 compiler.codeGenerator.op_mov_RM(sizeof(_int64),REG_R11,REG_RCX,offset_vtbl,MOD_BASE_DISP8);
[3]365
[349]366 int offset_this = compiler.GetObjectModule().meta.GetClasses().GetInterfaceInfoClassPtr()->GetMemberOffset( "__this" );
[3]367
[349]368 // インターフェイスの場合は更に__thisを取得する
369 //mov rcx,qword ptr[rcx+offset_this]
370 compiler.codeGenerator.op_mov_RM(sizeof(_int64),REG_RCX,REG_RCX,offset_this,MOD_BASE_DISP8);
371
372 int vtblMasterListIndex;
373 pobj_c->GetVtblMasterListIndexAndVtblIndex( pUserProc, vtblMasterListIndex, vtblIndex );
374 if( vtblMasterListIndex != 0 )
375 {
376 SetError();
377 }
378 }
[370]379 else if( pobj_c->IsComInterface() )
380 {
381 // COMインターフェイス メソッド呼び出し
382
383 //仮想関数(オブジェクトメソッド)呼び出し
384 // pObj -> vtbl1 -> func1
385 // -> func2
386 // -> func3
387
388 int vtblMasterListIndex;
389 pobj_c->GetVtblMasterListIndexAndVtblIndex( pUserProc, vtblMasterListIndex, vtblIndex );
390
391 // vtblのポインタを取得
392 //mov r11,qword ptr[rcx]
393 compiler.codeGenerator.op_mov_RM(sizeof(_int64),REG_R11,REG_RCX,0,MOD_BASE); }
[349]394 else
395 {
396 //仮想関数(オブジェクトメソッド)呼び出し
397 // pObj -> vtbl_master_list -> vtbl1 -> func1
398 // -> func2
399 // -> func3
400 // -> vtbl2 -> func1
401 // -> func2
402 // -> func3
403
404 int vtblMasterListIndex;
405 pobj_c->GetVtblMasterListIndexAndVtblIndex( pUserProc, vtblMasterListIndex, vtblIndex );
406
407 // vtblマスターリストのポインタを取得
[370]408 //mov r11,qword ptr[rcx+sizeof(com_vtbl)]
409 compiler.codeGenerator.op_mov_RM(sizeof(_int64),REG_R11,REG_RCX,PTR_SIZE,MOD_BASE_DISP8);
[349]410
411 // vtblのポインタを取得
412 //mov r11,dword ptr[r11+vtblMasterListIndex]
413 compiler.codeGenerator.op_mov_RM( sizeof(_int64), REG_R11, REG_R11, vtblMasterListIndex*PTR_SIZE, MOD_BASE_DISP32 );
414 }
415
[3]416 //call qword ptr[r11+func_index]
[345]417 if( vtblIndex * PTR_SIZE <= 0x7F ){
[228]418 compiler.codeGenerator.PutOld(
419 (char)0x41,
420 (char)0xFF,
421 (char)0x53,
[345]422 (char)(vtblIndex*PTR_SIZE)
[228]423 );
[3]424 }
425 else{
[228]426 compiler.codeGenerator.PutOld(
427 (char)0x41,
428 (char)0xFF,
429 (char)0x93,
[345]430 (long)(vtblIndex*PTR_SIZE)
[228]431 );
[3]432 }
433 }
434 else{
435 //通常呼び出し
436
437 //call ProcAddr
[226]438 compiler.codeGenerator.op_call(pUserProc);
[3]439 }
440
441 /* 64コンパイラでは不要
[75]442 if(pDllProc->bCdecl){
[3]443 //add esp,ParmSize
444 }*/
445
446
447 //レジスタのブロッキングを解除 ※パラメータセット時にロックされたレジスタ
448 pobj_BlockReg->clear();
449
[20]450 //一時オブジェクトを破棄
451 pobj_parameter->DeleteTempParameters();
452
[3]453 //スタックフレームに存在する既存のパラメータを復元
[75]454 pobj_parameter->RestoreParameter( (int)pUserProc->RealParams().size() );
[3]455
456 //パラメータオブジェクトを破棄
457 delete pobj_parameter;
[75]458
459 return true;
[3]460}
461
[75]462bool Opcode_CallDllProc( const char *lpszParms, DllProc *pDllProc ){
[3]463
464 extern BOOL bDebugCompile;
465 extern BOOL bDebugSupportProc;
[75]466 if(bDebugCompile&&bDebugSupportProc==0&& pDllProc->GetName() != "DebugBreak" ){
[3]467 Call_DebugSys_SaveContext();
[75]468 }
[3]469
470
471 ////////////////////////
472 // パラメータのセット
473 ////////////////////////
474
475 //パラメータオブジェクトを生成
[71]476 ParamImpl *pobj_parameter=0;
[75]477 pobj_parameter=new ParamImpl(lpszParms);
[3]478
[77]479 // デフォルト引数を適用
480 pobj_parameter->ApplyDefaultParameters( pDllProc->Params() );
481
[3]482 //エラーチェック
[75]483 if( !pobj_parameter->ErrorCheck( pDllProc->GetName(), pDllProc->Params() ) ){
[31]484 //パラメータにエラーがあるときは処理を終える
[75]485 return false;
[31]486 }
[3]487
488 //スタックフレームに存在する既存のパラメータをバックアップ
[75]489 pobj_parameter->BackupParameter( (int)pDllProc->Params().size() );
[3]490
[45]491 //一時オブジェクトを生成
[75]492 pobj_parameter->NewTempParameters( pDllProc->GetName(), pDllProc->Params() );
[45]493
[3]494 //レジスタ、スタックフレームにセット
[75]495 pobj_parameter->SetParameter(pDllProc->GetName(), pDllProc->Params() );
[3]496
497
498 //レジスタのブロッキングを解除 ※パラメータセット時にロックされたレジスタ
499 pobj_BlockReg->clear();
500
501
502 //動的リンクされたプロシージャの呼び出し
503
504 //call dword ptr[ImportTable]
[226]505 compiler.codeGenerator.op_call( pDllProc );
[3]506
507 /* 64コンパイラでは不要
[75]508 if(pDllProc->bCdecl){
[3]509 //add esp,ParmSize
510 }*/
511
[45]512 //一時オブジェクトを破棄
513 pobj_parameter->DeleteTempParameters();
514
[3]515 //スタックフレームに存在する既存のパラメータを復元
[75]516 pobj_parameter->RestoreParameter( (int)pDllProc->Params().size() );
[3]517
518 //パラメータオブジェクトを破棄
519 delete pobj_parameter;
520
[75]521 return true;
[3]522}
[325]523
[330]524void Opcode_CallDelegate( const Delegate &dg, const char *methodPtrValueStr, const char *objPtrValueStr, const char *params )
[325]525{
[339]526 extern BOOL bDebugCompile;
527 extern BOOL bDebugSupportProc;
528 if(bDebugCompile&&bDebugSupportProc==0)
529 Call_DebugSys_SaveContext();
530
531
[330]532 ///////////////////////////////////////////////////////////////
533 // _System_LocalThisのダミーをセット
534 ///////////////////////////////////////////////////////////////
535
536 char temporary[VN_SIZE]={0};
[339]537 bool isDynamicCall = false;
[330]538 if( objPtrValueStr && objPtrValueStr[0] ){
539 //_System_LocalThis(第一パラメータ)のダミーを作成
540 lstrcpy(temporary,"0,");
[339]541
542 isDynamicCall = true;
[330]543 }
544 if( dg.ReturnType().IsStruct() ){
545 // ※ByRef _System_ReturnValue パラメータのダミーをセット
546 lstrcat(temporary,"0,");
547 }
548
549 if(params[0]=='\0'&&temporary[0])
550 temporary[lstrlen(temporary)-1]=0;
551 else lstrcat(temporary,params);
552
[339]553 const Parameters *pParams = &dg.Params();
554 if( isDynamicCall )
555 {
556 pParams = &dg.GetDynamicParams();
557 }
[330]558
559
[339]560 ParamImpl *pobj_parameter = new ParamImpl( temporary );
561
[330]562 //スタックフレームに存在する既存のパラメータをバックアップ
[339]563 pobj_parameter->BackupParameter( (int)pParams->size() );
[330]564
565 //一時オブジェクトを生成
[339]566 pobj_parameter->NewTempParameters( dg.GetName(), *pParams );
[330]567
568 //レジスタ、スタックフレームにセット
[339]569 pobj_parameter->SetParameter( dg.GetName(), *pParams );
[330]570
571
572 if( objPtrValueStr && objPtrValueStr[0] )
573 {
574 RELATIVE_VAR RelativeVar;
575 //Constアクセスが不可能なメソッドの場合
576 if( !GetVarOffsetReadWrite( objPtrValueStr, &RelativeVar, Type() ) ){
577 Jenga::Throw( "Opcode_CallDelegate関数内で呼ばれるGetVarOffsetReadWrite関数に失敗" );
578 return;
579 }
580
581 SetVarPtrToReg(REG_RCX,&RelativeVar);
582
583 // 参照を実体ポインタにする
584 //mov rcx,qword ptr[rcx]
585 compiler.codeGenerator.op_mov_RM(sizeof(_int64),REG_RCX,REG_RCX,0,MOD_BASE);
586 }
587
588
589 {
590 ////////////////////////
591 // call
592 ////////////////////////
593 RELATIVE_VAR RelativeVar;
594 GetVarOffsetReadOnly( methodPtrValueStr, &RelativeVar, Type() );
595 SetVarPtrToReg(REG_RAX,&RelativeVar);
596
597 //mov rax,qword ptr[rax]
598 compiler.codeGenerator.op_mov_RM(sizeof(_int64),REG_RAX,REG_RAX,0,MOD_BASE);
599
600 //call rax
601 compiler.codeGenerator.PutOld(
602 (char)0xFF,
603 (char)0xD0
604 );
605 }
606
607
608 //レジスタのブロッキングを解除 ※パラメータセット時にロックされたレジスタ
609 pobj_BlockReg->clear();
610
611 //一時オブジェクトを破棄
612 pobj_parameter->DeleteTempParameters();
613
614 //スタックフレームに存在する既存のパラメータを復元
[339]615 pobj_parameter->RestoreParameter( (int)pParams->size() );
[330]616
617 //パラメータオブジェクトを破棄
618 delete pobj_parameter;
[325]619}
Note: See TracBrowser for help on using the repository browser.