diff options
author | Sverker Eriksson <[email protected]> | 2011-10-12 16:12:53 +0200 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2011-10-26 11:36:00 +0200 |
commit | 9dbccbfa2759e2232cba8b3ffb7c5c44d564ec69 (patch) | |
tree | 3076a3963d881fe1087fecde321ee370de4bba49 /erts/emulator/hipe/hipe_ppc_bifs.m4 | |
parent | f167442302b722c1b963a2647ffa3557b75de94a (diff) | |
download | otp-9dbccbfa2759e2232cba8b3ffb7c5c44d564ec69.tar.gz otp-9dbccbfa2759e2232cba8b3ffb7c5c44d564ec69.tar.bz2 otp-9dbccbfa2759e2232cba8b3ffb7c5c44d564ec69.zip |
erts-hipe: Remove obscuring macros in generated assembler code
No semantic change.
Just easier to debug when jumps are spelled out
and not obscured by yet another layer of macros.
Diffstat (limited to 'erts/emulator/hipe/hipe_ppc_bifs.m4')
-rw-r--r-- | erts/emulator/hipe/hipe_ppc_bifs.m4 | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/erts/emulator/hipe/hipe_ppc_bifs.m4 b/erts/emulator/hipe/hipe_ppc_bifs.m4 index 203fefe1a1..458bd86949 100644 --- a/erts/emulator/hipe/hipe_ppc_bifs.m4 +++ b/erts/emulator/hipe/hipe_ppc_bifs.m4 @@ -25,9 +25,14 @@ include(`hipe/hipe_ppc_asm.m4') .text .p2align 2 -`#define TEST_GOT_MBUF LOAD r4, P_MBUF(P) SEMI CMPI r4, 0 SEMI bne- 3f SEMI 2: -#define JOIN3(A,B,C) A##B##C -#define HANDLE_GOT_MBUF(ARITY) 3: bl CSYM(JOIN3(nbif_,ARITY,_gc_after_bif)) SEMI b 2b' +define(TEST_GOT_MBUF,`LOAD r4, P_MBUF(P) # `TEST_GOT_MBUF' + CMPI r4, 0 + bne- 3f +2:') +define(HANDLE_GOT_MBUF,` +3: bl CSYM(nbif_$1_gc_after_bif) # `HANDLE_GOT_MBUF' + b 2b') + /* * standard_bif_interface_1(nbif_name, cbif_name) |