| 485 | } |
| 486 | |
| 487 | void BeIRCodeGen::Process() |
| 488 | { |
| 489 | BP_ZONE("BeIRCodeGen::process"); |
| 490 | |
| 491 | //mDebugging |= ((mBeModule->mDbgModule != NULL) && (mBeModule->mDbgModule->mFileName == "ClassQ")); |
| 492 | if (mDebugging) |
| 493 | { |
| 494 | String dbgStr; |
| 495 | dbgStr = mBeModule->ToString(); |
| 496 | OutputDebugStr(dbgStr); |
| 497 | } |
| 498 | |
| 499 | mBeModule->DoInlining(); |
| 500 | |
| 501 | if (mDebugging) |
| 502 | { |
| 503 | String dbgStr = "-------------- AFTER INLINING --------------\n"; |
| 504 | dbgStr += mBeModule->ToString(); |
| 505 | OutputDebugStr(dbgStr); |
| 506 | } |
| 507 | } |
| 508 | |
| 509 | void BeIRCodeGen::ProcessBfIRData(const BfSizedArray<uint8>& buffer) |
| 510 | { |
nothing calls this directly
no test coverage detected