Searched refs:baseObjectStructure (Results 1 – 4 of 4) sorted by relevance
/external/webkit/JavaScriptCore/bytecode/ |
D | StructureStubInfo.h | 61 void initGetByIdSelf(Structure* baseObjectStructure) in initGetByIdSelf() 65 u.getByIdSelf.baseObjectStructure = baseObjectStructure; in initGetByIdSelf() 66 baseObjectStructure->ref(); in initGetByIdSelf() 69 void initGetByIdProto(Structure* baseObjectStructure, Structure* prototypeStructure) in initGetByIdProto() 73 u.getByIdProto.baseObjectStructure = baseObjectStructure; in initGetByIdProto() 74 baseObjectStructure->ref(); in initGetByIdProto() 80 void initGetByIdChain(Structure* baseObjectStructure, StructureChain* chain) in initGetByIdChain() 84 u.getByIdChain.baseObjectStructure = baseObjectStructure; in initGetByIdChain() 85 baseObjectStructure->ref(); in initGetByIdChain() 123 void initPutByIdReplace(Structure* baseObjectStructure) in initPutByIdReplace() [all …]
|
D | StructureStubInfo.cpp | 36 u.getByIdSelf.baseObjectStructure->deref(); in deref() 39 u.getByIdProto.baseObjectStructure->deref(); in deref() 43 u.getByIdChain.baseObjectStructure->deref(); in deref() 64 u.putByIdReplace.baseObjectStructure->deref(); in deref()
|
D | CodeBlock.cpp | 235 …et, "get_by_id_self", pointerToSourceString(stubInfo.u.getByIdSelf.baseObjectStructure).UTF8String… in printStructureStubInfo() 238 …, "get_by_id_proto", pointerToSourceString(stubInfo.u.getByIdProto.baseObjectStructure).UTF8String… in printStructureStubInfo() 241 …, "get_by_id_chain", pointerToSourceString(stubInfo.u.getByIdChain.baseObjectStructure).UTF8String… in printStructureStubInfo() 253 …ut_by_id_replace", pointerToSourceString(stubInfo.u.putByIdReplace.baseObjectStructure).UTF8String… in printStructureStubInfo()
|
/external/webkit/JavaScriptCore/jit/ |
D | JITStubs.cpp | 1238 …w PolymorphicAccessStructureList(CodeLocationLabel(), stubInfo->u.getByIdSelf.baseObjectStructure); in DEFINE_STUB_FUNCTION() 1262 …ccessStructureList(stubInfo->stubRoutine, stubInfo->u.getByIdProto.baseObjectStructure, stubInfo->… in getPolymorphicAccessStructureListSlot() 1267 …ccessStructureList(stubInfo->stubRoutine, stubInfo->u.getByIdChain.baseObjectStructure, stubInfo->… in getPolymorphicAccessStructureListSlot()
|