Changeset 283 in dev
- Timestamp:
- Aug 15, 2007, 3:22:56 AM (17 years ago)
- Location:
- trunk/abdev
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler32/CParameter.cpp
r225 r283 220 220 if(Parms[i2][0]==1&&Parms[i2][1]==ESC_BYVAL){ 221 221 char temp2[255]; 222 sprintf(temp2,"%s関数の第%dパラメータ",procName ,i2+1);222 sprintf(temp2,"%s関数の第%dパラメータ",procName.c_str(),i2+1); 223 223 SetError(19,temp2,cp); 224 224 continue; -
trunk/abdev/BasicCompiler32/Compile_ProcOp.cpp
r282 r283 751 751 752 752 void CompileBufferInProcedure( const UserProc &userProc ){ 753 if( userProc.Is Using() == false || userProc.IsCompiled() ) return;753 if( userProc.IsCompiled() ) return; 754 754 755 755 _compile_proc( &userProc ); -
trunk/abdev/BasicCompiler32/MakePeHdr.cpp
r282 r283 401 401 InitGCVariables(); 402 402 403 //_System_StartupProgramの呼び出し 404 compiler.codeGenerator.op_call(pSub_System_StartupProgram); 403 if( compiler.IsStaticLibrary() ){ 404 //_System_StartupProgramの呼び出し 405 compiler.codeGenerator.op_call(pSub_System_StartupProgram); 406 } 405 407 406 408 //クラスに属する静的メンバを定義 … … 423 425 424 426 425 /////////////////////////////////////// 426 // グローバル文字列変数の解放処理 427 /////////////////////////////////////// 428 429 //call _System_End 430 extern const UserProc *pSub_System_End; 431 compiler.codeGenerator.op_call(pSub_System_End); 432 433 434 //xor eax,eax(eaxを0に初期化する) 435 compiler.codeGenerator.op_zero_reg(REG_EAX); 436 437 //pop ebp 438 compiler.codeGenerator.op_pop(REG_EBP); 439 440 //ret 441 compiler.codeGenerator.op_ret(); 427 if( !compiler.IsStaticLibrary() ) 428 { 429 /////////////////////////////////////// 430 // グローバル文字列変数の解放処理 431 /////////////////////////////////////// 432 433 //call _System_End 434 extern const UserProc *pSub_System_End; 435 compiler.codeGenerator.op_call(pSub_System_End); 436 437 438 //xor eax,eax(eaxを0に初期化する) 439 compiler.codeGenerator.op_zero_reg(REG_EAX); 440 441 //pop ebp 442 compiler.codeGenerator.op_pop(REG_EBP); 443 444 //ret 445 compiler.codeGenerator.op_ret(); 446 } 442 447 443 448 //グローバル実行領域のコードサイズ -
trunk/abdev/BasicCompiler_Common/src/Meta.cpp
r280 r283 84 84 BOOST_FOREACH( Variable *pVar, meta.globalVars ) 85 85 { 86 // 基底スコープレベルのグローバル変数の生存値をオンにする 87 if( pVar->GetScopeLevel() == 0 ) 88 { 89 pVar->bLiving = TRUE; 90 } 91 86 92 pVar->isTargetObjectModule = false; 87 93 this->globalVars.Add( pVar ); -
trunk/abdev/BasicCompiler_Common/src/Source.cpp
r281 r283 815 815 816 816 // basic.sbpをインクルード 817 //const char *headCode = "#include <basic.sbp>\n";818 const char *headCode = "\n";817 const char *headCode = "#include <basic.sbp>\n"; 818 //const char *headCode = "\n"; 819 819 Realloc( length + lstrlen(headCode) ); 820 820 Text::SlideString( buffer, lstrlen(headCode) );
Note:
See TracChangeset
for help on using the changeset viewer.