Home | History | Annotate | Download | only in ia32

Lines Matching full:num_arguments

1896                                  int num_arguments,
1901 CHECK(f->nargs < 0 || f->nargs == num_arguments);
1907 Move(eax, Immediate(num_arguments));
1915 int num_arguments) {
1916 mov(eax, Immediate(num_arguments));
1927 // -- esp[8] : argument num_arguments - 1
1929 // -- esp[8 * num_arguments] : argument 0 (receiver)
2781 void MacroAssembler::PrepareCallCFunction(int num_arguments, Register scratch) {
2784 // Make stack end at alignment and make room for num_arguments words
2787 sub(esp, Immediate((num_arguments + 1) * kPointerSize));
2790 mov(Operand(esp, num_arguments * kPointerSize), scratch);
2792 sub(esp, Immediate(num_arguments * kPointerSize));
2798 int num_arguments) {
2801 CallCFunction(eax, num_arguments);
2806 int num_arguments) {
2815 mov(esp, Operand(esp, num_arguments * kPointerSize));
2817 add(esp, Immediate(num_arguments * kPointerSize));