Home
last modified time | relevance | path

Searched refs:descr (Results 1 - 24 of 24) sorted by relevance

/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/target/
H A Dtarget.cpp136 [[maybe_unused]] RegistersDescription *descr, [[maybe_unused]] Arch arch, in Create()
149 reinterpret_cast<aarch32::Aarch32Assembly *>(enc), descr, mode); in Create()
151 return arenaAllocator->New<aarch32::Aarch32CallingConvention>(arenaAllocator, enc, descr, mode); in Create()
160 reinterpret_cast<aarch64::Aarch64Assembly *>(enc), descr, mode); in Create()
162 return arenaAllocator->New<aarch64::Aarch64CallingConvention>(arenaAllocator, enc, descr, mode); in Create()
170 descr, mode); in Create()
172 return arenaAllocator->New<amd64::Amd64CallingConvention>(arenaAllocator, enc, descr, mode); in Create()
134 Create([[maybe_unused]] ArenaAllocator *arenaAllocator, [[maybe_unused]] Encoder *enc, [[maybe_unused]] RegistersDescription *descr, [[maybe_unused]] Arch arch, bool isPandaAbi, bool isOsr, bool isDyn, [[maybe_unused]] bool printAsm, bool isOptIrtoc) Create() argument
H A Dasm_printer.h321 PrinterCallingConvention(ArenaAllocator *allocator, E *enc, RegistersDescription *descr, CallConvMode mode) in PrinterCallingConvention() argument
322 : T(allocator, enc->GetEncoder(), descr, mode), printer_(enc) {}; in PrinterCallingConvention()
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/interop_js/
H A Dcode_scopes.h26 explicit InteropCodeScope(EtsCoroutine *coro, char const *descr = nullptr) : coro_(coro) in InteropCodeScope()
37 ctx->CallStack().AllocRecord(coro_->GetCurrentFrame(), descr); in InteropCodeScope()
85 InteropCodeScopeJS(EtsCoroutine *coro, napi_env env, char const *descr = nullptr) in InteropCodeScopeJS()
86 : codeScope_(coro, descr), jsEnvScope_(InteropCtx::Current(coro), env) in InteropCodeScopeJS()
H A Dinterop_stacks.h42 Record(void *etsCurFrame, char const *codeDescr) : etsFrame(etsCurFrame), descr(codeDescr) {} in Record()
45 char const *descr {}; // NOLINT(misc-non-private-member-variables-in-classes)
H A Dinterop_context.cpp190 for (auto descr : FUNCTION_INTERFACE_DESCRIPTORS) { in CacheClasses()
191 functionalInterfaces_.insert(CacheClass(etsClassLinker, descr)); in CacheClasses()
408 INTEROP_LOG(ERROR) << "<interop> " << (istkIt->descr != nullptr ? istkIt->descr : "unknown"); in Fatal()
H A Djs_refconvert_builtin.cpp158 for (const auto &[descr, mirror, ovl] : STD_EXCEPTIONS_LIST) { in RegisterExceptions()
159 RegisterClass(descr, mirror, ovl); in RegisterExceptions()
/arkcompiler/runtime_core/static_core/verification/type/
H A Dtype_system.cpp45 auto compute = [&](uint8_t const *descr) -> Type {
46 if (descr != nullptr) {
48 auto *klass = service->GetClassLinker()->GetClass(descr, true, linkerCtx_, &handler);
70 Class const *TypeSystem::DescriptorToClass(uint8_t const *descr) in DescriptorToClass() argument
73 return service_->GetClassLinker()->GetClass(descr, true, linkerCtx_, &handler); in DescriptorToClass()
76 Type TypeSystem::DescriptorToType(uint8_t const *descr) in DescriptorToType() argument
78 auto cls = DescriptorToClass(descr); in DescriptorToType()
H A Dtype_system.h94 Type DescriptorToType(uint8_t const *descr);
121 Class const *DescriptorToClass(uint8_t const *descr);
/arkcompiler/runtime_core/static_core/runtime/coroutines/
H A Dcoroutine_stats.cpp185 for (auto &[id, descr] : GetTimeStatsDescription()) { in GenerateTimeStatsDataArray()
202 for (auto &[id, descr] : GetTimeStatsDescription()) { in GetFullStatistics()
204 ss << "\t" << descr.prettyName << " [ns]: " << ws->GetTimeStatString(id) << "\n"; in GetFullStatistics()
211 for (auto &[id, descr] : GetTimeStatsDescription()) { in GetFullStatistics()
213 if ((!descr.perWorker) || (metricData[ToIndex(AggregateType::COUNT)] == 0)) { in GetFullStatistics()
216 ss << "\t" << descr.prettyName << " [ns]: "; in GetFullStatistics()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/src/
H A Dcl_option.cpp24 void OptionInterface::FinalizeInitialization(const std::vector<std::string> &optnames, const std::string &descr, in FinalizeInitialization() argument
27 optDescription = descr; in FinalizeInitialization()
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/
H A Dets_vtable_builder.cpp63 explicit RefTypeLink(uint8_t const *descr) : descriptor_(descr) {} in RefTypeLink() argument
122 static inline bool IsPrimitveDescriptor(uint8_t const *descr) in IsPrimitveDescriptor() argument
125 return descr[0] != 0 && descr[1] == 0; in IsPrimitveDescriptor()
H A Dets_vm.cpp577 auto descr = exception->GetClass()->GetDescriptor(); in HandleUncaughtException() local
578 if (descr != panda_file_items::class_descriptors::OUT_OF_MEMORY_ERROR && in HandleUncaughtException()
579 descr != panda_file_items::class_descriptors::STACK_OVERFLOW_ERROR) { in HandleUncaughtException()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/include/
H A Dcl_option.h130 void FinalizeInitialization(const std::vector<std::string> &optnames, const std::string &descr,
202 explicit Option(const std::vector<std::string> &optnames, const std::string &descr, const ArgsT &... args) in Option() argument
208 FinalizeInitialization(optnames, descr, {}); in Option()
213 explicit Option(const std::vector<std::string> &optnames, const std::string &descr, in Option() argument
220 FinalizeInitialization(optnames, descr, optionCategories); in Option()
453 explicit List(const std::vector<std::string> &optnames, const std::string &descr, const ArgsT &... args) in List() argument
454 : Option<T>(optnames, descr, args...) {}; in List()
457 explicit List(const std::vector<std::string> &optnames, const std::string &descr, in List() argument
459 : Option<T>(optnames, descr, optionCategories, args...) {}; in List()
/arkcompiler/runtime_core/static_core/libllvmbackend/transforms/passes/ark_frame_lowering/
H A Dframe_lowering.cpp86 frameInfo, [this](FrameConstantDescriptor descr) { return GetConstantFromRuntime(descr); });
90 [this](FrameConstantDescriptor descr) { return GetConstantFromRuntime(descr); });
95 ssize_t GetConstantFromRuntime(FrameConstantDescriptor descr) in GetConstantFromRuntime() argument
97 switch (descr) { in GetConstantFromRuntime()
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/
H A Dcallconv.h222 static CallingConvention *Create(ArenaAllocator *arenaAllocator, Encoder *enc, RegistersDescription *descr,
227 CallingConvention(ArenaAllocator *allocator, Encoder *enc, RegistersDescription *descr, CallConvMode mode) in CallingConvention() argument
228 : allocator_(allocator), encoder_(enc), regfile_(descr), mode_(mode) in CallingConvention()
/arkcompiler/runtime_core/compiler/optimizer/templates/
H A Dinstructions.rb90 def initialize(descr)
91 @tokens = descr.split('-')
/arkcompiler/runtime_core/static_core/compiler/optimizer/templates/
H A Dinstructions.rb90 def initialize(descr)
91 @tokens = descr.split('-')
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/target/amd64/
H A Dcallconv.cpp22 Amd64CallingConvention::Amd64CallingConvention(ArenaAllocator *allocator, Encoder *enc, RegistersDescription *descr, in Amd64CallingConvention() argument
24 : CallingConvention(allocator, enc, descr, mode) in Amd64CallingConvention()
H A Dtarget.h478 Amd64CallingConvention(ArenaAllocator *allocator, Encoder *enc, RegistersDescription *descr, CallConvMode mode);
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/intrinsics/
H A Dstd_core_TypeCreator.cpp560 EtsString *TypeAPITypeCreatorCtxClassAddIface(EtsLong classPtr, EtsString *descr) in TypeAPITypeCreatorCtxClassAddIface() argument
563 auto iface = GetPandasmTypeFromDescriptor(creator->GetCtx(), descr->GetMutf8()); in TypeAPITypeCreatorCtxClassAddIface()
568 EtsString *TypeAPITypeCreatorCtxClassAddField(EtsLong classPtr, EtsString *name, EtsString *descr, EtsInt attrs, in TypeAPITypeCreatorCtxClassAddField() argument
572 auto type = GetPandasmTypeFromDescriptor(klass->GetCtx(), descr->GetMutf8()); in TypeAPITypeCreatorCtxClassAddField()
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/target/aarch64/
H A Dcallconv.cpp24 Aarch64CallingConvention::Aarch64CallingConvention(ArenaAllocator *allocator, Encoder *enc, RegistersDescription *descr, in Aarch64CallingConvention() argument
26 : CallingConvention(allocator, enc, descr, mode) in Aarch64CallingConvention()
H A Dtarget.h481 Aarch64CallingConvention(ArenaAllocator *allocator, Encoder *enc, RegistersDescription *descr, CallConvMode mode);
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/target/aarch32/
H A Dcallconv.cpp30 Aarch32CallingConvention::Aarch32CallingConvention(ArenaAllocator *allocator, Encoder *enc, RegistersDescription *descr, in Aarch32CallingConvention() argument
32 : CallingConvention(allocator, enc, descr, mode) in Aarch32CallingConvention()
H A Dtarget.h233 Aarch32CallingConvention(ArenaAllocator *allocator, Encoder *enc, RegistersDescription *descr, CallConvMode mode);

Completed in 16 milliseconds