Searched refs:stack_passed_arguments (Results 1 – 6 of 6) sorted by relevance
/external/v8/src/regexp/ppc/ |
D | regexp-macro-assembler-ppc.cc | 1096 int stack_passed_arguments = 1; // space for return address pointer in CallCheckStackGuardState() local 1105 __ addi(sp, sp, Operand(-(stack_passed_arguments + 1) * kPointerSize)); in CallCheckStackGuardState() 1108 __ StoreP(scratch, MemOperand(sp, stack_passed_arguments * kPointerSize)); in CallCheckStackGuardState() 1111 stack_space += stack_passed_arguments; in CallCheckStackGuardState() 1132 stack_space = kNumRequiredStackFrameSlots + stack_passed_arguments; in CallCheckStackGuardState()
|
/external/v8/src/arm/ |
D | macro-assembler-arm.cc | 2255 int stack_passed_arguments = CalculateStackPassedWords( in PrepareCallCFunction() local 2263 sub(sp, sp, Operand((stack_passed_arguments + 1) * kPointerSize)); in PrepareCallCFunction() 2266 str(scratch, MemOperand(sp, stack_passed_arguments * kPointerSize)); in PrepareCallCFunction() 2267 } else if (stack_passed_arguments > 0) { in PrepareCallCFunction() 2268 sub(sp, sp, Operand(stack_passed_arguments * kPointerSize)); in PrepareCallCFunction() 2347 int stack_passed_arguments = CalculateStackPassedWords( in CallCFunctionHelper() local 2350 ldr(sp, MemOperand(sp, stack_passed_arguments * kPointerSize)); in CallCFunctionHelper() 2352 add(sp, sp, Operand(stack_passed_arguments * kPointerSize)); in CallCFunctionHelper()
|
/external/v8/src/ppc/ |
D | macro-assembler-ppc.cc | 1927 int stack_passed_arguments = in PrepareCallCFunction() local 1935 addi(sp, sp, Operand(-(stack_passed_arguments + 1) * kPointerSize)); in PrepareCallCFunction() 1938 StoreP(scratch, MemOperand(sp, stack_passed_arguments * kPointerSize)); in PrepareCallCFunction() 1941 stack_space += stack_passed_arguments; in PrepareCallCFunction() 2015 int stack_passed_arguments = in CallCFunctionHelper() local 2017 int stack_space = kNumRequiredStackFrameSlots + stack_passed_arguments; in CallCFunctionHelper()
|
/external/v8/src/s390/ |
D | macro-assembler-s390.cc | 1871 int stack_passed_arguments = in PrepareCallCFunction() local 1878 lay(sp, MemOperand(sp, -(stack_passed_arguments + 1) * kPointerSize)); in PrepareCallCFunction() 1881 StoreP(scratch, MemOperand(sp, (stack_passed_arguments)*kPointerSize)); in PrepareCallCFunction() 1883 stack_space += stack_passed_arguments; in PrepareCallCFunction() 1947 int stack_passed_arguments = in CallCFunctionHelper() local 1949 int stack_space = kNumRequiredStackFrameSlots + stack_passed_arguments; in CallCFunctionHelper()
|
/external/v8/src/mips/ |
D | macro-assembler-mips.cc | 5268 int stack_passed_arguments = CalculateStackPassedWords( in PrepareCallCFunction() local 5274 Subu(sp, sp, Operand((stack_passed_arguments + 1) * kPointerSize)); in PrepareCallCFunction() 5277 sw(scratch, MemOperand(sp, stack_passed_arguments * kPointerSize)); in PrepareCallCFunction() 5279 Subu(sp, sp, Operand(stack_passed_arguments * kPointerSize)); in PrepareCallCFunction() 5363 int stack_passed_arguments = CalculateStackPassedWords( in CallCFunctionHelper() local 5367 lw(sp, MemOperand(sp, stack_passed_arguments * kPointerSize)); in CallCFunctionHelper() 5369 Addu(sp, sp, Operand(stack_passed_arguments * kPointerSize)); in CallCFunctionHelper()
|
/external/v8/src/mips64/ |
D | macro-assembler-mips64.cc | 5673 int stack_passed_arguments = CalculateStackPassedWords( in PrepareCallCFunction() local 5679 Dsubu(sp, sp, Operand((stack_passed_arguments + 1) * kPointerSize)); in PrepareCallCFunction() 5682 Sd(scratch, MemOperand(sp, stack_passed_arguments * kPointerSize)); in PrepareCallCFunction() 5684 Dsubu(sp, sp, Operand(stack_passed_arguments * kPointerSize)); in PrepareCallCFunction() 5760 int stack_passed_arguments = CalculateStackPassedWords( in CallCFunctionHelper() local 5764 Ld(sp, MemOperand(sp, stack_passed_arguments * kPointerSize)); in CallCFunctionHelper() 5766 Daddu(sp, sp, Operand(stack_passed_arguments * kPointerSize)); in CallCFunctionHelper()
|