view dyncall/gen-masm.sh @ 27:523c45dfa8fb

- refactored arm calling conventions' callvm code, so that the code that keeps the caller from overwriting the return value on some platforms also works on OpenBSD (before we casted the function pointer to have long long as return type, to hint the caller that there is one, but that triggers an intentional SIGABRT on OpenBSD for security reasons; now the decl reflects this, directly)
author cslag
date Tue, 15 Sep 2015 12:48:52 +0200
parents 3e629dc19168
children 572aff021627
line wrap: on
line source

#!/bin/sh

# Uses portasm to generates MASM sources for intel platforms.
printf "; auto-generated by `basename $0`\r\n" > dyncall_call_x86_generic_masm.asm
printf "; auto-generated by `basename $0`\r\n" > dyncall_call_x64_generic_masm.asm
gcc -E -P -DGEN_MASM dyncall_call_x86.S     | awk '{printf "%s\r\n", $0}' >> dyncall_call_x86_generic_masm.asm
gcc -E -P -DGEN_MASM dyncall_call_x64-att.S | awk '{printf "%s\r\n", $0}' >> dyncall_call_x64_generic_masm.asm