From: Sergei Epiphanov <serpiph@nikiet.ru>
To: ALT Linux Sisyphus discussions <sisyphus@lists.altlinux.org>
Subject: Re: [sisyphus] Сборка FORTRAN-программ
Date: Mon, 27 Jun 2011 14:00:16 +0400
Message-ID: <201106271400.16222.serpiph@nikiet.ru> (raw)
In-Reply-To: <web-948092340@cgp.dol.ru>
В сообщении от 27 июня 2011 13:27:46 автор Andrey Liakhovets написал:
> Предположительно, компилятор молча игнорирует некорректный "DO I=400",
> после чего "END DO" он действительно не ожидает :)
Странный игнор, не так ли? Бага в компиляторе? А с '-ffree-form' ругань есть.
Кстати, я сейчас вывел в ассемблер ('gfortran -S -o test.S -ffixed-form
test.for') оба варианта:
1)
PROGRAM test
INTEGER(4) I
DO 1 I=400
1 WRITE(*,*)I
END PROGRAM
2)
PROGRAM test
INTEGER(4) I
DO I=1,400
WRITE(*,*)I
END DO
END PROGRAM
Разница огромная. Очень интересно взглянуть на diff полученных текстов. Во-
первых, нет обработчика цикла после WRITE (как Вы правльно заметили). Но вот
эти команды меня поставили в ступор:
movl $0x43c80000, %eax
movl %eax, -356(%ebp)
movl $.LC1, -344(%ebp)
где:
.LC1 - указатель на строку 'test.for'
Для сравнения у второй программы это звучит так:
movl $1, -356(%ebp)
movl -356(%ebp), %eax
cmpl $400, %eax
jg .L1
jmp .L3
где:
.L1 - пропуск цикла
.L3 - точка начала цикла
"Шок - это по-нашему".
--
С уважением, Епифанов Сергей
next prev parent reply other threads:[~2011-06-27 10:00 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-06-27 7:18 Sergei Epiphanov
2011-06-27 7:38 ` vx8400
2011-06-27 7:53 ` vx8400
2011-06-27 8:19 ` Andrey Liakhovets
2011-06-27 9:14 ` Sergei Epiphanov
2011-06-27 9:11 ` Sergei Epiphanov
2011-06-27 9:27 ` Andrey Liakhovets
2011-06-27 10:00 ` Sergei Epiphanov [this message]
2011-06-27 10:11 ` Andrey Liakhovets
2011-06-27 8:49 ` vx8400
2011-06-27 9:30 ` Sergei Epiphanov
2011-06-27 10:05 ` Andrey Liakhovets
2011-06-27 9:49 ` Sergey Vlasov
2011-06-27 10:06 ` Sergei Epiphanov
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=201106271400.16222.serpiph@nikiet.ru \
--to=serpiph@nikiet.ru \
--cc=sisyphus@lists.altlinux.org \
/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
ALT Linux Sisyphus discussions
This inbox may be cloned and mirrored by anyone:
git clone --mirror http://lore.altlinux.org/sisyphus/0 sisyphus/git/0.git
# If you have public-inbox 1.1+ installed, you may
# initialize and index your mirror using the following commands:
public-inbox-init -V2 sisyphus sisyphus/ http://lore.altlinux.org/sisyphus \
sisyphus@altlinux.ru sisyphus@altlinux.org sisyphus@lists.altlinux.org sisyphus@lists.altlinux.ru sisyphus@lists.altlinux.com sisyphus@linuxteam.iplabs.ru sisyphus@list.linux-os.ru
public-inbox-index sisyphus
Example config snippet for mirrors.
Newsgroup available over NNTP:
nntp://lore.altlinux.org/org.altlinux.lists.sisyphus
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git