Changeset 44 in dev


Ignore:
Timestamp:
Feb 2, 2007, 1:38:08 AM (17 years ago)
Author:
dai_9181
Message:

静的再配置に関するコードを削除

Files:
1 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • BasicCompiler64/BasicCompiler.vcproj

    r43 r44  
    629629                </File>
    630630                <File
    631                     RelativePath=".\InsertOpcode.cpp"
    632                     >
    633                 </File>
    634                 <File
    635631                    RelativePath="MakePeHdr.cpp"
    636632                    >
     
    15311527                    <File
    15321528                        RelativePath="..\BasicCompiler_Common\Exception.h"
     1529                        >
     1530                    </File>
     1531                </Filter>
     1532                <Filter
     1533                    Name="NativeCode"
     1534                    >
     1535                    <File
     1536                        RelativePath="..\BasicCompiler_Common\NativeCode.cpp"
     1537                        >
     1538                    </File>
     1539                    <File
     1540                        RelativePath="..\BasicCompiler_Common\NativeCode.h"
    15331541                        >
    15341542                    </File>
  • BasicCompiler64/Compile_ProcOp.cpp

    r42 r44  
    633633    }
    634634
    635     //コード生成中に関数の先頭領域にDimステートメントを再配置できるようにする
    636     extern int DimStatementInsertPoint;
    637     DimStatementInsertPoint=obp;
    638 
    639635    //////////////////////////////////////////
    640636    //////////////////////////////////////////
  • BasicCompiler_Common/PESchedule.cpp

    r34 r44  
    282282CTempSchedule *pobj_TempSchedule;
    283283
    284 
    285 
    286 /////////////////////////
    287 // 静的再配置
    288 /////////////////////////
    289 
    290 void NativeBuffer_StaticRelocation(int iStartPos,int iSize,int offset){
    291     pobj_DataTableSchedule->move(iStartPos,iSize,offset);
    292     pobj_GlobalVarSchedule->move(iStartPos,iSize,offset);
    293     pobj_ImportAddrSchedule->move(iStartPos,iSize,offset);
    294     pobj_SubAddrSchedule->move(iStartPos,iSize,offset);
    295 
    296     pobj_TempSchedule->move(iStartPos,iSize,offset);
    297 
    298 #ifdef _AMD64_
    299     pobj_sf->move(iStartPos,iSize,offset);
    300 #endif
    301 }
    302 
Note: See TracChangeset for help on using the changeset viewer.