Home
last modified time | relevance | path

Searched refs:PrototypeHandler (Results 1 – 12 of 12) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/ic/tests/
Dic_handler_test.cpp233 …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()
Dic_runtime_stub_test.cpp436 JSHandle<PrototypeHandler> handleProtoHandler = factory->NewPrototypeHandler(); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/ic/
Dic_handler.h232 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()
Dic_runtime.cpp56 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()
Dic_runtime_stub-inl.h232 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/
Dobject_factory.h163 class PrototypeHandler; variable
212 JSHandle<PrototypeHandler> NewPrototypeHandler();
Dglobal_env_constants.cpp160 … factory->NewEcmaReadOnlyHClass(hClass, PrototypeHandler::SIZE, JSType::PROTOTYPE_HANDLER)); in InitRootsClass()
Ddump.cpp882 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()
Dobject_factory.cpp3029 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/
Dobject_xray.h372 PrototypeHandler::Cast(object)->VisitRangeSlot(visitor); in VisitObjectBody()
/arkcompiler/ets_runtime/ecmascript/tests/
Ddump_test.cpp845 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/
Dstub_builder-inl.h1292 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()