Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/
Djs_function.h110 uint32_t newValue = IsCompiledCodeBit::Update(bitField, isCompiled); in SetCompiledCodeBit()
117 return IsCompiledCodeBit::Decode(bitField); in IsCompiledCode()
184 using IsCompiledCodeBit = BitField<bool, 0, 1>; // offset 0 variable
185 using IsFastCallBit = IsCompiledCodeBit::NextFlag; // offset 1
/arkcompiler/ets_runtime/ecmascript/compiler/
Dmcr_circuit_builder.h415 Int32LSR(bitField, Int32(JSFunctionBase::IsCompiledCodeBit::START_BIT)), in JudgeAotAndFastCall()
416 Int32((1U << JSFunctionBase::IsCompiledCodeBit::SIZE) - 1)), in JudgeAotAndFastCall()
423 …nt32(JSFunctionBase::COMPILED_CODE_FASTCALL_BITS << JSFunctionBase::IsCompiledCodeBit::START_BIT)), in JudgeAotAndFastCall()
424 …nt32(JSFunctionBase::COMPILED_CODE_FASTCALL_BITS << JSFunctionBase::IsCompiledCodeBit::START_BIT)); in JudgeAotAndFastCall()
429 …nt32(JSFunctionBase::COMPILED_CODE_FASTCALL_BITS << JSFunctionBase::IsCompiledCodeBit::START_BIT)); in JudgeAotAndFastCall()
430 GateRef hasAot = Int32(1U << JSFunctionBase::IsCompiledCodeBit::START_BIT); in JudgeAotAndFastCall()
Dstub_builder-inl.h3647 …Int32(JSFunctionBase::COMPILED_CODE_FASTCALL_BITS << JSFunctionBase::IsCompiledCodeBit::START_BIT); in SetCompiledCodeFlagToFunction()
Dstub_builder.cpp11747 …GateRef compiledCodeField = Int32LSL(Int32(1U), Int32(JSFunctionBase::IsCompiledCodeBit::START_BIT… in SetCompiledCodeFlagToFunctionFromMethod()
/arkcompiler/ets_runtime/ecmascript/compiler/trampoline/x64/
Doptimized_call.cpp970 __ Btq(JSFunctionBase::IsCompiledCodeBit::START_BIT, compiledCodeFlag); // is compiled code in JSBoundFunctionCallInternal()
/arkcompiler/ets_runtime/ecmascript/compiler/trampoline/aarch64/
Doptimized_call.cpp989 __ Tbz(compiledCodeFlag, JSFunctionBase::IsCompiledCodeBit::START_BIT, &slowCall); in JSBoundFunctionCallInternal()