On 03/06/2018 09:28 AM, Richard Biener wrote:
> On Tue, Mar 6, 2018 at 1:00 PM, Prathamesh Kulkarni
> wrote:
>> Hi,
>> For the following test-case,
>>
>> int a;
>>
>> __attribute__((noinline))
>> static void foo()
>> {
>> a = 3;
>> }
>>
>> int main()
>> {
>> a = 4;
>> foo ();
>> return a;
ht still be suitable.
http://www.dyninst.org/sites/default/files/downloads/w2009/legendre-binrewriter.pdf
-Will
>
> On Fri, Oct 23, 2015 at 10:32 AM, William Cohen wrote:
>> On 10/23/2015 01:37 AM, Yasser Shalabi wrote:
>>> Hello,
>>>
>>> I am new to the GCC
On 10/23/2015 01:37 AM, Yasser Shalabi wrote:
> Hello,
>
> I am new to the GCC code. I want to make a simple modification to the
> back end. I want to add a debug exception (int3) to be generated
> before any instance of certain x86 instructions.
>
> I tried to modify gcc/config/i386/i386.md by a
Jim Wilson wrote:
Rohit Arul Raj wrote:
1. The function mcount: While building with native gcc, the mcount
function is defined in glibc. Is the same mcount function available in
newlib? or is it that we have to define it in our back-end as SPARC
does (gmon-sol2.c).
Did you try looking at newli
jayaraj wrote:
Hi,
I want to get the profiling data of an application in linux. Now I am
using -pg options of gcc for generating the profile data. then used
gprof for generating profiles. Here I am getting only in terms of
seconds. But I want in millisecond resolution. can anybody help me.
Tha