source: dev/trunk/abdev/BasicCompiler32/MakePeHdr.cpp@ 225

Last change on this file since 225 was 225, checked in by dai_9181, 17 years ago

CodeGeneratorクラスのベースを実装

File size: 56.7 KB
Line 
1#include "stdafx.h"
2
3#include <jenga/include/common/Environment.h>
4
5#include <jenga/include/smoothie/Smoothie.h>
6
7#include <LexicalScopingImpl.h>
8#include <Class.h>
9#include <Compiler.h>
10#include <NamespaceSupporter.h>
11
12#include <../Enum.h>
13
14#include "../BasicCompiler_Common/common.h"
15#include "../BasicCompiler_Common/DebugSection.h"
16#include "Opcode.h"
17
18extern int GlobalOpBufferSize;
19
20
21////////////////////////////
22// 特殊関数の構造体ポインタ
23////////////////////////////
24
25// グローバル関数、静的メソッド
26const UserProc
27 *pSub_System_StartupProgram,
28 *pSub_DebugSys_StartProc,
29 *pSub_DebugSys_EndProc,
30 *pSub_DebugSys_SaveContext,
31 *pSub_System_GetEip,
32 *pSub_System_InitDllGlobalVariables,
33 *pSub_System_InitStaticLocalVariables,
34 *pSub_System_Call_Destructor_of_GlobalObject,
35 *pSub_System_End,
36 *pSub_System_GetSp,
37 *pSub_pow,
38 *pSub_calloc,
39 *pSub_realloc,
40 *pSub_free,
41 *pSub_System_GC_malloc_ForObject,
42 *pSub_System_GC_malloc_ForObjectPtr,
43 *pSub_System_GC_free_for_SweepingDelete,
44 *pSubStaticMethod_System_TypeBase_InitializeUserTypes,
45
46 *pSub_allrem,
47 *pSub_aullrem,
48 *pSub_allmul,
49 *pSub_alldiv,
50 *pSub_aulldiv,
51 *pSub_allshl,
52 *pSub_allshr,
53 *pSub_aullshr,
54
55 *pSub_esp_error;
56
57// 動的メソッド
58const UserProc
59 *pUserProc_System_CGarbageCollection_RegisterGlobalRoots;
60
61
62//////////////////////////////
63// 各セクションの位置とサイズ
64int FileSize_CodeSection,
65 FileSize_ExportSection,
66 FileSize_ImportSection,
67 FileSize_DataSection,
68 FileSize_RWSection,
69 FileSize_RSrcSection,
70 FileSize_RelocSection,
71 FileSize_DebugSection;
72int FilePos_CodeSection,
73 FilePos_ExportSection,
74 FilePos_ImportSection,
75 FilePos_DataSection,
76 FilePos_RWSection,
77 FilePos_RSrcSection,
78 FilePos_RelocSection,
79 FilePos_DebugSection;
80int MemSize_CodeSection,
81 MemSize_ExportSection,
82 MemSize_ImportSection,
83 MemSize_DataSection,
84 MemSize_RWSection,
85 MemSize_RSrcSection,
86 MemSize_RelocSection,
87 MemSize_DebugSection;
88int MemPos_CodeSection,
89 MemPos_ExportSection,
90 MemPos_ImportSection,
91 MemPos_DataSection,
92 MemPos_RWSection,
93 MemPos_RSrcSection,
94 MemPos_RelocSection,
95 MemPos_DebugSection;
96int bUse_CodeSection,
97 bUse_ExportSection,
98 bUse_ImportSection,
99 bUse_DataSection,
100 bUse_RWSection,
101 bUse_RSrcSection,
102 bUse_RelocSection,
103 bUse_DebugSection;
104
105
106void DebugVariable(void){
107 char temporary[255];
108 sprintf(temporary,"_DebugSys_dwThreadID[255]%c%cDWord",1,ESC_AS);
109 OpcodeDim(temporary,DIMFLAG_INITDEBUGVAR);
110 sprintf(temporary,"_DebugSys_ProcNum[255]%c%cDWord",1,ESC_AS);
111 OpcodeDim(temporary,DIMFLAG_INITDEBUGVAR);
112 sprintf(temporary,"_DebugSys_lplpObp[255]%c%c*ULONG_PTR",1,ESC_AS);
113 OpcodeDim(temporary,DIMFLAG_INITDEBUGVAR);
114 sprintf(temporary,"_DebugSys_lplpSpBase[255]%c%c*ULONG_PTR",1,ESC_AS);
115 OpcodeDim(temporary,DIMFLAG_INITDEBUGVAR);
116}
117
118void Compile(void){
119 extern HWND hMainDlg;
120 extern HWND hOwnerEditor;
121 extern HANDLE hHeap;
122 extern BOOL bDebugCompile;
123 extern BOOL bDll;
124 extern DWORD ImageBase;
125 extern int obp_AllocSize;
126 extern char *basbuf;
127 extern char OutputFileName[MAX_PATH];
128
129 int i,i2,i3,i4,i5;
130 char temporary[MAX_PATH],*temp2;
131 HANDLE hFile;
132
133
134 //コードセクションのメモリ上の位置
135 MemPos_CodeSection= 0x1000;
136
137 //データセクションのメモリ上の位置(仮定)
138 MemPos_DataSection= 0x10000000;
139
140
141 //エクスポート セクションを利用するかどうか
142 if(bDll) bUse_ExportSection=1;
143 else bUse_ExportSection=0;
144
145
146 //////////////////
147 // データテーブル
148 compiler.GetDataTable().Init();
149 if(bDebugCompile){
150 compiler.GetDataTable().Add( (long)0x00000002 );
151 }
152
153
154 //////////////////////
155 // コード生成前の準備
156 //////////////////////
157
158 //重複エラー情報管理のメモリを確保(グローバル領域コンパイル用)
159 extern char **SynonymErrorWords;
160 extern int SynonymErrorNum;
161 SynonymErrorNum=0;
162 SynonymErrorWords=(char **)HeapAlloc(hHeap,0,1);
163
164 //列挙体に関する情報の初期化
165 CEnumParent::InitEnum();
166
167 //列挙体からクラスコードを生成
168 char *temp;
169 temp=CEnumParent::GenerateCodes();
170 AddSourceCode(temp);
171 HeapDefaultFree(temp);
172
173 //関数ポインタ情報を初期化
174 compiler.GetMeta().GetProcPointers().clear();
175
176 // 名前空間情報を取得
177 NamespaceSupporter::CollectNamespaces(
178 Smoothie::Lexical::source.GetBuffer(),
179 compiler.GetMeta().GetNamespaces()
180 );
181
182 //クラス名を取得(詳細情報はGetAllClassInfoで取得)
183 // CollectProcedures関数の中で参照されるオブジェクト名を事前に取得する。
184 // ※オブジェクトの内容までは取得しない
185 compiler.GetMeta().GetClasses().CollectClassesForNameOnly( Smoothie::Lexical::source );
186
187 //TypeDef情報を初期化
188 compiler.GetMeta().GetTypeDefs().Init();
189
190 //定数情報を取得
191 GetConstInfo();
192
193 // サブルーチン(ユーザー定義、DLL関数)の識別子、アドレスを取得
194 compiler.pCompilingClass = NULL;
195 CollectProcedures(
196 Smoothie::Lexical::source,
197 compiler.GetMeta().GetUserProcs(),
198 compiler.GetMeta().GetDllProcs()
199 );
200
201 // クラス情報を取得(※注 - CollectProceduresの後に呼び出す)
202 compiler.GetMeta().GetClasses().GetAllClassInfo();
203
204 // サブルーチン(ユーザー定義、DLL関数)のイテレータの準備
205 compiler.GetMeta().GetUserProcs().Iterator_Init();
206 compiler.GetMeta().GetDllProcs().Iterator_Init();
207
208
209 if( !compiler.GetMeta().WriteXml( Jenga::Common::Environment::GetAppDir() + "\\meta_test.xml" ) )
210 {
211 MessageBox(0,"XML書き込みに失敗","test",0);
212 }
213 MetaImpl *pTempMeta = new MetaImpl();
214 if( !pTempMeta->ReadXml( Jenga::Common::Environment::GetAppDir() + "\\meta_test.xml" ) )
215 {
216 MessageBox(0,"XML読み込みに失敗","test",0);
217 }
218/*
219 if( !compiler.GetMeta().WriteBinaly( Jenga::Common::Environment::GetAppDir() + "\\meta_test.dat" ) )
220 {
221 MessageBox(0,"バイナリ書き込みに失敗","test",0);
222 }
223 MetaImpl *pTempMeta = new MetaImpl();
224 if( !pTempMeta->ReadBinaly( Jenga::Common::Environment::GetAppDir() + "\\meta_test.dat" ) )
225 {
226 MessageBox(0,"バイナリ読み込みに失敗","test",0);
227 }
228 if( !compiler.GetMeta().WriteText( Jenga::Common::Environment::GetAppDir() + "\\meta_test.dat" ) )
229 {
230 MessageBox(0,"バイナリ書き込みに失敗","test",0);
231 }
232 MetaImpl *pTempMeta = new MetaImpl();
233 if( !pTempMeta->ReadText( Jenga::Common::Environment::GetAppDir() + "\\meta_test.dat" ) )
234 {
235 MessageBox(0,"バイナリ読み込みに失敗","test",0);
236 }*/
237 compiler.GetMeta() = (*pTempMeta);
238
239
240 //コードと行番号の関係
241 extern LINEINFO *pLineInfo;
242 extern int MaxLineInfoNum;
243 pLineInfo=(LINEINFO *)HeapAlloc(hHeap,0,1);
244 MaxLineInfoNum=0;
245
246
247 ///////////////////////////
248 // 最低限必要な関数を取得
249 ///////////////////////////
250 cp=-1;
251
252 if(pSub_System_StartupProgram=GetSubHash("_System_StartupProgram",1))
253 pSub_System_StartupProgram->Using();
254
255 if(pSub_DebugSys_StartProc=GetSubHash("_DebugSys_StartProc",1))
256 pSub_DebugSys_StartProc->Using();
257
258 if(pSub_DebugSys_EndProc=GetSubHash("_DebugSys_EndProc",1))
259 pSub_DebugSys_EndProc->Using();
260
261 if(pSub_DebugSys_SaveContext=GetSubHash("_DebugSys_SaveContext",1))
262 pSub_DebugSys_SaveContext->Using();
263
264 if(pSub_System_GetEip=GetSubHash("_System_GetEip",1)){
265 pSub_System_GetEip->Using();
266 pSub_System_GetEip->ThisIsSystemProc();
267 }
268
269 if(pSub_System_InitDllGlobalVariables=GetSubHash("_System_InitDllGlobalVariables",1)){
270 pSub_System_InitDllGlobalVariables->Using();
271 pSub_System_InitDllGlobalVariables->ThisIsSystemProc();
272 }
273
274 if(pSub_System_InitStaticLocalVariables=GetSubHash("_System_InitStaticLocalVariables",1)){
275 pSub_System_InitStaticLocalVariables->Using();
276 pSub_System_InitStaticLocalVariables->ThisIsSystemProc();
277 }
278
279 if(pSub_System_Call_Destructor_of_GlobalObject=GetSubHash("_System_Call_Destructor_of_GlobalObject",1)){
280 pSub_System_Call_Destructor_of_GlobalObject->Using();
281 pSub_System_Call_Destructor_of_GlobalObject->ThisIsSystemProc();
282 }
283
284 if(pSub_System_End=GetSubHash("_System_End",1)){
285 pSub_System_End->Using();
286 }
287
288 if(pSub_System_GetSp=GetSubHash("_System_GetSp",1)){
289 pSub_System_GetSp->Using();
290 pSub_System_GetSp->ThisIsSystemProc();
291 }
292
293 if(pSub_pow=GetSubHash("pow",1))
294 pSub_pow->Using();
295
296 if(pSub_calloc=GetSubHash("calloc",1))
297 pSub_calloc->Using();
298
299 if(pSub_realloc=GetSubHash("realloc",1))
300 pSub_realloc->Using();
301
302 if(pSub_free=GetSubHash("free",1))
303 pSub_free->Using();
304
305 if( pSub_System_GC_malloc_ForObject = GetSubHash( "_System_GC_malloc_ForObject",1 ) )
306 pSub_System_GC_malloc_ForObject->Using();
307
308 if( pSub_System_GC_malloc_ForObjectPtr = GetSubHash( "_System_GC_malloc_ForObjectPtr",1 ) )
309 pSub_System_GC_malloc_ForObjectPtr->Using();
310
311 if( pSub_System_GC_free_for_SweepingDelete = GetSubHash( "_System_GC_free_for_SweepingDelete",1 ) )
312 pSub_System_GC_free_for_SweepingDelete->Using();
313
314 if( pSubStaticMethod_System_TypeBase_InitializeUserTypes = GetSubHash( "ActiveBasic.Core._System_TypeBase.InitializeUserTypes",1 ) ){
315 pSubStaticMethod_System_TypeBase_InitializeUserTypes->Using();
316 pSubStaticMethod_System_TypeBase_InitializeUserTypes->ThisIsAutoGenerationProc();
317 }
318
319 if( pUserProc_System_CGarbageCollection_RegisterGlobalRoots = GetClassMethod( "_System_CGarbageCollection", "RegisterGlobalRoots" ) ){
320 pUserProc_System_CGarbageCollection_RegisterGlobalRoots->Using();
321 pUserProc_System_CGarbageCollection_RegisterGlobalRoots->ThisIsAutoGenerationProc();
322 }
323
324 pSub_allrem=GetSubHash("_allrem");
325 pSub_allrem->Using();
326 pSub_allrem->ThisIsSystemProc();
327
328 pSub_aullrem=GetSubHash("_aullrem");
329 pSub_aullrem->Using();
330 pSub_aullrem->ThisIsSystemProc();
331
332 pSub_allmul=GetSubHash("_allmul");
333 pSub_allmul->Using();
334 pSub_allmul->ThisIsSystemProc();
335
336 pSub_alldiv=GetSubHash("_alldiv");
337 pSub_alldiv->Using();
338 pSub_alldiv->ThisIsSystemProc();
339
340 pSub_aulldiv=GetSubHash("_aulldiv");
341 pSub_aulldiv->Using();
342 pSub_aulldiv->ThisIsSystemProc();
343
344 pSub_allshl=GetSubHash("_allshl");
345 pSub_allshl->Using();
346 pSub_allshl->ThisIsSystemProc();
347
348 pSub_allshr=GetSubHash("_allshr");
349 pSub_allshr->Using();
350 pSub_allshr->ThisIsSystemProc();
351
352 pSub_aullshr=GetSubHash("_aullshr");
353 pSub_aullshr->Using();
354 pSub_aullshr->ThisIsSystemProc();
355
356 pSub_esp_error=GetSubHash("_esp_error");
357 pSub_esp_error->Using();
358
359
360
361
362 //データテーブルスケジュール
363 pobj_DataTableSchedule=new CSchedule();
364 pobj_DataTableSchedule->SetFlag(SCHEDULE_FLAG_RELOC);
365
366 //インポートテーブルスケジュール
367 pobj_ImportAddrSchedule=new CImportAddrSchedule();
368 pobj_ImportAddrSchedule->SetFlag(SCHEDULE_FLAG_RELOC);
369
370 //プロシージャポインタスケジュール
371 pobj_SubAddrSchedule=new CSubAddrSchedule();
372
373 //グローバル変数アドレススケジュール
374 pobj_GlobalVarSchedule=new CSchedule();
375 pobj_GlobalVarSchedule->SetFlag(SCHEDULE_FLAG_RELOC);
376
377 //グローバル変数の初期バッファ
378 extern BYTE *initGlobalBuf;
379 initGlobalBuf=(BYTE *)HeapAlloc(hHeap,HEAP_ZERO_MEMORY,1);
380
381 //リロケーション情報
382 pobj_Reloc=new CReloc();
383
384 obp_AllocSize=8192*2;
385 OpBuffer=(char *)malloc(obp_AllocSize);
386 obp=0;
387
388 //レキシカルスコープ情報を初期化
389 GetLexicalScopes().Init(obp);
390
391
392 /////////////////////////////////////////////////////////////////
393 // デバッグコンパイル用のログを生成する
394 /////////////////////////////////////////////////////////////////
395#ifdef _DEBUG
396 {
397 ofstream ofs( ( Jenga::Common::Environment::GetAppDir() + "\\middle_code.txt" ).c_str() );
398 ofs << basbuf << endl;
399 ofs.close();
400 }
401#endif
402
403
404 //////////////////////
405 // グローバル実行領域
406 //////////////////////
407
408 cp=-1;
409 UserProc::CompileStartForGlobalArea();
410
411 if(!bDll){
412 // 名前空間が初期化されているかをチェック
413 if( compiler.GetNamespaceSupporter().GetLivingNamespaceScopes().size() ){
414 SetError();
415 }
416
417 //ラベル用のメモリを確保
418 extern LABEL *pLabelNames;
419 extern int MaxLabelNum;
420 pLabelNames=(LABEL *)HeapAlloc(hHeap,0,1);
421 MaxLabelNum=0;
422
423 //Gotoラベルスケジュール
424 extern GOTOLABELSCHEDULE *pGotoLabelSchedule;
425 extern int GotoLabelScheduleNum;
426 pGotoLabelSchedule=(GOTOLABELSCHEDULE *)HeapAlloc(hHeap,0,1);
427 GotoLabelScheduleNum=0;
428
429 //With情報のメモリを確保
430 extern WITHINFO WithInfo;
431 WithInfo.ppName=(char **)HeapAlloc(hHeap,0,1);
432 WithInfo.pWithCp=(int *)HeapAlloc(hHeap,0,1);
433 WithInfo.num=0;
434
435 //Continueアドレスを初期化
436 extern DWORD dwContinueAddress;
437 dwContinueAddress=-1;
438
439 // コード生成対象を選択
440 compiler.codeGenerator.Select( compiler.globalNativeCode );
441
442 trace_for_sourcecodestep( "★★★ グローバル領域のコンパイルを開始" );
443
444
445 //未完成
446 //OpBuffer[obp++]=(char)0xCC;
447
448
449 //push ebp
450 compiler.codeGenerator.op_push(REG_EBP);
451
452 if(bDebugCompile){
453 //デバッグ用の変数を定義
454 DebugVariable();
455 }
456
457 //GC用の変数を定義
458 InitGCVariables();
459
460 //_System_StartupProgramの呼び出し
461 compiler.codeGenerator.op_call(pSub_System_StartupProgram);
462
463 //クラスに属する静的メンバを定義
464 compiler.GetMeta().GetClasses().InitStaticMember();
465
466 //グローバル実行領域をコンパイル開始
467 CompileBuffer(0,0);
468
469 //ラベル用のメモリを解放
470 for(i=0;i<MaxLabelNum;i++){
471 if(pLabelNames[i].pName) HeapDefaultFree(pLabelNames[i].pName);
472 }
473 HeapDefaultFree(pLabelNames);
474
475 //Goto未知ラベルスケジュールを解放
476 for(i=0;i<GotoLabelScheduleNum;i++){
477 if(pGotoLabelSchedule[i].pName){
478 SetError(6,pGotoLabelSchedule[i].pName,pGotoLabelSchedule[i].now_cp);
479 HeapDefaultFree(pGotoLabelSchedule[i].pName);
480 }
481 else{
482 sprintf(temporary,"%d",pGotoLabelSchedule[i].line);
483 SetError(6,temporary,pGotoLabelSchedule[i].now_cp);
484 }
485 }
486 HeapDefaultFree(pGotoLabelSchedule);
487
488
489 ///////////////////////////////////////
490 // グローバル文字列変数の解放処理
491 ///////////////////////////////////////
492
493 //call _System_End
494 extern const UserProc *pSub_System_End;
495 compiler.codeGenerator.op_call(pSub_System_End);
496
497
498 //xor eax,eax(eaxを0に初期化する)
499 compiler.codeGenerator.op_zero_reg(REG_EAX);
500
501 //pop ebp
502 compiler.codeGenerator.op_pop(REG_EBP);
503
504 //ret
505 compiler.codeGenerator.op_ret();
506
507 //グローバル実行領域のコードサイズ
508 GlobalOpBufferSize=obp;
509
510 //With情報のメモリを解放
511 for(i=0;i<WithInfo.num;i++){
512 SetError(22,"With",WithInfo.pWithCp[i]);
513 HeapDefaultFree(WithInfo.ppName[i]);
514 }
515 HeapDefaultFree(WithInfo.ppName);
516 HeapDefaultFree(WithInfo.pWithCp);
517
518 // 名前空間が正しく閉じられているかをチェック
519 if( compiler.GetNamespaceSupporter().GetLivingNamespaceScopes().size() ){
520 SetError(63,NULL,-1);
521 }
522
523 }
524 else{
525 ////////////////
526 // DLLの場合
527 ////////////////
528
529 }
530
531 //重複エラー情報管理のメモリを解放(グローバル領域用)
532 for(i=0;i<SynonymErrorNum;i++) HeapDefaultFree(SynonymErrorWords[i]);
533 HeapDefaultFree(SynonymErrorWords);
534 SynonymErrorWords=0;
535
536
537 StepCompileProgress();
538
539
540 /////////////////////
541 // ローカル実行領域
542 /////////////////////
543
544 //プロシージャをコンパイル開始
545 cp=0;
546 CompileLocal();
547
548 // 終了
549 ///////////////////////
550
551 StepCompileProgress();
552
553
554
555 ////////////////////////////////
556 // ここで一旦ログを取る
557 ////////////////////////////////
558 Diagnose();
559
560
561
562 ////////////////////////////////
563 // 使用するDLL関数のチェック
564 ////////////////////////////////
565 compiler.GetMeta().GetDllProcs().Iterator_Reset();
566 while( compiler.GetMeta().GetDllProcs().Iterator_HasNext() )
567 {
568 const DllProc *pDllProc = compiler.GetMeta().GetDllProcs().Iterator_GetNext();
569
570 if( !pDllProc->IsUsing() ){
571 pDllProc=pDllProc->pNextData;
572 continue;
573 }
574
575 //エラーチェック
576 HINSTANCE hLib;
577 hLib=LoadLibrary( pDllProc->GetDllFileName().c_str() );
578 if(!hLib){
579 extern char OutputFileName[MAX_PATH];
580 char temp2[MAX_PATH],temp3[MAX_PATH];
581 _splitpath(OutputFileName,temp2,temp3,NULL,NULL);
582 lstrcat(temp2,temp3);
583 lstrcpy(temp3,pDllProc->GetDllFileName().c_str());
584 GetFullPath(temp3,temp2);
585 hLib=LoadLibrary(temp3);
586
587 if(!hLib){
588 SetError(-106,pDllProc->GetDllFileName().c_str(),pDllProc->GetCodePos());
589 }
590 }
591
592 if(hLib){
593 if(!GetProcAddress(hLib,pDllProc->GetAlias().c_str())){
594 FreeLibrary(hLib);
595 SetError(-107,pDllProc->GetAlias(),pDllProc->GetCodePos());
596 }
597 FreeLibrary(hLib);
598 }
599 }
600
601
602
603 /////////////////////////////
604 // リソースデータを読み込む
605 /////////////////////////////
606 extern char ResourceFileName[MAX_PATH];
607 GetResourceData(ResourceFileName);
608
609
610 //////////////////////////////
611 // エクスポート情報(DLLのみ)
612 //////////////////////////////
613 IMAGE_EXPORT_DIRECTORY ImageExportDirectory;
614 DWORD *lpdwExportAddressTable;
615 DWORD *lpdwExportNamePointerTable;
616 WORD *lpwExportOrdinalTable;
617 char lpExportNames[8192];
618 int ExportNamesLength;
619 int ExportNum;
620 int DllMain_EntryPoint;
621
622 DllMain_EntryPoint=-1;
623 ExportNum=0;
624 ExportNamesLength=0;
625 lpdwExportAddressTable=(DWORD *)HeapAlloc(hHeap,0,1);
626 lpdwExportNamePointerTable=(DWORD *)HeapAlloc(hHeap,0,1);
627 lpwExportOrdinalTable=(WORD *)HeapAlloc(hHeap,0,1);
628
629 if(bUse_ExportSection){
630 _splitpath(OutputFileName,NULL,NULL,lpExportNames,temporary);
631 lstrcat(lpExportNames,temporary);
632 ExportNamesLength=lstrlen(lpExportNames)+1;
633
634 UserProc *pUserProc,*psi2;
635 while(1){
636 //辞書順にサーチ
637 temporary[0]=0;
638 compiler.GetMeta().GetUserProcs().Iterator_Reset();
639 while( compiler.GetMeta().GetUserProcs().Iterator_HasNext() )
640 {
641 pUserProc = compiler.GetMeta().GetUserProcs().Iterator_GetNext();
642 if(pUserProc->IsExport()){
643 if(temporary[0]=='\0'){
644 lstrcpy(temporary,pUserProc->GetName().c_str());
645 psi2=pUserProc;
646 }
647 else{
648 i3=lstrlen(temporary);
649 i4=(int)pUserProc->GetName().size();
650 if(i3<i4) i3=i4;
651 if(memcmp(temporary,pUserProc->GetName().c_str(),i3)>0){
652 lstrcpy(temporary,pUserProc->GetName().c_str());
653 psi2=pUserProc;
654 }
655 }
656 }
657 }
658 if(psi2==0) break;
659 pUserProc=psi2;
660
661 pUserProc->ExportOff();
662
663 if( pUserProc->GetName() == "DllMain" ){
664 DllMain_EntryPoint=pUserProc->GetBeginOpAddress();
665 }
666
667 lpdwExportAddressTable=(DWORD *)HeapReAlloc(hHeap,0,lpdwExportAddressTable,(ExportNum+1)*sizeof(DWORD));
668 lpdwExportAddressTable[ExportNum]=pUserProc->GetBeginOpAddress();
669
670 lpdwExportNamePointerTable=(DWORD *)HeapReAlloc(hHeap,0,lpdwExportNamePointerTable,(ExportNum+1)*sizeof(DWORD));
671 lpdwExportNamePointerTable[ExportNum]=ExportNamesLength;
672
673 lpwExportOrdinalTable=(WORD *)HeapReAlloc(hHeap,0,lpwExportOrdinalTable,(ExportNum+1)*sizeof(WORD));
674 lpwExportOrdinalTable[ExportNum]=ExportNum;
675
676 lstrcpy(lpExportNames+ExportNamesLength,pUserProc->GetName().c_str());
677 ExportNamesLength+=lstrlen(lpExportNames+ExportNamesLength)+1;
678
679 ExportNum++;
680 }
681 for(i=0;i<ExportNum;i++){
682 lpdwExportNamePointerTable[i]+=
683 sizeof(IMAGE_EXPORT_DIRECTORY)+ //エクスポートディレクトリテーブルを飛び越す
684 ExportNum*sizeof(DWORD)+ //エクスポート アドレス テーブルを飛び越す
685 ExportNum*sizeof(DWORD)+ //エクスポート名ポインタ テーブルを飛び越す
686 ExportNum*sizeof(WORD); //エクスポート序数テーブルを飛び越す
687 }
688
689 ImageExportDirectory.Characteristics=0;
690 ImageExportDirectory.TimeDateStamp=(DWORD)time(NULL);
691 ImageExportDirectory.MajorVersion=0;
692 ImageExportDirectory.MinorVersion=0;
693 ImageExportDirectory.Name=sizeof(IMAGE_EXPORT_DIRECTORY)+
694 ExportNum*sizeof(DWORD)+ //エクスポート アドレス テーブルを飛び越す
695 ExportNum*sizeof(DWORD)+ //エクスポート名ポインタ テーブルを飛び越す
696 ExportNum*sizeof(WORD); //エクスポート序数テーブルを飛び越す
697 ImageExportDirectory.Base=1;
698 ImageExportDirectory.NumberOfFunctions=ExportNum;
699 ImageExportDirectory.NumberOfNames=ExportNum;
700 ImageExportDirectory.AddressOfFunctions=sizeof(IMAGE_EXPORT_DIRECTORY);
701 ImageExportDirectory.AddressOfNames=ImageExportDirectory.AddressOfFunctions+ExportNum*sizeof(DWORD);
702 ImageExportDirectory.AddressOfNameOrdinals=ImageExportDirectory.AddressOfNames+ExportNum*sizeof(DWORD);
703 }
704
705
706 /////////////////////
707 //インポートDLL情報
708 /////////////////////
709
710 /*
711 IMAGE_IMPORT_DESCRIPTOR1[size=0x14] インポートヘッダ
712 IMAGE_IMPORT_DESCRIPTOR2[size=0x14]
713 IMAGE_IMPORT_DESCRIPTOR3[size=0x14]
714 ...
715 Dll名1[size=0x10]
716 Dll名2[size=0x10]
717 Dll名3[size=0x10]
718 ...
719 ルックアップ テーブル(ヒントを示すRVA)
720 ヒントテーブル
721 インポート アドレス テーブル(ルックアップと同じ内容だが、プログラム実行時に実行アドレスに書き換えられる)
722 */
723
724 char **ppDllNames=(char **)HeapAlloc(hHeap,0,1);
725
726 int ImportDllNum=0;
727
728 compiler.GetMeta().GetDllProcs().Iterator_Reset();
729 while( compiler.GetMeta().GetDllProcs().Iterator_HasNext() )
730 {
731 const DllProc *pDllProc = compiler.GetMeta().GetDllProcs().Iterator_GetNext();
732
733 if( !pDllProc->IsUsing() ){
734 pDllProc=pDllProc->pNextData;
735 continue;
736 }
737
738 if( pDllProc->GetDllFileName().size() > 16 ){
739 SetError(7,NULL,cp);
740 break;
741 }
742 for(i2=0;i2<ImportDllNum;i2++){
743 if( pDllProc->GetDllFileName() == ppDllNames[i2] ){
744 break;
745 }
746 }
747 if(i2==ImportDllNum){
748 ppDllNames=(char **)HeapReAlloc(hHeap,0,ppDllNames,(ImportDllNum+1)*sizeof(char **));
749 ppDllNames[ImportDllNum]=(char *)HeapAlloc(hHeap,HEAP_ZERO_MEMORY,16);
750 lstrcpy(ppDllNames[ImportDllNum],pDllProc->GetDllFileName().c_str());
751 ImportDllNum++;
752 }
753 }
754
755 //インポート テーブル、及びルックアップ テーブル サイズの計算
756 IMAGE_IMPORT_DESCRIPTOR *pImportTable;
757 int LookupSize;
758 LookupSize=0;
759 pImportTable=(IMAGE_IMPORT_DESCRIPTOR *)HeapAlloc(hHeap,0,(ImportDllNum+1)*sizeof(IMAGE_IMPORT_DESCRIPTOR));
760 i3=(ImportDllNum+1)*sizeof(IMAGE_IMPORT_DESCRIPTOR);
761 for(i=0;i<ImportDllNum;i++){
762 //インポート テーブル(IMAGE_IMPORT_DESCRIPTOR)
763 pImportTable[i].OriginalFirstThunk=i3+(ImportDllNum*0x10)+LookupSize;
764 pImportTable[i].TimeDateStamp=0;
765 pImportTable[i].ForwarderChain=0;
766 pImportTable[i].Name=i3+i*0x10;
767
768 compiler.GetMeta().GetDllProcs().Iterator_Reset();
769 while( compiler.GetMeta().GetDllProcs().Iterator_HasNext() )
770 {
771 const DllProc *pDllProc = compiler.GetMeta().GetDllProcs().Iterator_GetNext();
772
773 if( !pDllProc->IsUsing() ){
774 pDllProc=pDllProc->pNextData;
775 continue;
776 }
777
778 if( pDllProc->GetDllFileName() == ppDllNames[i] ){
779 //ルックアップデータのサイズを追加
780 LookupSize+=sizeof(DWORD);
781 }
782 }
783 LookupSize+=sizeof(DWORD); //NULL用
784 }
785 memset(&pImportTable[i],0,sizeof(IMAGE_IMPORT_DESCRIPTOR));
786
787 //ルックアップ テーブル、ヒント テーブル
788 DWORD *pLookupTable;
789 pLookupTable=(DWORD *)HeapAlloc(hHeap,0,LookupSize*sizeof(DWORD)+1);
790 char *pHintTable;
791 int HintSize,HintAllocSize;
792 HintSize=0;
793 HintAllocSize=128*2;
794 pHintTable=(char *)HeapAlloc(hHeap,0,HintAllocSize);
795 i3+=ImportDllNum*0x10;
796 for(i=0,i5=0;i<ImportDllNum;i++){
797 compiler.GetMeta().GetDllProcs().Iterator_Reset();
798 while( compiler.GetMeta().GetDllProcs().Iterator_HasNext() )
799 {
800 DllProc *pDllProc = compiler.GetMeta().GetDllProcs().Iterator_GetNext();
801
802 if( !pDllProc->IsUsing() ){
803 pDllProc=pDllProc->pNextData;
804 continue;
805 }
806
807 if( pDllProc->GetDllFileName() == ppDllNames[i] ){
808 //ルックアップの位置をセット(後にインポート アドレス テーブルにセットしなおされる)
809 pDllProc->SetLookupAddress( i3+(i5*sizeof(DWORD)) );
810
811 //ルックアップ テーブル
812 pLookupTable[i5++]=i3+LookupSize+HintSize;
813
814 //ヒント テーブル
815 pHintTable[HintSize++]=0;
816 pHintTable[HintSize++]=0;
817 lstrcpy(pHintTable+HintSize,pDllProc->GetAlias().c_str());
818 i4=(int)pDllProc->GetAlias().size();
819 HintSize+=i4+1;
820 if(i4%2==0) pHintTable[HintSize++]=0;
821
822 if(HintAllocSize<HintSize+128){
823 HintAllocSize+=128;
824 pHintTable=(char *)HeapReAlloc(hHeap,0,pHintTable,HintAllocSize);
825 }
826 }
827 }
828 pLookupTable[i5++]=0;
829 }
830
831
832 if(bDll){
833 //DLLの場合はリロケーション情報を仮生成
834 //※正式な生成は各セクションのメモリ上のサイズが決定してから再度行う。
835 pobj_Reloc->ResetRelocBuffer();
836 }
837
838
839
840 //グローバル変数情報を扱う構造体も初期バッファの有無による配置を行う
841 //(デバッグ情報で利用される)
842 extern int AllInitGlobalVarSize;
843 BOOST_FOREACH( Variable *pVar, compiler.GetMeta().GetGlobalVars() ){
844 if(pVar->GetOffsetAddress()&0x80000000){
845 pVar->SetOffsetAddress( (pVar->GetOffsetAddress()&0x7FFFFFFF)+AllInitGlobalVarSize );
846 }
847 }
848
849
850
851 ////////////////////////////////////
852 // デバッグセクションを生成
853 ////////////////////////////////////
854
855 //機械語コードとBasicコードの関係を整理
856 extern LINEINFO *pLineInfo;
857 extern int MaxLineInfoNum;
858 int MinObp,MaxObp;
859 LINEINFO *pTempLineInfo;
860 pTempLineInfo=(LINEINFO *)HeapAlloc(hHeap,0,MaxLineInfoNum*sizeof(LINEINFO));
861 i2=0;
862 MaxObp=0;
863 while(1){
864 for(i3=0,MinObp=0x0FFFFFFF;i3<MaxLineInfoNum;i3++){
865 if(pLineInfo[i3].TopObp<MinObp&&MaxObp<pLineInfo[i3].TopObp){
866 MinObp=pLineInfo[i3].TopObp;
867 i4=i3;
868 }
869 }
870 if(MinObp==0x0FFFFFFF) break;
871 pTempLineInfo[i2]=pLineInfo[i4];
872 MaxObp=pTempLineInfo[i2].TopObp;
873 i2++;
874 }
875 HeapDefaultFree(pLineInfo);
876 pLineInfo=(LINEINFO *)HeapAlloc(hHeap,0,i2*sizeof(LINEINFO));
877 memcpy(pLineInfo,pTempLineInfo,i2*sizeof(LINEINFO));
878 MaxLineInfoNum=i2;
879 HeapDefaultFree(pTempLineInfo);
880
881 //デバッグセクションを生成
882 CDebugSection *pobj_DebugSection;
883 pobj_DebugSection=new CDebugSection();
884 extern BOOL bDebugCompile;
885 extern BOOL bError;
886 if(bDebugCompile&&bError==0){
887 pobj_DebugSection->make();
888 }
889
890
891
892 /////////////////////////////////////
893 // 各セクションの位置とサイズを計算
894 /////////////////////////////////////
895
896 //コードセッションのファイル上のサイズ
897 if(obp%FILE_ALIGNMENT) FileSize_CodeSection=obp+(FILE_ALIGNMENT-obp%FILE_ALIGNMENT);
898 else FileSize_CodeSection=obp;
899 if(FileSize_CodeSection) bUse_CodeSection=1;
900 else bUse_CodeSection=0;
901
902 //エクスポートセクションのファイル上のサイズ
903 i= sizeof(IMAGE_EXPORT_DIRECTORY)+ //エクスポートディレクトリテーブルを飛び越す
904 ExportNum*sizeof(DWORD)+ //エクスポート アドレス テーブルを飛び越す
905 ExportNum*sizeof(DWORD)+ //エクスポート名ポインタ テーブルを飛び越す
906 ExportNum*sizeof(WORD)+ //エクスポート序数テーブルを飛び越す
907 ExportNamesLength; //シンボル名バッファ
908 if(bUse_ExportSection){
909 if(i%FILE_ALIGNMENT) FileSize_ExportSection=i+(FILE_ALIGNMENT-i%FILE_ALIGNMENT);
910 else FileSize_ExportSection=i;
911 }
912 else FileSize_ExportSection=0;
913
914 //インポートセクションのファイル上のサイズ
915 i=(ImportDllNum+1)*sizeof(IMAGE_IMPORT_DESCRIPTOR)+
916 16*ImportDllNum+ //DLL名
917 LookupSize+ //ルックアップテーブル
918 HintSize+ //ヒント名(関数名)テーブル
919 LookupSize; //インポート アドレス テーブル
920 if(i%FILE_ALIGNMENT) FileSize_ImportSection=i+(FILE_ALIGNMENT-i%FILE_ALIGNMENT);
921 else FileSize_ImportSection=i;
922 bUse_ImportSection=1; //インポートセクションは必ず存在する
923
924 //データセクションのファイル上のサイズ
925 if(compiler.GetDataTable().GetSize()%FILE_ALIGNMENT) FileSize_DataSection=compiler.GetDataTable().GetSize()+(FILE_ALIGNMENT-compiler.GetDataTable().GetSize()%FILE_ALIGNMENT);
926 else FileSize_DataSection=compiler.GetDataTable().GetSize();
927 if(FileSize_DataSection) bUse_DataSection=1;
928 else bUse_DataSection=0;
929
930 //リライタブルセクションのファイル上のサイズ(グローバル変数の初期情報のみを格納)
931 if(AllInitGlobalVarSize%FILE_ALIGNMENT) FileSize_RWSection=AllInitGlobalVarSize+(FILE_ALIGNMENT-AllInitGlobalVarSize%FILE_ALIGNMENT);
932 else{
933 if(AllInitGlobalVarSize) FileSize_RWSection=AllInitGlobalVarSize;
934 else FileSize_RWSection=FILE_ALIGNMENT;
935 }
936 bUse_RWSection=1;
937
938 //リソースセクションのファイル上のサイズ
939 char *RSrcSectionBuffer;
940 int RSrcSectionSize;
941 RSrcSectionBuffer=GetRSrcSectionBuffer(&RSrcSectionSize);
942 if(RSrcSectionSize%FILE_ALIGNMENT) FileSize_RSrcSection=RSrcSectionSize+(FILE_ALIGNMENT-RSrcSectionSize%FILE_ALIGNMENT);
943 else FileSize_RSrcSection=RSrcSectionSize;
944 if(FileSize_RSrcSection) bUse_RSrcSection=1;
945 else bUse_RSrcSection=0;
946
947 //リロケーションセクションのファイル上のサイズ
948 if(pobj_Reloc->length%FILE_ALIGNMENT) FileSize_RelocSection=pobj_Reloc->length+(FILE_ALIGNMENT-pobj_Reloc->length%FILE_ALIGNMENT);
949 else FileSize_RelocSection=pobj_Reloc->length;
950 if(FileSize_RelocSection) bUse_RelocSection=1;
951 else bUse_RelocSection=0;
952
953 //デバッグセクションのファイル上のサイズ
954 if(pobj_DebugSection->length%FILE_ALIGNMENT) FileSize_DebugSection=pobj_DebugSection->length+(FILE_ALIGNMENT-pobj_DebugSection->length%FILE_ALIGNMENT);
955 else FileSize_DebugSection=pobj_DebugSection->length;
956 if(FileSize_DebugSection) bUse_DebugSection=1;
957 else bUse_DebugSection=0;
958
959
960 //各セッションのファイル上の位置
961 FilePos_CodeSection= EXE_HEADER_SIZE;
962 FilePos_ExportSection= FilePos_CodeSection+
963 FileSize_CodeSection;
964 FilePos_ImportSection= FilePos_ExportSection+
965 FileSize_ExportSection;
966 FilePos_DataSection= FilePos_ImportSection+
967 FileSize_ImportSection;
968 FilePos_RWSection= FilePos_DataSection+
969 FileSize_DataSection;
970 FilePos_RSrcSection= FilePos_RWSection+
971 FileSize_RWSection;
972 FilePos_RelocSection= FilePos_RSrcSection+
973 FileSize_RSrcSection;
974 FilePos_DebugSection= FilePos_RelocSection+
975 FileSize_RelocSection;
976
977
978 //コードセッションのメモリ上のサイズ
979 if(FileSize_CodeSection%MEM_ALIGNMENT) MemSize_CodeSection=FileSize_CodeSection+(MEM_ALIGNMENT-FileSize_CodeSection%MEM_ALIGNMENT);
980 else MemSize_CodeSection=FileSize_CodeSection;
981
982 //エクスポートセクションのメモリ上のサイズ
983 if(FileSize_ExportSection%MEM_ALIGNMENT) MemSize_ExportSection=FileSize_ExportSection+(MEM_ALIGNMENT-FileSize_ExportSection%MEM_ALIGNMENT);
984 else MemSize_ExportSection=FileSize_ExportSection;
985
986 //インポートセクションのメモリ上のサイズ
987 if(FileSize_ImportSection%MEM_ALIGNMENT) MemSize_ImportSection=FileSize_ImportSection+(MEM_ALIGNMENT-FileSize_ImportSection%MEM_ALIGNMENT);
988 else MemSize_ImportSection=FileSize_ImportSection;
989
990 //データセクションのメモリ上のサイズ
991 if(FileSize_DataSection%MEM_ALIGNMENT) MemSize_DataSection=FileSize_DataSection+(MEM_ALIGNMENT-FileSize_DataSection%MEM_ALIGNMENT);
992 else MemSize_DataSection=FileSize_DataSection;
993
994 //リライタブルセクションのメモリ上のサイズ
995 extern int AllGlobalVarSize;
996 i=AllInitGlobalVarSize+AllGlobalVarSize;
997 if(i%MEM_ALIGNMENT) MemSize_RWSection=i+(MEM_ALIGNMENT-i%MEM_ALIGNMENT);
998 else MemSize_RWSection=i;
999
1000 //リソースセクションのメモリ上のサイズ
1001 if(FileSize_RSrcSection%MEM_ALIGNMENT) MemSize_RSrcSection=FileSize_RSrcSection+(MEM_ALIGNMENT-FileSize_RSrcSection%MEM_ALIGNMENT);
1002 else MemSize_RSrcSection=FileSize_RSrcSection;
1003
1004 //リロケーションセクションのメモリ上のサイズ
1005 if(FileSize_RelocSection%MEM_ALIGNMENT) MemSize_RelocSection=FileSize_RelocSection+(MEM_ALIGNMENT-FileSize_RelocSection%MEM_ALIGNMENT);
1006 else MemSize_RelocSection=FileSize_RelocSection;
1007
1008 //デバッグセクションのメモリ上のサイズ
1009 if(FileSize_DebugSection%MEM_ALIGNMENT) MemSize_DebugSection=FileSize_DebugSection+(MEM_ALIGNMENT-FileSize_DebugSection%MEM_ALIGNMENT);
1010 else MemSize_DebugSection=FileSize_DebugSection;
1011
1012
1013 //各セッションのメモリ上の位置
1014 if(bUse_ExportSection) MemPos_ExportSection= 0x1000+
1015 MemSize_CodeSection;
1016 else MemPos_ExportSection=0;
1017 if(bUse_ImportSection) MemPos_ImportSection= 0x1000+
1018 MemSize_CodeSection+
1019 MemSize_ExportSection;
1020 else MemPos_ImportSection=0;
1021 if(bUse_DataSection) MemPos_DataSection= 0x1000+
1022 MemSize_CodeSection+
1023 MemSize_ExportSection+
1024 MemSize_ImportSection;
1025 else MemPos_DataSection=0;
1026 if(bUse_RWSection) MemPos_RWSection= 0x1000+
1027 MemSize_CodeSection+
1028 MemSize_ExportSection+
1029 MemSize_ImportSection+
1030 MemSize_DataSection;
1031 else MemPos_RWSection=0;
1032 if(bUse_RSrcSection) MemPos_RSrcSection= 0x1000+
1033 MemSize_CodeSection+
1034 MemSize_ExportSection+
1035 MemSize_ImportSection+
1036 MemSize_DataSection+
1037 MemSize_RWSection;
1038 else MemPos_RSrcSection=0;
1039 if(bUse_RelocSection) MemPos_RelocSection= 0x1000+
1040 MemSize_CodeSection+
1041 MemSize_ExportSection+
1042 MemSize_ImportSection+
1043 MemSize_DataSection+
1044 MemSize_RWSection+
1045 MemSize_RSrcSection;
1046 else MemPos_RelocSection=0;
1047 if(bUse_DebugSection) MemPos_DebugSection= 0x1000+
1048 MemSize_CodeSection+
1049 MemSize_ExportSection+
1050 MemSize_ImportSection+
1051 MemSize_DataSection+
1052 MemSize_RWSection+
1053 MemSize_RSrcSection+
1054 MemSize_RelocSection;
1055 else MemPos_DebugSection=0;
1056
1057
1058
1059 ////////////////////////////
1060 // エクスポート情報の再配置
1061 ////////////////////////////
1062 if(bUse_ExportSection){
1063 for(i=0;i<ExportNum;i++){
1064 lpdwExportAddressTable[i]+=MemPos_CodeSection;
1065 lpdwExportNamePointerTable[i]+=MemPos_ExportSection;
1066 }
1067
1068 ImageExportDirectory.Name+= MemPos_ExportSection;
1069 ImageExportDirectory.AddressOfFunctions+= MemPos_ExportSection;
1070 ImageExportDirectory.AddressOfNames+= MemPos_ExportSection;
1071 ImageExportDirectory.AddressOfNameOrdinals+= MemPos_ExportSection;
1072 }
1073
1074
1075 ////////////////////////////
1076 // インポート情報の再配置
1077 ////////////////////////////
1078 for(i=0,i5=0;i<ImportDllNum;i++){
1079 //インポート テーブル(IMAGE_IMPORT_DESCRIPTOR)
1080 pImportTable[i].OriginalFirstThunk+=MemPos_ImportSection;
1081 pImportTable[i].Name+=MemPos_ImportSection;
1082
1083 //インポート アドレス テーブル(ルックアップとヒントを飛び越す)
1084 pImportTable[i].FirstThunk=pImportTable[i].OriginalFirstThunk+
1085 LookupSize+ //ルックアップテーブル
1086 HintSize; //ヒント名(関数名)テーブル
1087
1088 compiler.GetMeta().GetDllProcs().Iterator_Reset();
1089 while( compiler.GetMeta().GetDllProcs().Iterator_HasNext() )
1090 {
1091 const DllProc *pDllProc = compiler.GetMeta().GetDllProcs().Iterator_GetNext();
1092
1093 if( !pDllProc->IsUsing() ){
1094 pDllProc=pDllProc->pNextData;
1095 continue;
1096 }
1097
1098 if( pDllProc->GetDllFileName() == ppDllNames[i] ){
1099 //ルックアップ テーブル
1100 pLookupTable[i5++]+=MemPos_ImportSection;
1101 }
1102 }
1103 i5++;
1104 }
1105
1106
1107 ////////////////////////////////////////
1108 //仮想関数データテーブルスケジュール
1109 compiler.GetMeta().GetClasses().ActionVtblSchedule(ImageBase,MemPos_CodeSection);
1110
1111
1112 //////////////////////////////
1113 // データテーブルスケジュール
1114 for(i=0;i<pobj_DataTableSchedule->num;i++){
1115 *((long *)(OpBuffer+pobj_DataTableSchedule->pObpValues[i]))+=ImageBase+MemPos_DataSection;
1116 }
1117 delete pobj_DataTableSchedule;
1118
1119
1120 //////////////////////////////////
1121 // インポートテーブルスケジュール(インポート アドレス テーブルを指し示させる)
1122 for(i=0;i<pobj_ImportAddrSchedule->num;i++){
1123 const DllProc *pDllProc=pobj_ImportAddrSchedule->ppdi[i];
1124 *((long *)(OpBuffer+pobj_ImportAddrSchedule->pObpValues[i]))=
1125 ImageBase+
1126 MemPos_ImportSection+
1127 LookupSize+ //ルックアップテーブル
1128 HintSize+ //ヒント名(関数名)テーブル
1129 pDllProc->GetLookupAddress();
1130 }
1131 delete pobj_ImportAddrSchedule;
1132
1133
1134 ////////////////////////////////////
1135 // プロシージャポインタスケジュール
1136 for(i=0;i<pobj_SubAddrSchedule->num;i++){
1137 if(pobj_SubAddrSchedule->ppsi[i]->GetBeginOpAddress()==0
1138 &&pobj_SubAddrSchedule->ppsi[i]->GetEndOpAddress()==0){
1139 SetError(300,NULL,-1);
1140 }
1141
1142 if(pobj_SubAddrSchedule->pbCall[i]){
1143 *((long *)(OpBuffer+pobj_SubAddrSchedule->pObpValues[i]))=
1144 pobj_SubAddrSchedule->ppsi[i]->GetBeginOpAddress()-(pobj_SubAddrSchedule->pObpValues[i]+sizeof(long));
1145 }
1146 else{
1147 *((long *)(OpBuffer+pobj_SubAddrSchedule->pObpValues[i]))=
1148 pobj_SubAddrSchedule->ppsi[i]->GetBeginOpAddress()+ImageBase+MemPos_CodeSection;
1149 }
1150 }
1151 delete pobj_SubAddrSchedule;
1152
1153
1154 if(bDll){
1155 //DLLの場合はリロケーション情報を生成
1156 pobj_Reloc->ResetRelocBuffer();
1157 }
1158
1159
1160
1161 //////////////////////////////////////
1162 // グローバル変数アドレススケジュール
1163 //////////////////////////////////////
1164
1165 /*
1166 GlobalArea1 - 初期バッファあり
1167 GlobalArea2 - 初期バッファなし
1168 */
1169 for(i=0;i<pobj_GlobalVarSchedule->num;i++){
1170 if(*((long *)(OpBuffer+pobj_GlobalVarSchedule->pObpValues[i])) & 0x80000000){
1171 //初期バッファなし
1172 *((long *)(OpBuffer+pobj_GlobalVarSchedule->pObpValues[i]))=
1173 AllInitGlobalVarSize+
1174 (*((long *)(OpBuffer+pobj_GlobalVarSchedule->pObpValues[i])) & 0x7FFFFFFF)+
1175 ImageBase+MemPos_RWSection;
1176 }
1177 else{
1178 //初期バッファあり
1179 *((long *)(OpBuffer+pobj_GlobalVarSchedule->pObpValues[i]))+=
1180 ImageBase+MemPos_RWSection;
1181 }
1182 }
1183 delete pobj_GlobalVarSchedule;
1184
1185
1186
1187 ////////////////////////////////
1188 // リソースアドレススケジュール
1189 extern DWORD *lpdwRSrcAddrSchedule;
1190 extern int RSrcAddrScheduleNum;
1191 for(i=0;i<RSrcAddrScheduleNum;i++){
1192 *(DWORD *)(RSrcSectionBuffer+lpdwRSrcAddrSchedule[i])+=MemPos_RSrcSection;
1193 }
1194 HeapDefaultFree(lpdwRSrcAddrSchedule);
1195
1196
1197 //Dosスタブ
1198 char *DosStubBuffer;
1199 int DosStubSize;
1200 hFile=CreateFile(
1201 ( Jenga::Common::Environment::GetAppDir() + "\\SubOperation\\dosstub.pgm" ).c_str(),
1202 GENERIC_READ,0,NULL,OPEN_EXISTING,FILE_ATTRIBUTE_NORMAL,NULL);
1203 if(hFile==INVALID_HANDLE_VALUE){
1204 MessageBox(hOwnerEditor,"dosstub.pgmの読み込みに失敗","error",MB_OK);
1205 goto EndWriteOpcode;
1206 }
1207 DosStubSize=GetFileSize(hFile,NULL);
1208 DosStubBuffer=(char *)HeapAlloc(hHeap,0,DosStubSize);
1209 ReadFile(hFile,DosStubBuffer,DosStubSize,(DWORD *)&i2,NULL);
1210 CloseHandle(hFile);
1211
1212
1213 extern BOOL bError;
1214 if(bError) goto EndWriteOpcode;
1215
1216
1217 ////////////////////////////
1218 // EXEファイルのヘッダ情報
1219 ////////////////////////////
1220
1221 IMAGE_DOS_HEADER ImageDosHeader;
1222 ImageDosHeader.e_magic= 0x5A4D;
1223 ImageDosHeader.e_cblp= 0x0090;
1224 ImageDosHeader.e_cp= 0x0003;
1225 ImageDosHeader.e_crlc= 0;
1226 ImageDosHeader.e_cparhdr=4;
1227 ImageDosHeader.e_minalloc=0x0000;
1228 ImageDosHeader.e_maxalloc=0xFFFF;
1229 ImageDosHeader.e_ss= 0x0000;
1230 ImageDosHeader.e_sp= 0x00B8;
1231 ImageDosHeader.e_csum= 0x0000;
1232 ImageDosHeader.e_ip= 0x0000;
1233 ImageDosHeader.e_cs= 0x0000;
1234 ImageDosHeader.e_lfarlc=0x0040;
1235 ImageDosHeader.e_ovno= 0x0000;
1236 ImageDosHeader.e_res[0]=0;
1237 ImageDosHeader.e_res[1]=0;
1238 ImageDosHeader.e_res[2]=0;
1239 ImageDosHeader.e_res[3]=0;
1240 ImageDosHeader.e_oemid= 0x0000;
1241 ImageDosHeader.e_oeminfo=0x0000;
1242 ImageDosHeader.e_res2[0]=0;
1243 ImageDosHeader.e_res2[1]=0;
1244 ImageDosHeader.e_res2[2]=0;
1245 ImageDosHeader.e_res2[3]=0;
1246 ImageDosHeader.e_res2[4]=0;
1247 ImageDosHeader.e_res2[5]=0;
1248 ImageDosHeader.e_res2[6]=0;
1249 ImageDosHeader.e_res2[7]=0;
1250 ImageDosHeader.e_res2[8]=0;
1251 ImageDosHeader.e_res2[9]=0;
1252 ImageDosHeader.e_lfanew=0x0100; //PEヘッダの位置
1253
1254
1255 /////////////////////////////////////////////
1256 // PEヘッダ
1257 /////////////////////////////////////////////
1258
1259 IMAGE_NT_HEADERS ImagePeHdr;
1260 ImagePeHdr.Signature=IMAGE_NT_SIGNATURE;
1261
1262 //マシンタイプ
1263 ImagePeHdr.FileHeader.Machine= IMAGE_FILE_MACHINE_I386;
1264
1265 ImagePeHdr.FileHeader.NumberOfSections= bUse_CodeSection+
1266 bUse_ExportSection+
1267 bUse_ImportSection+
1268 bUse_DataSection+
1269 bUse_RWSection+
1270 bUse_RSrcSection+
1271 bUse_RelocSection+
1272 bUse_DebugSection; //セクション数
1273 ImagePeHdr.FileHeader.TimeDateStamp= (DWORD)time(NULL);
1274 ImagePeHdr.FileHeader.PointerToSymbolTable= 0x00000000;
1275 ImagePeHdr.FileHeader.NumberOfSymbols= 0x00000000;
1276 ImagePeHdr.FileHeader.SizeOfOptionalHeader= IMAGE_SIZEOF_NT_OPTIONAL32_HEADER;
1277 if(bDll){
1278 ImagePeHdr.FileHeader.Characteristics= IMAGE_FILE_EXECUTABLE_IMAGE|
1279 IMAGE_FILE_32BIT_MACHINE|
1280 IMAGE_FILE_LINE_NUMS_STRIPPED|
1281 IMAGE_FILE_LOCAL_SYMS_STRIPPED|
1282 IMAGE_FILE_DLL;
1283 }
1284 else{
1285 ImagePeHdr.FileHeader.Characteristics= IMAGE_FILE_EXECUTABLE_IMAGE|
1286 IMAGE_FILE_32BIT_MACHINE|
1287 IMAGE_FILE_LINE_NUMS_STRIPPED|
1288 IMAGE_FILE_LOCAL_SYMS_STRIPPED;
1289 }
1290
1291 ImagePeHdr.OptionalHeader.Magic= 0x010B;
1292 ImagePeHdr.OptionalHeader.MajorLinkerVersion= 4;
1293 ImagePeHdr.OptionalHeader.MinorLinkerVersion= 0;
1294 ImagePeHdr.OptionalHeader.SizeOfCode= FileSize_CodeSection; //コードサイズ(.textのセッションサイズ)
1295 ImagePeHdr.OptionalHeader.SizeOfInitializedData=FileSize_DataSection; //データサイズ(.dataのセッションサイズ)
1296 ImagePeHdr.OptionalHeader.SizeOfUninitializedData=0; //未初期化データのサイズ(なし)
1297 if(bDll){
1298 if(DllMain_EntryPoint==-1)
1299 ImagePeHdr.OptionalHeader.AddressOfEntryPoint=0;
1300 else
1301 ImagePeHdr.OptionalHeader.AddressOfEntryPoint=MemPos_CodeSection+DllMain_EntryPoint;
1302 }
1303 else ImagePeHdr.OptionalHeader.AddressOfEntryPoint= MemPos_CodeSection;
1304 ImagePeHdr.OptionalHeader.BaseOfCode= MemPos_CodeSection; //.textのアドレス
1305 ImagePeHdr.OptionalHeader.BaseOfData= MemPos_DataSection; //.dataのアドレス
1306
1307 ImagePeHdr.OptionalHeader.ImageBase= ImageBase; //イメージベース
1308 ImagePeHdr.OptionalHeader.SectionAlignment= MEM_ALIGNMENT; //セクションアラインメント
1309 ImagePeHdr.OptionalHeader.FileAlignment= FILE_ALIGNMENT;
1310 ImagePeHdr.OptionalHeader.MajorOperatingSystemVersion=4;
1311 ImagePeHdr.OptionalHeader.MinorOperatingSystemVersion=0;
1312 ImagePeHdr.OptionalHeader.MajorImageVersion= 0;
1313 ImagePeHdr.OptionalHeader.MinorImageVersion= 0;
1314 ImagePeHdr.OptionalHeader.MajorSubsystemVersion=4;
1315 ImagePeHdr.OptionalHeader.MinorSubsystemVersion=0;
1316 ImagePeHdr.OptionalHeader.Win32VersionValue= 0;
1317 ImagePeHdr.OptionalHeader.SizeOfImage= EXE_HEADER_SIZE+
1318 MemSize_CodeSection+
1319 MemSize_ExportSection+
1320 MemSize_ImportSection+
1321 MemSize_DataSection+
1322 MemSize_RWSection+
1323 MemSize_RSrcSection+
1324 MemSize_RelocSection+
1325 MemSize_DebugSection;//すべてのイメージサイズ
1326 ImagePeHdr.OptionalHeader.SizeOfHeaders= EXE_HEADER_SIZE;//ヘッダサイズ
1327 ImagePeHdr.OptionalHeader.CheckSum= 0;
1328 extern unsigned short TypeOfSubSystem;
1329 ImagePeHdr.OptionalHeader.Subsystem= TypeOfSubSystem;
1330 ImagePeHdr.OptionalHeader.DllCharacteristics= 0;
1331 ImagePeHdr.OptionalHeader.SizeOfStackReserve= 0x00100000;
1332 ImagePeHdr.OptionalHeader.SizeOfStackCommit= 0x00001000;
1333 ImagePeHdr.OptionalHeader.SizeOfHeapReserve= 0x00100000;
1334 ImagePeHdr.OptionalHeader.SizeOfHeapCommit= 0x00001000;
1335 ImagePeHdr.OptionalHeader.LoaderFlags= 0;
1336 ImagePeHdr.OptionalHeader.NumberOfRvaAndSizes= IMAGE_NUMBEROF_DIRECTORY_ENTRIES;
1337
1338 //データ ディクショナリ
1339 ImagePeHdr.OptionalHeader.DataDirectory[0].VirtualAddress=MemPos_ExportSection;
1340 ImagePeHdr.OptionalHeader.DataDirectory[0].Size=FileSize_ExportSection;
1341 ImagePeHdr.OptionalHeader.DataDirectory[1].VirtualAddress=MemPos_ImportSection;//インポートテーブル
1342 ImagePeHdr.OptionalHeader.DataDirectory[1].Size=FileSize_ImportSection;
1343 ImagePeHdr.OptionalHeader.DataDirectory[2].VirtualAddress=MemPos_RSrcSection;
1344 ImagePeHdr.OptionalHeader.DataDirectory[2].Size=RSrcSectionSize;
1345 ImagePeHdr.OptionalHeader.DataDirectory[3].VirtualAddress=0;
1346 ImagePeHdr.OptionalHeader.DataDirectory[3].Size=0;
1347 ImagePeHdr.OptionalHeader.DataDirectory[4].VirtualAddress=0;
1348 ImagePeHdr.OptionalHeader.DataDirectory[4].Size=0;
1349 ImagePeHdr.OptionalHeader.DataDirectory[5].VirtualAddress=MemPos_RelocSection;
1350 ImagePeHdr.OptionalHeader.DataDirectory[5].Size=pobj_Reloc->length;
1351 ImagePeHdr.OptionalHeader.DataDirectory[6].VirtualAddress=0;
1352 ImagePeHdr.OptionalHeader.DataDirectory[6].Size=0;
1353 ImagePeHdr.OptionalHeader.DataDirectory[7].VirtualAddress=0;
1354 ImagePeHdr.OptionalHeader.DataDirectory[7].Size=0;
1355 ImagePeHdr.OptionalHeader.DataDirectory[8].VirtualAddress=0;
1356 ImagePeHdr.OptionalHeader.DataDirectory[8].Size=0;
1357 ImagePeHdr.OptionalHeader.DataDirectory[9].VirtualAddress=0;
1358 ImagePeHdr.OptionalHeader.DataDirectory[9].Size=0;
1359 ImagePeHdr.OptionalHeader.DataDirectory[10].VirtualAddress=0;
1360 ImagePeHdr.OptionalHeader.DataDirectory[10].Size=0;
1361 ImagePeHdr.OptionalHeader.DataDirectory[11].VirtualAddress=0;
1362 ImagePeHdr.OptionalHeader.DataDirectory[11].Size=0;
1363 ImagePeHdr.OptionalHeader.DataDirectory[12].VirtualAddress=MemPos_ImportSection+
1364 (ImportDllNum+1)*sizeof(IMAGE_IMPORT_DESCRIPTOR)+
1365 16*ImportDllNum+ //DLL名
1366 LookupSize+ //ルックアップテーブル
1367 HintSize; //ヒント名(関数名)テーブル
1368 ImagePeHdr.OptionalHeader.DataDirectory[12].Size=LookupSize;
1369 ImagePeHdr.OptionalHeader.DataDirectory[13].VirtualAddress=0;
1370 ImagePeHdr.OptionalHeader.DataDirectory[13].Size=0;
1371 ImagePeHdr.OptionalHeader.DataDirectory[14].VirtualAddress=0;
1372 ImagePeHdr.OptionalHeader.DataDirectory[14].Size=0;
1373 ImagePeHdr.OptionalHeader.DataDirectory[15].VirtualAddress=0;
1374 ImagePeHdr.OptionalHeader.DataDirectory[15].Size=0;
1375
1376
1377 //コードセクションヘッダ
1378 IMAGE_SECTION_HEADER CodeSectionHeader;
1379 memset((char *)CodeSectionHeader.Name,0,IMAGE_SIZEOF_SHORT_NAME);
1380 lstrcpy((char *)CodeSectionHeader.Name,".text");
1381 CodeSectionHeader.Misc.VirtualSize= MemSize_CodeSection;
1382 CodeSectionHeader.VirtualAddress= MemPos_CodeSection; //開始アドレス
1383 CodeSectionHeader.SizeOfRawData= FileSize_CodeSection;
1384 CodeSectionHeader.PointerToRawData= FilePos_CodeSection; //ファイル上の開始アドレス
1385 CodeSectionHeader.PointerToRelocations= 0;
1386 CodeSectionHeader.PointerToLinenumbers= 0;
1387 CodeSectionHeader.NumberOfRelocations= 0;
1388 CodeSectionHeader.NumberOfLinenumbers= 0;
1389 CodeSectionHeader.Characteristics= IMAGE_SCN_MEM_EXECUTE|
1390 IMAGE_SCN_MEM_READ|
1391 IMAGE_SCN_CNT_CODE;
1392
1393 //エクスポートセクションヘッダ
1394 IMAGE_SECTION_HEADER ExportSectionHeader;
1395 memset((char *)ExportSectionHeader.Name,0,IMAGE_SIZEOF_SHORT_NAME);
1396 lstrcpy((char *)ExportSectionHeader.Name,".edata");
1397 ExportSectionHeader.Misc.VirtualSize= MemSize_ExportSection;
1398 ExportSectionHeader.VirtualAddress= MemPos_ExportSection; //開始アドレス
1399 ExportSectionHeader.SizeOfRawData= FileSize_ExportSection; //サイズ
1400 ExportSectionHeader.PointerToRawData= FilePos_ExportSection; //ファイル上の開始アドレス
1401 ExportSectionHeader.PointerToRelocations= 0;
1402 ExportSectionHeader.PointerToLinenumbers= 0;
1403 ExportSectionHeader.NumberOfRelocations= 0;
1404 ExportSectionHeader.NumberOfLinenumbers= 0;
1405 ExportSectionHeader.Characteristics= IMAGE_SCN_CNT_INITIALIZED_DATA|
1406 IMAGE_SCN_MEM_READ;
1407
1408 //インポートセクションヘッダ
1409 IMAGE_SECTION_HEADER ImportSectionHeader;
1410 memset((char *)ImportSectionHeader.Name,0,IMAGE_SIZEOF_SHORT_NAME);
1411 lstrcpy((char *)ImportSectionHeader.Name,".idata");
1412 ImportSectionHeader.Misc.VirtualSize= MemSize_ImportSection;
1413 ImportSectionHeader.VirtualAddress= MemPos_ImportSection; //開始アドレス
1414 ImportSectionHeader.SizeOfRawData= FileSize_ImportSection; //サイズ
1415 ImportSectionHeader.PointerToRawData= FilePos_ImportSection; //ファイル上の開始アドレス
1416 ImportSectionHeader.PointerToRelocations= 0;
1417 ImportSectionHeader.PointerToLinenumbers= 0;
1418 ImportSectionHeader.NumberOfRelocations= 0;
1419 ImportSectionHeader.NumberOfLinenumbers= 0;
1420 ImportSectionHeader.Characteristics= IMAGE_SCN_CNT_INITIALIZED_DATA|
1421 IMAGE_SCN_MEM_READ;
1422
1423 //データセクションヘッダ
1424 IMAGE_SECTION_HEADER DataSectionHeader;
1425 memset((char *)DataSectionHeader.Name,0,IMAGE_SIZEOF_SHORT_NAME);
1426 lstrcpy((char *)DataSectionHeader.Name,".sdata");
1427 DataSectionHeader.Misc.VirtualSize= MemSize_DataSection;
1428 DataSectionHeader.VirtualAddress= MemPos_DataSection;
1429 DataSectionHeader.SizeOfRawData= FileSize_DataSection;
1430 DataSectionHeader.PointerToRawData= FilePos_DataSection;
1431 DataSectionHeader.PointerToRelocations= 0;
1432 DataSectionHeader.PointerToLinenumbers= 0;
1433 DataSectionHeader.NumberOfRelocations= 0;
1434 DataSectionHeader.NumberOfLinenumbers= 0;
1435 DataSectionHeader.Characteristics= IMAGE_SCN_CNT_INITIALIZED_DATA|
1436 IMAGE_SCN_MEM_READ|
1437 IMAGE_SCN_MEM_WRITE;
1438
1439 //リライタブルセクションヘッダ
1440 IMAGE_SECTION_HEADER RWSectionHeader;
1441 memset((char *)RWSectionHeader.Name,0,IMAGE_SIZEOF_SHORT_NAME);
1442 lstrcpy((char *)RWSectionHeader.Name,".data");
1443 RWSectionHeader.Misc.VirtualSize= AllInitGlobalVarSize+AllGlobalVarSize;
1444 RWSectionHeader.VirtualAddress= MemPos_RWSection;
1445 RWSectionHeader.SizeOfRawData= FileSize_RWSection;
1446 RWSectionHeader.PointerToRawData= FilePos_RWSection;
1447 RWSectionHeader.PointerToRelocations= 0;
1448 RWSectionHeader.PointerToLinenumbers= 0;
1449 RWSectionHeader.NumberOfRelocations= 0;
1450 RWSectionHeader.NumberOfLinenumbers= 0;
1451 RWSectionHeader.Characteristics= IMAGE_SCN_CNT_INITIALIZED_DATA|
1452 IMAGE_SCN_MEM_READ|
1453 IMAGE_SCN_MEM_WRITE;
1454
1455 //リソースセクションヘッダ
1456 IMAGE_SECTION_HEADER RSrcSectionHeader;
1457 memset((char *)RSrcSectionHeader.Name,0,IMAGE_SIZEOF_SHORT_NAME);
1458 lstrcpy((char *)RSrcSectionHeader.Name,".rsrc");
1459 RSrcSectionHeader.Misc.VirtualSize= RSrcSectionSize;
1460 RSrcSectionHeader.VirtualAddress= MemPos_RSrcSection;
1461 RSrcSectionHeader.SizeOfRawData= FileSize_RSrcSection;
1462 RSrcSectionHeader.PointerToRawData= FilePos_RSrcSection;
1463 RSrcSectionHeader.PointerToRelocations= 0;
1464 RSrcSectionHeader.PointerToLinenumbers= 0;
1465 RSrcSectionHeader.NumberOfRelocations= 0;
1466 RSrcSectionHeader.NumberOfLinenumbers= 0;
1467 RSrcSectionHeader.Characteristics= IMAGE_SCN_CNT_INITIALIZED_DATA|
1468 IMAGE_SCN_MEM_READ;
1469
1470 //リロケーションセクションヘッダ
1471 IMAGE_SECTION_HEADER RelocSectionHeader;
1472 memset((char *)RelocSectionHeader.Name,0,IMAGE_SIZEOF_SHORT_NAME);
1473 lstrcpy((char *)RelocSectionHeader.Name,".reloc");
1474 RelocSectionHeader.Misc.VirtualSize= pobj_Reloc->length;
1475 RelocSectionHeader.VirtualAddress= MemPos_RelocSection; //開始アドレス
1476 RelocSectionHeader.SizeOfRawData= FileSize_RelocSection; //サイズ
1477 RelocSectionHeader.PointerToRawData= FilePos_RelocSection; //ファイル上の開始アドレス
1478 RelocSectionHeader.PointerToRelocations= 0;
1479 RelocSectionHeader.PointerToLinenumbers= 0;
1480 RelocSectionHeader.NumberOfRelocations= 0;
1481 RelocSectionHeader.NumberOfLinenumbers= 0;
1482 RelocSectionHeader.Characteristics= IMAGE_SCN_CNT_INITIALIZED_DATA|
1483 IMAGE_SCN_MEM_DISCARDABLE|
1484 IMAGE_SCN_MEM_READ;
1485
1486 //デバッグセクションヘッダ
1487 IMAGE_SECTION_HEADER DebugSectionHeader;
1488 memset((char *)DebugSectionHeader.Name,0,IMAGE_SIZEOF_SHORT_NAME);
1489 lstrcpy((char *)DebugSectionHeader.Name,".debug");
1490 DebugSectionHeader.Misc.VirtualSize= pobj_DebugSection->length;
1491 DebugSectionHeader.VirtualAddress= MemPos_DebugSection; //開始アドレス
1492 DebugSectionHeader.SizeOfRawData= FileSize_DebugSection; //サイズ
1493 DebugSectionHeader.PointerToRawData= FilePos_DebugSection; //ファイル上の開始アドレス
1494 DebugSectionHeader.PointerToRelocations= 0;
1495 DebugSectionHeader.PointerToLinenumbers= 0;
1496 DebugSectionHeader.NumberOfRelocations= 0;
1497 DebugSectionHeader.NumberOfLinenumbers= 0;
1498 DebugSectionHeader.Characteristics= IMAGE_SCN_MEM_DISCARDABLE|
1499 IMAGE_SCN_MEM_READ;
1500
1501
1502 hFile=CreateFile(OutputFileName,GENERIC_WRITE,0,NULL,CREATE_ALWAYS,FILE_ATTRIBUTE_NORMAL,NULL);
1503 if(hFile==INVALID_HANDLE_VALUE){
1504 SetError(53,OutputFileName,-1);
1505 goto EndWriteOpcode;
1506 }
1507
1508 //ヘッダ
1509 WriteFile(hFile,(void *)&ImageDosHeader,sizeof(IMAGE_DOS_HEADER),(DWORD *)&i2,NULL);
1510 i=i2;
1511
1512 //Dosスタブ
1513 WriteFile(hFile,DosStubBuffer,DosStubSize,(DWORD *)&i2,NULL);
1514 i+=i2;
1515
1516 //0x0100までNULLを並べる
1517 temp2=(char *)HeapAlloc(hHeap,HEAP_ZERO_MEMORY,0x0100-i);
1518 WriteFile(hFile,temp2,0x0100-i,(DWORD *)&i2,NULL);
1519 HeapDefaultFree(temp2);
1520 i+=i2;
1521
1522 //PEヘッダ
1523 WriteFile(hFile,&ImagePeHdr,sizeof(IMAGE_NT_HEADERS),(DWORD *)&i2,NULL);
1524 i+=i2;
1525
1526 //コード セクション ヘッダ
1527 WriteFile(hFile,&CodeSectionHeader,sizeof(IMAGE_SECTION_HEADER),(DWORD *)&i2,NULL);
1528 i+=i2;
1529
1530 if(bUse_ExportSection){
1531 //エクスポート セクション ヘッダ
1532 WriteFile(hFile,&ExportSectionHeader,sizeof(IMAGE_SECTION_HEADER),(DWORD *)&i2,NULL);
1533 i+=i2;
1534 }
1535 if(bUse_ImportSection){
1536 //インポート セクション ヘッダ
1537 WriteFile(hFile,&ImportSectionHeader,sizeof(IMAGE_SECTION_HEADER),(DWORD *)&i2,NULL);
1538 i+=i2;
1539 }
1540 if(bUse_DataSection){
1541 //データ セクション ヘッダ
1542 WriteFile(hFile,&DataSectionHeader,sizeof(IMAGE_SECTION_HEADER),(DWORD *)&i2,NULL);
1543 i+=i2;
1544 }
1545 if(bUse_RWSection){
1546 //リライタブルセクションヘッダ
1547 WriteFile(hFile,&RWSectionHeader,sizeof(IMAGE_SECTION_HEADER),(DWORD *)&i2,NULL);
1548 i+=i2;
1549 }
1550 if(bUse_RSrcSection){
1551 //リソースセクションヘッダ
1552 WriteFile(hFile,&RSrcSectionHeader,sizeof(IMAGE_SECTION_HEADER),(DWORD *)&i2,NULL);
1553 i+=i2;
1554 }
1555 if(bUse_RelocSection){
1556 //リロケーションセクションヘッダ
1557 WriteFile(hFile,&RelocSectionHeader,sizeof(IMAGE_SECTION_HEADER),(DWORD *)&i2,NULL);
1558 i+=i2;
1559 }
1560 if(bUse_DebugSection){
1561 //デバッグセクションヘッダ
1562 WriteFile(hFile,&DebugSectionHeader,sizeof(IMAGE_SECTION_HEADER),(DWORD *)&i2,NULL);
1563 i+=i2;
1564 }
1565
1566 //EXE_HEADER_SIZEまでNULLを並べる
1567 temp2=(char *)HeapAlloc(hHeap,HEAP_ZERO_MEMORY,EXE_HEADER_SIZE-i);
1568 WriteFile(hFile,temp2,EXE_HEADER_SIZE-i,(DWORD *)&i2,NULL);
1569 HeapDefaultFree(temp2);
1570 i+=i2;
1571
1572 //コード
1573 WriteFile(hFile,OpBuffer,obp,(DWORD *)&i2,NULL);
1574 i+=i2;
1575
1576 //FilePos_ExportSectionまでNULLを並べる
1577 temp2=(char *)HeapAlloc(hHeap,HEAP_ZERO_MEMORY,FilePos_ExportSection-i);
1578 WriteFile(hFile,temp2,FilePos_ExportSection-i,(DWORD *)&i2,NULL);
1579 HeapDefaultFree(temp2);
1580 i+=i2;
1581
1582 if(bUse_ExportSection){
1583 //エクスポート ディレクトリ テーブル
1584 WriteFile(hFile,&ImageExportDirectory,sizeof(IMAGE_EXPORT_DIRECTORY),(DWORD *)&i2,NULL);
1585 i+=i2;
1586
1587 //エクスポート アドレス テーブル
1588 WriteFile(hFile,lpdwExportAddressTable,ExportNum*sizeof(DWORD),(DWORD *)&i2,NULL);
1589 i+=i2;
1590
1591 //エクスポート名ポインタ テーブル
1592 WriteFile(hFile,lpdwExportNamePointerTable,ExportNum*sizeof(DWORD),(DWORD *)&i2,NULL);
1593 i+=i2;
1594
1595 //エクスポート序数テーブル
1596 WriteFile(hFile,lpwExportOrdinalTable,ExportNum*sizeof(WORD),(DWORD *)&i2,NULL);
1597 i+=i2;
1598
1599 //シンボル名
1600 WriteFile(hFile,lpExportNames,ExportNamesLength,(DWORD *)&i2,NULL);
1601 i+=i2;
1602 }
1603
1604 //FilePos_ImportSectionまでNULLを並べる
1605 temp2=(char *)HeapAlloc(hHeap,HEAP_ZERO_MEMORY,FilePos_ImportSection-i);
1606 WriteFile(hFile,temp2,FilePos_ImportSection-i,(DWORD *)&i2,NULL);
1607 HeapDefaultFree(temp2);
1608 i+=i2;
1609
1610 if(bUse_ImportSection){
1611 //インポート ディレクトリ テーブル(Nullディレクトリ テーブルを含む)
1612 for(i3=0;i3<(ImportDllNum+1);i3++){
1613 WriteFile(hFile,&pImportTable[i3],sizeof(IMAGE_IMPORT_DESCRIPTOR),(DWORD *)&i2,NULL);
1614 i+=i2;
1615 }
1616
1617 //DLL名
1618 for(i3=0;i3<ImportDllNum;i3++){
1619 WriteFile(hFile,ppDllNames[i3],16,(DWORD *)&i2,NULL);
1620 i+=i2;
1621 }
1622
1623 //ルックアップ テーブル
1624 WriteFile(hFile,pLookupTable,LookupSize,(DWORD *)&i2,NULL);
1625 i+=i2;
1626
1627 //ヒント テーブル
1628 WriteFile(hFile,pHintTable,HintSize,(DWORD *)&i2,NULL);
1629 i+=i2;
1630
1631 //インポート アドレス テーブル
1632 WriteFile(hFile,pLookupTable,LookupSize,(DWORD *)&i2,NULL);
1633 i+=i2;
1634 }
1635
1636 //FilePos_DataSectionまでNULLを並べる
1637 temp2=(char *)HeapAlloc(hHeap,HEAP_ZERO_MEMORY,FilePos_DataSection-i);
1638 WriteFile(hFile,temp2,FilePos_DataSection-i,(DWORD *)&i2,NULL);
1639 HeapDefaultFree(temp2);
1640 i+=i2;
1641
1642 if(bUse_DataSection){
1643 //データ テーブル
1644 WriteFile(hFile,compiler.GetDataTable().GetPtr(),compiler.GetDataTable().GetSize(),(DWORD *)&i2,NULL);
1645 i+=i2;
1646 }
1647
1648 //FilePos_RWSectionまでNULLを並べる
1649 temp2=(char *)HeapAlloc(hHeap,HEAP_ZERO_MEMORY,FilePos_RWSection-i);
1650 WriteFile(hFile,temp2,FilePos_RWSection-i,(DWORD *)&i2,NULL);
1651 HeapDefaultFree(temp2);
1652 i+=i2;
1653
1654 if(bUse_RWSection){
1655 //リライタブル データ テーブル(グローバル変数の初期バッファ)
1656 initGlobalBuf=(BYTE *)HeapReAlloc(hHeap,
1657 HEAP_ZERO_MEMORY,
1658 initGlobalBuf,
1659 FileSize_RWSection);
1660 WriteFile(hFile,initGlobalBuf,FileSize_RWSection,(DWORD *)&i2,NULL);
1661 i+=i2;
1662 }
1663
1664 //FilePos_RSrcSectionまでNULLを並べる
1665 temp2=(char *)HeapAlloc(hHeap,HEAP_ZERO_MEMORY,FilePos_RSrcSection-i);
1666 WriteFile(hFile,temp2,FilePos_RSrcSection-i,(DWORD *)&i2,NULL);
1667 HeapDefaultFree(temp2);
1668 i+=i2;
1669
1670 if(bUse_RSrcSection){
1671 //リソースバッファ
1672 WriteFile(hFile,RSrcSectionBuffer,RSrcSectionSize,(DWORD *)&i2,NULL);
1673 i+=i2;
1674 }
1675
1676 //FilePos_RelocSectionまでNULLを並べる
1677 temp2=(char *)HeapAlloc(hHeap,HEAP_ZERO_MEMORY,FilePos_RelocSection-i);
1678 WriteFile(hFile,temp2,FilePos_RelocSection-i,(DWORD *)&i2,NULL);
1679 HeapDefaultFree(temp2);
1680 i+=i2;
1681
1682 if(bUse_RelocSection){
1683 //リロケーション情報
1684 WriteFile(hFile,pobj_Reloc->buffer,pobj_Reloc->length,(DWORD *)&i2,NULL);
1685 i+=i2;
1686 }
1687
1688 //ファイルアラインメントを考慮
1689 if(i%FILE_ALIGNMENT){
1690 temp2=(char *)HeapAlloc(hHeap,HEAP_ZERO_MEMORY,FILE_ALIGNMENT-i%FILE_ALIGNMENT);
1691 WriteFile(hFile,temp2,FILE_ALIGNMENT-i%FILE_ALIGNMENT,(DWORD *)&i2,NULL);
1692 HeapDefaultFree(temp2);
1693 i+=i2;
1694 }
1695
1696 if(bUse_DebugSection){
1697 //デバッグセクション
1698 WriteFile(hFile,pobj_DebugSection->buffer,pobj_DebugSection->length,(DWORD *)&i2,NULL);
1699 i+=i2;
1700 }
1701
1702 //ファイルアラインメントを考慮
1703 if(i%FILE_ALIGNMENT){
1704 temp2=(char *)HeapAlloc(hHeap,HEAP_ZERO_MEMORY,FILE_ALIGNMENT-i%FILE_ALIGNMENT);
1705 WriteFile(hFile,temp2,FILE_ALIGNMENT-i%FILE_ALIGNMENT,(DWORD *)&i2,NULL);
1706 HeapDefaultFree(temp2);
1707 i+=i2;
1708 }
1709
1710 //書き込み終了
1711 CloseHandle(hFile);
1712
1713
1714EndWriteOpcode:
1715
1716 //Dosスタブ用のメモリを解放
1717 HeapDefaultFree(DosStubBuffer);
1718
1719 //エクスポート テーブル情報を解放
1720 HeapDefaultFree(lpdwExportAddressTable);
1721 HeapDefaultFree(lpdwExportNamePointerTable);
1722 HeapDefaultFree(lpwExportOrdinalTable);
1723
1724 //インポートDLL情報を解放
1725 HeapDefaultFree(pImportTable);
1726 for(i=0;i<ImportDllNum;i++)
1727 HeapDefaultFree(ppDllNames[i]);
1728 HeapDefaultFree(ppDllNames);
1729
1730 //ルックアップテーブルに関する情報を解放
1731 HeapDefaultFree(pLookupTable);
1732
1733 //ヒントテーブルに関する情報を解放
1734 HeapDefaultFree(pHintTable);
1735
1736 //グローバル変数の初期バッファを解放
1737 HeapDefaultFree(initGlobalBuf);
1738
1739 //コードバッファを解放
1740 free(OpBuffer);
1741 OpBuffer=0;
1742
1743 //リソースセクションバッファを解放
1744 HeapDefaultFree(RSrcSectionBuffer);
1745
1746 //デバッグセクションを開放
1747 delete pobj_DebugSection;
1748
1749 //リロケーション情報を解放
1750 delete pobj_Reloc;
1751
1752 //列挙体に関する情報の破棄
1753 CEnumParent::DestroyEnum();
1754
1755 //クラスに関するメモリを解放
1756 compiler.GetMeta().GetClasses().Clear();
1757}
Note: See TracBrowser for help on using the repository browser.