9fans - fans of the OS Plan 9 from Bell Labs
 help / color / mirror / Atom feed
From: Paul Patience <paul-a.patience@polymtl.ca>
To: 9fans@9fans.net
Subject: [9fans] 5l bug
Date: Mon, 29 Apr 2013 01:54:18 -0400	[thread overview]
Message-ID: <1367214858.517e0b0a4dbc3@www.imp.polymtl.ca> (raw)

Mischief reported a crash with on arm with
winwatch when closing all windows excluding those
ignored through the -e flag. Cinap_lenrek
narrowed the problem down to a bug in the 5l
linker: it generates incorrect code when using
the conditional operator and dividing.
A minimal test case is the following:

term% cat foo.c
#include <u.h>
#include <libc.h>

void
main(void)
{
	int i, j, k;

	i = 1;
	j = 0;
	k = j <= 0 ? 1 : 2/i;
	print("%d\n", k);
	exits(nil);
}

The output of asm(main) in acid is:

acid: asm(main)
main 0x00001020	MOVW.W	R14,#-0x18(R13)
main+0x4 0x00001024	MOVW	$#0x1,R1
main+0x8 0x00001028	MOVW	$#0x0,R2
main+0xc 0x0000102c	CMP.S	$#0x0,R2
main+0x10 0x00001030	MOVW.LE	R1,R3
main+0x14 0x00001034	MOVW.GT	$#0x2,R3
main+0x18 0x00001038	SUB.GT	$#0x8,R13,R13
main+0x1c 0x0000103c	MOVW	R1,#0x4(R13)
main+0x20 0x00001040	MOVW	R3,R11
main+0x24 0x00001044	BL	_div
main+0x28 0x00001048	MOVW	R11,R3
main+0x2c 0x0000104c	ADD	$#0x8,R13,R13
main+0x30 0x00001050	MOVW	$#0x7080,R0
main+0x34 0x00001054	MOVW	R3,#0x8(R13)
main+0x38 0x00001058	BL	print
main+0x3c 0x0000105c	MOVW	$#0x0,R0
main+0x40 0x00001060	BL	exits
main+0x44 0x00001064	RET.P	#0x18(R13)

The problem is that the division at main+0x24
happens regardless of the comparison. The output
from the compiler is correct, however:

term% 5c -S foo.c
	TEXT	main+0(SB),0,$20
	MOVW	$1,R1
	MOVW	$0,R2
	CMP	$0,R2,
	MOVW.LE	R1,R3
	MOVW.GT	$2,R3
	DIV.GT	R1,R3,R3
	MOVW	$.string<>+0(SB),R0
	MOVW	R3,8(R13)
	BL	,print+0(SB)
	MOVW	$0,R0
	BL	,exits+0(SB)
	RET	,
	DATA	.string<>+0(SB)/8,$"%d\n\z\z\z\z\z"
	GLOBL	.string<>+0(SB),$8
	END	,

A (temporary) workaround for this is using an
if-else statement, for which the linker generates
correct code.

--
pap




             reply	other threads:[~2013-04-29  5:54 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-04-29  5:54 Paul Patience [this message]
2013-04-29 18:53 ` cinap_lenrek
2013-04-29 18:57   ` erik quanstrom
2013-04-29 19:06     ` cinap_lenrek
2013-04-29 19:08       ` erik quanstrom
2013-04-29 19:34   ` Richard Miller
2013-04-30 10:15     ` kernel panic
2013-04-30  9:07 ` zephyr.pellerin
2013-04-30 10:58   ` kernel panic

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1367214858.517e0b0a4dbc3@www.imp.polymtl.ca \
    --to=paul-a.patience@polymtl.ca \
    --cc=9fans@9fans.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).