Home
last modified time | relevance | path

Searched refs:IsNativeBit (Results 1 – 8 of 8) 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.h42 return IsNativeBit::Update(callField, isNative); in SetNativeBit()
77 return IsNativeBit::Decode(callField); in IsNativeWithCallField()
428 using IsNativeBit = NumArgsBits::NextFlag; // offset 60 variable
429 using IsAotCodeBit = IsNativeBit::NextFlag; // offset 61
/arkcompiler/ets_runtime/ecmascript/compiler/trampoline/x64/
Doptimized_call.cpp356 __ 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/
Dstub_builder-inl.h2255 Int64LSR(callfield, Int64(MethodLiteral::IsNativeBit::START_BIT)), in IsNativeMethod()
2256 Int64((1LU << MethodLiteral::IsNativeBit::SIZE) - 1)), in IsNativeMethod()
Dstub_builder.cpp5173 GateRef isNativeMask = Int64(static_cast<uint64_t>(1) << MethodLiteral::IsNativeBit::START_BIT); in JSCallDispatch()
/arkcompiler/ets_runtime/ecmascript/compiler/trampoline/aarch64/
Doptimized_call.cpp410 __ Tbnz(callField, MethodLiteral::IsNativeBit::START_BIT, &callNativeMethod); in JSCallInternal()
Dasm_interpreter_call.cpp104 __ Tbnz(callFieldRegister, MethodLiteral::IsNativeBit::START_BIT, &callNativeEntry); in AsmInterpEntryDispatch()