/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/target/aarch64/ |
H A D | regfile.cpp | 64 calleeSavedv_.Remove(i); in SetCalleeSaved() 70 calleeSaved_.Remove(i); in SetCalleeSaved() 73 // Remove return-value from callee in SetCalleeSaved() 74 calleeSaved_.Remove(0); in SetCalleeSaved() 79 calleeSaved_.Remove(GetThreadReg(Arch::AARCH64)); in SetCalleeSaved() 92 calleeSaved_.Remove(0); in SetUsedRegs() 97 calleeSaved_.Remove(GetThreadReg(Arch::AARCH64)); in SetUsedRegs() 107 calleeSaved_.Remove(i); in SetUsedRegs() 110 callerSaved_.Remove(i); in SetUsedRegs() 114 calleeSavedv_.Remove( in SetUsedRegs() [all...] |
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/target/amd64/ |
H A D | regfile.cpp | 61 calleeSaved_.Remove(i); in SetCalleeSaved() 67 calleeSavedv_.Remove(i); in SetCalleeSaved() 70 // Remove return-value from callee in SetCalleeSaved() 71 calleeSaved_.Remove(ConvertRegNumber(asmjit::x86::rax.id())); in SetCalleeSaved() 89 calleeSaved_.Remove(i); in SetUsedRegs() 92 callerSaved_.Remove(i); in SetUsedRegs() 97 calleeSavedv_.Remove(i); in SetUsedRegs() 100 callerSavedv_.Remove(i); in SetUsedRegs() 213 scratchv_.Remove(reg.GetId()); in AcquireScratchRegister() 216 scratch_.Remove(re in AcquireScratchRegister() [all...] |
/arkcompiler/runtime_core/static_core/runtime/include/tooling/ |
H A D | pt_reference.h | 24 static void Remove(PtGlobalReference *globalRef); 30 static void Remove(PtLocalReference *localRef);
|
/arkcompiler/runtime_core/static_core/runtime/mem/refstorage/ |
H A D | global_object_storage.cpp | 87 void GlobalObjectStorage::Remove(const Reference *reference) in Remove() function in ark::mem::GlobalObjectStorage 96 globalStorage_->Remove(reference); in Remove() 98 weakStorage_->Remove(reference); in Remove() 100 globalFixedStorage_->Remove(reference); in Remove()
|
/arkcompiler/runtime_core/static_core/runtime/tests/ |
H A D | string_table_test.cpp | 190 storage->Remove(ref2); in SweepObjectInTable() 196 storage->Remove(ref1); in SweepObjectInTable() 197 storage->Remove(ref3); in SweepObjectInTable() 230 storage->Remove(ref2); in SweepNonMovableObjectInTable() 236 storage->Remove(ref1); in SweepNonMovableObjectInTable() 237 storage->Remove(ref3); in SweepNonMovableObjectInTable() 279 storage->Remove(ref2); in SweepHumongousObjectInTable() 285 storage->Remove(ref1); in SweepHumongousObjectInTable() 286 storage->Remove(ref3); in SweepHumongousObjectInTable()
|
H A D | pygote_space_allocator_test_base.cpp | 98 globalObjectStorage->Remove(ref); in NonMovableUnliveObjectAllocTest() 145 globalObjectStorage->Remove(ref); in MovableUnliveObjectAllocTest() 178 globalObjectStorage->Remove(movalbeRef); in MuchObjectAllocTest() 186 globalObjectStorage->Remove(nonMovalbeRef); in MuchObjectAllocTest()
|
/arkcompiler/runtime_core/static_core/runtime/ |
H A D | osr.h | 54 Remove(method); in Set() 61 void Remove(const Method *method) in Remove() function in ark::OsrCodeMap
|
/arkcompiler/ets_runtime/ecmascript/containers/ |
H A D | containers_hashset.h | 29 static JSTaggedValue Remove(EcmaRuntimeCallInfo *argv);
|
H A D | containers_hashmap.h | 36 static JSTaggedValue Remove(EcmaRuntimeCallInfo *argv);
|
H A D | containers_treeset.h | 33 static JSTaggedValue Remove(EcmaRuntimeCallInfo *argv);
|
H A D | containers_arraylist.h | 42 static JSTaggedValue Remove(EcmaRuntimeCallInfo *argv);
|
H A D | containers_lightweightmap.h | 40 static JSTaggedValue Remove(EcmaRuntimeCallInfo *argv);
|
H A D | containers_linked_list.h | 39 static JSTaggedValue Remove(EcmaRuntimeCallInfo *argv);
|
H A D | containers_lightweightset.h | 37 static JSTaggedValue Remove(EcmaRuntimeCallInfo *argv);
|
H A D | containers_plainarray.h | 38 static JSTaggedValue Remove(EcmaRuntimeCallInfo *argv);
|
H A D | containers_list.h | 32 static JSTaggedValue Remove(EcmaRuntimeCallInfo *argv);
|
H A D | containers_treemap.h | 41 static JSTaggedValue Remove(EcmaRuntimeCallInfo *argv);
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
H A D | js_api_hashset_test.cpp | 102 [[maybe_unused]] JSTaggedValue rvalue = JSAPIHashSet::Remove(thread, hashSet, value.GetTaggedValue()); in HWTEST_F_L0() 124 // test Remove exception in HWTEST_F_L0() 125 JSTaggedValue exceptionValue = JSAPIHashSet::Remove(thread, hashSet, JSTaggedValue::Hole()); in HWTEST_F_L0() 137 // test Remove empty in HWTEST_F_L0() 138 JSTaggedValue emptyValue = JSAPIHashSet::Remove(thread, hashSet, JSTaggedValue(0)); in HWTEST_F_L0() 148 // test Remove non-existent value in HWTEST_F_L0() 149 JSTaggedValue nonExistentValue = JSAPIHashSet::Remove(thread, hashSet, JSTaggedValue(0)); in HWTEST_F_L0() 152 // test Remove RBTree in HWTEST_F_L0() 155 JSAPIHashSet::Remove(thread, hashSet, value.GetTaggedValue()); in HWTEST_F_L0()
|
H A D | js_api_hashmap_test.cpp | 110 // test Remove Hole in HWTEST_F_L0() 111 JSTaggedValue undefined = JSAPIHashMap::Remove(thread, hashMap, JSTaggedValue::Hole()); in HWTEST_F_L0() 114 // test Remove empty hashmap in HWTEST_F_L0() 115 JSTaggedValue undefined1 = JSAPIHashMap::Remove(thread, hashMap, JSTaggedValue(0)); in HWTEST_F_L0() 124 // test Remove non-existent in HWTEST_F_L0() 125 JSTaggedValue undefined2 = JSAPIHashMap::Remove(thread, hashMap, JSTaggedValue(0)); in HWTEST_F_L0() 131 [[maybe_unused]] JSTaggedValue rValue = JSAPIHashMap::Remove(thread, hashMap, key.GetTaggedValue()); in HWTEST_F_L0() 205 [[maybe_unused]] JSTaggedValue rValue = JSAPIHashMap::Remove(thread, hashMap, key.GetTaggedValue()); in HWTEST_F_L0() 270 JSTaggedValue rValue = JSAPIHashMap::Remove(thread, hashMap, key.GetTaggedValue()); in HWTEST_F_L0() 391 // test Remove RBTre in HWTEST_F_L0() [all...] |
H A D | tagged_dictionary_test.cpp | 92 dict = NameDictionary::Remove(thread, dictHandle, entry1); in HWTEST_F_L0() 131 * "Remove" function to shrink the capacity of the dictionary,then check whether the key number and size of 164 JSHandle<NameDictionary> newDict1 = NameDictionary::Remove(thread, dictHandle, entry); in HWTEST_F_L0() 223 dict = NumberDictionary::Remove(thread, dictHandle, entry1); in HWTEST_F_L0() 291 * "Remove" function to shrink the capacity of the dictionary,then check whether the key number and size of 315 JSHandle<NumberDictionary> newDict1 = NumberDictionary::Remove(thread, dictHandle, entry); in HWTEST_F_L0()
|
/arkcompiler/runtime_core/static_core/runtime/tooling/ |
H A D | pt_thread_info.h | 57 PandaVM::GetCurrent()->GetGlobalObjectStorage()->Remove(managedThreadRef_); in Destroy()
|
/arkcompiler/ets_runtime/ecmascript/js_api/ |
H A D | js_api_hashset.h | 31 static JSTaggedValue Remove(JSThread *thread, JSHandle<JSAPIHashSet> hashSet, JSTaggedValue key);
|
/arkcompiler/ets_runtime/ecmascript/snapshot/mem/ |
H A D | snapshot_env.h | 50 void Remove(JSTaggedType objectAddr) in Remove() function in panda::ecmascript::final
|
/arkcompiler/runtime_core/libpandafile/ |
H A D | file_item_container.h | 285 void Remove(IndexedItem *item) in Remove() function in panda::panda_file::ItemContainer::IndexItem 361 Remove(item); in IncRefCount() 369 Remove(item); in DecRefCount() 401 void Remove(const std::list<IndexedItem *> &items);
|
/arkcompiler/runtime_core/static_core/libpandafile/ |
H A D | file_item_container.h | 250 void Remove(IndexedItem *item) in Remove() function in ark::panda_file::ItemContainer::IndexItem 325 Remove(item); in IncRefCount() 333 Remove(item); in DecRefCount() 369 void Remove(const std::list<IndexedItem *> &items);
|