public inbox for cgen@sourceware.org
 help / color / mirror / Atom feed
From: Ben Elliston <bje@redhat.com>
To: "姹 缈" <dam_wang@hotmail.com>
Cc: cgen@sources.redhat.com
Subject: Re: Question about cpu description
Date: Tue, 03 Sep 2002 07:38:00 -0000	[thread overview]
Message-ID: <15732.51552.667078.3400@tooth.toronto.redhat.com> (raw)
In-Reply-To: <F122OBN8xK2efVXGmZS0000b16c@hotmail.com>

Hi.

>>>>> "dam" == dam wang <gb2312> writes:

  dam> How do CGEN know what the vitual cpu would do when one Ins was excuted. I 
  dam> mean, when I write the description file, nothing that describe the action 
  dam> of each Ins(at least I haven't found it till after I read the exited m32r 
  dam> description file.) is included.

The CPU description includes a semantics definition that describes
that the instruction does when it is executed.  For example, from the
M32R description:

	(dni addv3 "addv3"
	     ()
	     "addv3 $dr,$sr,$simm16"
	     (+ OP1_8 OP2_8 dr sr simm16)
	     (parallel ()
		       (set dr (add sr simm16))
		       (set condbit (add-oflag sr simm16 (const 0))))
	     ()
	)

So, `dr' is set to the sum of `sr' and `simm16' and the condbit is set
accordingly.  The instruction semantics are defined using a register
transfer language similar to GCC -- you can read more about it in the
CGEN manual.  There is an entire chapter dedicated to CGEN RTL.

Ben

           reply	other threads:[~2002-09-03 14:38 UTC|newest]

Thread overview: expand[flat|nested]  mbox.gz  Atom feed
 [parent not found: <F122OBN8xK2efVXGmZS0000b16c@hotmail.com>]

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=15732.51552.667078.3400@tooth.toronto.redhat.com \
    --to=bje@redhat.com \
    --cc=cgen@sources.redhat.com \
    --cc=dam_wang@hotmail.com \
    /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 read-only IMAP folder(s) and NNTP newsgroup(s).