MCPcopy Create free account
hub / github.com/beefytech/Beef / Process

Method Process

IDEHelper/Backend/BeIRCodeGen.cpp:487–507  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

485}
486
487void 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
509void BeIRCodeGen::ProcessBfIRData(const BfSizedArray<uint8>& buffer)
510{

Callers

nothing calls this directly

Calls 2

DoInliningMethod · 0.80
ToStringMethod · 0.45

Tested by

no test coverage detected