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

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

DllProcsクラスを追加。

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