Searched refs:protoObject (Results 1 – 9 of 9) sorted by relevance
/external/v8/test/mjsunit/ |
D | mirror-unresolved-function.js | 65 assertEquals('undefined', mirror.protoObject().type()); 74 assertEquals(mirror.protoObject().handle(), fromJSON.protoObject.ref, 'Unexpected proto object hand… 75 assertEquals('undefined', refs.lookup(fromJSON.protoObject.ref).type, 'Unexpected proto object type…
|
D | mirror-object.js | 63 assertTrue(mirror.protoObject() instanceof debug.Mirror, 'Unexpected mirror hierachy'); 98 …assertEquals(mirror.protoObject().handle(), fromJSON.protoObject.ref, 'Unexpected proto object han… 99 …assertEquals(mirror.protoObject().type(), refs.lookup(fromJSON.protoObject.ref).type, 'Unexpected …
|
D | mirror-function.js | 66 assertTrue(mirror.protoObject() instanceof debug.Mirror);
|
D | mirror-array.js | 64 assertTrue(mirror.protoObject() instanceof debug.Mirror, 'Unexpected mirror hierachy');
|
/external/webkit/Source/JavaScriptCore/jit/ |
D | JITPropertyAccess.cpp | 726 JSObject* protoObject = asObject(structure->prototypeForLookup(callFrame)); in privateCompileGetByIdProto() local 732 const void* prototypeStructureAddress = protoObject->addressOfStructure(); in privateCompileGetByIdProto() 745 compileGetDirectOffset(protoObject, regT1, cachedOffset); in privateCompileGetByIdProto() 754 stubCall.addArgument(TrustedImmPtr(protoObject)); in privateCompileGetByIdProto() 760 compileGetDirectOffset(protoObject, regT0, cachedOffset); in privateCompileGetByIdProto() 848 JSObject* protoObject = asObject(structure->prototypeForLookup(callFrame)); in privateCompileGetByIdProtoList() local 854 const void* prototypeStructureAddress = protoObject->addressOfStructure(); in privateCompileGetByIdProtoList() 866 compileGetDirectOffset(protoObject, regT1, cachedOffset); in privateCompileGetByIdProtoList() 875 stubCall.addArgument(TrustedImmPtr(protoObject)); in privateCompileGetByIdProtoList() 881 compileGetDirectOffset(protoObject, regT0, cachedOffset); in privateCompileGetByIdProtoList() [all …]
|
D | JITPropertyAccess32_64.cpp | 755 JSObject* protoObject = asObject(structure->prototypeForLookup(callFrame)); in privateCompileGetByIdProto() local 760 const void* prototypeStructureAddress = protoObject->addressOfStructure(); in privateCompileGetByIdProto() 771 compileGetDirectOffset(protoObject, regT2, regT1, cachedOffset); in privateCompileGetByIdProto() 780 stubCall.addArgument(TrustedImmPtr(protoObject)); in privateCompileGetByIdProto() 786 compileGetDirectOffset(protoObject, regT1, regT0, cachedOffset); in privateCompileGetByIdProto() 880 JSObject* protoObject = asObject(structure->prototypeForLookup(callFrame)); in privateCompileGetByIdProtoList() local 886 const void* prototypeStructureAddress = protoObject->addressOfStructure(); in privateCompileGetByIdProtoList() 897 compileGetDirectOffset(protoObject, regT2, regT1, cachedOffset); in privateCompileGetByIdProtoList() 906 stubCall.addArgument(TrustedImmPtr(protoObject)); in privateCompileGetByIdProtoList() 912 compileGetDirectOffset(protoObject, regT1, regT0, cachedOffset); in privateCompileGetByIdProtoList() [all …]
|
/external/v8/src/ |
D | mirror-debugger.js | 594 ObjectMirror.prototype.protoObject = function() { method in ObjectMirror 937 UnresolvedFunctionMirror.prototype.protoObject = function() { method in UnresolvedFunctionMirror 1615 r = r.protoObject()) { 2234 content.protoObject = this.serializeReference(mirror.protoObject());
|
D | d8.js | 2535 var proto = this.value_.protoObject;
|
/external/webkit/Source/JavaScriptCore/interpreter/ |
D | Interpreter.cpp | 2554 JSObject* protoObject = asObject(structure->prototypeForLookup(callFrame)); in privateExecute() local 2557 if (LIKELY(protoObject->structure() == prototypeStructure)) { in privateExecute() 2561 …ASSERT(protoObject->get(callFrame, codeBlock->identifier(vPC[3].u.operand)) == protoObject->getDir… in privateExecute() 2562 …T(baseValue.get(callFrame, codeBlock->identifier(vPC[3].u.operand)) == protoObject->getDirectOffse… in privateExecute() 2563 callFrame->uncheckedR(dst) = JSValue(protoObject->getDirectOffset(offset)); in privateExecute() 2593 JSObject* protoObject = asObject(structure->prototypeForLookup(callFrame)); in privateExecute() local 2596 if (LIKELY(protoObject->structure() == prototypeStructure)) { in privateExecute() 2599 … if (GetterSetter* getterSetter = asGetterSetter(protoObject->getDirectOffset(offset).asCell())) { in privateExecute() 2638 JSObject* protoObject = asObject(structure->prototypeForLookup(callFrame)); in privateExecute() local 2641 if (LIKELY(protoObject->structure() == prototypeStructure)) { in privateExecute() [all …]
|