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