Home
last modified time | relevance | path

Searched refs:num_arguments (Results 1 – 21 of 21) sorted by relevance

/external/v8/src/ia32/
Dmacro-assembler-ia32.h661 void IllegalOperation(int num_arguments);
682 void CallRuntime(const Runtime::Function* f, int num_arguments);
686 void CallRuntime(Runtime::FunctionId id, int num_arguments);
689 void CallExternalReference(ExternalReference ref, int num_arguments);
695 int num_arguments,
700 int num_arguments,
710 void PrepareCallCFunction(int num_arguments, Register scratch);
717 void CallCFunction(ExternalReference function, int num_arguments);
718 void CallCFunction(Register function, int num_arguments);
Dmacro-assembler-ia32.cc1673 void MacroAssembler::IllegalOperation(int num_arguments) { in IllegalOperation() argument
1674 if (num_arguments > 0) { in IllegalOperation()
1675 add(esp, Immediate(num_arguments * kPointerSize)); in IllegalOperation()
1700 void MacroAssembler::CallRuntime(Runtime::FunctionId id, int num_arguments) { in CallRuntime() argument
1701 CallRuntime(Runtime::FunctionForId(id), num_arguments); in CallRuntime()
1715 int num_arguments) { in CallRuntime() argument
1719 if (f->nargs >= 0 && f->nargs != num_arguments) { in CallRuntime()
1720 IllegalOperation(num_arguments); in CallRuntime()
1728 Set(eax, Immediate(num_arguments)); in CallRuntime()
1736 int num_arguments) { in CallExternalReference() argument
[all …]
Dregexp-macro-assembler-ia32.cc853 static const int num_arguments = 3; in GetCode() local
854 __ PrepareCallCFunction(num_arguments, ebx); in GetCode()
862 __ CallCFunction(grow_stack, num_arguments); in GetCode()
1034 static const int num_arguments = 3; in CallCheckStackGuardState() local
1035 __ PrepareCallCFunction(num_arguments, scratch); in CallCheckStackGuardState()
1045 __ CallCFunction(check_stack_guard, num_arguments); in CallCheckStackGuardState()
/external/v8/src/x64/
Dmacro-assembler-x64.h1117 void IllegalOperation(int num_arguments);
1164 void CallRuntime(const Runtime::Function* f, int num_arguments);
1170 void CallRuntime(Runtime::FunctionId id, int num_arguments);
1174 int num_arguments);
1180 int num_arguments,
1185 int num_arguments,
1211 void PrepareCallCFunction(int num_arguments);
1218 void CallCFunction(ExternalReference function, int num_arguments);
1219 void CallCFunction(Register function, int num_arguments);
1223 int ArgumentStackSlotsForCFunctionCall(int num_arguments);
Dlithium-codegen-x64.h185 int num_arguments,
189 int num_arguments, in CallRuntime() argument
192 CallRuntime(function, num_arguments, instr); in CallRuntime()
Dregexp-macro-assembler-x64.cc405 static const int num_arguments = 4; in CheckNotBackReferenceIgnoreCase() local
406 __ PrepareCallCFunction(num_arguments); in CheckNotBackReferenceIgnoreCase()
440 __ CallCFunction(compare, num_arguments); in CheckNotBackReferenceIgnoreCase()
935 static const int num_arguments = 3; in GetCode() local
936 __ PrepareCallCFunction(num_arguments); in GetCode()
950 __ CallCFunction(grow_stack, num_arguments); in GetCode()
1131 static const int num_arguments = 3; in CallCheckStackGuardState() local
1132 __ PrepareCallCFunction(num_arguments); in CallCheckStackGuardState()
1152 __ CallCFunction(stack_check, num_arguments); in CallCheckStackGuardState()
Dmacro-assembler-x64.cc551 void MacroAssembler::IllegalOperation(int num_arguments) { in IllegalOperation() argument
552 if (num_arguments > 0) { in IllegalOperation()
553 addq(rsp, Immediate(num_arguments * kPointerSize)); in IllegalOperation()
578 void MacroAssembler::CallRuntime(Runtime::FunctionId id, int num_arguments) { in CallRuntime() argument
579 CallRuntime(Runtime::FunctionForId(id), num_arguments); in CallRuntime()
593 int num_arguments) { in CallRuntime() argument
597 if (f->nargs >= 0 && f->nargs != num_arguments) { in CallRuntime()
598 IllegalOperation(num_arguments); in CallRuntime()
606 Set(rax, num_arguments); in CallRuntime()
614 int num_arguments) { in CallExternalReference() argument
[all …]
Dlithium-codegen-x64.cc480 int num_arguments, in CallRuntime() argument
487 __ CallRuntime(function, num_arguments); in CallRuntime()
/external/v8/src/
Darray.js599 var num_arguments = %_ArgumentsLength();
602 SmartMove(this, 0, 0, len, num_arguments);
604 SimpleMove(this, 0, 0, len, num_arguments);
607 for (var i = 0; i < num_arguments; i++) {
611 this.length = len + num_arguments;
613 return len + num_arguments;
667 var num_arguments = %_ArgumentsLength();
685 if (num_arguments == 1) {
698 if (num_arguments > 2) {
699 num_additional_args = num_arguments - 2;
/external/v8/src/arm/
Dmacro-assembler-arm.h875 void IllegalOperation(int num_arguments);
977 void CallRuntime(const Runtime::Function* f, int num_arguments);
981 void CallRuntime(Runtime::FunctionId fid, int num_arguments);
985 int num_arguments);
991 int num_arguments,
996 int num_arguments,
1031 void CallCFunction(ExternalReference function, int num_arguments);
1032 void CallCFunction(Register function, int num_arguments);
Dlithium-codegen-arm.h204 int num_arguments,
208 int num_arguments, in CallRuntime() argument
211 CallRuntime(function, num_arguments, instr); in CallRuntime()
Dregexp-macro-assembler-arm.cc793 static const int num_arguments = 3; in GetCode() local
794 __ PrepareCallCFunction(num_arguments, r0); in GetCode()
800 __ CallCFunction(grow_stack, num_arguments); in GetCode()
1006 static const int num_arguments = 3; in CallCheckStackGuardState() local
1007 __ PrepareCallCFunction(num_arguments, scratch); in CallCheckStackGuardState()
1015 CallCFunctionUsingStub(stack_guard_check, num_arguments); in CallCheckStackGuardState()
1247 int num_arguments) { in CallCFunctionUsingStub() argument
1249 ASSERT(num_arguments <= 4); in CallCFunctionUsingStub()
Dmacro-assembler-arm.cc2233 void MacroAssembler::IllegalOperation(int num_arguments) { in IllegalOperation() argument
2234 if (num_arguments > 0) { in IllegalOperation()
2235 add(sp, sp, Operand(num_arguments * kPointerSize)); in IllegalOperation()
2597 int num_arguments) { in CallRuntime() argument
2603 if (f->nargs >= 0 && f->nargs != num_arguments) { in CallRuntime()
2604 IllegalOperation(num_arguments); in CallRuntime()
2612 mov(r0, Operand(num_arguments)); in CallRuntime()
2619 void MacroAssembler::CallRuntime(Runtime::FunctionId fid, int num_arguments) { in CallRuntime() argument
2620 CallRuntime(Runtime::FunctionForId(fid), num_arguments); in CallRuntime()
2634 int num_arguments) { in CallExternalReference() argument
[all …]
Dregexp-macro-assembler-arm.h222 int num_arguments);
Dlithium-codegen-arm.cc589 int num_arguments, in CallRuntime() argument
596 __ CallRuntime(function, num_arguments); in CallRuntime()
/external/v8/src/mips/
Dlithium-codegen-mips.h201 int num_arguments,
205 int num_arguments, in CallRuntime() argument
208 CallRuntime(function, num_arguments, instr); in CallRuntime()
Dmacro-assembler-mips.h1023 void IllegalOperation(int num_arguments);
1132 void CallRuntime(const Runtime::Function* f, int num_arguments);
1136 void CallRuntime(Runtime::FunctionId fid, int num_arguments);
1140 int num_arguments,
1147 int num_arguments,
1152 int num_arguments,
1182 void CallCFunction(ExternalReference function, int num_arguments);
1183 void CallCFunction(Register function, int num_arguments);
Dregexp-macro-assembler-mips.cc800 static const int num_arguments = 3; in GetCode() local
801 __ PrepareCallCFunction(num_arguments, a0); in GetCode()
807 __ CallCFunction(grow_stack, num_arguments); in GetCode()
1009 static const int num_arguments = 3; in CallCheckStackGuardState() local
1010 __ PrepareCallCFunction(num_arguments, scratch); in CallCheckStackGuardState()
1017 CallCFunctionUsingStub(stack_guard_check, num_arguments); in CallCheckStackGuardState()
1223 int num_arguments) { in CallCFunctionUsingStub() argument
1225 ASSERT(num_arguments <= 4); in CallCFunctionUsingStub()
Dmacro-assembler-mips.cc4014 void MacroAssembler::IllegalOperation(int num_arguments) { in IllegalOperation() argument
4015 if (num_arguments > 0) { in IllegalOperation()
4016 addiu(sp, sp, num_arguments * kPointerSize); in IllegalOperation()
4169 int num_arguments) { in CallRuntime() argument
4175 if (f->nargs >= 0 && f->nargs != num_arguments) { in CallRuntime()
4176 IllegalOperation(num_arguments); in CallRuntime()
4184 PrepareCEntryArgs(num_arguments); in CallRuntime()
4200 void MacroAssembler::CallRuntime(Runtime::FunctionId fid, int num_arguments) { in CallRuntime() argument
4201 CallRuntime(Runtime::FunctionForId(fid), num_arguments); in CallRuntime()
4206 int num_arguments, in CallExternalReference() argument
[all …]
Dregexp-macro-assembler-mips.h227 int num_arguments);
Dlithium-codegen-mips.cc550 int num_arguments, in CallRuntime() argument
557 __ CallRuntime(function, num_arguments); in CallRuntime()