MCPcopy Create free account
hub / github.com/WheretIB/nullc / nullcGetResultInt

Function nullcGetResultInt

NULLC/nullc.cpp:797–815  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

795 return "unknown executor";
796}
797int nullcGetResultInt()
798{
799 using namespace NULLC;
800 NULLC_CHECK_INITIALIZED(0);
801
802#ifndef NULLC_NO_EXECUTOR
803 if(currExec == NULLC_VM)
804 return executor->GetResultInt();
805#endif
806#ifdef NULLC_BUILD_X86_JIT
807 if(currExec == NULLC_X86)
808 return executorX86->GetResultInt();
809#endif
810#if defined(NULLC_LLVM_SUPPORT) && !defined(NULLC_NO_EXECUTOR)
811 if(currExec == NULLC_LLVM)
812 return executorLLVM->GetResultInt();
813#endif
814 return 0;
815}
816double nullcGetResultDouble()
817{
818 using namespace NULLC;

Callers 13

beginMethod · 0.85
for_eachMethod · 0.85
endMethod · 0.85
operator()Method · 0.85
operator()Method · 0.85
RunInterfaceTestsFunction · 0.85
RecallerFunction · 0.85
Recaller3Function · 0.85
RecallerPtrFunction · 0.85
BubbleSortArrayFunction · 0.85
RecallerGC1Function · 0.85
RecallerGC2Function · 0.85

Calls 1

GetResultIntMethod · 0.45

Tested by 8

RunInterfaceTestsFunction · 0.68
RecallerFunction · 0.68
Recaller3Function · 0.68
RecallerPtrFunction · 0.68
BubbleSortArrayFunction · 0.68
RecallerGC1Function · 0.68
RecallerGC2Function · 0.68
RecallerGC3Function · 0.68