Home
last modified time | relevance | path

Searched refs:stack_passed_arguments (Results 1 – 6 of 6) sorted by relevance

/external/v8/src/regexp/ppc/
Dregexp-macro-assembler-ppc.cc1119 int stack_passed_arguments = 1; // space for return address pointer in CallCheckStackGuardState() local
1129 Operand(-(stack_passed_arguments + 1) * kSystemPointerSize)); in CallCheckStackGuardState()
1134 MemOperand(sp, stack_passed_arguments * kSystemPointerSize)); in CallCheckStackGuardState()
1137 stack_space += stack_passed_arguments; in CallCheckStackGuardState()
1161 stack_space = kNumRequiredStackFrameSlots + stack_passed_arguments; in CallCheckStackGuardState()
/external/v8/src/codegen/arm/
Dmacro-assembler-arm.cc2404 int stack_passed_arguments = in PrepareCallCFunction() local
2412 AllocateStackSpace((stack_passed_arguments + 1) * kPointerSize); in PrepareCallCFunction()
2415 str(scratch, MemOperand(sp, stack_passed_arguments * kPointerSize)); in PrepareCallCFunction()
2416 } else if (stack_passed_arguments > 0) { in PrepareCallCFunction()
2417 AllocateStackSpace(stack_passed_arguments * kPointerSize); in PrepareCallCFunction()
2538 int stack_passed_arguments = in CallCFunctionHelper() local
2541 ldr(sp, MemOperand(sp, stack_passed_arguments * kPointerSize)); in CallCFunctionHelper()
2543 add(sp, sp, Operand(stack_passed_arguments * kPointerSize)); in CallCFunctionHelper()
/external/v8/src/codegen/ppc/
Dmacro-assembler-ppc.cc1979 int stack_passed_arguments = in PrepareCallCFunction() local
1987 addi(sp, sp, Operand(-(stack_passed_arguments + 1) * kSystemPointerSize)); in PrepareCallCFunction()
1992 MemOperand(sp, stack_passed_arguments * kSystemPointerSize)); in PrepareCallCFunction()
1995 stack_space += stack_passed_arguments; in PrepareCallCFunction()
2124 int stack_passed_arguments = in CallCFunctionHelper() local
2126 int stack_space = kNumRequiredStackFrameSlots + stack_passed_arguments; in CallCFunctionHelper()
/external/v8/src/codegen/s390/
Dmacro-assembler-s390.cc1894 int stack_passed_arguments = in PrepareCallCFunction() local
1901 lay(sp, MemOperand(sp, -(stack_passed_arguments + 1) * kSystemPointerSize)); in PrepareCallCFunction()
1906 MemOperand(sp, (stack_passed_arguments)*kSystemPointerSize)); in PrepareCallCFunction()
1908 stack_space += stack_passed_arguments; in PrepareCallCFunction()
2009 int stack_passed_arguments = in CallCFunctionHelper() local
2011 int stack_space = kNumRequiredStackFrameSlots + stack_passed_arguments; in CallCFunctionHelper()
/external/v8/src/codegen/mips64/
Dmacro-assembler-mips64.cc5782 int stack_passed_arguments = in PrepareCallCFunction() local
5788 Dsubu(sp, sp, Operand((stack_passed_arguments + 1) * kPointerSize)); in PrepareCallCFunction()
5791 Sd(scratch, MemOperand(sp, stack_passed_arguments * kPointerSize)); in PrepareCallCFunction()
5793 Dsubu(sp, sp, Operand(stack_passed_arguments * kPointerSize)); in PrepareCallCFunction()
5905 int stack_passed_arguments = in CallCFunctionHelper() local
5909 Ld(sp, MemOperand(sp, stack_passed_arguments * kPointerSize)); in CallCFunctionHelper()
5911 Daddu(sp, sp, Operand(stack_passed_arguments * kPointerSize)); in CallCFunctionHelper()
/external/v8/src/codegen/mips/
Dmacro-assembler-mips.cc5413 int stack_passed_arguments = in PrepareCallCFunction() local
5419 Subu(sp, sp, Operand((stack_passed_arguments + 1) * kPointerSize)); in PrepareCallCFunction()
5422 sw(scratch, MemOperand(sp, stack_passed_arguments * kPointerSize)); in PrepareCallCFunction()
5424 Subu(sp, sp, Operand(stack_passed_arguments * kPointerSize)); in PrepareCallCFunction()
5544 int stack_passed_arguments = in CallCFunctionHelper() local
5548 lw(sp, MemOperand(sp, stack_passed_arguments * kPointerSize)); in CallCFunctionHelper()
5550 Addu(sp, sp, Operand(stack_passed_arguments * kPointerSize)); in CallCFunctionHelper()