Lines Matching full:method
22 #include "runtime/include/method-inl.h"
83 extern "C" bool IncrementHotnessCounter(Method *method) in IncrementHotnessCounter() argument
85 method->IncrementHotnessCounter(0, nullptr); in IncrementHotnessCounter()
86 return method->GetCompiledEntryPoint() != GetCompiledCodeToInterpreterBridge(method); in IncrementHotnessCounter()
89 extern "C" NO_ADDRESS_SANITIZE void InterpreterEntryPoint(Method *method, Frame *frame) in InterpreterEntryPoint() argument
91 auto pc = method->GetInstructions(); in InterpreterEntryPoint()
92 Method *callee = frame->GetMethod(); in InterpreterEntryPoint()
117 extern "C" Frame *CreateFrame(uint32_t nregs, Method *method, Frame *prev) in CreateFrame() argument
124 return (new (mem) panda::Frame(method, prev, nregs)); in CreateFrame()
127 extern "C" Frame *CreateFrameForMethod(Method *method, Frame *prev) in CreateFrameForMethod() argument
129 auto nregs = method->GetNumArgs() + method->GetNumVregs(); in CreateFrameForMethod()
130 return CreateFrame(nregs, method, prev); in CreateFrameForMethod()
134 Method *method, Frame *prev) in CreateFrameWithActualArgsAndSize() argument
142 return (new (mem) panda::Frame(method, prev, nregs, num_actual_args)); in CreateFrameWithActualArgsAndSize()
145 …e *CreateFrameWithActualArgs(uint32_t nregs, uint32_t num_actual_args, Method *method, Frame *prev) in CreateFrameWithActualArgs() argument
147 return CreateFrameWithActualArgsAndSize(nregs, nregs, num_actual_args, method, prev); in CreateFrameWithActualArgs()
150 extern "C" Frame *CreateFrameForMethodWithActualArgs(uint32_t num_actual_args, Method *method, Fram… in CreateFrameForMethodWithActualArgs() argument
152 auto nargs = std::max(num_actual_args, method->GetNumArgs()); in CreateFrameForMethodWithActualArgs()
153 auto nregs = nargs + method->GetNumVregs(); in CreateFrameForMethodWithActualArgs()
154 return CreateFrameWithActualArgs(nregs, num_actual_args, method, prev); in CreateFrameForMethodWithActualArgs()
162 extern "C" DecodedTaggedValue GetInitialTaggedValue(Method *method) in GetInitialTaggedValue() argument
166 return Runtime::GetCurrent()->GetLanguageContext(*method).GetInitialDecodedValue(); in GetInitialTaggedValue()