search for: ferad

Displaying 20 results from an estimated 32 matches for "ferad".

Did you mean: ferav
2007 Mar 28
5
[LLVMdev] gcc 4.1* carashes compiling llvm-gcc
...segmentation fault by reporting for memory leakages. Probably this is for the GCC's mailing list, but decided to ask if you know anything more about similar cases. By the way, I compile it without problems in mu personal 32bit architecture PC with the same version of compiler (4.1.2) Regards, Ferad -- Ferad Zyulkyarov Barcelona Supercomputing Center
2007 Mar 29
1
[LLVMdev] gcc 4.1* carashes compiling llvm-gcc
Hello, Ferad. > `.gnu.linkonce.t._ZN4llvm12SCEVExpander6expandEPNS_4SCEVE' referenced > in section `.rodata' of > /home/ferad/llvm/llvm-obj/Release/lib/libLLVMAnalysis.a(ScalarEvolutionExpander.o): > defined in discarded section > `.gnu.linkonce.t._ZN4llvm12SCEVExpander6expandEPNS_4SCEVE...
2007 Mar 29
0
[LLVMdev] gcc 4.1* carashes compiling llvm-gcc
...t. The machine has intel xeon CPU that is physically 32 bit but has 64 extension x86_64 (or something like that, I am not exactly sure). The error message that I get is bellow. I noticed also that the compilation command specifies "-m32" flag which probably shouldn't be passed. /home/ferad/llvm/llvm-gcc-obj/gcc/xgcc -B/home/ferad/llvm/llvm-gcc-obj/gcc/ -B/h ome/ferad/llvm/llvm-gcc/x86_64-unknown-linux-gnu/bin/ -B/home/ferad/llvm/llvm-gc c/x86_64-unknown-linux-gnu/lib/ -isystem /home/ferad/llvm/llvm-gcc/x86_64-unknow n-linux-gnu/include -isystem /home/fe...
2007 Apr 04
4
[LLVMdev] For a small help
...a call instruction that calls obj.testMethod(input) where obj is an instance of TestClass TestClass obj; // I have this declared prior int input = 1; // I have declared prior int output; // I have this declared prior too output = obj.testObject(input); // I want to create this instruction Thanks, Ferad -- Ferad Zyulkyarov Barcelona Supercomputing Center
2007 Mar 31
6
[LLVMdev] About implementing new intrinsic
...cific code (native) from the llvm bytecode? 3. Can I introduce an intrinsic that is actually a call to my function that implements the logic? I suppose it is possible but unfortunately I couldn't figure it out. For example, in GCC we can write an intrinsic that translates to a C code. Thanks, Ferad -- Ferad Zyulkyarov Barcelona Supercomputing Center
2007 Mar 31
4
[LLVMdev] About implementing new intrinsic
>> 3. Can I introduce an intrinsic that is actually a call to my function >> that implements the logic? I suppose it is possible but unfortunately >> I couldn't figure it out. For example, in GCC we can write an >> intrinsic that translates to a C code. > > As part of PR1297 (http://llvm.org/PR1297) I am about to make this > happen. There are certain kinds of
2007 Mar 24
3
[LLVMdev] Compilation problems
...ote them). When I compile it with gcc4.2.0 I get an error that cc1 requires libstdc++.so.6 GLIBCXX_3.4.9 version Are the installation instruction up-to-date in the packages? Please, may you give me the correct combinations of tools that give me successfully compiled and linked binary set. Thanks, Ferad -- Ferad Zyulkyarov Barcelona Supercomputing Center
2007 Apr 04
0
[LLVMdev] For a small help
Hi Ferad, On Wed, 2007-04-04 at 19:48 +0200, Ferad Zyulkyarov wrote: > Hi, > > I want to ask for a small help for creating an instruction that calls > e member method of an object. I suppose that this is not a headache > but I am impatient in learning :) I would be very thankful if you can...
2007 Mar 29
1
[LLVMdev] gcc 4.1* carashes compiling llvm-gcc
Yes, you I read that in the docs. Do you have a preferred gcc version that you would suggest me to work best. Unfortunately, version 3.4.2 that you suggest in your docs fails in compilation too. Thanks, Ferad -- Ferad Zyulkyarov Barcelona Supercomputing Center
2007 Mar 29
0
[LLVMdev] gcc 4.1* carashes compiling llvm-gcc
GCC 4.1.x series is known not to compile LLVM. Its is well documented, avoid GCC 4.1. Aaron ----- Original Message ----- From: "Ferad Zyulkyarov" <feradz at gmail.com> To: <LLVMdev at cs.uiuc.edu> Sent: Wednesday, March 28, 2007 10:38 PM Subject: [LLVMdev] gcc 4.1* carashes compiling llvm-gcc > Hi, > > I tried to compile the GCC front end of LLVM in a 16 CPU SMP machine > with 64bit intel xeon CPUs....
2007 Apr 02
2
[LLVMdev] About implementing new intrinsic
...ic in llvm that will denote a > > parallel section within a function. > > Can you explain what you mean by a parallel section within a function? I want to see how OpenMP's parallel fit in the LLVM architecture, is it easy to implement or not. GCC is too heavy platform to work on.. Ferad -- Ferad Zyulkyarov Barcelona Supercomputing Center
2007 Mar 31
2
[LLVMdev] About implementing new intrinsic
...or code generator cannot > > > handle the intrinsic natively. For example, the company I work for has > > > > IntrinsicLowering already does this. It lets you lower intrinsics to > > arbitrary LLVM calls, including calls to external functions. > > I think that when Ferad said "in GCC we can write an intrinsic that > translates to a C code" meant that the intrinsic would be expanded to > have a body much as I'm planning on doing in the this PR1297. To my > understanding, IntrinsicLowering doesn't support expansion to a function > with a...
2007 Mar 31
0
[LLVMdev] About implementing new intrinsic
...rated for them if a target or code generator cannot > > handle the intrinsic natively. For example, the company I work for has > > IntrinsicLowering already does this. It lets you lower intrinsics to > arbitrary LLVM calls, including calls to external functions. I think that when Ferad said "in GCC we can write an intrinsic that translates to a C code" meant that the intrinsic would be expanded to have a body much as I'm planning on doing in the this PR1297. To my understanding, IntrinsicLowering doesn't support expansion to a function with a body. Or, am I jus...
2007 Mar 29
2
[LLVMdev] gcc 4.1* carashes compiling llvm-gcc
Ferad Zyulkyarov wrote: > By the way. I will use the opportunity to ask you again :) I tried to > compile with gcc 4.0.4. It successfully compile LLVM but fails > compiling LLVM's gcc front end. The problem is architectural 32 and 64 > bit. The machine has intel xeon CPU that is physicall...
2007 Mar 29
0
[LLVMdev] gcc 4.1* carashes compiling llvm-gcc
> i had the same errors. adding "--disable-multilib" to configure solved > the problem. but i guess this is not a general solution. Thanks, that worked. Probably it would be good if this issue is included in the readme file for gcc-front end. Regards, Ferad -- Ferad Zyulkyarov Barcelona Supercomputing Center
2007 Mar 31
0
[LLVMdev] About implementing new intrinsic
...i, > IntrinsicLowering already does this. It lets you lower intrinsics to > arbitrary LLVM calls, including calls to external functions. I will try to do that in IntrinscLowering class. May you point me an intrinsic implementation that lowers to an llvm call. Thanks for advices ans hints, Ferad -- Ferad Zyulkyarov Barcelona Supercomputing Center
2007 Mar 31
1
[LLVMdev] About implementing new intrinsic
On Sat, 31 Mar 2007, Ferad Zyulkyarov wrote: >> IntrinsicLowering already does this. It lets you lower intrinsics to >> arbitrary LLVM calls, including calls to external functions. > > I will try to do that in IntrinscLowering class. May you point me an > intrinsic implementation that lowers to an llvm...
2007 Apr 02
0
[LLVMdev] About implementing new intrinsic
On Mar 31, 2007, at 8:34 AM, Ferad Zyulkyarov wrote: > I want to implement a new intrinsic in llvm that will denote a > parallel section within a function. Can you explain what you mean by a parallel section within a function? --Vikram
2007 Apr 02
0
[LLVMdev] About implementing new intrinsic
On Mon, 2 Apr 2007, Ferad Zyulkyarov wrote: >>> I want to implement a new intrinsic in llvm that will denote a >>> parallel section within a function. >> Can you explain what you mean by a parallel section within a function? > I want to see how OpenMP's parallel fit in the LLVM architecture, i...
2007 Apr 12
0
[LLVMdev] About an incident with my e-mail account
...m LLVM mail list originating from my mail account. Today I was acknowledged by the moderators of other mail lists for posting inappropriate material CCed also to people who I know. I suppose that my e-mail account was cracked and now I am tracing the logs. Once again, sorry for this inconvenience. Ferad -- Ferad Zyulkyarov Barcelona Supercomputing Center c/ Gran Capita 2-4, Nexus I, 204 08034 Barcelona - SPAIN e-mail: ferad.zyulkyarov at bsc.es tel: +34 934054294 fax: +34 934137721