Home
last modified time | relevance | path

Searched refs:IsAotCodeBit (Results 1 – 6 of 6) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/jspandafile/
Dmethod_literal.h56 using IsAotCodeBit = IsNativeBit::NextFlag; // offset 61 member
57 using IsFastBuiltinBit = IsAotCodeBit::NextFlag; // offset 62
72 callField_ = IsAotCodeBit::Update(callField_, isCompiled); in SetAotCodeBit()
130 return IsAotCodeBit::Update(callField, isCompiled); in SetAotCodeBit()
160 return IsAotCodeBit::Decode(callField); in IsAotWithCallField()
/arkcompiler/ets_runtime/ecmascript/
Dmethod.h48 return IsAotCodeBit::Update(callField, isCompiled); in SetAotCodeBit()
83 return IsAotCodeBit::Decode(callField); in IsAotWithCallField()
434 using IsAotCodeBit = IsNativeBit::NextFlag; // offset 61 variable
435 using IsFastBuiltinBit = IsAotCodeBit::NextFlag; // offset 62
/arkcompiler/ets_runtime/ecmascript/compiler/
Dmcr_circuit_builder.h275 Int64LSR(callfield, Int64(MethodLiteral::IsAotCodeBit::START_BIT)), in JudgeAotAndFastCallWithMethod()
276 Int64((1LLU << MethodLiteral::IsAotCodeBit::SIZE) - 1)), in JudgeAotAndFastCallWithMethod()
283 Int64(Method::AOT_FASTCALL_BITS << MethodLiteral::IsAotCodeBit::START_BIT)), in JudgeAotAndFastCallWithMethod()
284 Int64(Method::AOT_FASTCALL_BITS << MethodLiteral::IsAotCodeBit::START_BIT)); in JudgeAotAndFastCallWithMethod()
288 … Int64And(callfield, Int64(Method::AOT_FASTCALL_BITS << MethodLiteral::IsAotCodeBit::START_BIT)); in JudgeAotAndFastCallWithMethod()
289 GateRef hasAot = Int64(1LLU << MethodLiteral::IsAotCodeBit::START_BIT); in JudgeAotAndFastCallWithMethod()
Dstub_builder-inl.h2713 Int64LSR(callfield, Int64(Method::IsAotCodeBit::START_BIT)), in IsAotWithCallField()
2714 Int64((1LU << Method::IsAotCodeBit::SIZE) - 1)), in IsAotWithCallField()
/arkcompiler/ets_runtime/ecmascript/compiler/trampoline/x64/
Doptimized_call.cpp657 __ Btq(MethodLiteral::IsAotCodeBit::START_BIT, methodCallField); // is aot in JSBoundFunctionCallInternal()
/arkcompiler/ets_runtime/ecmascript/compiler/trampoline/aarch64/
Doptimized_call.cpp663 __ Tbz(callField, MethodLiteral::IsAotCodeBit::START_BIT, &slowCall); in JSBoundFunctionCallInternal()