Changeset 94 in dev for BasicCompiler64/Compile_ProcOp.cpp
- Timestamp:
- Apr 14, 2007, 8:36:04 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler64/Compile_ProcOp.cpp
r91 r94 845 845 } 846 846 847 //_System_TypeBase_InitializeUserTypesは一番最後にコンパイル 848 extern UserProc *pSubStaticMethod_System_TypeBase_InitializeUserTypes; 849 pSubStaticMethod_System_TypeBase_InitializeUserTypes->CompleteCompile(); 850 847 851 //_System_InitStaticLocalVariablesは一番最後にコンパイル 848 852 //※一般関数内の静的変数オブジェクトをすべて収集しなければならない … … 854 858 pSub_System_Call_Destructor_of_GlobalObject->CompleteCompile(); 855 859 856 Repeat:860 repeat: 857 861 for(i2=0;i2<MAX_HASH;i2++){ 858 862 pUserProc=ppSubHash[i2]; … … 863 867 } 864 868 865 //プロシージャコンパイルによって、プロシージャコンパイルが必要になる場合 866 for(i2=0;i2<MAX_HASH;i2++){ 867 pUserProc=ppSubHash[i2]; 868 while(pUserProc){ 869 if( pUserProc->IsUsing() && pUserProc->IsCompiled() == false ){ 870 goto Repeat; 871 } 872 873 pUserProc=pUserProc->pNextData; 869 if( IsNeedProcCompile() ){ 870 //プロシージャコンパイルによって、プロシージャコンパイルが必要になる場合 871 goto repeat; 872 } 873 874 //_System_TypeBase_InitializeUserTypesは最後のほうでコンパイル 875 pSubStaticMethod_System_TypeBase_InitializeUserTypes->KillCompileStatus(); 876 CompileBufferInProcedure( *pSubStaticMethod_System_TypeBase_InitializeUserTypes ); 877 878 if( IsNeedProcCompile() ){ 879 //プロシージャコンパイルによって、プロシージャコンパイルが必要になる場合 880 for(i2=0;i2<MAX_HASH;i2++){ 881 pUserProc=ppSubHash[i2]; 882 while(pUserProc){ 883 CompileBufferInProcedure( *pUserProc ); 884 pUserProc=pUserProc->pNextData; 885 } 874 886 } 875 887 }
Note:
See TracChangeset
for help on using the changeset viewer.