MCPcopy Create free account
hub / github.com/HaxeFoundation/hxcpp / CppiaJitCompiler

Method CppiaJitCompiler

src/hx/cppia/CppiaCompiler.cpp:233–250  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

231
232
233 CppiaJitCompiler(int inFrameSize)
234 {
235 maxTempCount = 0;
236 maxFTempCount = 0;
237 maxLocalSize = 0;
238 localSize = 0;
239 compiler = 0;
240 usesFrame = false;
241 usesThis = false;
242 usesCtx = false;
243 makesNativeCalls = false;
244 continuePos = 0;
245 catching = 0;
246 onReturn = 0;
247 onReturnStackSize = 0;
248 lineOffset = 0;
249 maxFrameSize = frameSize = baseFrameSize = sizeof(void *) + inFrameSize;
250 }
251
252
253 ~CppiaJitCompiler()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected