Re: [Patch,Microblaze]: Added Break Handler Support

2014-05-17 Thread Michael Eager
On 05/14/14 02:24, Ajit Kumar Agarwal wrote: Based on the Feedback, Resubmitting the Updated Patch. [Patch, MicroBlaze] Add break Handler Support Added Break Handler support to incorporate the hardware and software break. The Break Handler routine will be generating the rtbd instruction. At th

RE: [Patch,Microblaze]: Added Break Handler Support

2014-05-14 Thread Ajit Kumar Agarwal
unc () __attribute__ ((break_handler)); +volatile int intr_occurred; + +int func () +{ + + /* { dg-final { scan-assembler "rtbd\tr(\[0-9]\|\[1-2]\[0-9]\|3\[0-1]),8" } } */ +intr_occurred += 1; +} +int main() +{ +/* { dg-final { scan-assembler "brki\tr16" } } */ +func()

Re: [Patch,Microblaze]: Added Break Handler Support

2014-05-13 Thread Michael Eager
On 05/13/14 14:42, Ajit Kumar Agarwal wrote: Hello Michael: Resubmitting the Patch with documentation for _break_handler in the config/microblaze/microblaze.h. Please put everything together in one place. When you resubmit a patch, include the ChangeLog. I'm not sure what you changed, but th

RE: [Patch,Microblaze]: Added Break Handler Support

2014-05-13 Thread Ajit Kumar Agarwal
ches@gcc.gnu.org Cc: Vinod Kathail; Vidhumouli Hunsigida; Nagaraju Mekala Subject: Re: [Patch,Microblaze]: Added Break Handler Support On 05/13/14 12:15, Ajit Kumar Agarwal wrote: > Hello Michael: > > Thanks for the comments on ChangeLog. Modified ChangeLog is inlined below. Please resubmit t

Re: [Patch,Microblaze]: Added Break Handler Support

2014-05-13 Thread Michael Eager
On 05/13/14 12:15, Ajit Kumar Agarwal wrote: Hello Michael: Thanks for the comments on ChangeLog. Modified ChangeLog is inlined below. Please resubmit the patch with documentation for _break_handler. -- Michael Eagerea...@eagercon.com 1960 Park Blvd., Palo Alto, CA 94306 650-325-8077

RE: [Patch,Microblaze]: Added Break Handler Support

2014-05-13 Thread Ajit Kumar Agarwal
2014 10:30 PM To: Ajit Kumar Agarwal; gcc-patches@gcc.gnu.org Cc: Vinod Kathail; Vidhumouli Hunsigida; Nagaraju Mekala Subject: Re: [Patch,Microblaze]: Added Break Handler Support On 05/13/14 02:14, Ajit Kumar Agarwal wrote: > Hello Michael: > > The following patch is to handle Software

Re: [Patch,Microblaze]: Added Break Handler Support

2014-05-13 Thread Michael Eager
On 05/13/14 02:14, Ajit Kumar Agarwal wrote: Hello Michael: The following patch is to handle Software and Hardware breaks in Microblaze Architecture. Deja GNU testcase does not have any regressions and the testcase attached passes through. Review comments are incorporated. Okay for trunk? J

RE: [Patch,Microblaze]: Added Break Handler Support

2014-05-13 Thread Ajit Kumar Agarwal
From 15dfaee8feef37430745d3dbc58f74bed876aabb Mon Sep 17 00:00:00 2001 From: Ajit Kumar Agarwal Date: Tue, 13 May 2014 13:25:52 +0530 Subject: [PATCH] [Patch, microblaze] Added Break Handler support Added Break Handler support to incorporate the hardware and software break. The Break Handler routine will be genera

Re: [Patch,Microblaze]: Added Break Handler Support

2014-05-06 Thread Michael Eager
On 05/06/14 06:10, Ajit Kumar Agarwal wrote: Hello All: Could you please review this patch. [PATCH] Break handler is used to support a normal hardware break. This is similar to interrupt_handler except that RTBD should be used instead of RTID. Changelog 2014-05-06 Nagaraju * gcc/config/mic