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