Searched refs:IsCompiledCodeBit (Results 1 – 6 of 6) sorted by relevance
| /arkcompiler/ets_runtime/ecmascript/ |
| D | js_function.h | 110 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/ |
| D | mcr_circuit_builder.h | 415 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()
|
| D | stub_builder-inl.h | 3647 …Int32(JSFunctionBase::COMPILED_CODE_FASTCALL_BITS << JSFunctionBase::IsCompiledCodeBit::START_BIT); in SetCompiledCodeFlagToFunction()
|
| D | stub_builder.cpp | 11747 …GateRef compiledCodeField = Int32LSL(Int32(1U), Int32(JSFunctionBase::IsCompiledCodeBit::START_BIT… in SetCompiledCodeFlagToFunctionFromMethod()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/trampoline/x64/ |
| D | optimized_call.cpp | 970 __ Btq(JSFunctionBase::IsCompiledCodeBit::START_BIT, compiledCodeFlag); // is compiled code in JSBoundFunctionCallInternal()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/trampoline/aarch64/ |
| D | optimized_call.cpp | 989 __ Tbz(compiledCodeFlag, JSFunctionBase::IsCompiledCodeBit::START_BIT, &slowCall); in JSBoundFunctionCallInternal()
|