grub-devel.gnu.org archive mirror
 help / color / mirror / Atom feed
* On MIPS clang default to different arch than GNU
@ 2015-07-19  7:33 Andrei Borzenkov
  2015-07-22  0:05 ` Vladimir 'φ-coder/phcoder' Serbinenko
  0 siblings, 1 reply; 3+ messages in thread
From: Andrei Borzenkov @ 2015-07-19  7:33 UTC (permalink / raw
  To: grub-devel

clang -cc1 version 3.8.0 based upon LLVM 3.8.0svn default target x86_64-unknown-linux-gnu
ignoring nonexistent directory "/include"
#include "..." search starts here:
#include <...> search starts here:
 /usr/local/include
 /home/bor/build/clang/bin/../lib/clang/3.8.0/include
 /usr/include
End of search list.
 "/usr/bin/mips-suse-linux-as" -march mips32r2 -mabi 32 -call_nonpic -EB -msoft-float -KPIC -o conftest /tmp/foo-3da0d2.s
bor@opensuse:~/src/llvm/tools/clang> file conftest 
conftest: ELF 32-bit MSB relocatable, MIPS, MIPS32 rel2 version 1 (SYSV), not stripped

While for the same file GAS creates

bor@opensuse:~/build/grub> mips-suse-linux-as -v asm-tests/mips.S 
GNU assembler version 2.24.0 (mips-suse-linux) using BFD version (GNU Binutils; openSUSE 13.2) 2.24.0.20140403-6.1
bor@opensuse:~/build/grub> file a.out 
a.out: ELF 32-bit MSB relocatable, MIPS, MIPS-I version 1 (SYSV), not stripped
bor@opensuse:~/build/grub> 

(using -integrated-as does not change it - arch is still the same).

Not sure if it matters.



^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: On MIPS clang default to different arch than GNU
  2015-07-19  7:33 On MIPS clang default to different arch than GNU Andrei Borzenkov
@ 2015-07-22  0:05 ` Vladimir 'φ-coder/phcoder' Serbinenko
  2015-07-22  3:24   ` Andrei Borzenkov
  0 siblings, 1 reply; 3+ messages in thread
From: Vladimir 'φ-coder/phcoder' Serbinenko @ 2015-07-22  0:05 UTC (permalink / raw
  To: grub-devel

[-- Attachment #1: Type: text/plain, Size: 1749 bytes --]

On 19.07.2015 09:33, Andrei Borzenkov wrote:
> clang -cc1 version 3.8.0 based upon LLVM 3.8.0svn default target x86_64-unknown-linux-gnu
> ignoring nonexistent directory "/include"
> #include "..." search starts here:
> #include <...> search starts here:
>  /usr/local/include
>  /home/bor/build/clang/bin/../lib/clang/3.8.0/include
>  /usr/include
> End of search list.
>  "/usr/bin/mips-suse-linux-as" -march mips32r2 -mabi 32 -call_nonpic -EB -msoft-float -KPIC -o conftest /tmp/foo-3da0d2.s
> bor@opensuse:~/src/llvm/tools/clang> file conftest 
> conftest: ELF 32-bit MSB relocatable, MIPS, MIPS32 rel2 version 1 (SYSV), not stripped
> 
> While for the same file GAS creates
> 
> bor@opensuse:~/build/grub> mips-suse-linux-as -v asm-tests/mips.S 
> GNU assembler version 2.24.0 (mips-suse-linux) using BFD version (GNU Binutils; openSUSE 13.2) 2.24.0.20140403-6.1
> bor@opensuse:~/build/grub> file a.out 
> a.out: ELF 32-bit MSB relocatable, MIPS, MIPS-I version 1 (SYSV), not stripped
> bor@opensuse:~/build/grub> 
> 
> (using -integrated-as does not change it - arch is still the same).
> 
> Not sure if it matters.
> 
> 
I think it doesn't. It's just on the level of flags. I don't think that
it really generates any non-mips1 instructions unless specifically asked
for. Just it fails to reflect this in flags in resulting binary.
Unlike in the case of x86, on mips there is no need to enable
instruction subsets, so if compiler generates instructions not supported
by target, then it's misconfigured and it's likely bigger problem than
just GRUB.
> _______________________________________________
> Grub-devel mailing list
> Grub-devel@gnu.org
> https://lists.gnu.org/mailman/listinfo/grub-devel
> 



[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 213 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: On MIPS clang default to different arch than GNU
  2015-07-22  0:05 ` Vladimir 'φ-coder/phcoder' Serbinenko
@ 2015-07-22  3:24   ` Andrei Borzenkov
  0 siblings, 0 replies; 3+ messages in thread
From: Andrei Borzenkov @ 2015-07-22  3:24 UTC (permalink / raw
  To: Vladimir 'φ-coder/phcoder' Serbinenko; +Cc: grub-devel

[-- Attachment #1: Type: text/plain, Size: 1990 bytes --]

В Wed, 22 Jul 2015 02:05:29 +0200
Vladimir 'φ-coder/phcoder' Serbinenko <phcoder@gmail.com> пишет:

> On 19.07.2015 09:33, Andrei Borzenkov wrote:
> > clang -cc1 version 3.8.0 based upon LLVM 3.8.0svn default target x86_64-unknown-linux-gnu
> > ignoring nonexistent directory "/include"
> > #include "..." search starts here:
> > #include <...> search starts here:
> >  /usr/local/include
> >  /home/bor/build/clang/bin/../lib/clang/3.8.0/include
> >  /usr/include
> > End of search list.
> >  "/usr/bin/mips-suse-linux-as" -march mips32r2 -mabi 32 -call_nonpic -EB -msoft-float -KPIC -o conftest /tmp/foo-3da0d2.s
> > bor@opensuse:~/src/llvm/tools/clang> file conftest 
> > conftest: ELF 32-bit MSB relocatable, MIPS, MIPS32 rel2 version 1 (SYSV), not stripped
> > 
> > While for the same file GAS creates
> > 
> > bor@opensuse:~/build/grub> mips-suse-linux-as -v asm-tests/mips.S 
> > GNU assembler version 2.24.0 (mips-suse-linux) using BFD version (GNU Binutils; openSUSE 13.2) 2.24.0.20140403-6.1
> > bor@opensuse:~/build/grub> file a.out 
> > a.out: ELF 32-bit MSB relocatable, MIPS, MIPS-I version 1 (SYSV), not stripped
> > bor@opensuse:~/build/grub> 
> > 
> > (using -integrated-as does not change it - arch is still the same).
> > 
> > Not sure if it matters.
> > 
> > 
> I think it doesn't. It's just on the level of flags. I don't think that
> it really generates any non-mips1 instructions unless specifically asked
> for.

Does not -march mips32r2 does it?


>      Just it fails to reflect this in flags in resulting binary.
> Unlike in the case of x86, on mips there is no need to enable
> instruction subsets, so if compiler generates instructions not supported
> by target, then it's misconfigured and it's likely bigger problem than
> just GRUB.
> > _______________________________________________
> > Grub-devel mailing list
> > Grub-devel@gnu.org
> > https://lists.gnu.org/mailman/listinfo/grub-devel
> > 
> 
> 


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 181 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-07-22  3:24 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-19  7:33 On MIPS clang default to different arch than GNU Andrei Borzenkov
2015-07-22  0:05 ` Vladimir 'φ-coder/phcoder' Serbinenko
2015-07-22  3:24   ` Andrei Borzenkov

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).