Changeset 44 in dev
- Timestamp:
- Feb 2, 2007, 1:38:08 AM (18 years ago)
- Files:
-
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler64/BasicCompiler.vcproj
r43 r44 629 629 </File> 630 630 <File 631 RelativePath=".\InsertOpcode.cpp"632 >633 </File>634 <File635 631 RelativePath="MakePeHdr.cpp" 636 632 > … … 1531 1527 <File 1532 1528 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" 1533 1541 > 1534 1542 </File> -
BasicCompiler64/Compile_ProcOp.cpp
r42 r44 633 633 } 634 634 635 //コード生成中に関数の先頭領域にDimステートメントを再配置できるようにする636 extern int DimStatementInsertPoint;637 DimStatementInsertPoint=obp;638 639 635 ////////////////////////////////////////// 640 636 ////////////////////////////////////////// -
BasicCompiler_Common/PESchedule.cpp
r34 r44 282 282 CTempSchedule *pobj_TempSchedule; 283 283 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 #endif301 }302
Note:
See TracChangeset
for help on using the changeset viewer.