Searched refs:IsNativeBit (Results 1 – 8 of 8) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/jspandafile/ |
D | method_literal.h | 55 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/ |
D | method.h | 42 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/ |
D | optimized_call.cpp | 356 __ Btq(MethodLiteral::IsNativeBit::START_BIT, methodCallField); // is native in GenJSCall()
|
D | asm_interpreter_call.cpp | 163 __ Btq(MethodLiteral::IsNativeBit::START_BIT, callFieldRegister); in AsmInterpEntryDispatch()
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
D | stub_builder-inl.h | 2255 Int64LSR(callfield, Int64(MethodLiteral::IsNativeBit::START_BIT)), in IsNativeMethod() 2256 Int64((1LU << MethodLiteral::IsNativeBit::SIZE) - 1)), in IsNativeMethod()
|
D | stub_builder.cpp | 5173 GateRef isNativeMask = Int64(static_cast<uint64_t>(1) << MethodLiteral::IsNativeBit::START_BIT); in JSCallDispatch()
|
/arkcompiler/ets_runtime/ecmascript/compiler/trampoline/aarch64/ |
D | optimized_call.cpp | 410 __ Tbnz(callField, MethodLiteral::IsNativeBit::START_BIT, &callNativeMethod); in JSCallInternal()
|
D | asm_interpreter_call.cpp | 104 __ Tbnz(callFieldRegister, MethodLiteral::IsNativeBit::START_BIT, &callNativeEntry); in AsmInterpEntryDispatch()
|