Re: [Open64-devel] Building debian package

2011-05-25 Thread Sun Chan
Not exactly, the open64 tree was started with Intel ORC effort based on the open sourced SGI compiler. Pathscale source was merged in later on. The site has always reside in U of Delaware, and that was also start by Intel Research where Roy Ju and myself was in charge of that project. Sun 2011/5/2

Re: [Open64-devel] Building debian package

2011-05-25 Thread Christopher Bergström
On Thu, May 26, 2011 at 10:55 AM, Goswin von Brederlow wrote: > C Bergström writes: > >> On Thu, May 26, 2011 at 4:05 AM, David Coakley wrote: >>> Hi Goswin, >>> >>> Thanks for your interest in Open64.  These are both known problems >>> with the build system. >>> >>> I filed two bugs in the Open

Re: [Open64-devel] Building debian package

2011-05-25 Thread Goswin von Brederlow
C Bergström writes: > On Thu, May 26, 2011 at 4:05 AM, David Coakley wrote: >> Hi Goswin, >> >> Thanks for your interest in Open64.  These are both known problems >> with the build system. >> >> I filed two bugs in the Open64 Bugzilla database (bugs.open64.net): >> >> 779 : build in source direc

Re: [Open64-devel] Code review request for vectorizer bugfix patch

2011-05-25 Thread Ye, Mei
-L117, "WN_MAP_Set" seems to be redundant here. -L31/32, you changed the size of "vec_unroll_preg_created" and "vec_unroll_preg_store" but did not change the trip count in the loop that initializes these arrays. -L35, If the index variable can only be updated by factors: 1, 2, 4, 8, 16, then we

Re: [Open64-devel] Building debian package

2011-05-25 Thread C Bergström
On Thu, May 26, 2011 at 4:05 AM, David Coakley wrote: > Hi Goswin, > > Thanks for your interest in Open64.  These are both known problems > with the build system. > > I filed two bugs in the Open64 Bugzilla database (bugs.open64.net): > > 779 : build in source directory does not work > 780 : "make

Re: [Open64-devel] Building debian package

2011-05-25 Thread David Coakley
Hi Goswin, Thanks for your interest in Open64. These are both known problems with the build system. I filed two bugs in the Open64 Bugzilla database (bugs.open64.net): 779 : build in source directory does not work 780 : "make install" does not support DESTDIR In addition, I think the installed

[Open64-devel] Code review request for front-end bugfix patch

2011-05-25 Thread Mathew, Pallavi
Hi, Can a gatekeeper please review the patch below? Index: osprey-gcc-4.2.0/gcc/tree-inline.c === --- osprey-gcc-4.2.0/gcc/tree-inline.c (revision 3599) +++ osprey-gcc-4.2.0/gcc/tree-inline.c (working copy) @@ -2028,6 +2028,7

[Open64-devel] Code review request for vectorizer bugfix patch

2011-05-25 Thread Mathew, Pallavi
Hi, Can a gatekeeper please review the attached vectorizer patch? Sample testcases that fail at -O3: #include int a[1000], b[1000], c[1000]; void init (void) { int i; for (i = 0; i < 1000; i++) { a[i] = 1; b[i] = 2; c[i] = 3; } } int main (int argc, char** ar

[Open64-devel] r3628 - trunk/osprey/be/com

2011-05-25 Thread svn
Author: shihui Date: 2011-05-25 10:53:17 -0400 (Wed, 25 May 2011) New Revision: 3628 Modified: trunk/osprey/be/com/nystrom_alias_analyzer.cxx Log: Fix nystrom alias create alias tag issue. When creating alias tag, alias_tag points to blackhole need also points to all globals and local escape n

[Open64-devel] Building debian package

2011-05-25 Thread Goswin von Brederlow
Hi, I'm trying to build a debian package for open64 4.2.5-1 downloaded from amd with little success. First I tried building the source in-tree which screws up paths and fails to find libs for linking and the xgcc. If in-tree building isn't supported then the configure should refuse to run in-tree

Re: [Open64-devel] Code review request for nystrom non-ipa black hole handling issue.

2011-05-25 Thread Sun Chan
I am having problem downloading the patch file. Is it just me? Sun On Wed, May 25, 2011 at 4:45 PM, Hui Shi wrote: > Hi, All > > Can gatekeeper help review this patch? > > For attached test case, in foo, *p reference is not alias with a in nystrom > alias analysis. > The problem is when creating

Re: [Open64-devel] patch to enable CFLOW optimization for some EH regions

2011-05-25 Thread Jian-Xin Lai
Hi David, In general, this patch looks fine to me. I found some format and indent issues: * osprey/be/cg/cflow.cxx There are some indent issues. Space should be used for indent instead of tabstop. * osprey/be/vho/vho_lower.cxx The left bracket should not be on a new line. There are some indent i

[Open64-devel] Code review request for nystrom non-ipa black hole handling issue.

2011-05-25 Thread Hui Shi
Hi, All Can gatekeeper help review this patch? For attached test case, in foo, *p reference is not alias with a in nystrom alias analysis. The problem is when creating alias tag, alias_tag points to blackhole is not updated correctly. Alias dump before fix. I4INTCONST 2 (0x2) {cgnode 1} I4STI

[Open64-devel] r3627 - trunk/osprey/be/opt

2011-05-25 Thread svn
Author: ycwu Date: 2011-05-25 03:23:58 -0400 (Wed, 25 May 2011) New Revision: 3627 Modified: trunk/osprey/be/opt/opt_proactive.cxx Log: in IA64, _wn_to_val_num_map->Get_val((POINTER) wn_cond) return a *void type, it must convert to a type INTPTR before convert to IF_CMP_VAL(actually UINT32) re