/arkcompiler/ets_runtime/ecmascript/ic/ |
D | ic_runtime_stub-inl.h | 235 ProtoChangeMarker *cell = ProtoChangeMarker::Cast(cellValue.GetTaggedObject()); in StorePrototype() local 236 if (cell->GetHasChanged()) { in StorePrototype() 252 ProtoChangeMarker *cell = ProtoChangeMarker::Cast(cellValue.GetTaggedObject()); in StoreWithTS() local 253 if (cell->GetHasChanged()) { in StoreWithTS() 325 ProtoChangeMarker *cell = ProtoChangeMarker::Cast(cellValue.GetTaggedObject()); in StoreTransWithProto() local 326 if (cell->GetHasChanged()) { in StoreTransWithProto() 359 PropertyBox *cell = PropertyBox::Cast(handler.GetTaggedObject()); in LoadGlobal() local 360 if (cell->IsInvalid()) { in LoadGlobal() 363 JSTaggedValue ret = cell->GetValue(); in LoadGlobal() 372 PropertyBox *cell = PropertyBox::Cast(handler.GetTaggedObject()); in StoreGlobal() local [all …]
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
D | js_finalization_registry_test.cpp | 118 JSHandle<JSTaggedValue> cell(cellRecord); in HWTEST_F_L0() local 120 expectNoUnregister = CellRecordVector::Append(thread, expectNoUnregister, cell); in HWTEST_F_L0() 152 JSHandle<JSTaggedValue> cell(cellRecord); in HWTEST_F_L0() local 154 array = CellRecordVector::Append(thread, array, cell); in HWTEST_F_L0() 456 JSHandle<JSTaggedValue> cell(cellRecord); in HWTEST_F_L0() local 458 noUnregister = CellRecordVector::Append(thread, noUnregister, cell); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/ |
D | js_finalization_registry.cpp | 58 JSHandle<JSTaggedValue> cell(cellRecord); in Register() local 69 array = CellRecordVector::Append(thread, array, cell); in Register() 75 noUnregister = CellRecordVector::Append(thread, noUnregister, cell); in Register()
|
D | object_operator.cpp | 241 JSHandle<PropertyBox> cell(value_); in ToPropertyDescriptor() local 242 cell->SetValue(thread_, val); in ToPropertyDescriptor() 243 value.Update(cell); in ToPropertyDescriptor() 504 PropertyBox *cell = dict->GetBox(GetIndex()); in UpdateDataValue() local 505 cell->SetValue(thread_, value.GetTaggedValue()); in UpdateDataValue()
|
D | js_object.cpp | 968 PropertyBox *cell = PropertyBox::Cast(desc.GetValue().GetTaggedValue().GetTaggedObject()); in GlobalGetOwnProperty() local 969 JSHandle<JSTaggedValue> valueHandle(thread, cell->GetValue()); in GlobalGetOwnProperty() 991 PropertyBox *cell = PropertyBox::Cast(val.GetTaggedObject()); in OrdinaryGetOwnProperty() local 992 JSHandle<JSTaggedValue> valueHandle(thread, cell->GetValue()); in OrdinaryGetOwnProperty()
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
D | builtins_regexp.cpp | 1516 PropertyBox *cell = PropertyBox::Cast(op.GetValue().GetTaggedObject()); in RegExpBuiltinExec() local 1517 cell->SetValue(thread, iValue); in RegExpBuiltinExec() 1534 PropertyBox *cell = PropertyBox::Cast(op.GetValue().GetTaggedObject()); in RegExpBuiltinExec() local 1535 cell->SetValue(thread, emptyString); in RegExpBuiltinExec()
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
D | stub_builder.h | 462 GateRef LoadGlobal(GateRef cell); 477 GateRef StoreGlobal(GateRef glue, GateRef value, GateRef cell);
|
D | stub_builder.cpp | 1501 GateRef StubBuilder::LoadGlobal(GateRef cell) in LoadGlobal() argument 1510 Branch(IsInvalidPropertyBox(cell), &cellIsInvalid, &cellNotInvalid); in LoadGlobal() 1517 result = GetValueFromPropertyBox(cell); in LoadGlobal() 2070 GateRef StubBuilder::StoreGlobal(GateRef glue, GateRef value, GateRef cell) in StoreGlobal() argument 2079 Branch(IsInvalidPropertyBox(cell), &cellIsInvalid, &cellNotInvalid); in StoreGlobal() 2086 Store(VariableType::JS_ANY(), glue, cell, IntPtr(PropertyBox::VALUE_OFFSET), value); in StoreGlobal()
|
/arkcompiler/ets_frontend/test262/ |
D | es2015_tests.txt | 3817 built-ins/FinalizationRegistry/prototype/unregister/unregister-cleaned-up-cell.js
|
/arkcompiler/ets_frontend/es2panda/test/ |
D | test262skiplist.txt | 5999 built-ins/FinalizationRegistry/prototype/unregister/unregister-cleaned-up-cell.js
|