Lines Matching defs:arg
236 Arg arg) {
238 basm->Move(reg, arg);
259 static int Push(BaselineAssembler* basm, Arg arg) {
261 basm->masm()->Push(ToRegister(basm, &scope, arg));
264 static int PushReverse(BaselineAssembler* basm, Arg arg) {
265 return Push(basm, arg);
273 static int Push(BaselineAssembler* basm, Arg arg, Args... args) {
274 PushAllHelper<Arg>::Push(basm, arg);
277 static int PushReverse(BaselineAssembler* basm, Arg arg, Args... args) {
279 PushAllHelper<Arg>::Push(basm, arg);