Searched refs:PrototypeHandler (Results 1 – 12 of 12) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/ic/tests/ |
D | ic_handler_test.cpp | 233 …JSHandle<JSTaggedValue> handlerValue2 = PrototypeHandler::LoadPrototype(thread, handleOp2, obj2Cla… in HWTEST_F_L0() 234 JSHandle<PrototypeHandler> handler2 = JSHandle<PrototypeHandler>::Cast(handlerValue2); in HWTEST_F_L0() 267 …JSHandle<JSTaggedValue> handlerValue = PrototypeHandler::StorePrototype(thread, handleOp, objClass… in HWTEST_F_L0() 268 JSHandle<PrototypeHandler> handler = JSHandle<PrototypeHandler>::Cast(handlerValue); in HWTEST_F_L0()
|
D | ic_runtime_stub_test.cpp | 436 JSHandle<PrototypeHandler> handleProtoHandler = factory->NewPrototypeHandler(); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/ic/ |
D | ic_handler.h | 232 class PrototypeHandler : public TaggedObject { 234 static PrototypeHandler *Cast(TaggedObject *object) in Cast() 237 return static_cast<PrototypeHandler *>(object); in Cast() 245 JSHandle<PrototypeHandler> handler = factory->NewPrototypeHandler(); in LoadPrototype() 258 JSHandle<PrototypeHandler> handler = factory->NewPrototypeHandler(); in StorePrototype()
|
D | ic_runtime.cpp | 56 handlerValue = PrototypeHandler::LoadPrototype(thread_, op, hclass); in UpdateLoadHandler() 65 handlerValue = PrototypeHandler::LoadPrototype(thread_, op, hclass); in UpdateLoadHandler() 111 handlerValue = PrototypeHandler::StorePrototype(thread_, op, hclass); in UpdateStoreHandler()
|
D | ic_runtime_stub-inl.h | 232 PrototypeHandler *prototypeHandler = PrototypeHandler::Cast(handler.GetTaggedObject()); in StorePrototype() 385 PrototypeHandler *prototypeHandler = PrototypeHandler::Cast(handler.GetTaggedObject()); in LoadPrototype() 478 PrototypeHandler *prototypeHandler = PrototypeHandler::Cast(handler.GetTaggedObject()); in StoreElement()
|
/arkcompiler/ets_runtime/ecmascript/ |
D | object_factory.h | 163 class PrototypeHandler; variable 212 JSHandle<PrototypeHandler> NewPrototypeHandler();
|
D | global_env_constants.cpp | 160 … factory->NewEcmaReadOnlyHClass(hClass, PrototypeHandler::SIZE, JSType::PROTOTYPE_HANDLER)); in InitRootsClass()
|
D | dump.cpp | 882 PrototypeHandler::Cast(obj)->Dump(os); in DumpObject() 2820 void PrototypeHandler::Dump(std::ostream &os) const in Dump() 4124 PrototypeHandler::Cast(obj)->DumpForSnapshot(vec); in DumpObject() 5070 void PrototypeHandler::DumpForSnapshot(std::vector<std::pair<CString, JSTaggedValue>> &vec) const in DumpForSnapshot()
|
D | object_factory.cpp | 3029 JSHandle<PrototypeHandler> ObjectFactory::NewPrototypeHandler() in NewPrototypeHandler() 3032 PrototypeHandler *header = in NewPrototypeHandler() 3033 PrototypeHandler::Cast(heap_->AllocateYoungOrHugeObject( in NewPrototypeHandler() 3035 JSHandle<PrototypeHandler> handler(thread_, header); in NewPrototypeHandler()
|
/arkcompiler/ets_runtime/ecmascript/mem/ |
D | object_xray.h | 372 PrototypeHandler::Cast(object)->VisitRangeSlot(visitor); in VisitObjectBody()
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
D | dump_test.cpp | 845 CHECK_DUMP_FIELDS(TaggedObject::TaggedObjectSize(), PrototypeHandler::SIZE, 3U); in HWTEST_F_L0() 846 JSHandle<PrototypeHandler> protoHandler = factory->NewPrototypeHandler(); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
D | stub_builder-inl.h | 1292 GateRef protoCellOffset = IntPtr(PrototypeHandler::PROTO_CELL_OFFSET); in GetProtoCell() 1298 GateRef holderOffset = IntPtr(PrototypeHandler::HOLDER_OFFSET); in GetPrototypeHandlerHolder() 1304 GateRef handlerInfoOffset = IntPtr(PrototypeHandler::HANDLER_INFO_OFFSET); in GetPrototypeHandlerHandlerInfo()
|