Home
last modified time | relevance | path

Searched full:is_virtual (Results 1 – 5 of 5) sorted by relevance

/arkcompiler/runtime_core/static_core/plugins/ets/compiler/optimizer/ir_builder/
Dets_inst_templates.yaml19 % is_virtual = inst.opcode.include? 'virt'
21 …BuildLaunch<Opcode::<%= is_virtual ? 'CallLaunchVirtual' : 'CallLaunchStatic' %>, <%= is_range ? '…
/arkcompiler/runtime_core/static_core/compiler/optimizer/templates/intrinsics/
Dintrinsics_ir_build.inl.erb31 template <bool IS_VIRTUAL>
37 constexpr int ARG_OFFSET = IS_VIRTUAL ? 1 : 0;
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir_builder/
Dinst_templates.yaml215 % is_virtual = inst.opcode.include? 'virt'
218 …BuildCallHelper<Opcode::<%= is_virtual ? 'CallVirtual' : 'CallStatic' %>, <%= is_range ? 'true' : …
Dinst_builder.h261 template <bool IS_VIRTUAL>
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/napi/
Dets_napi_native_interface.cpp219 template <bool IS_VIRTUAL, typename NapiType, typename EtsValueType, typename Args>
224 if constexpr (IS_VIRTUAL) { in GeneralMethodCall()