Lines Matching defs:arg
247 Arg arg) {
249 basm->Move(reg, arg);
270 static int Push(BaselineAssembler* basm, Arg arg) {
272 basm->masm()->Push(ToRegister(basm, &scope, arg));
275 static int PushReverse(BaselineAssembler* basm, Arg arg) {
276 return Push(basm, arg);
284 static int Push(BaselineAssembler* basm, Arg arg, Args... args) {
285 PushAllHelper<Arg>::Push(basm, arg);
288 static int PushReverse(BaselineAssembler* basm, Arg arg, Args... args) {
290 PushAllHelper<Arg>::Push(basm, arg);