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

Method Print

IDEHelper/Compiler/CeMachine.cpp:542–555  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

540}
541
542void CeFunction::Print()
543{
544 CeDumpContext dumpCtx;
545 dumpCtx.mCeFunction = this;
546 dumpCtx.mStart = &mCode[0];
547 dumpCtx.mPtr = dumpCtx.mStart;
548 dumpCtx.mEnd = dumpCtx.mPtr + mCode.mSize;
549 dumpCtx.Dump();
550
551 String methodName;
552 if (mMethodInstance != NULL)
553 methodName = mMethodInstance->GetOwner()->mModule->MethodToString(mMethodInstance);
554 OutputDebugStrF("Code for %s:\n%s\n", methodName.c_str(), dumpCtx.mStr.c_str());
555}
556
557void CeFunction::UnbindBreakpoints()
558{

Callers

nothing calls this directly

Calls 4

DumpMethod · 0.80
MethodToStringMethod · 0.80
GetOwnerMethod · 0.45
c_strMethod · 0.45

Tested by

no test coverage detected