Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/compiler/
Dmcr_circuit_builder.h317 Int32LSR(bitField, Int32(JSFunctionBase::IsCompiledCodeBit::START_BIT)), in JudgeAotAndFastCall()
318 Int32((1U << JSFunctionBase::IsCompiledCodeBit::SIZE) - 1)), in JudgeAotAndFastCall()
325 …nt32(JSFunctionBase::COMPILED_CODE_FASTCALL_BITS << JSFunctionBase::IsCompiledCodeBit::START_BIT)), in JudgeAotAndFastCall()
326 …nt32(JSFunctionBase::COMPILED_CODE_FASTCALL_BITS << JSFunctionBase::IsCompiledCodeBit::START_BIT)); in JudgeAotAndFastCall()
331 …nt32(JSFunctionBase::COMPILED_CODE_FASTCALL_BITS << JSFunctionBase::IsCompiledCodeBit::START_BIT)); in JudgeAotAndFastCall()
332 GateRef hasAot = Int32(1U << JSFunctionBase::IsCompiledCodeBit::START_BIT); in JudgeAotAndFastCall()
Dstub_builder-inl.h3161 …Int32(JSFunctionBase::COMPILED_CODE_FASTCALL_BITS << JSFunctionBase::IsCompiledCodeBit::START_BIT); in SetCompiledCodeFlagToFunction()
Dstub_builder.cpp10071 …GateRef compiledCodeField = Int32LSL(Int32(1U), Int32(JSFunctionBase::IsCompiledCodeBit::START_BIT… in SetCompiledCodeFlagToFunctionFromMethod()
/arkcompiler/ets_runtime/ecmascript/
Djs_function.h104 uint32_t newValue = IsCompiledCodeBit::Update(bitField, isCompiled); in SetCompiledCodeBit()
111 return IsCompiledCodeBit::Decode(bitField); in IsCompiledCode()
130 using IsCompiledCodeBit = BitField<bool, 0, 1>; // offset 0 variable
131 using IsFastCallBit = IsCompiledCodeBit::NextFlag; // offset 1
/arkcompiler/ets_runtime/ecmascript/compiler/trampoline/x64/
Doptimized_call.cpp974 __ Btq(JSFunctionBase::IsCompiledCodeBit::START_BIT, compiledCodeFlag); // is compiled code in JSBoundFunctionCallInternal()
/arkcompiler/ets_runtime/ecmascript/compiler/trampoline/aarch64/
Doptimized_call.cpp992 __ Tbz(compiledCodeFlag, JSFunctionBase::IsCompiledCodeBit::START_BIT, &slowCall); in JSBoundFunctionCallInternal()