Home
last modified time | relevance | path

Searched refs:ResolveString (Results 1 – 11 of 11) sorted by relevance

/arkcompiler/runtime_core/static_core/runtime/core/
Dcore_vm.h132 …coretypes::String *ResolveString(const panda_file::File &pf, panda_file::File::EntityId id) overri… in ResolveString() function
142 coretypes::String *ResolveString(Frame *frame, panda_file::File::EntityId id) override in ResolveString() function
144 return PandaCoreVM::ResolveString(*frame->GetMethod()->GetPandaFile(), id); in ResolveString()
/arkcompiler/runtime_core/static_core/runtime/include/
Dpanda_vm.h62 virtual coretypes::String *ResolveString([[maybe_unused]] const panda_file::File &pf, in ResolveString() function
160 return ResolveString(pf, id); in ResolveStringFromCompiledCode()
163 virtual coretypes::String *ResolveString([[maybe_unused]] Frame *frame, in ResolveString() function
Druntime.h171 …coretypes::String *ResolveString(PandaVM *vm, const Method &caller, panda_file::File::EntityId id);
175 …coretypes::String *ResolveString(PandaVM *vm, const panda_file::File &pf, panda_file::File::Entity…
178 …coretypes::String *ResolveString(PandaVM *vm, const uint8_t *mutf8, uint32_t length, const Languag…
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/
Dets_vm.h123 …coretypes::String *ResolveString(const panda_file::File &pf, panda_file::File::EntityId id) overri… in ResolveString() function
133 coretypes::String *ResolveString(Frame *frame, panda_file::File::EntityId id) override in ResolveString() function
135 return PandaEtsVM::ResolveString(*frame->GetMethod()->GetPandaFile(), id); in ResolveString()
/arkcompiler/runtime_core/compiler/docs/
Daot_resolve_string.md11 During AOT compilation `LoadString` instruction could be either encoded as regular `ResolveString` …
16 …resolution attempt requires runtime call, so usage of regular `ResolveString` call reduces the ove…
/arkcompiler/runtime_core/static_core/compiler/docs/
Daot_resolve_string.md11 During AOT compilation `LoadString` instruction could be either encoded as regular `ResolveString` …
16 …resolution attempt requires runtime call, so usage of regular `ResolveString` call reduces the ove…
/arkcompiler/runtime_core/static_core/runtime/
Dpanda_vm.cpp81 panda::Runtime::GetCurrent()->ResolveString(this, *frame->GetMethod(), stringId.AsFileId()); in HandleLdaStr()
Druntime.cpp1228 coretypes::String *Runtime::ResolveString(PandaVM *vm, const Method &caller, panda_file::File::Enti… in ResolveString() function in panda::Runtime
1231 return vm->ResolveString(*pf, id); in ResolveString()
1241 coretypes::String *Runtime::ResolveString(PandaVM *vm, const panda_file::File &pf, panda_file::File… in ResolveString() function in panda::Runtime
1252 coretypes::String *Runtime::ResolveString(PandaVM *vm, const uint8_t *mutf8, uint32_t length, in ResolveString() function in panda::Runtime
1372 … auto str = Runtime::GetCurrent()->ResolveString(vm, pf, panda_file::File::EntityId(strId), ctx); in ResolveLiteralArray()
Dclass_initializer.cpp439 …coretypes::String *str = Runtime::GetCurrent()->GetPandaVM()->ResolveString(*klass->GetPandaFile()… in InitializeStringField()
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/types/
Dets_string.h150 … Runtime::GetCurrent()->ResolveString(Runtime::GetCurrent()->GetPandaVM(), mutf8, length, ctx)); in Resolve()
/arkcompiler/runtime_core/static_core/runtime/entrypoints/
Dentrypoints.cpp1232 return thread->GetVM()->ResolveString(frame, panda_file::File::EntityId(id)); in ResolveStringByIdEntrypoint()