Lines Matching full:callee
48 {"callee", callee_}, in Dump()
162 compiler::VReg callee = pg->AllocReg(); in Compile() local
175 … // Guaranteed by implementation in callThis, thisVReg is always the next register of callee. in Compile()
176 thisVReg_ = callee + 1; in Compile()
184 pg->StoreAccumulator(realCallee->AsMemberExpression()->Property(), callee); in Compile()
186 pg->StoreAccumulator(this, callee); in Compile()
188 pg->GetOptionalChain()->CheckNullish(optional_, callee); in Compile()
198 pg->CallSpread(this, callee, thisReg, argsObj); in Compile()
211 * bind CallThis to the property node instead of the entire callee. in Compile()
215 pg->CallThis(realCallee->AsMemberExpression()->Property(), callee, in Compile()
219 pg->CallThis(this, callee, static_cast<int64_t>(arguments_.size() + 1)); in Compile()
223 pg->Call(this, callee, arguments_.size()); in Compile()