Ignore:
Timestamp:
Jun 15, 2008, 11:59:46 PM (16 years ago)
Author:
dai_9181
Message:

・デバッグトレース時、グローバル領域の終端行でステップインまたはステップアウトしたときにデバッグ情報の取得に失敗して強制終了してしまう不具合を修正。
・グローバル領域のデバッグ実行ができなくなっている不具合を修正。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/abdev/compiler_x86/MakePeHdr.cpp

    r640 r641  
    260260    if(pSub_System_GetEip=GetSubHash("_System_GetEip",1)){
    261261        pSub_System_GetEip->Using();
    262         pSub_System_GetEip->ThisIsSystemProc();
     262        pSub_System_GetEip->ThisIsAutoGenerationSystemProc();
    263263    }
    264264
    265265    if(pSub_System_InitDllGlobalVariables=GetSubHash("_System_InitDllGlobalVariables",1)){
    266266        pSub_System_InitDllGlobalVariables->Using();
    267         pSub_System_InitDllGlobalVariables->ThisIsSystemProc();
     267        pSub_System_InitDllGlobalVariables->ThisIsAutoGenerationSystemProc();
    268268    }
    269269
    270270    if(pSub_System_InitStaticLocalVariables=GetSubHash("_System_InitStaticLocalVariables",1)){
    271271        pSub_System_InitStaticLocalVariables->Using();
    272         pSub_System_InitStaticLocalVariables->ThisIsSystemProc();
     272        pSub_System_InitStaticLocalVariables->ThisIsAutoGenerationSystemProc();
    273273    }
    274274
    275275    if(pSub_System_Call_Destructor_of_GlobalObject=GetSubHash("_System_Call_Destructor_of_GlobalObject",1)){
    276276        pSub_System_Call_Destructor_of_GlobalObject->Using();
    277         pSub_System_Call_Destructor_of_GlobalObject->ThisIsSystemProc();
     277        pSub_System_Call_Destructor_of_GlobalObject->ThisIsAutoGenerationSystemProc();
    278278    }
    279279
     
    329329    pSub_allrem=GetSubHash("_allrem");
    330330    pSub_allrem->Using();
    331     pSub_allrem->ThisIsSystemProc();
     331    pSub_allrem->ThisIsAutoGenerationSystemProc();
    332332
    333333    pSub_aullrem=GetSubHash("_aullrem");
    334334    pSub_aullrem->Using();
    335     pSub_aullrem->ThisIsSystemProc();
     335    pSub_aullrem->ThisIsAutoGenerationSystemProc();
    336336
    337337    pSub_allmul=GetSubHash("_allmul");
    338338    pSub_allmul->Using();
    339     pSub_allmul->ThisIsSystemProc();
     339    pSub_allmul->ThisIsAutoGenerationSystemProc();
    340340
    341341    pSub_alldiv=GetSubHash("_alldiv");
    342342    pSub_alldiv->Using();
    343     pSub_alldiv->ThisIsSystemProc();
     343    pSub_alldiv->ThisIsAutoGenerationSystemProc();
    344344
    345345    pSub_aulldiv=GetSubHash("_aulldiv");
    346346    pSub_aulldiv->Using();
    347     pSub_aulldiv->ThisIsSystemProc();
     347    pSub_aulldiv->ThisIsAutoGenerationSystemProc();
    348348
    349349    pSub_allshl=GetSubHash("_allshl");
    350350    pSub_allshl->Using();
    351     pSub_allshl->ThisIsSystemProc();
     351    pSub_allshl->ThisIsAutoGenerationSystemProc();
    352352
    353353    pSub_allshr=GetSubHash("_allshr");
    354354    pSub_allshr->Using();
    355     pSub_allshr->ThisIsSystemProc();
     355    pSub_allshr->ThisIsAutoGenerationSystemProc();
    356356
    357357    pSub_aullshr=GetSubHash("_aullshr");
    358358    pSub_aullshr->Using();
    359     pSub_aullshr->ThisIsSystemProc();
     359    pSub_aullshr->ThisIsAutoGenerationSystemProc();
    360360
    361361    pSub_esp_error=GetSubHash("_esp_error");
Note: See TracChangeset for help on using the changeset viewer.