| 418 | } |
| 419 | |
| 420 | VMMethod* compiledMethod() { |
| 421 | const char* env = *(const char**) at(_comp_env_offset); |
| 422 | if (env != NULL) { |
| 423 | const char* task = *(const char**) (env + _comp_task_offset); |
| 424 | if (task != NULL) { |
| 425 | return *(VMMethod**) (task + _comp_method_offset); |
| 426 | } |
| 427 | } |
| 428 | return NULL; |
| 429 | } |
| 430 | }; |
| 431 | |
| 432 | class VMMethod : VMStructs { |