public inbox for crossgcc@sourceware.org
 help / color / mirror / Atom feed
From: The Source <thesourcehim@gmail.com>
To: libc-help@sourceware.org, crossgcc@sourceware.org
Subject: Re: problem with __init_cpu_features()
Date: Thu, 19 May 2016 14:41:00 -0000	[thread overview]
Message-ID: <be327cad-d277-d5e9-230c-0ea6c33cbdc1@gmail.com> (raw)
In-Reply-To: <71a932f2-5e59-ed1e-910c-18b9c1e9089b@gmail.com>

19.05.2016 16:07, The Source пишет:
> 19.05.2016 11:49, The Source пишет:
>> 19.05.2016 10:37, The Source пишет:
>>> 18.05.2016 21:53, Carlos O'Donell пишет:
>>>> On Wed, May 18, 2016 at 10:55 AM, Carlos O'Donell
>>>> <carlos@systemhalted.org> wrote:
>>>>> On Wed, May 18, 2016 at 10:37 AM, The Source 
>>>>> <thesourcehim@gmail.com> wrote:
>>>>>> Hello, I'm trying to run my application on Cyrix Cx486SLC based 
>>>>>> system. But
>>>>>> application (built for i486 as well as glibc) crashes on illegal 
>>>>>> instruction
>>>>>> inside __init_cpu_features(). As far as I understand this CPU 
>>>>>> does not
>>>>>> support cpuid (/proc/cpuinfo reports cpuid level -1 and 
>>>>>> /dev/cpu/0/cpuid can
>>>>>> not be read with i/o error), so that might be the problem. Is 
>>>>>> there a way to
>>>>>> avoid using __cpuid()? My glibc version is 2.22
>>>>> You must use specific CFLAGS or CC to indicate you are building for a
>>>>> pre-i586 target, that will disable unconditional cpuid usage, and
>>>>> enable the checks required to verify cpuid is usable.
>>>>>
>>>>> If you are cross-compiling from an x86_64 box I would recommend
>>>>> CC="gcc -m32 -march=i486" instead to ensure that regardless of flags
>>>>> you build for i486.
>>>>>
>>>>> Just to check I kicked off a build for i486 locally to see if runs
>>>>> into any problems.
>>>> i486 builds just fine and I verified it calls __get_cpuid_max to check
>>>> for cpuid feature.
>>>>
>>>> Test results look good too.
>>>>
>>>> Cheers,
>>>> Carlos.
>>>
>>> Unfortunately, adding those flags to compiler for both libc and 
>>> application did not help. I found out that __init_cpu_features is 
>>> located inside libpthread somehow. So my application crashes when it 
>>> uses threads. Could there be some unwanted optimization inside pthread?
>>>
>> Hmm, I see some strange things in glibc config.log. It appears that 
>> some subconfigs are called with i686 despite main script is called 
>> with --with-cpu=i486. Trying to figure out if it's configure bug or 
>> crosstools-ng.
>>
>>
> I'm out of ideas. I tried to restrict gcc from building anything but 
> i486 (by passing the following flags to configure of both gcc and 
> glibc: --with-cpu=i486 --with-cpu-32=i486 --with-arch=i486 
> --with-arch-32=i486 --enable-targets=i486), but it did not help, I 
> still see those i686 successful tests in config.log and libpthread 
> still has __init_cpu_features. If anyone have any idea how to forbid 
> i686, I'm open for suggestions, thank you.
>
>
Some more findings:

1. I changed libc code slightly to avoid using cpuid inside pthread:

sysdeps/unix/sysv/linux/x86/elision-conf.c

Replaced all usage of HAS_RTM to 0:

  __elision_available = 0;//HAS_RTM;
#ifdef ENABLE_LOCK_ELISION
   __pthread_force_elision = __libc_enable_secure ? 0 : __elision_available;
#endif
   //if (!HAS_RTM)
     __elision_aconf.retry_try_xbegin = 0; /* Disable elision on rwlocks */

2. And crash has gone from libpthread. But poped up in different place:

libgcc_s: libgcc/config/i386/cpuinfo.c

__cpu_indicator_init function uses cpuid


So cpuid pops up here and there even if everything is built for i486. 
Isn't there a way to completely get rid of it?



--
For unsubscribe information see http://sourceware.org/lists.html#faq

  reply	other threads:[~2016-05-19 14:41 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <64f1a37c-8aa5-be67-eec1-88893ec0d1cf@gmail.com>
     [not found] ` <CAE2sS1iX_yH9mdhkfmPOu8SQyCLE5zqxPGW-hFkxKE4sjdHjcA@mail.gmail.com>
     [not found]   ` <CAE2sS1hvZCSHRSLBANZRnfeW3A7V8kJdvU6kuVEnC6H-P=641Q@mail.gmail.com>
     [not found]     ` <03f98607-1993-5dc3-5774-99fe01544886@gmail.com>
     [not found]       ` <8d1c4d18-0915-ac7a-25cb-f531a323b39c@gmail.com>
2016-05-19 13:08         ` The Source
2016-05-19 14:41           ` The Source [this message]
2016-05-19 16:44             ` Carlos O'Donell

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=be327cad-d277-d5e9-230c-0ea6c33cbdc1@gmail.com \
    --to=thesourcehim@gmail.com \
    --cc=crossgcc@sourceware.org \
    --cc=libc-help@sourceware.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
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).