Searched refs:stack_passed_arguments (Results 1 – 2 of 2) sorted by relevance
/external/v8/src/arm/ |
D | macro-assembler-arm.cc | 3293 int stack_passed_arguments = CalculateStackPassedWords( in PrepareCallCFunction() local 3299 sub(sp, sp, Operand((stack_passed_arguments + 1) * kPointerSize)); in PrepareCallCFunction() 3302 str(scratch, MemOperand(sp, stack_passed_arguments * kPointerSize)); in PrepareCallCFunction() 3304 sub(sp, sp, Operand(stack_passed_arguments * kPointerSize)); in PrepareCallCFunction() 3409 int stack_passed_arguments = CalculateStackPassedWords( in CallCFunctionHelper() local 3412 ldr(sp, MemOperand(sp, stack_passed_arguments * kPointerSize)); in CallCFunctionHelper() 3414 add(sp, sp, Operand(stack_passed_arguments * sizeof(kPointerSize))); in CallCFunctionHelper()
|
/external/v8/src/mips/ |
D | macro-assembler-mips.cc | 4912 int stack_passed_arguments = CalculateStackPassedWords( in PrepareCallCFunction() local 4918 Subu(sp, sp, Operand((stack_passed_arguments + 1) * kPointerSize)); in PrepareCallCFunction() 4921 sw(scratch, MemOperand(sp, stack_passed_arguments * kPointerSize)); in PrepareCallCFunction() 4923 Subu(sp, sp, Operand(stack_passed_arguments * kPointerSize)); in PrepareCallCFunction() 4999 int stack_passed_arguments = CalculateStackPassedWords( in CallCFunctionHelper() local 5003 lw(sp, MemOperand(sp, stack_passed_arguments * kPointerSize)); in CallCFunctionHelper() 5005 Addu(sp, sp, Operand(stack_passed_arguments * sizeof(kPointerSize))); in CallCFunctionHelper()
|