Home | History | Annotate | Download | only in x64

Lines Matching refs:arg_count

955                                    int arg_count) {
956 arg_count, arg_count);
978 Result VirtualFrame::CallRuntime(Runtime::Function* f, int arg_count) {
979 PrepareForCall(arg_count, arg_count);
981 __ CallRuntime(f, arg_count);
988 Result VirtualFrame::CallRuntime(Runtime::FunctionId id, int arg_count) {
989 PrepareForCall(arg_count, arg_count);
991 __ CallRuntime(id, arg_count);
1045 int arg_count,
1051 Handle<Code> ic = cgen()->ComputeCallInitialize(arg_count, in_loop);
1055 PrepareForCall(arg_count + 1, arg_count + 1);
1062 Result VirtualFrame::CallConstructor(int arg_count) {
1068 PushElementAt(arg_count + 1);
1070 PrepareForCall(arg_count + 1, arg_count + 1); // Spill args and receiver.
1078 __ movq(num_args.reg(), Immediate(arg_count));