Lines Matching defs:methodOffset
93 JSTaggedValue JitCompilationEnv::FindOrCreateUnsharedConstpool([[maybe_unused]] const uint32_t methodOffset) const
95 JSTaggedValue constpool = GetConstantPoolByMethodOffset(methodOffset);
109 uint32_t methodOffset = method->GetMethodId().GetOffset();
110 return FindOrCreateUnsharedConstpool(methodOffset);
120 JSTaggedValue JitCompilationEnv::GetConstantPoolByMethodOffset([[maybe_unused]] const uint32_t methodOffset) const
125 if (methodOffset != currMethod->GetMethodId().GetOffset()) {
126 auto calleeFunc = GetJsFunctionByMethodOffset(methodOffset);
174 JSTaggedValue JitCompilationEnv::GetStringFromConstantPool([[maybe_unused]] const uint32_t methodOffset,
177 JSTaggedValue constpool = GetConstantPoolByMethodOffset(methodOffset);
184 JSFunction *JitCompilationEnv::GetJsFunctionByMethodOffset(uint32_t methodOffset) const
189 if (methodOffset == currMethodOffset) {
193 uint32_t calleeOffset = methodOffset;
228 if (Method::Cast(currFunc->GetMethod())->GetMethodId().GetOffset() != methodOffset) {