Home
last modified time | relevance | path

Searched refs:cellValue (Results 1 - 6 of 6) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/ic/
H A Dic_runtime_stub-inl.h272 auto cellValue = prototypeHandler->GetProtoCell(); in StorePrototype() local
273 if (cellValue.IsNull()) { in StorePrototype()
276 ASSERT(cellValue.IsProtoChangeMarker()); in StorePrototype()
277 ProtoChangeMarker *cell = ProtoChangeMarker::Cast(cellValue.GetTaggedObject()); in StorePrototype()
293 auto cellValue = storeTSHandler->GetProtoCell(); in StoreWithTS() local
294 ASSERT(cellValue.IsProtoChangeMarker()); in StoreWithTS()
295 ProtoChangeMarker *cell = ProtoChangeMarker::Cast(cellValue.GetTaggedObject()); in StoreWithTS()
373 auto cellValue = transWithProtoHandler->GetProtoCell(); in StoreTransWithProto() local
374 ASSERT(cellValue.IsProtoChangeMarker()); in StoreTransWithProto()
375 ProtoChangeMarker *cell = ProtoChangeMarker::Cast(cellValue in StoreTransWithProto()
437 auto cellValue = prototypeHandler->GetProtoCell(); LoadPrototype() local
595 auto cellValue = prototypeHandler->GetProtoCell(); StoreElement() local
[all...]
/arkcompiler/ets_runtime/ecmascript/jit/
H A Djit_profiler.cpp500 auto cellValue = prototypeHandler->GetProtoCell(); in HandleLoadTypePrototypeHandler() local
501 if (cellValue.IsUndefined()) { in HandleLoadTypePrototypeHandler()
504 ProtoChangeMarker *cell = ProtoChangeMarker::Cast(cellValue.GetTaggedObject()); in HandleLoadTypePrototypeHandler()
567 auto cellValue = transWithProtoHandler->GetProtoCell(); in HandleTransWithProtoHandler() local
568 ASSERT(cellValue.IsProtoChangeMarker()); in HandleTransWithProtoHandler()
569 ProtoChangeMarker *cell = ProtoChangeMarker::Cast(cellValue.GetTaggedObject()); in HandleTransWithProtoHandler()
584 auto cellValue = prototypeHandler->GetProtoCell(); in HandleOtherTypesPrototypeHandler() local
585 if (cellValue.IsUndefined()) { in HandleOtherTypesPrototypeHandler()
588 ProtoChangeMarker *cell = ProtoChangeMarker::Cast(cellValue.GetTaggedObject()); in HandleOtherTypesPrototypeHandler()
611 auto cellValue in HandleStoreTSHandler() local
770 auto cellValue = prototypeHandler->GetProtoCell(); HandlePrototypeHandler() local
[all...]
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/
H A Dpgo_profiler.cpp1088 auto cellValue = transWithProtoHandler->GetProtoCell(); in DumpICByNameWithHandler() local
1089 if (CheckProtoChangeMarker(cellValue)) { in DumpICByNameWithHandler()
1099 auto cellValue = prototypeHandler->GetProtoCell(); in DumpICByNameWithHandler() local
1100 if (CheckProtoChangeMarker(cellValue)) { in DumpICByNameWithHandler()
1110 auto cellValue = storeTSHandler->GetProtoCell(); in DumpICByNameWithHandler() local
1111 if (CheckProtoChangeMarker(cellValue)) { in DumpICByNameWithHandler()
1139 auto cellValue = prototypeHandler->GetProtoCell(); in DumpICLoadByNameWithHandler() local
1140 if (CheckProtoChangeMarker(cellValue)) { in DumpICLoadByNameWithHandler()
1239 auto cellValue = prototypeHandler->GetProtoCell(); in DumpICByValueWithHandler() local
1240 if (!cellValue in DumpICByValueWithHandler()
[all...]
H A Dpgo_profiler.h241 bool CheckProtoChangeMarker(JSTaggedValue cellValue) const;
/arkcompiler/ets_runtime/ecmascript/ic/tests/
H A Dic_runtime_stub_test.cpp435 JSHandle<ProtoChangeMarker> cellValue = factory->NewProtoChangeMarker(); in HWTEST_F_L0() local
436 EXPECT_TRUE(!cellValue->GetHasChanged()); in HWTEST_F_L0()
449 handleProtoHandler->SetProtoCell(thread, cellValue.GetTaggedValue()); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/compiler/
H A Dstub_builder.cpp2558 GateRef cellValue = GetProtoCell(*handler); in LoadICWithHandler() local
2559 BRANCH(TaggedIsUndefined(cellValue), &loopEnd, &cellNotUndefined); in LoadICWithHandler()
2561 BRANCH(GetHasChanged(cellValue), &cellHasChanged, &loopEnd); in LoadICWithHandler()
2835 GateRef cellValue = GetProtoCell(*varHandler); in ICStoreElement() local
2836 BRANCH(GetHasChanged(cellValue), &cellHasChanged, &loopEnd); in ICStoreElement()
2955 GateRef cellValue = GetProtoCell(*handler); in StoreICWithHandler() local
2956 BRANCH(GetHasChanged(cellValue), &cellHasChanged, &cellNotChanged); in StoreICWithHandler()
2978 GateRef cellValue = GetProtoCell(*handler); in StoreICWithHandler() local
2979 BRANCH(TaggedIsUndefined(cellValue), &loopEnd, &cellNotUndefined); in StoreICWithHandler()
2981 BRANCH(TaggedIsNull(cellValue), in StoreICWithHandler()
2998 GateRef cellValue = GetProtoCell(*handler); StoreICWithHandler() local
[all...]

Completed in 19 milliseconds