Home
last modified time | relevance | path

Searched refs:GetStringTable (Results 1 – 8 of 8) sorted by relevance

/arkcompiler/runtime_core/static_core/runtime/include/
Dpanda_vm.h105 virtual StringTable *GetStringTable() const = 0;
122 GetStringTable()->VisitRoots(visitor, flags); in VisitStringTable()
127 GetStringTable()->VisitStrings(visitor); in VisitStrings()
132 GetStringTable()->Sweep(gcObjectVisitor); in SweepVmRefs()
137 return GetStringTable()->UpdateMoved(); in UpdateMovedStrings()
/arkcompiler/runtime_core/static_core/runtime/core/
Dcore_vm.h86 StringTable *GetStringTable() const override in GetStringTable() function
134 coretypes::String *str = GetStringTable()->GetInternalStringFast(pf, id); in ResolveString()
138 str = GetStringTable()->GetOrInternInternalString(pf, id, GetLanguageContext()); in ResolveString()
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/
Dets_vm.h120 coretypes::String *str = GetStringTable()->GetInternalStringFast(pf, id); in ResolveString()
124 str = GetStringTable()->GetOrInternInternalString(pf, id, GetLanguageContext()); in ResolveString()
196 StringTable *GetStringTable() const override in GetStringTable() function
/arkcompiler/runtime_core/static_core/runtime/tests/
Dstring_table_test.cpp169 auto table = thread_->GetVM()->GetStringTable(); in SweepObjectInTable()
206 auto table = thread_->GetVM()->GetStringTable(); in SweepNonMovableObjectInTable()
246 auto table = thread_->GetVM()->GetStringTable(); in SweepHumongousObjectInTable()
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/intrinsics/
Dstd_core_StringBuilder.cpp44 vm->GetStringTable()->GetOrInternString(nullBytes.data(), nullBytes.size() - 1, ctx)); in GetNullString()
/arkcompiler/runtime_core/static_core/runtime/
Dpanda_vm.cpp91 auto cachedString = GetStringTable()->GetInternalStringFast(pf, id); in GetNonMovableString()
Druntime.cpp1250 coretypes::String *str = vm->GetStringTable()->GetInternalStringFast(pf, id); in ResolveString()
1254 str = vm->GetStringTable()->GetOrInternInternalString(pf, id, ctx); in ResolveString()
1261 return vm->GetStringTable()->GetOrInternString(mutf8, length, ctx); in ResolveString()
/arkcompiler/runtime_core/static_core/plugins/ets/tests/runtime/
Dets_vm_test.cpp211 ASSERT_NE(vm->GetStringTable(), nullptr); in TEST_F()