/external/v8/src/ia32/ |
D | macro-assembler-ia32.h | 448 void IllegalOperation(int num_arguments); 479 void CallRuntime(const Runtime::Function* f, int num_arguments); 486 int num_arguments); 489 void CallRuntime(Runtime::FunctionId id, int num_arguments); 493 int num_arguments); 496 void CallExternalReference(ExternalReference ref, int num_arguments); 502 int num_arguments, 508 const ExternalReference& ext, int num_arguments, int result_size); 512 int num_arguments, 519 int num_arguments, [all …]
|
D | macro-assembler-ia32.cc | 1174 void MacroAssembler::IllegalOperation(int num_arguments) { in IllegalOperation() argument 1175 if (num_arguments > 0) { in IllegalOperation() 1176 add(Operand(esp), Immediate(num_arguments * kPointerSize)); in IllegalOperation() 1201 void MacroAssembler::CallRuntime(Runtime::FunctionId id, int num_arguments) { in CallRuntime() argument 1202 CallRuntime(Runtime::FunctionForId(id), num_arguments); in CallRuntime() 1217 int num_arguments) { in TryCallRuntime() argument 1218 return TryCallRuntime(Runtime::FunctionForId(id), num_arguments); in TryCallRuntime() 1223 int num_arguments) { in CallRuntime() argument 1227 if (f->nargs >= 0 && f->nargs != num_arguments) { in CallRuntime() 1228 IllegalOperation(num_arguments); in CallRuntime() [all …]
|
D | regexp-macro-assembler-ia32.cc | 845 static const int num_arguments = 3; in GetCode() local 846 __ PrepareCallCFunction(num_arguments, ebx); in GetCode() 854 __ CallCFunction(grow_stack, num_arguments); in GetCode() 1026 static const int num_arguments = 3; in CallCheckStackGuardState() local 1027 __ PrepareCallCFunction(num_arguments, scratch); in CallCheckStackGuardState() 1037 __ CallCFunction(check_stack_guard, num_arguments); in CallCheckStackGuardState()
|
/external/v8/src/x64/ |
D | macro-assembler-x64.cc | 468 void MacroAssembler::IllegalOperation(int num_arguments) { in IllegalOperation() argument 469 if (num_arguments > 0) { in IllegalOperation() 470 addq(rsp, Immediate(num_arguments * kPointerSize)); in IllegalOperation() 495 void MacroAssembler::CallRuntime(Runtime::FunctionId id, int num_arguments) { in CallRuntime() argument 496 CallRuntime(Runtime::FunctionForId(id), num_arguments); in CallRuntime() 511 int num_arguments) { in TryCallRuntime() argument 512 return TryCallRuntime(Runtime::FunctionForId(id), num_arguments); in TryCallRuntime() 517 int num_arguments) { in CallRuntime() argument 521 if (f->nargs >= 0 && f->nargs != num_arguments) { in CallRuntime() 522 IllegalOperation(num_arguments); in CallRuntime() [all …]
|
D | macro-assembler-x64.h | 913 void IllegalOperation(int num_arguments); 954 void CallRuntime(const Runtime::Function* f, int num_arguments); 963 int num_arguments); 966 void CallRuntime(Runtime::FunctionId id, int num_arguments); 970 int num_arguments); 974 int num_arguments); 980 int num_arguments, 984 const ExternalReference& ext, int num_arguments, int result_size); 988 int num_arguments, 992 int num_arguments, [all …]
|
D | lithium-codegen-x64.h | 177 int num_arguments, 181 int num_arguments, in CallRuntime() argument 184 CallRuntime(function, num_arguments, instr); in CallRuntime()
|
D | regexp-macro-assembler-x64.cc | 405 static const int num_arguments = 4; in CheckNotBackReferenceIgnoreCase() local 406 __ PrepareCallCFunction(num_arguments); in CheckNotBackReferenceIgnoreCase() 436 __ CallCFunction(compare, num_arguments); in CheckNotBackReferenceIgnoreCase() 927 static const int num_arguments = 3; in GetCode() local 928 __ PrepareCallCFunction(num_arguments); in GetCode() 942 __ CallCFunction(grow_stack, num_arguments); in GetCode() 1123 static const int num_arguments = 3; in CallCheckStackGuardState() local 1124 __ PrepareCallCFunction(num_arguments); in CallCheckStackGuardState() 1144 __ CallCFunction(stack_check, num_arguments); in CallCheckStackGuardState()
|
D | lithium-codegen-x64.cc | 471 int num_arguments, in CallRuntime() argument 478 __ CallRuntime(function, num_arguments); in CallRuntime()
|
/external/v8/src/arm/ |
D | macro-assembler-arm.h | 609 void IllegalOperation(int num_arguments); 717 void CallRuntime(const Runtime::Function* f, int num_arguments); 721 void CallRuntime(Runtime::FunctionId fid, int num_arguments); 725 int num_arguments); 731 int num_arguments, 738 const ExternalReference& ext, int num_arguments, int result_size); 742 int num_arguments, 753 void PrepareCallCFunction(int num_arguments, Register scratch); 760 void CallCFunction(ExternalReference function, int num_arguments); 761 void CallCFunction(Register function, Register scratch, int num_arguments); [all …]
|
D | macro-assembler-arm.cc | 1812 void MacroAssembler::IllegalOperation(int num_arguments) { in IllegalOperation() argument 1813 if (num_arguments > 0) { in IllegalOperation() 1814 add(sp, sp, Operand(num_arguments * kPointerSize)); in IllegalOperation() 2176 int num_arguments) { in CallRuntime() argument 2182 if (f->nargs >= 0 && f->nargs != num_arguments) { in CallRuntime() 2183 IllegalOperation(num_arguments); in CallRuntime() 2191 mov(r0, Operand(num_arguments)); in CallRuntime() 2198 void MacroAssembler::CallRuntime(Runtime::FunctionId fid, int num_arguments) { in CallRuntime() argument 2199 CallRuntime(Runtime::FunctionForId(fid), num_arguments); in CallRuntime() 2214 int num_arguments) { in CallExternalReference() argument [all …]
|
D | lithium-codegen-arm.h | 191 int num_arguments, 195 int num_arguments, in CallRuntime() argument 198 CallRuntime(function, num_arguments, instr); in CallRuntime()
|
D | regexp-macro-assembler-arm.cc | 784 static const int num_arguments = 3; in GetCode() local 785 __ PrepareCallCFunction(num_arguments, r0); in GetCode() 791 __ CallCFunction(grow_stack, num_arguments); in GetCode() 998 static const int num_arguments = 3; in CallCheckStackGuardState() local 999 __ PrepareCallCFunction(num_arguments, scratch); in CallCheckStackGuardState() 1007 CallCFunctionUsingStub(stack_guard_check, num_arguments); in CallCheckStackGuardState() 1221 int num_arguments) { in CallCFunctionUsingStub() argument 1223 ASSERT(num_arguments <= 4); in CallCFunctionUsingStub()
|
D | regexp-macro-assembler-arm.h | 218 int num_arguments);
|
D | lithium-codegen-arm.cc | 511 int num_arguments, in CallRuntime() argument 518 __ CallRuntime(function, num_arguments); in CallRuntime()
|
/external/v8/src/mips/ |
D | macro-assembler-mips.h | 687 void IllegalOperation(int num_arguments); 727 void CallRuntime(const Runtime::Function* f, int num_arguments); 731 void CallRuntime(Runtime::FunctionId fid, int num_arguments); 735 int num_arguments); 741 int num_arguments, 746 int num_arguments, 758 void PrepareCallCFunction(int num_arguments, Register scratch); 769 void CallCFunction(ExternalReference function, int num_arguments); 770 void CallCFunction(Register function, Register scratch, int num_arguments); 942 int num_arguments);
|
D | macro-assembler-mips.cc | 2496 void MacroAssembler::IllegalOperation(int num_arguments) { in IllegalOperation() argument 2497 if (num_arguments > 0) { in IllegalOperation() 2498 addiu(sp, sp, num_arguments * kPointerSize); in IllegalOperation() 2568 int num_arguments) { in CallRuntime() argument 2574 if (f->nargs >= 0 && f->nargs != num_arguments) { in CallRuntime() 2575 IllegalOperation(num_arguments); in CallRuntime() 2583 li(a0, num_arguments); in CallRuntime() 2600 void MacroAssembler::CallRuntime(Runtime::FunctionId fid, int num_arguments) { in CallRuntime() argument 2601 CallRuntime(Runtime::FunctionForId(fid), num_arguments); in CallRuntime() 2606 int num_arguments) { in CallExternalReference() argument [all …]
|
D | regexp-macro-assembler-mips.h | 219 int num_arguments);
|
D | regexp-macro-assembler-mips.cc | 456 int num_arguments) { in CallCFunctionUsingStub() argument
|
/external/v8/src/ |
D | array.js | 530 var num_arguments = %_ArgumentsLength(); 533 SmartMove(this, 0, 0, len, num_arguments); 535 SimpleMove(this, 0, 0, len, num_arguments); 537 for (var i = 0; i < num_arguments; i++) { 541 this.length = len + num_arguments; 543 return len + num_arguments; 585 var num_arguments = %_ArgumentsLength(); 603 if (num_arguments == 1) { 616 if (num_arguments > 2) { 617 num_additional_args = num_arguments - 2;
|