WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-devel

Re: [Xen-devel] assembly language use in xen

To: "Keir Fraser" <keir.fraser@xxxxxxxxxxxxx>, xen-devel@xxxxxxxxxxxxxxxxxxx
Subject: Re: [Xen-devel] assembly language use in xen
From: "Furquan Shaikh" <furquan.m.shaikh@xxxxxxxxx>
Date: Wed, 24 Dec 2008 18:24:55 +0530
Cc:
Delivery-date: Wed, 24 Dec 2008 04:55:25 -0800
Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:in-reply-to:mime-version:content-type:references; bh=LyRR9edL/Gi1iCvpQBRPtDtjXyR0ksuVgtxA4aY5pMI=; b=wAYrU8GTWiwvo2Bb8jS2lBeaQHSKl6gfSDbcWfYRZGo6uErwg3CbqZCFllp1MbhNTE XSW7zbjcLKMw2Jz9Uk1LmBkrOmnIx364jPkZO8aH/utI1Ai84uK0JqwsSwbseZmE0pGP UrS4CKs8kwZnOKb5wrxn+C9Crf2teuPhjqp20=
Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:in-reply-to:mime-version :content-type:references; b=j6+JHoMIr5JwGc8eWGGOjvPCm/S648Fr63V7UAAHEbtYz6gmuioHmDV6/SkuDJH9bG wm/R+BUUhQqSbfhflUlo+/Q1hhgatQfGnT5n4mGplsU0xKcXj/1G0UUHfg3wNj3iVexu Mi1YIBQJm5TKjpEd4C5p0RL4w0h7XvWZCPDPo=
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
In-reply-to: <C577D1A5.208AA%keir.fraser@xxxxxxxxxxxxx>
List-help: <mailto:xen-devel-request@lists.xensource.com?subject=help>
List-id: Xen developer discussion <xen-devel.lists.xensource.com>
List-post: <mailto:xen-devel@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=unsubscribe>
References: <b8ef0f060812240329m1409e7fbn55b696e4676d6d56@xxxxxxxxxxxxxx> <C577D1A5.208AA%keir.fraser@xxxxxxxxxxxxx>
Sender: xen-devel-bounces@xxxxxxxxxxxxxxxxxxx
Hello Keir,
Thanks a lot for the information.
I am having a tough time understanding the interrupt handling part in Xen as AT&T syntax is new for me.
Could you please give me a brief overview of the flow of control when control is transferred to Xen after interrupt?
Your guidance would be a lot of help for me.

Thanking you

Furquan

On Wed, Dec 24, 2008 at 5:16 PM, Keir Fraser <keir.fraser@xxxxxxxxxxxxx> wrote:
On 24/12/2008 11:29, "Furquan Shaikh" <furquan.m.shaikh@xxxxxxxxx> wrote:

Is .text 1 the same as .section???

.text 1 occurs in entry.S

Please tell me what it means?

It specifies a numeric subsection. It's still part of the text section, but it will presumably be placed after the normal part of the text section. It's being used here to place rarely used code out of line. It also means that straight-line flow of control skips to the next instance of .previous, without needing an extra JMP instruction. Tricky code. :-)

 -- Keir

_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
<Prev in Thread] Current Thread [Next in Thread>