Lines Matching defs:arg
372 Arg arg) {
374 basm->Move(reg, arg);
395 static int Push(BaselineAssembler* basm, Arg arg) {
397 basm->masm()->Push(ToRegister(basm, &scope, arg));
400 static int PushReverse(BaselineAssembler* basm, Arg arg) {
401 return Push(basm, arg);
409 static int Push(BaselineAssembler* basm, Arg arg, Args... args) {
410 PushAllHelper<Arg>::Push(basm, arg);
413 static int PushReverse(BaselineAssembler* basm, Arg arg, Args... args) {
415 PushAllHelper<Arg>::Push(basm, arg);