Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
which -march for virtual CPU?
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Kernel & Hardware
View previous topic :: View next topic  
Author Message
nsoveiko
n00b
n00b


Joined: 04 Dec 2004
Posts: 53
Location: somewhere over the rainbow

PostPosted: Thu May 09, 2013 1:12 am    Post subject: which -march for virtual CPU? Reply with quote

i'm installing hardened/linux/amd64/no-multilib/selinux on a vps running under kvm/qemu. the cpu hardware as seen from the guest looks like this:
Code:
processor       : 0
vendor_id       : GenuineIntel
cpu family      : 6
model           : 2
model name      : QEMU Virtual CPU version 0.12.3
stepping        : 3
microcode       : 0x1
cpu MHz         : 2806.964
cache size      : 4096 KB
fpu             : yes
fpu_exception   : yes
cpuid level     : 4
wp              : yes
flags           : fpu de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pse36 clflush mmx fxsr sse sse2 syscall nx lm rep_good nopl pni cx16 popcnt hypervisor lahf_lm
bogomips        : 5613.92
clflush size    : 64
cache_alignment : 64
address sizes   : 40 bits physical, 48 bits virtual
power management:


which -march should i put in CFLAGS? i've tried -march=native only to get emerge failing with "compiler can not create executables" error.

right now there is no -march and as far as i understand from gcc manpage, this is equivalent to building code for the least common denominator, i.e. i386. this kinda sucks :(
Back to top
View user's profile Send private message
krinn
Watchman
Watchman


Joined: 02 May 2003
Posts: 7470

PostPosted: Thu May 09, 2013 2:10 am    Post subject: Reply with quote

you have pni flags, so i would say march=prescott should be safe, but march=pentium4 if you like a more conservative setting.
Back to top
View user's profile Send private message
nsoveiko
n00b
n00b


Joined: 04 Dec 2004
Posts: 53
Location: somewhere over the rainbow

PostPosted: Thu May 09, 2013 3:08 am    Post subject: Reply with quote

krinn wrote:
you have pni flags, so i would say march=prescott should be safe, but march=pentium4 if you like a more conservative setting.

waitaminute... i think both prescott and pentium4 are 32-bit arches. which means that on an x86_64 host without -march compiler would produce generic AMD64/EM64T code, not i386. right?

my main concern mostly is that produced code would be efficient with regards of running in a guest system with hardened kernel (grsecurity+pax+selinux). aren't there are some hardware features (nx? something else?) of the cpu that compiler should take advantage of?
Back to top
View user's profile Send private message
krinn
Watchman
Watchman


Joined: 02 May 2003
Posts: 7470

PostPosted: Thu May 09, 2013 3:27 am    Post subject: Reply with quote

there's also the -march=generic if you wish. and lm is the flag for 64bits capabilities.
And it would produce 32 or 64bits code, that depend on your arch, not the selected cpu.
Back to top
View user's profile Send private message
nlsa8z6zoz7lyih3ap
Guru
Guru


Joined: 25 Sep 2007
Posts: 388
Location: Canada

PostPosted: Thu May 09, 2013 3:53 am    Post subject: Reply with quote

Quote:
there's also the -march=generic if you wish. and lm is the flag for 64bits capabilities


Minor point, but for "generic" you want
Code:
 -mtune=generic
,

the point being that (to quote from the gcc man page)s:

Quote:
-mtune=cpu-type
Tune to cpu-type everything applicable about the generated code, except for the ABI and the set of available instructions.
The choices for cpu-type are:

generic
Produce code optimized for the most common IA32/AMD64/EM64T processors. If you know the CPU on which your code will
run, then you should use the corresponding -mtune option instead of -mtune=generic. But, if you do not know exactly
what CPU users of your application will have, then you should use this option.

As new processors are deployed in the marketplace, the behavior of this option will change. Therefore, if you upgrade
to a newer version of GCC, the code generated option will change to reflect the processors that were most common when
that version of GCC was released.

There is no -march=generic option because -march indicates the instruction set the compiler can use, and there is no
generic instruction set applicable to all processors. In contrast, -mtune indicates the processor (or, in this case,
collection of processors) for which the code is optimized.


I usually start out new installs with -mtune=generic as it is certain to run. It also produces pretty good code. As an example, I find that things will emerge (compile ) faster with this than with -march=ative. Another safe option is -mtune=native, as (while it is optimized for native) it is supposed to run for any cpu of that architecture.
Back to top
View user's profile Send private message
nsoveiko
n00b
n00b


Joined: 04 Dec 2004
Posts: 53
Location: somewhere over the rainbow

PostPosted: Thu May 09, 2013 4:06 am    Post subject: Reply with quote

krinn wrote:
there's also the -march=generic if you wish. and lm is the flag for 64bits capabilities.
And it would produce 32 or 64bits code, that depend on your arch, not the selected cpu.

actually, there's no -march=generic:
Code:
$ gcc -march=generic -O2 test.c -o test
test.c:1:0: error: generic CPU can be used only for -mtune= switch

man gcc wrote:
-march=cpu-type
Generate instructions for the machine type cpu-type. The choices
for cpu-type are the same as for -mtune. Moreover, specifying
-march=cpu-type implies -mtune=cpu-type.
...
-mtune=cpu-type
Tune to cpu-type everything applicable about the generated code,
except for the ABI and the set of available instructions. The
choices for cpu-type are:

generic
Produce code optimized for the most common IA32/AMD64/EM64T
processors. If you know the CPU on which your code will run,
then you should use the corresponding -mtune option instead of
-mtune=generic. But, if you do not know exactly what CPU users
of your application will have, then you should use this option.

As new processors are deployed in the marketplace, the behavior
of this option will change. Therefore, if you upgrade to a
newer version of GCC, the code generated option will change to
reflect the processors that were most common when that version
of GCC was released.

There is no -march=generic option because -march indicates the
instruction set the compiler can use, and there is no generic
instruction set applicable to all processors.
In contrast,
-mtune indicates the processor (or, in this case, collection of
processors) for which the code is optimized.

the question remains open: what an honest man shall put in make.conf for this virtual cpu? smoke test of
Code:
echo 'int main(){return 0;}' > test.c && gcc -O2 -march=nocona test.c -o test && ./test
passes for -march=nocona, core2, corei7, corei7-avx and core-avx-i. which means exactly diddlysquat as all of them support sse3, while this virtual thingy does not.

-march=pentium4 and -march=prescott both result in
Code:
test.c:1:0: error: CPU you selected does not support x86-64 instruction set


ps. with -march=native gcc thinks it's a pentium-m. bug?
Back to top
View user's profile Send private message
s4e8
Guru
Guru


Joined: 29 Jul 2006
Posts: 311

PostPosted: Thu May 09, 2013 4:29 am    Post subject: Reply with quote

for the best performance, you need to know the host cpu type. then use sth like:
-march=core2 -mnosse4.2 -mnosse4.1 -mnosse4 -mnossse3
Turn off all features VM don't support.
Back to top
View user's profile Send private message
nsoveiko
n00b
n00b


Joined: 04 Dec 2004
Posts: 53
Location: somewhere over the rainbow

PostPosted: Thu May 09, 2013 6:31 am    Post subject: Reply with quote

s4e8 wrote:
for the best performance, you need to know the host cpu type. then use sth like:
-march=core2 -mnosse4.2 -mnosse4.1 -mnosse4 -mnossse3
Turn off all features VM don't support.

unfortunately this is not an option. vps lives somewhere in the cloud and provider ain't telling.
Back to top
View user's profile Send private message
nsoveiko
n00b
n00b


Joined: 04 Dec 2004
Posts: 53
Location: somewhere over the rainbow

PostPosted: Thu May 09, 2013 3:13 pm    Post subject: Reply with quote

nsoveiko wrote:
the question remains open: what an honest man shall put in make.conf for this virtual cpu?

further investigation showed that if -march is omitted gcc (x86_64-pc-linux-gnu-4.6.3) implicitly uses undocumented -march=x86-64, which is probably its designation for the least common denominator for the platform. so, i'm leaving -march out of make.conf.

interesting to note that -mtune=native and -mtune=generic produce exactly the same result:
Code:
16:32 0 spook ~ # CFLAGS="-O2 -pipe -mtune=native" emerge -1 bash && sha1sum /bin/bash
[...]
552c624ba5a50ae7420adf5e7929079312cc2496  /bin/bash
16:35 0 spook ~ # CFLAGS="-O2 -pipe -mtune=generic" emerge -1 bash && sha1sum /bin/bash
[...]
552c624ba5a50ae7420adf5e7929079312cc2496  /bin/bash

which is different from -mtune being omitted:
Code:
16:30 0 spook ~ # cat /var/db/pkg/app-shells/bash-4.2_p45/CFLAGS
-O2 -pipe
16:31 0 spook ~ # sha1sum /bin/bash
ae701fef9986c4cfba8e5ff16bb65f9c32eba3e1  /bin/bash
Back to top
View user's profile Send private message
krinn
Watchman
Watchman


Joined: 02 May 2003
Posts: 7470

PostPosted: Thu May 09, 2013 3:28 pm    Post subject: Reply with quote

-mtune=generic allow generic optimizations, it should be a few only to remain generic, but still few optimize is better than none, and so produce different code.
And if gcc cannot find what cpu you have, going to generic isn't a bad choice in that case.
You better stick with generic than nothing.
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Kernel & Hardware All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum