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

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