[Bug target/50705] Wrong assembly generated for bitwise AND for ppc 476

2011-12-26 Thread santoshkumar.a at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50705 SK santoshkumar.a at gmail dot com changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED

[Bug c/50186] New: junk at end of line: `1

2011-08-25 Thread santoshkumar.a at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50186 Bug #: 50186 Summary: junk at end of line: `1 Classification: Unclassified Product: gcc Version: 4.6.1 Status: UNCONFIRMED Severity: blocker Priority: P3

[Bug c/50186] junk at end of line: `1

2011-08-25 Thread santoshkumar.a at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50186 --- Comment #1 from SK santoshkumar.a at gmail dot com 2011-08-25 10:33:22 UTC --- Created attachment 25099 -- http://gcc.gnu.org/bugzilla/attachment.cgi?id=25099 build errors build errors

[Bug c/50186] junk at end of line: `1

2011-08-25 Thread santoshkumar.a at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50186 --- Comment #3 from SK santoshkumar.a at gmail dot com 2011-08-25 11:53:59 UTC --- Created attachment 25101 -- http://gcc.gnu.org/bugzilla/attachment.cgi?id=25101 do_mounts_rd.s assembly file

[Bug c/50186] junk at end of line: `1

2011-08-25 Thread santoshkumar.a at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50186 --- Comment #2 from SK santoshkumar.a at gmail dot com 2011-08-25 11:53:17 UTC --- Created attachment 25100 -- http://gcc.gnu.org/bugzilla/attachment.cgi?id=25100 intermidate file intermidate file do_mounts_rd.i

[Bug c/50186] junk at end of line: `1

2011-08-25 Thread santoshkumar.a at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50186 --- Comment #4 from SK santoshkumar.a at gmail dot com 2011-08-25 11:59:11 UTC --- Created attachment 25102 -- http://gcc.gnu.org/bugzilla/attachment.cgi?id=25102 cross compile script cross compile script

[Bug c/50186] junk at end of line: `1

2011-08-25 Thread santoshkumar.a at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50186 --- Comment #5 from SK santoshkumar.a at gmail dot com 2011-08-25 12:02:09 UTC --- at line 665 in do_mounts_rd.s mfcr 27,1 is a wrong instruction generated. As per Power ISA™ Version 2.05 mfcr take only one argument i.e mfcr RT. Let me know if i

[Bug c/50186] junk at end of line: `1

2011-08-25 Thread santoshkumar.a at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50186 --- Comment #9 from SK santoshkumar.a at gmail dot com 2011-08-25 15:01:26 UTC --- Just for checking i changed the instruction in .s file from mfcr 27,1 to mfcr 27 and used the assembler to generate the binary there was no error reported. Now i

[Bug target/50186] junk at end of line: `1

2011-08-26 Thread santoshkumar.a at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50186 SK santoshkumar.a at gmail dot com changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED

[Bug c/50705] New: Wrong assembly generated in ppc 476

2011-10-12 Thread santoshkumar.a at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50705 Bug #: 50705 Summary: Wrong assembly generated in ppc 476 Classification: Unclassified Product: gcc Version: 4.6.1 Status: UNCONFIRMED Severity: blocker Priority: P3

[Bug c/50705] Wrong assembly generated in ppc 476

2011-10-12 Thread santoshkumar.a at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50705 SK santoshkumar.a at gmail dot com changed: What|Removed |Added URL||https

[Bug target/50705] Wrong assembly generated in ppc 476

2011-10-12 Thread santoshkumar.a at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50705 --- Comment #3 from SK santoshkumar.a at gmail dot com 2011-10-13 05:41:20 UTC --- Created attachment 25481 -- http://gcc.gnu.org/bugzilla/attachment.cgi?id=25481 system map, objdump, source code As the earlier file was 14MB with large

[Bug target/50705] Wrong assembly generated in ppc 476

2011-10-13 Thread santoshkumar.a at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50705 --- Comment #4 from SK santoshkumar.a at gmail dot com 2011-10-13 10:46:32 UTC --- Please download the full dump(14MB)from ftp0.lsil.com by following below commands login: user: ftp, password: anonymous, cd pub binary # get

[Bug target/50705] Wrong assembly generated in ppc 476

2011-10-13 Thread santoshkumar.a at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50705 --- Comment #5 from SK santoshkumar.a at gmail dot com 2011-10-14 03:29:48 UTC --- Wrong assembly being is generated in most of the bitwise and's conditions that have pass are failing and those that have to fail are passing.

[Bug target/50705] Wrong assembly generated in ppc 476

2011-10-13 Thread santoshkumar.a at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50705 --- Comment #8 from SK santoshkumar.a at gmail dot com 2011-10-14 04:48:13 UTC --- Yes the HW engine that is present on the controller works in Little endian therefore we need linux to work in LE on PPC. I changed Binutils GLIBC GCC GCC

[Bug target/50705] Wrong assembly generated for bitwise AND for ppc 476

2011-10-14 Thread santoshkumar.a at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50705 --- Comment #9 from SK santoshkumar.a at gmail dot com 2011-10-14 16:26:38 UTC --- Below is another scenario:: test_bit called with args PG_slab = 7; page-flags = 0xc0; test_bit(PG_slab, page-flags) returns value 0. This is used by PageSlab

[Bug target/50705] Wrong assembly generated for bitwise AND for ppc 476

2011-10-17 Thread santoshkumar.a at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50705 --- Comment #10 from SK santoshkumar.a at gmail dot com 2011-10-17 17:16:36 UTC --- Please let me know if I have to add or remove any GCC options while configuring it or while compiling Linux. Any comment which can help me move further

[Bug target/50705] Wrong assembly generated for bitwise AND for ppc 476

2011-10-19 Thread santoshkumar.a at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50705 --- Comment #11 from SK santoshkumar.a at gmail dot com 2011-10-19 14:22:16 UTC --- FILE:: /mm/page_alloc.c:5363 flags - 0x3 HASH_EARLY - 0x1 CODE:: if (flags HASH_EARLY) Assembly: 70307c44: fe 0f e0 54 rlwinm r0,r7,1,31,31 r7