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

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