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] PIC register 'bx' clobbered in 'asm' -xen-unstable build

To: "Jerone Young" <jyoung5@xxxxxxxxxx>, "David F Barrera" <dfbp@xxxxxxxxxx>
Subject: RE: [Xen-devel] PIC register 'bx' clobbered in 'asm' -xen-unstable build error
From: "Ian Pratt" <m+Ian.Pratt@xxxxxxxxxxxx>
Date: Sat, 26 Feb 2005 19:54:12 -0000
Cc: "xen-devel" <xen-devel@xxxxxxxxxxxxxxxxxxxxx>, <ian.pratt@xxxxxxxxxxxx>
Delivery-date: Sat, 26 Feb 2005 19:58:24 +0000
Envelope-to: xen+James.Bulpin@xxxxxxxxxxxx
List-archive: <http://sourceforge.net/mailarchive/forum.php?forum=xen-devel>
List-help: <mailto:xen-devel-request@lists.sourceforge.net?subject=help>
List-id: List for Xen developers <xen-devel.lists.sourceforge.net>
List-post: <mailto:xen-devel@lists.sourceforge.net>
List-subscribe: <https://lists.sourceforge.net/lists/listinfo/xen-devel>, <mailto:xen-devel-request@lists.sourceforge.net?subject=subscribe>
List-unsubscribe: <https://lists.sourceforge.net/lists/listinfo/xen-devel>, <mailto:xen-devel-request@lists.sourceforge.net?subject=unsubscribe>
Sender: xen-devel-admin@xxxxxxxxxxxxxxxxxxxxx
Thread-index: AcUbgK2b5G6y5mjZTfiibPsxFxpBCQAvBM/g
Thread-topic: [Xen-devel] PIC register 'bx' clobbered in 'asm' -xen-unstable build error
 

> The big question is why are you clobbering bx , dx registers on get
> cpuid:

cpuid stores its output in eax,ebx,ecx,edx.

Ian

>       _asm__ __volatile__ ("cpuid"
>                           : "=a" (eax), "=c" (ecx)
>                           : "0" (1)
>                           : "bx", "dx");
> 
> You can change this to:
>       
>               _asm__ __volatile__ ("cpuid"
>                           : "=a" (eax), "=c" (ecx)
>                           : "0" (1)
>                         );
> 
> But I am not sure why this is there?
> 
> 
>       
> On Fri, 2005-02-25 at 15:02 -0600, David F Barrera wrote:
> > I am trying to build xen-unstable on an x86 box, but it is 
> failing with 
> > the following message:
> > 
> > gcc  -DPIC -m32 -march=i686 -Wall -Werror -O3 
> -fno-strict-aliasing -I 
> > ../../tools/libxutil -I. -Wp,-MD,.xc_rrobin.opic.d -fPIC -c -o 
> > xc_rrobin.opic xc_rrobin.c
> > gcc  -DPIC -m32 -march=i686 -Wall -Werror -O3 
> -fno-strict-aliasing -I 
> > ../../tools/libxutil -I. -Wp,-MD,.xc_vmx_build.opic.d -fPIC -c -o 
> > xc_vmx_build.opic xc_vmx_build.c
> > xc_vmx_build.c: In function `vmx_identify':
> > xc_vmx_build.c:468: error: PIC register `bx' clobbered in `asm'
> > make[4]: *** [xc_vmx_build.opic] Error 1
> > make[4]: Leaving directory `/tmp/xen-unstable/tools/libxc'
> > make[3]: *** [all] Error 2
> > make[3]: Leaving directory `/tmp/xen-unstable/tools/libxc'
> > make[2]: *** [install] Error 2
> > make[2]: Leaving directory `/tmp/xen-unstable/tools'
> > make[1]: *** [tools] Error 2
> > make[1]: Leaving directory `/tmp/xen-unstable'
> > make: *** [world] Error 2
> > make world failed
> > 
> > I have built xen-unstable on this machine before, so I 
> don't believe it 
> > is a setup problem.  Has anyone else observed this?
> > 
> > David F Barrera
> > 
> > 
> > 
> > -------------------------------------------------------
> > SF email is sponsored by - The IT Product Guide
> > Read honest & candid reviews on hundreds of IT Products 
> from real users.
> > Discover which products truly live up to the hype. Start 
> reading now.
> > http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
> > _______________________________________________
> > Xen-devel mailing list
> > Xen-devel@xxxxxxxxxxxxxxxxxxxxx
> > https://lists.sourceforge.net/lists/listinfo/xen-devel
> > 
> -- 
> Jerone Young
> Open Virtualization
> IBM Linux Technology Center
> jyoung5@xxxxxxxxxx
> 512-838-1157 (T/L: 678-1157)
> 
> 
> 
> -------------------------------------------------------
> SF email is sponsored by - The IT Product Guide
> Read honest & candid reviews on hundreds of IT Products from 
> real users.
> Discover which products truly live up to the hype. Start reading now.
> http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@xxxxxxxxxxxxxxxxxxxxx
> https://lists.sourceforge.net/lists/listinfo/xen-devel
> 


-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_ide95&alloc_id396&op=click
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxxxx
https://lists.sourceforge.net/lists/listinfo/xen-devel

<Prev in Thread] Current Thread [Next in Thread>
  • RE: [Xen-devel] PIC register 'bx' clobbered in 'asm' -xen-unstable build error, Ian Pratt <=