| 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() |
nothing calls this directly
no outgoing calls
no test coverage detected