Changeset 256 in dev for trunk/abdev/BasicCompiler_Common/VarList.cpp
- Timestamp:
- Aug 1, 2007, 11:19:01 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/VarList.cpp
r220 r256 275 275 extern int MemPos_RWSection; 276 276 277 BOOST_FOREACH( Variable *pVar, compiler. GetMeta().GetGlobalVars() ){277 BOOST_FOREACH( Variable *pVar, compiler.objectModule.meta.GetGlobalVars() ){ 278 278 279 279 //スコープ外の場合は無視 … … 358 358 359 359 UserProc *pUserProc = NULL; 360 compiler. GetMeta().GetUserProcs().Iterator_Reset();361 while( compiler. GetMeta().GetUserProcs().Iterator_HasNext() )360 compiler.objectModule.meta.GetUserProcs().Iterator_Reset(); 361 while( compiler.objectModule.meta.GetUserProcs().Iterator_HasNext() ) 362 362 { 363 pUserProc = compiler. GetMeta().GetUserProcs().Iterator_GetNext();363 pUserProc = compiler.objectModule.meta.GetUserProcs().Iterator_GetNext(); 364 364 if(rva_to_real(pUserProc->GetBeginOpAddress()) <= pobj_dti->lplpObp[i2] && 365 365 pobj_dti->lplpObp[i2] < rva_to_real(pUserProc->GetEndOpAddress())){ … … 605 605 606 606 UserProc *pUserProc = NULL; 607 compiler. GetMeta().GetUserProcs().Iterator_Reset();608 while( compiler. GetMeta().GetUserProcs().Iterator_HasNext() )607 compiler.objectModule.meta.GetUserProcs().Iterator_Reset(); 608 while( compiler.objectModule.meta.GetUserProcs().Iterator_HasNext() ) 609 609 { 610 pUserProc = compiler. GetMeta().GetUserProcs().Iterator_GetNext();610 pUserProc = compiler.objectModule.meta.GetUserProcs().Iterator_GetNext(); 611 611 612 612 if(rva_to_real(pUserProc->GetBeginOpAddress()) <= pobj_dti->lplpObp[i2] && … … 718 718 719 719 UserProc *pUserProc = NULL; 720 compiler. GetMeta().GetUserProcs().Iterator_Reset();721 while( compiler. GetMeta().GetUserProcs().Iterator_HasNext() )720 compiler.objectModule.meta.GetUserProcs().Iterator_Reset(); 721 while( compiler.objectModule.meta.GetUserProcs().Iterator_HasNext() ) 722 722 { 723 pUserProc = compiler. GetMeta().GetUserProcs().Iterator_GetNext();723 pUserProc = compiler.objectModule.meta.GetUserProcs().Iterator_GetNext(); 724 724 725 725 if(rva_to_real(pUserProc->GetBeginOpAddress()) <= pobj_dti->lplpObp[i2] &&
Note:
See TracChangeset
for help on using the changeset viewer.