Searched defs:num_arguments (Results 1 - 12 of 12) sorted by relevance

/external/v8/src/arm/
H A Dlithium-codegen-arm.h204 int num_arguments,
208 int num_arguments,
211 CallRuntime(function, num_arguments, instr);
207 CallRuntime(Runtime::FunctionId id, int num_arguments, LInstruction* instr) argument
H A Dregexp-macro-assembler-arm.cc793 static const int num_arguments = 3; local
794 __ PrepareCallCFunction(num_arguments, r0);
800 __ CallCFunction(grow_stack, num_arguments);
1006 static const int num_arguments = 3;
1007 __ PrepareCallCFunction(num_arguments, scratch);
1015 CallCFunctionUsingStub(stack_guard_check, num_arguments);
1247 int num_arguments) {
1249 ASSERT(num_arguments <= 4);
H A Dlithium-codegen-arm.cc589 int num_arguments,
596 __ CallRuntime(function, num_arguments);
588 CallRuntime(const Runtime::Function* function, int num_arguments, LInstruction* instr) argument
/external/v8/src/mips/
H A Dlithium-codegen-mips.h201 int num_arguments,
205 int num_arguments,
208 CallRuntime(function, num_arguments, instr);
204 CallRuntime(Runtime::FunctionId id, int num_arguments, LInstruction* instr) argument
H A Dregexp-macro-assembler-mips.cc800 static const int num_arguments = 3; local
801 __ PrepareCallCFunction(num_arguments, a0);
807 __ CallCFunction(grow_stack, num_arguments);
1009 static const int num_arguments = 3;
1010 __ PrepareCallCFunction(num_arguments, scratch);
1017 CallCFunctionUsingStub(stack_guard_check, num_arguments);
1223 int num_arguments) {
1225 ASSERT(num_arguments <= 4);
H A Dmacro-assembler-mips.cc4014 void MacroAssembler::IllegalOperation(int num_arguments) { argument
4015 if (num_arguments > 0) {
4016 addiu(sp, sp, num_arguments * kPointerSize);
4169 int num_arguments) {
4175 if (f->nargs >= 0 && f->nargs != num_arguments) {
4176 IllegalOperation(num_arguments);
4184 PrepareCEntryArgs(num_arguments);
4200 void MacroAssembler::CallRuntime(Runtime::FunctionId fid, int num_arguments) { argument
4201 CallRuntime(Runtime::FunctionForId(fid), num_arguments); local
4206 int num_arguments,
4168 CallRuntime(const Runtime::Function* f, int num_arguments) argument
4205 CallExternalReference(const ExternalReference& ext, int num_arguments, BranchDelaySlot bd) argument
4216 TailCallExternalReference(const ExternalReference& ext, int num_arguments, int result_size) argument
4228 TailCallRuntime(Runtime::FunctionId fid, int num_arguments, int result_size) argument
4232 num_arguments, local
4949 CallCFunction(ExternalReference function, int num_arguments) argument
4955 CallCFunction(Register function, int num_arguments) argument
[all...]
H A Dlithium-codegen-mips.cc550 int num_arguments,
557 __ CallRuntime(function, num_arguments);
549 CallRuntime(const Runtime::Function* function, int num_arguments, LInstruction* instr) argument
/external/v8/src/x64/
H A Dlithium-codegen-x64.h185 int num_arguments,
189 int num_arguments,
192 CallRuntime(function, num_arguments, instr);
188 CallRuntime(Runtime::FunctionId id, int num_arguments, LInstruction* instr) argument
H A Dmacro-assembler-x64.cc551 void MacroAssembler::IllegalOperation(int num_arguments) { argument
552 if (num_arguments > 0) {
553 addq(rsp, Immediate(num_arguments * kPointerSize));
578 void MacroAssembler::CallRuntime(Runtime::FunctionId id, int num_arguments) { argument
579 CallRuntime(Runtime::FunctionForId(id), num_arguments); local
593 int num_arguments) {
597 if (f->nargs >= 0 && f->nargs != num_arguments) {
598 IllegalOperation(num_arguments);
606 Set(rax, num_arguments);
614 int num_arguments) {
592 CallRuntime(const Runtime::Function* f, int num_arguments) argument
613 CallExternalReference(const ExternalReference& ext, int num_arguments) argument
623 TailCallExternalReference(const ExternalReference& ext, int num_arguments, int result_size) argument
642 TailCallRuntime(Runtime::FunctionId fid, int num_arguments, int result_size) argument
646 num_arguments, local
4105 ArgumentStackSlotsForCFunctionCall(int num_arguments) argument
4124 PrepareCallCFunction(int num_arguments) argument
4140 CallCFunction(ExternalReference function, int num_arguments) argument
4147 CallCFunction(Register function, int num_arguments) argument
[all...]
H A Dlithium-codegen-x64.cc480 int num_arguments,
487 __ CallRuntime(function, num_arguments);
479 CallRuntime(const Runtime::Function* function, int num_arguments, LInstruction* instr) argument
/external/v8/src/ia32/
H A Dregexp-macro-assembler-ia32.cc853 static const int num_arguments = 3; local
854 __ PrepareCallCFunction(num_arguments, ebx);
862 __ CallCFunction(grow_stack, num_arguments);
1034 static const int num_arguments = 3;
1035 __ PrepareCallCFunction(num_arguments, scratch);
1045 __ CallCFunction(check_stack_guard, num_arguments);
H A Dmacro-assembler-ia32.cc1673 void MacroAssembler::IllegalOperation(int num_arguments) { argument
1674 if (num_arguments > 0) {
1675 add(esp, Immediate(num_arguments * kPointerSize));
1700 void MacroAssembler::CallRuntime(Runtime::FunctionId id, int num_arguments) { argument
1701 CallRuntime(Runtime::FunctionForId(id), num_arguments); local
1715 int num_arguments) {
1719 if (f->nargs >= 0 && f->nargs != num_arguments) {
1720 IllegalOperation(num_arguments);
1728 Set(eax, Immediate(num_arguments));
1736 int num_arguments) {
1714 CallRuntime(const Runtime::Function* f, int num_arguments) argument
1735 CallExternalReference(ExternalReference ref, int num_arguments) argument
1745 TailCallExternalReference(const ExternalReference& ext, int num_arguments, int result_size) argument
1757 TailCallRuntime(Runtime::FunctionId fid, int num_arguments, int result_size) argument
1761 num_arguments, local
2514 PrepareCallCFunction(int num_arguments, Register scratch) argument
2530 CallCFunction(ExternalReference function, int num_arguments) argument
2538 CallCFunction(Register function, int num_arguments) argument
[all...]

Completed in 672 milliseconds