Home | History | Annotate | Download | only in jit

Lines Matching full:base

804     // If baseCell != base, then baseCell must be a proxy for another object.
805 if (baseCell != slot.base()) {
1263 JSObject* base = asObject(baseValue);
1264 base->allocatePropertyStorage(oldSize, newSize);
1266 return base;
1289 // If we successfully got something, then the base from which it is being accessed must
2605 JSObject* base;
2607 base = *iter;
2608 PropertySlot slot(base);
2609 if (base->getPropertySlot(callFrame, ident, slot)) {
2613 callFrame->registers()[stackFrame.args[1].int32()] = JSValue(base);
2811 JSObject* base = stackFrame.args[0].jsObject();
2813 return base->hasProperty(stackFrame.callFrame, Identifier(stackFrame.callFrame, property->value(stackFrame.callFrame)));