Lines Matching refs:thisPtr
109 Object* thisPtr;
125 thisPtr = (Object*) GET_REGISTER(vdst);
130 thisPtr = (Object*) GET_REGISTER(vdst & 0x0f);
133 if (!checkForNull(thisPtr))
153 assert(baseMethod->methodIndex < thisPtr->clazz->vtableCount);
154 methodToCall = thisPtr->clazz->vtable[baseMethod->methodIndex];
158 self->callsiteClass = thisPtr->clazz;
282 Object* thisPtr;
299 thisPtr = (Object*) GET_REGISTER(vdst);
304 thisPtr = (Object*) GET_REGISTER(vdst & 0x0f);
307 if (!checkForNull(thisPtr))
310 thisClass = thisPtr->clazz;
407 Object* thisPtr;
423 thisPtr = (Object*) GET_REGISTER(vdst);
428 thisPtr = (Object*) GET_REGISTER(vdst & 0x0f);
431 if (!checkForNull(thisPtr))
439 assert(ref < (unsigned int) thisPtr->clazz->vtableCount);
440 methodToCall = thisPtr->clazz->vtable[ref];
442 self->callsiteClass = thisPtr->clazz;