Home
last modified time | relevance | path

Searched refs:stack_bytes (Results 1 – 12 of 12) sorted by relevance

/external/python/cpython2/Modules/_ctypes/libffi/src/aarch64/
Dffi.c815 size_t stack_bytes; in ffi_call() local
821 stack_bytes = ALIGN(cif->bytes, 16); in ffi_call()
826 ffi_call_SYSV (aarch64_prep_args, &context, &ecif, stack_bytes, fn); in ffi_call()
885 stack_bytes, fn); in ffi_call()
/external/libffi/src/aarch64/
Dffi.c826 size_t stack_bytes; in ffi_call() local
832 stack_bytes = ALIGN(cif->bytes, 16); in ffi_call()
837 ffi_call_SYSV (aarch64_prep_args, &context, &ecif, stack_bytes, fn); in ffi_call()
896 stack_bytes, fn); in ffi_call()
/external/v8/src/wasm/baseline/mips64/
Dliftoff-assembler-mips64.h1155 ValueType out_argument_type, int stack_bytes, in CallC() argument
1157 daddiu(sp, sp, -stack_bytes); in CallC()
1164 DCHECK_LE(arg_bytes, stack_bytes); in CallC()
1192 daddiu(sp, sp, stack_bytes); in CallC()
/external/v8/src/wasm/baseline/arm64/
Dliftoff-assembler-arm64.h857 ValueType out_argument_type, int stack_bytes, in CallC() argument
860 int total_size = RoundUp(stack_bytes, kQuadWordSizeInBytes); in CallC()
869 DCHECK_LE(arg_bytes, stack_bytes); in CallC()
/external/v8/src/wasm/baseline/mips/
Dliftoff-assembler-mips.h1291 ValueType out_argument_type, int stack_bytes, in CallC() argument
1293 addiu(sp, sp, -stack_bytes); in CallC()
1300 DCHECK_LE(arg_bytes, stack_bytes); in CallC()
1328 addiu(sp, sp, stack_bytes); in CallC()
/external/v8/src/wasm/baseline/arm/
Dliftoff-assembler-arm.h319 ValueType out_argument_type, int stack_bytes, in CallC() argument
/external/v8/src/wasm/baseline/s390/
Dliftoff-assembler-s390.h332 ValueType out_argument_type, int stack_bytes, in CallC() argument
/external/v8/src/wasm/baseline/ppc/
Dliftoff-assembler-ppc.h332 ValueType out_argument_type, int stack_bytes, in CallC() argument
/external/v8/src/wasm/baseline/x64/
Dliftoff-assembler-x64.h1370 ValueType out_argument_type, int stack_bytes, in CallC() argument
1372 subp(rsp, Immediate(stack_bytes)); in CallC()
1379 DCHECK_LE(arg_bytes, stack_bytes); in CallC()
1406 addp(rsp, Immediate(stack_bytes)); in CallC()
/external/v8/src/wasm/baseline/ia32/
Dliftoff-assembler-ia32.h1543 ValueType out_argument_type, int stack_bytes, in CallC() argument
1545 sub(esp, Immediate(stack_bytes)); in CallC()
1552 DCHECK_LE(arg_bytes, stack_bytes); in CallC()
1583 add(esp, Immediate(stack_bytes)); in CallC()
/external/v8/src/wasm/baseline/
Dliftoff-assembler.h541 int stack_bytes, ExternalReference ext_ref);
Dliftoff-compiler.cc538 int stack_bytes = std::max(param_bytes, out_arg_bytes); in GenerateCCall() local
539 __ CallC(sig, arg_regs, result_regs, out_argument_type, stack_bytes, in GenerateCCall()