Home
last modified time | relevance | path

Searched refs:IsNativeBit (Results 1 – 9 of 9) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/jspandafile/
Dmethod_literal.h55 using IsNativeBit = NumArgsBits::NextFlag; // offset 60 member
56 using IsAotCodeBit = IsNativeBit::NextFlag; // offset 61
67 callField_ = IsNativeBit::Update(callField_, isNative); in SetNativeBit()
125 return IsNativeBit::Update(callField, isNative); in SetNativeBit()
155 return IsNativeBit::Decode(callField); in IsNativeWithCallField()
/arkcompiler/ets_runtime/ecmascript/
Dmethod.h43 return IsNativeBit::Update(callField, isNative); in SetNativeBit()
78 return IsNativeBit::Decode(callField); in IsNativeWithCallField()
433 using IsNativeBit = NumArgsBits::NextFlag; // offset 60 variable
434 using IsAotCodeBit = IsNativeBit::NextFlag; // offset 61
/arkcompiler/ets_runtime/ecmascript/dfx/stackinfo/
Djs_stackinfo.cpp629 return Method::IsNativeBit::Decode(callField); in ArkIsNativeWithCallField()
/arkcompiler/ets_runtime/ecmascript/compiler/trampoline/x64/
Doptimized_call.cpp357 __ Btq(MethodLiteral::IsNativeBit::START_BIT, methodCallField); // is native in GenJSCall()
Dasm_interpreter_call.cpp163 __ Btq(MethodLiteral::IsNativeBit::START_BIT, callFieldRegister); in AsmInterpEntryDispatch()
/arkcompiler/ets_runtime/ecmascript/compiler/trampoline/aarch64/
Doptimized_call.cpp411 __ Tbnz(callField, MethodLiteral::IsNativeBit::START_BIT, &callNativeMethod); in JSCallInternal()
Dasm_interpreter_call.cpp104 __ Tbnz(callFieldRegister, MethodLiteral::IsNativeBit::START_BIT, &callNativeEntry); in AsmInterpEntryDispatch()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dstub_builder-inl.h2775 Int64LSR(callfield, Int64(MethodLiteral::IsNativeBit::START_BIT)), in IsNativeMethod()
2776 Int64((1LU << MethodLiteral::IsNativeBit::SIZE) - 1)), in IsNativeMethod()
Dstub_builder.cpp6776 GateRef isNativeMask = Int64(static_cast<uint64_t>(1) << MethodLiteral::IsNativeBit::START_BIT); in JSCallDispatch()