/arkcompiler/ets_runtime/ecmascript/ |
D | property_detector-inl.h | 30 MarkerCell *cell = MarkerCell::Cast(value.GetTaggedObject()); \ 31 cell->InvalidatePropertyDetector(); \ 37 MarkerCell *cell = MarkerCell::Cast(value.GetTaggedObject()); \ 38 return !cell->GetIsDetectorInvalid(); \
|
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 | 432 JSHandle<PropertyBox> cell(value_); in ToPropertyDescriptor() local 433 cell->SetValue(thread_, val); in ToPropertyDescriptor() 434 value.Update(cell); in ToPropertyDescriptor() 684 PropertyBox *cell = dict->GetBox(GetIndex()); in UpdateDataValue() local 685 cell->SetValue(thread_, value.GetTaggedValue()); in UpdateDataValue()
|
D | js_object.cpp | 1162 PropertyBox *cell = PropertyBox::Cast(desc.GetValue().GetTaggedValue().GetTaggedObject()); in GlobalGetOwnProperty() local 1163 JSHandle<JSTaggedValue> valueHandle(thread, cell->GetValue()); in GlobalGetOwnProperty() 1185 PropertyBox *cell = PropertyBox::Cast(val.GetTaggedObject()); in OrdinaryGetOwnProperty() local 1186 JSHandle<JSTaggedValue> valueHandle(thread, cell->GetValue()); in OrdinaryGetOwnProperty()
|
/arkcompiler/ets_runtime/ecmascript/ic/ |
D | ic_runtime_stub-inl.h | 273 ProtoChangeMarker *cell = ProtoChangeMarker::Cast(cellValue.GetTaggedObject()); in StorePrototype() local 274 if (cell->GetHasChanged()) { in StorePrototype() 290 ProtoChangeMarker *cell = ProtoChangeMarker::Cast(cellValue.GetTaggedObject()); in StoreWithTS() local 291 if (cell->GetHasChanged()) { in StoreWithTS() 367 ProtoChangeMarker *cell = ProtoChangeMarker::Cast(cellValue.GetTaggedObject()); in StoreTransWithProto() local 368 if (cell->GetHasChanged()) { in StoreTransWithProto() 401 PropertyBox *cell = PropertyBox::Cast(handler.GetTaggedObject()); in LoadGlobal() local 402 if (cell->IsInvalid() || cell->GetValue().IsAccessorData()) { in LoadGlobal() 405 JSTaggedValue ret = cell->GetValue(); in LoadGlobal() 414 PropertyBox *cell = PropertyBox::Cast(handler.GetTaggedObject()); in StoreGlobal() local [all …]
|
/arkcompiler/ets_runtime/test/jsperftest/ |
D | run_js_test.py | 195 … ws.cell(row=ws.max_row, column=6).fill = PatternFill(start_color='FF0000', end_color='FF0000', 200 … ws.cell(row=ws.max_row, column=9).fill = PatternFill(start_color='FFFF00', end_color='FFFF00', 205 … ws.cell(row=ws.max_row, column=10).fill = PatternFill(start_color='FF00FF', end_color='FF00FF', 375 excu_status = str(ws.cell(row=row_num, column=3).value) 376 is_degraded = str(ws.cell(row=row_num, column=6).value) 387 obj = ws.cell(row=row_num, column=9).value 393 obj = ws.cell(row=row_num, column=10).value 567 js_case = ws.cell(row=row_num, column=1).value 568 scene = ws.cell(row=row_num, column=2).value 569 exec_status = ws.cell(row=row_num, column=3).value [all …]
|
/arkcompiler/ets_runtime/test/workloadtest/ |
D | work_load.py | 214 cell = result_sheet.cell(row=result_sheet.max_row, column=2) 215 if cell.value and float(cell.value.strip('%')) < boundary_value: 216 cell.fill = red_fill
|
/arkcompiler/ets_runtime/test/ffiworkloadtest/ |
D | get_ffi_workload_report.py | 93 js_case_name_tmp = str(ws.cell(row=row_num, column=1).value) 94 excu_status = str(ws.cell(row=row_num, column=2).value) 95 excu_time = str(ws.cell(row=row_num, column=8).value) 161 … ws.cell(row=ws.max_row, column=10).fill = PatternFill(start_color='FF0000', end_color='FF0000', 173 is_degraded = str(ws.cell(row=row_num, column=10).value) 330 ws.cell(row=i, column=2).alignment = align
|
/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/pgo_profiler/ |
D | pgo_profiler.cpp | 848 ProtoChangeMarker *cell = ProtoChangeMarker::Cast(cellValue.GetTaggedObject()); in DumpICByNameWithHandler() local 849 if (cell->GetHasChanged()) { in DumpICByNameWithHandler() 880 ProtoChangeMarker *cell = ProtoChangeMarker::Cast(cellValue.GetTaggedObject()); in DumpICByNameWithHandler() local 881 if (cell->GetHasChanged()) { in DumpICByNameWithHandler() 893 ProtoChangeMarker *cell = ProtoChangeMarker::Cast(cellValue.GetTaggedObject()); in DumpICByNameWithHandler() local 894 if (cell->GetHasChanged()) { in DumpICByNameWithHandler() 906 ProtoChangeMarker *cell = ProtoChangeMarker::Cast(cellValue.GetTaggedObject()); in DumpICByNameWithHandler() local 907 if (cell->GetHasChanged()) { in DumpICByNameWithHandler() 989 ProtoChangeMarker *cell = ProtoChangeMarker::Cast(cellValue.GetTaggedObject()); in DumpICByValueWithHandler() local 990 if (cell->GetHasChanged()) { in DumpICByValueWithHandler()
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
D | mcr_circuit_builder.cpp | 285 GateRef CircuitBuilder::IsMarkerCellValid(GateRef cell) in IsMarkerCellValid() argument 287 GateRef bitfield = Load(VariableType::INT32(), cell, IntPtr(MarkerCell::BIT_FIELD_OFFSET)); in IsMarkerCellValid() 807 GateRef CircuitBuilder::IsMarkerCellValidOp(GateRef cell) in IsMarkerCellValidOp() argument 813 { currentControl, currentDepend, cell }, in IsMarkerCellValidOp()
|
D | mcr_lowering.cpp | 194 GateRef cell = acc_.GetValueIn(gate, 0); in LowerIsMarkerCellValid() local 195 GateRef result = builder_.IsMarkerCellValid(cell); in LowerIsMarkerCellValid()
|
D | circuit_builder.h | 574 GateRef IsMarkerCellValid(GateRef cell); 575 GateRef IsMarkerCellValidOp(GateRef cell);
|
D | stub_builder.h | 539 GateRef LoadGlobal(GateRef cell); 555 GateRef StoreGlobal(GateRef glue, GateRef value, GateRef cell);
|
D | stub_builder.cpp | 1653 GateRef StubBuilder::LoadGlobal(GateRef cell) in LoadGlobal() argument 1662 Branch(IsInvalidPropertyBox(cell), &cellIsInvalid, &cellNotInvalid); in LoadGlobal() 1669 result = GetValueFromPropertyBox(cell); in LoadGlobal() 2402 GateRef StubBuilder::StoreGlobal(GateRef glue, GateRef value, GateRef cell) in StoreGlobal() argument 2413 Branch(IsInvalidPropertyBox(cell), &cellIsInvalid, &cellNotInvalid); in StoreGlobal() 2419 Branch(IsAccessorPropertyBox(cell), &cellIsAccessorData, &cellIsNotAccessorData); in StoreGlobal() 2426 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 | 5782 built-ins/FinalizationRegistry/prototype/unregister/unregister-cleaned-up-cell.js
|
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/test-lists/test262/ |
D | test262-excluded.txt | 2647 built-ins/FinalizationRegistry/prototype/unregister/unregister-cleaned-up-cell.js
|