Ignore:
Timestamp:
Sep 9, 2007, 1:09:00 AM (17 years ago)
Author:
dai_9181
Message:

64bit版でコンパイルできるようにした。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler64/MakePeHdr.cpp

    r317 r318  
    124124    //////////////////
    125125    // データテーブル
    126     compiler.GetObjectModule().dataTable.Clear();
    127126    if(bDebugCompile){
    128127        compiler.GetObjectModule().dataTable.Add( (long)0x00000002 );
     
    148147    AddSourceCode(temp);
    149148    HeapDefaultFree(temp);
    150 
    151     //関数ポインタ情報を初期化
    152     compiler.GetObjectModule().meta.GetProcPointers().clear();
    153149
    154150    // 名前空間情報を取得
     
    338334        {
    339335            //sub rsp,スタックフレームサイズ
    340             compiler.codeGenerator.op_sub_RV( sizeof(_int64), REG_RSP, 0x100 );
     336            compiler.codeGenerator.op_sub_RV( sizeof(_int64), REG_RSP, 0x108 );
    341337
    342338            if(bDebugCompile){
     
    368364
    369365            //add rsp,スタックフレームサイズ
    370             compiler.codeGenerator.op_add_RV( REG_RSP, 0x100 );
     366            compiler.codeGenerator.op_add_RV( REG_RSP, 0x108 );
    371367
    372368            //xor rax,rax(raxを0に初期化する)
     
    810806    extern BOOL bError;
    811807    if(bDebugCompile&&bError==0){
     808        CompileMessage( "デバッグ情報を生成しています。" );
     809
    812810        pobj_DebugSection->make();
     811
     812        CompileMessage( "デバッグ情報の生成が完了しました。" );
    813813    }
    814814
Note: See TracChangeset for help on using the changeset viewer.