[206] | 1 | #include "stdafx.h"
|
---|
| 2 |
|
---|
[193] | 3 | #include <Compiler.h>
|
---|
[206] | 4 | #include <Class.h>
|
---|
| 5 | #include <Variable.h>
|
---|
[182] | 6 |
|
---|
[4] | 7 | #include "../BasicCompiler_Common/common.h"
|
---|
[206] | 8 | #include "../BasicCompiler_Common/DebugSection.h"
|
---|
[4] | 9 |
|
---|
| 10 | #ifdef _AMD64_
|
---|
| 11 | #include "../BasicCompiler64/opcode.h"
|
---|
| 12 | #else
|
---|
[5] | 13 | #include "../BasicCompiler32/opcode.h"
|
---|
[4] | 14 | #endif
|
---|
| 15 |
|
---|
| 16 | #define MDLFILE_VER 0x70000003
|
---|
| 17 |
|
---|
| 18 |
|
---|
[75] | 19 | void SetLpIndex_DebugFile(char *buffer,int *p,const Type &type){
|
---|
| 20 | if(NATURAL_TYPE(type.GetBasicType())==DEF_OBJECT || NATURAL_TYPE(type.GetBasicType())==DEF_STRUCT){
|
---|
[131] | 21 | lstrcpy(buffer+(*p),type.GetClass().GetName().c_str());
|
---|
[4] | 22 | (*p)+=lstrlen(buffer+(*p))+1;
|
---|
| 23 | }
|
---|
| 24 | else{
|
---|
[75] | 25 | *(LONG_PTR *)(buffer+(*p))=type.GetIndex();
|
---|
[4] | 26 | (*p)+=sizeof(LONG_PTR);
|
---|
| 27 | }
|
---|
| 28 | }
|
---|
| 29 |
|
---|
| 30 |
|
---|
[75] | 31 | void GetLpIndex_DebugFile(char *buffer,int *p,Type &type){
|
---|
| 32 | if(NATURAL_TYPE(type.GetBasicType())==DEF_OBJECT || NATURAL_TYPE(type.GetBasicType())==DEF_STRUCT){
|
---|
[4] | 33 | char szClassName[VN_SIZE];
|
---|
| 34 | lstrcpy(szClassName,buffer+(*p));
|
---|
| 35 | (*p)+=lstrlen(buffer+(*p))+1;
|
---|
| 36 |
|
---|
[265] | 37 | type.SetClassPtr( compiler.GetObjectModule().meta.GetClasses().Find(szClassName) );
|
---|
[4] | 38 | }
|
---|
| 39 | else{
|
---|
[75] | 40 | type.SetIndex( *(LONG_PTR *)(buffer+(*p)) );
|
---|
[4] | 41 | (*p)+=sizeof(LONG_PTR);
|
---|
| 42 | }
|
---|
| 43 | }
|
---|
| 44 |
|
---|
| 45 |
|
---|
| 46 |
|
---|
| 47 | CDebugSection::~CDebugSection(){
|
---|
[265] | 48 | if(dwImageBase) DeleteDebugInfo();
|
---|
[4] | 49 | if(buffer){
|
---|
| 50 | HeapDefaultFree(buffer);
|
---|
| 51 | buffer=0;
|
---|
| 52 | }
|
---|
| 53 | }
|
---|
| 54 | void CDebugSection::make(void){
|
---|
[279] | 55 | int i2,BufferSize;
|
---|
[4] | 56 |
|
---|
| 57 | if(buffer){
|
---|
| 58 | HeapDefaultFree(buffer);
|
---|
| 59 | buffer=0;
|
---|
| 60 | }
|
---|
| 61 |
|
---|
| 62 | i2=0;
|
---|
| 63 |
|
---|
| 64 | extern char *basbuf;
|
---|
| 65 | BufferSize=lstrlen(basbuf)+65535;
|
---|
| 66 | buffer=(char *)HeapAlloc(hHeap,0,BufferSize);
|
---|
| 67 |
|
---|
| 68 | //デバッグ用ファイルのバージョン
|
---|
| 69 | *(long *)(buffer+i2)=MDLFILE_VER;
|
---|
| 70 | i2+=sizeof(long);
|
---|
| 71 |
|
---|
| 72 | //プラットフォームのビット数
|
---|
| 73 | *(long *)(buffer+i2)=PLATFORM;
|
---|
| 74 | i2+=sizeof(long);
|
---|
| 75 |
|
---|
[264] | 76 |
|
---|
| 77 | // オブジェクトモジュール
|
---|
| 78 | {
|
---|
| 79 | // テキストデータにシリアライズ
|
---|
| 80 | std::string textString;
|
---|
[279] | 81 | compiler.GetObjectModule().WriteString( textString );
|
---|
[264] | 82 |
|
---|
| 83 | // サイズ
|
---|
[266] | 84 | *(long *)(buffer+i2) = (long)textString.size();
|
---|
[264] | 85 | i2+=sizeof(long);
|
---|
| 86 |
|
---|
| 87 | //バッファが足りない場合は再確保
|
---|
| 88 | if(BufferSize<i2+(int)textString.size()+32768){
|
---|
| 89 | while( BufferSize<i2+(int)textString.size()+32768 )
|
---|
| 90 | {
|
---|
| 91 | BufferSize+=32768;
|
---|
| 92 | }
|
---|
| 93 |
|
---|
| 94 | buffer=(char *)HeapReAlloc(hHeap,0,buffer,BufferSize);
|
---|
| 95 | }
|
---|
| 96 |
|
---|
| 97 | // バッファ
|
---|
| 98 | memcpy( buffer+i2, textString.c_str(), textString.size() );
|
---|
[266] | 99 | i2 += (int)textString.size();
|
---|
[264] | 100 | }
|
---|
| 101 |
|
---|
| 102 |
|
---|
[4] | 103 | ////////////////////////
|
---|
| 104 | // コードと行番号の関係
|
---|
| 105 | ////////////////////////
|
---|
[263] | 106 | extern SourceLines oldSourceLines;
|
---|
[4] | 107 |
|
---|
[263] | 108 | *(long *)(buffer+i2)=(long)oldSourceLines.size();
|
---|
| 109 | i2+=sizeof(long);
|
---|
| 110 | BOOST_FOREACH( const SourceLine &sourceLine, oldSourceLines )
|
---|
| 111 | {
|
---|
| 112 | *(long *)(buffer+i2) = sourceLine.GetLineNum();
|
---|
| 113 | i2+=sizeof(long);
|
---|
| 114 |
|
---|
| 115 | *(long *)(buffer+i2) = sourceLine.GetNativeCodePos();
|
---|
| 116 | i2+=sizeof(long);
|
---|
| 117 |
|
---|
[280] | 118 | *(long *)(buffer+i2) = sourceLine.GetSourceIndex();
|
---|
| 119 | i2+=sizeof(long);
|
---|
| 120 |
|
---|
[263] | 121 | *(long *)(buffer+i2) = sourceLine.GetSourceCodePos();
|
---|
| 122 | i2+=sizeof(long);
|
---|
| 123 |
|
---|
| 124 | *(long *)(buffer+i2) = sourceLine.GetCodeType();
|
---|
| 125 | i2+=sizeof(long);
|
---|
| 126 |
|
---|
| 127 | //バッファが足りない場合は再確保
|
---|
| 128 | if(BufferSize<i2+32768){
|
---|
| 129 | BufferSize+=32768;
|
---|
| 130 | buffer=(char *)HeapReAlloc(hHeap,0,buffer,BufferSize);
|
---|
| 131 | }
|
---|
[4] | 132 | }
|
---|
| 133 |
|
---|
| 134 | //グローバル実行領域のサイズ
|
---|
| 135 | extern int GlobalOpBufferSize;
|
---|
| 136 | *(long *)(buffer+i2)=GlobalOpBufferSize;
|
---|
| 137 | i2+=sizeof(long);
|
---|
| 138 |
|
---|
| 139 | length=i2;
|
---|
| 140 | }
|
---|
| 141 |
|
---|
| 142 | char *CDebugSection::MakeSingleStepCode(void){
|
---|
| 143 | char *buffer;
|
---|
| 144 | buffer=(char *)HeapAlloc(hHeap,0,SizeOf_CodeSection);
|
---|
| 145 |
|
---|
| 146 | memcpy(buffer,OpBuffer,SizeOf_CodeSection);
|
---|
| 147 |
|
---|
[265] | 148 | BOOST_FOREACH( const SourceLine &sourceLine, _oldSourceLines )
|
---|
[263] | 149 | {
|
---|
[4] | 150 | if(!(
|
---|
[263] | 151 | sourceLine.IsInSystemProc()
|
---|
| 152 | || sourceLine.IsInDebugProc() ) )
|
---|
| 153 | {
|
---|
[4] | 154 | //int 3
|
---|
[263] | 155 | buffer[sourceLine.GetNativeCodePos()]=(char)0xCC;
|
---|
[4] | 156 | }
|
---|
| 157 | }
|
---|
| 158 |
|
---|
| 159 | return buffer;
|
---|
| 160 | }
|
---|
| 161 | BOOL CDebugSection::__load(void){
|
---|
[265] | 162 | int i2,i3;
|
---|
[4] | 163 |
|
---|
[206] | 164 | compiler.pCompilingClass = NULL;
|
---|
[16] | 165 |
|
---|
[4] | 166 | i2=0;
|
---|
| 167 |
|
---|
| 168 | //デバッグ用ファイルのバージョンをチェック
|
---|
| 169 | if(*(long *)(buffer+i2)<MDLFILE_VER){
|
---|
| 170 | HeapDefaultFree(buffer);
|
---|
| 171 | return 0;
|
---|
| 172 | }
|
---|
| 173 | i2+=sizeof(long);
|
---|
| 174 |
|
---|
| 175 | //プラットフォームのビット数をチェック
|
---|
| 176 | if(*(long *)(buffer+i2)!=PLATFORM){
|
---|
| 177 | HeapDefaultFree(buffer);
|
---|
| 178 | return 0;
|
---|
| 179 | }
|
---|
| 180 | i2+=sizeof(long);
|
---|
| 181 |
|
---|
[264] | 182 | // オブジェクトモジュール
|
---|
| 183 | {
|
---|
| 184 | // サイズ
|
---|
| 185 | int size = *(long *)(buffer+i2);
|
---|
| 186 | i2 += sizeof(long);
|
---|
| 187 |
|
---|
| 188 | // バッファ
|
---|
| 189 | const std::string textString( (const char *)(buffer + i2), size );
|
---|
[265] | 190 | i2 += size;
|
---|
[264] | 191 |
|
---|
| 192 | // テキストデータからシリアライズ
|
---|
[279] | 193 | this->objectModule.ReadString( textString );
|
---|
[265] | 194 |
|
---|
| 195 | compiler.SelectObjectModule( this->objectModule );
|
---|
[264] | 196 | }
|
---|
| 197 |
|
---|
[268] | 198 |
|
---|
[4] | 199 | //コードと行番号の関係
|
---|
[268] | 200 | int maxLineInfoNum = *(long *)(buffer+i2);
|
---|
[4] | 201 | i2+=sizeof(long);
|
---|
[263] | 202 | for(i3=0;i3<maxLineInfoNum;i3++){
|
---|
| 203 | int lineNum = *(long *)(buffer+i2);
|
---|
| 204 | i2+=sizeof(long);
|
---|
[4] | 205 |
|
---|
[263] | 206 | int nativeCodePos = *(long *)(buffer+i2);
|
---|
| 207 | i2+=sizeof(long);
|
---|
[4] | 208 |
|
---|
[280] | 209 | int sourceIndex = *(long *)(buffer+i2);
|
---|
| 210 | i2+=sizeof(long);
|
---|
| 211 |
|
---|
[263] | 212 | int sourceCodePos = *(long *)(buffer+i2);
|
---|
| 213 | i2+=sizeof(long);
|
---|
| 214 |
|
---|
| 215 | DWORD sourceLineType = *(DWORD *)(buffer+i2);
|
---|
| 216 | i2+=sizeof(long);
|
---|
| 217 |
|
---|
[280] | 218 | _oldSourceLines.push_back(
|
---|
| 219 | SourceLine(
|
---|
| 220 | lineNum,
|
---|
| 221 | nativeCodePos,
|
---|
| 222 | sourceIndex,
|
---|
| 223 | sourceCodePos,
|
---|
| 224 | sourceLineType
|
---|
| 225 | )
|
---|
| 226 | );
|
---|
[263] | 227 | }
|
---|
| 228 |
|
---|
[4] | 229 | //グローバル実行領域のサイズ
|
---|
| 230 | GlobalOpBufferSize=*(long *)(buffer+i2);
|
---|
| 231 | i2+=sizeof(long);
|
---|
| 232 |
|
---|
| 233 |
|
---|
| 234 | HeapDefaultFree(buffer);
|
---|
| 235 | buffer=0;
|
---|
| 236 |
|
---|
| 237 |
|
---|
[265] | 238 | this->pSub_DebugSys_EndProc=GetSubHash("_DebugSys_EndProc");
|
---|
| 239 | if( this->pSub_DebugSys_EndProc == NULL )
|
---|
| 240 | {
|
---|
| 241 | MessageBox( 0, "_DebugSys_EndProcが見つからない", "ActiveBasic", MB_OK );
|
---|
| 242 | }
|
---|
[4] | 243 |
|
---|
| 244 |
|
---|
| 245 | SingleStepCodeBuffer=MakeSingleStepCode();
|
---|
[313] | 246 |
|
---|
| 247 | //ソースコード
|
---|
| 248 | extern char *basbuf;
|
---|
| 249 | basbuf = const_cast<char *>(compiler.GetObjectModule().GetSource(0).GetBuffer());
|
---|
[4] | 250 |
|
---|
| 251 |
|
---|
| 252 | /////////////////////////////
|
---|
| 253 | // ブレークポイントを適用
|
---|
| 254 | /////////////////////////////
|
---|
| 255 |
|
---|
| 256 | //コードと行番号の関係
|
---|
[263] | 257 | extern SourceLines oldSourceLines;
|
---|
[265] | 258 | oldSourceLines = this->_oldSourceLines;
|
---|
[4] | 259 |
|
---|
| 260 | BreakStepCodeBuffer=pobj_DBBreakPoint->update(OpBuffer,SizeOf_CodeSection);
|
---|
| 261 |
|
---|
| 262 | //プロセスメモリにコピー
|
---|
| 263 | extern HANDLE hDebugProcess;
|
---|
[76] | 264 | SIZE_T accessBytes;
|
---|
[4] | 265 | WriteProcessMemory(hDebugProcess,(void *)(ULONG_PTR)(dwImageBase+dwRVA_CodeSection),
|
---|
| 266 | BreakStepCodeBuffer,
|
---|
[76] | 267 | SizeOf_CodeSection,&accessBytes);
|
---|
[4] | 268 |
|
---|
| 269 |
|
---|
| 270 | return 1;
|
---|
| 271 | }
|
---|
| 272 |
|
---|
| 273 | BOOL CDebugSection::load(HMODULE hModule){
|
---|
| 274 | if(buffer){
|
---|
| 275 | HeapDefaultFree(buffer);
|
---|
| 276 | buffer=0;
|
---|
| 277 | }
|
---|
| 278 |
|
---|
| 279 |
|
---|
| 280 | extern HANDLE hDebugProcess;
|
---|
[76] | 281 | SIZE_T accessBytes;
|
---|
[4] | 282 | IMAGE_DOS_HEADER ImageDosHeader;
|
---|
[76] | 283 | ReadProcessMemory(hDebugProcess,hModule,&ImageDosHeader,sizeof(IMAGE_DOS_HEADER),&accessBytes);
|
---|
[4] | 284 |
|
---|
| 285 | int pe_size;
|
---|
| 286 | #ifdef _AMD64_
|
---|
| 287 | IMAGE_NT_HEADERS64 pe_hdr;
|
---|
| 288 | pe_size=sizeof(IMAGE_NT_HEADERS64);
|
---|
| 289 | #else
|
---|
| 290 | IMAGE_NT_HEADERS pe_hdr;
|
---|
| 291 | pe_size=sizeof(IMAGE_NT_HEADERS);
|
---|
| 292 | #endif
|
---|
[76] | 293 | ReadProcessMemory(hDebugProcess,(void *)(((ULONG_PTR)hModule)+ImageDosHeader.e_lfanew),&pe_hdr,pe_size,&accessBytes);
|
---|
[4] | 294 |
|
---|
| 295 | IMAGE_SECTION_HEADER *pSectionHdr;
|
---|
| 296 | pSectionHdr=(IMAGE_SECTION_HEADER *)HeapAlloc(hHeap,0,pe_hdr.FileHeader.NumberOfSections*sizeof(IMAGE_SECTION_HEADER));
|
---|
| 297 | ReadProcessMemory(hDebugProcess,
|
---|
| 298 | (void *)(((ULONG_PTR)hModule)+ImageDosHeader.e_lfanew+pe_size),
|
---|
| 299 | pSectionHdr,
|
---|
| 300 | pe_hdr.FileHeader.NumberOfSections*sizeof(IMAGE_SECTION_HEADER),
|
---|
[76] | 301 | &accessBytes);
|
---|
[4] | 302 |
|
---|
| 303 | int i;
|
---|
| 304 | for(i=0;i<pe_hdr.FileHeader.NumberOfSections;i++){
|
---|
| 305 |
|
---|
| 306 | //リライタブルセクション内の情報
|
---|
| 307 | if(lstrcmp((char *)pSectionHdr[i].Name,".data")==0){
|
---|
| 308 | dwRVA_RWSection=pSectionHdr[i].VirtualAddress;
|
---|
| 309 | }
|
---|
| 310 |
|
---|
| 311 | //コードセクション内の情報
|
---|
| 312 | if(lstrcmp((char *)pSectionHdr[i].Name,".text")==0){
|
---|
| 313 | dwRVA_CodeSection=pSectionHdr[i].VirtualAddress;
|
---|
| 314 | SizeOf_CodeSection=pSectionHdr[i].SizeOfRawData;
|
---|
| 315 | }
|
---|
| 316 |
|
---|
| 317 | //デバッグセクション内の情報
|
---|
| 318 | if(lstrcmp((char *)pSectionHdr[i].Name,".debug")==0){
|
---|
| 319 | length=pSectionHdr[i].Misc.VirtualSize;
|
---|
| 320 | buffer=(char *)HeapAlloc(hHeap,0,length+1);
|
---|
| 321 |
|
---|
| 322 | ReadProcessMemory(hDebugProcess,
|
---|
| 323 | (void *)(((ULONG_PTR)hModule)+pSectionHdr[i].VirtualAddress),
|
---|
| 324 | buffer,
|
---|
| 325 | length,
|
---|
[76] | 326 | &accessBytes);
|
---|
[4] | 327 | buffer[length]=0;
|
---|
| 328 | }
|
---|
| 329 |
|
---|
| 330 | }
|
---|
| 331 | HeapDefaultFree(pSectionHdr);
|
---|
| 332 |
|
---|
| 333 | if(!buffer) return 0;
|
---|
| 334 |
|
---|
| 335 |
|
---|
| 336 | dwImageBase=(DWORD)(ULONG_PTR)hModule;
|
---|
| 337 |
|
---|
| 338 |
|
---|
| 339 |
|
---|
[191] | 340 | if(OpBuffer) free(OpBuffer);
|
---|
[188] | 341 | OpBuffer=(char *)malloc(SizeOf_CodeSection);
|
---|
[4] | 342 |
|
---|
| 343 | ReadProcessMemory(hDebugProcess,
|
---|
| 344 | (void *)(ULONG_PTR)(dwImageBase+dwRVA_CodeSection),OpBuffer,
|
---|
[76] | 345 | SizeOf_CodeSection,&accessBytes);
|
---|
[4] | 346 |
|
---|
| 347 |
|
---|
| 348 | return __load();
|
---|
| 349 | }
|
---|
| 350 |
|
---|
| 351 | void CDebugSection::choice(void){
|
---|
| 352 | //イメージベース
|
---|
| 353 | extern DWORD ImageBase;
|
---|
| 354 | ImageBase=this->dwImageBase;
|
---|
| 355 |
|
---|
| 356 | //リライタブルセクションのRVA
|
---|
| 357 | extern int MemPos_RWSection;
|
---|
| 358 | MemPos_RWSection=this->dwRVA_RWSection;
|
---|
| 359 |
|
---|
| 360 | //コードセクションのRVAとサイズ
|
---|
| 361 | extern int MemPos_CodeSection;
|
---|
| 362 | extern int FileSize_CodeSection;
|
---|
| 363 | MemPos_CodeSection=this->dwRVA_CodeSection;
|
---|
| 364 | FileSize_CodeSection=this->SizeOf_CodeSection;
|
---|
| 365 |
|
---|
[265] | 366 | // オブジェクトモジュール
|
---|
| 367 | compiler.SelectObjectModule( this->objectModule );
|
---|
| 368 |
|
---|
[4] | 369 | //コードと行番号の関係
|
---|
[263] | 370 | extern SourceLines oldSourceLines;
|
---|
[265] | 371 | oldSourceLines = this->_oldSourceLines;
|
---|
[4] | 372 |
|
---|
| 373 | //グローバル実行領域のサイズ
|
---|
| 374 | extern int GlobalOpBufferSize;
|
---|
| 375 | GlobalOpBufferSize=this->GlobalOpBufferSize;
|
---|
| 376 |
|
---|
[206] | 377 | extern const UserProc *pSub_DebugSys_EndProc;
|
---|
[4] | 378 | pSub_DebugSys_EndProc=this->pSub_DebugSys_EndProc;
|
---|
| 379 |
|
---|
| 380 | //ネイティブコードバッファ
|
---|
| 381 | extern char *OpBuffer;
|
---|
| 382 | OpBuffer=this->OpBuffer;
|
---|
| 383 | }
|
---|
| 384 |
|
---|
| 385 | void CDebugSection::DeleteDebugInfo(void){
|
---|
| 386 | //コードバッファを解放
|
---|
[182] | 387 | free(OpBuffer);
|
---|
[4] | 388 | OpBuffer=0;
|
---|
| 389 |
|
---|
| 390 | HeapDefaultFree(SingleStepCodeBuffer);
|
---|
| 391 | SingleStepCodeBuffer=0;
|
---|
| 392 |
|
---|
| 393 | HeapDefaultFree(BreakStepCodeBuffer);
|
---|
| 394 | BreakStepCodeBuffer=0;
|
---|
| 395 | }
|
---|
| 396 |
|
---|
| 397 |
|
---|
| 398 |
|
---|
| 399 | CDBDebugSection::CDBDebugSection(){
|
---|
| 400 | ppobj_ds=(CDebugSection **)HeapAlloc(hHeap,0,1);
|
---|
| 401 | num=0;
|
---|
| 402 | }
|
---|
| 403 | CDBDebugSection::~CDBDebugSection(){
|
---|
| 404 | int i;
|
---|
| 405 | for(i=0;i<num;i++){
|
---|
| 406 | delete ppobj_ds[i];
|
---|
| 407 | }
|
---|
| 408 | HeapDefaultFree(ppobj_ds);
|
---|
| 409 | }
|
---|
| 410 |
|
---|
| 411 | BOOL CDBDebugSection::add(HMODULE hModule){
|
---|
| 412 | CDebugSection *pobj_d;
|
---|
| 413 | pobj_d=new CDebugSection();
|
---|
| 414 | if(!pobj_d->load(hModule)){
|
---|
| 415 | //デバッグ情報が存在しないとき
|
---|
| 416 | delete pobj_d;
|
---|
| 417 | return 0;
|
---|
| 418 | }
|
---|
| 419 |
|
---|
| 420 | ppobj_ds=(CDebugSection **)HeapReAlloc(hHeap,0,ppobj_ds,(num+1)*sizeof(CDebugSection *));
|
---|
| 421 | ppobj_ds[num]=pobj_d;
|
---|
| 422 | num++;
|
---|
| 423 |
|
---|
| 424 | return 1;
|
---|
| 425 | }
|
---|
| 426 |
|
---|
| 427 | void CDBDebugSection::del(HMODULE hModule){
|
---|
| 428 | int i;
|
---|
| 429 | for(i=0;i<num;i++){
|
---|
| 430 | if((HMODULE)(ULONG_PTR)ppobj_ds[i]->dwImageBase==hModule){
|
---|
| 431 | delete ppobj_ds[i];
|
---|
| 432 |
|
---|
| 433 | num--;
|
---|
| 434 | for(;i<num;i++){
|
---|
| 435 | ppobj_ds[i]=ppobj_ds[i+1];
|
---|
| 436 | }
|
---|
| 437 | break;
|
---|
| 438 | }
|
---|
| 439 | }
|
---|
| 440 | }
|
---|
| 441 |
|
---|
| 442 | void CDBDebugSection::choice(int index){
|
---|
| 443 | pobj_now=ppobj_ds[index];
|
---|
| 444 | pobj_now->choice();
|
---|
| 445 | }
|
---|
| 446 |
|
---|
| 447 |
|
---|
| 448 |
|
---|
| 449 | CDBDebugSection *pobj_DBDebugSection;
|
---|