Displaying 20 results from an estimated 2000 matches similar to: "[LLVMdev] CFG"
2004 Apr 05
2
[LLVMdev] Jello
Ok, my spec95 installation is completely different, so I'll try and
figure out what options are needed for each benchmark separately by
looking at the code that creates the makefiles.
Meanwhile, I had another question - is there a way in llvm to look at
the SSA form of a program and then modify the SSA, and then recompile
this modified SSA ? If so, is there any documentation regarding
2004 Apr 01
3
[LLVMdev] 134.perl
Hi Chris,
It did compile when I gave that option. But it gives me an error
when I try to run the executable on an Intel machine.
-----
1513158 is not prime.
Exception handler needed, but not enabled. Recompile program with
-enable-correct-eh-support.
lli[0x8429bb4]
lli[0x8429dc0]
/lib/libc.so.6[0x40128c18]
/lib/libc.so.6(abort+0x161)[0x40129cb5]
[0x403da922]
../../../i386: line 4: 27606
2004 Apr 01
2
[LLVMdev] spec95
Ok, I am trying to configure llvm to compile benchmarks as suggested by
John, and after running configure, I get the following error while
running make in the /test/Programs/External/SPEC
----
make[1]: Entering directory
`/home/llvm/llvm/test/Programs/External/SPEC/CINT95'
make[2]: Entering directory
`/home/llvm/llvm/test/Programs/External/SPEC/CINT95/099.go'
2004 Apr 05
1
[LLVMdev] SSA
Sorry for the confusion, Misha seemed to answer my question in one way.
It'll be easier if I break down my question into parts -
- Is it possible to see the SSA form generated for my program ?
- Now, if this form is readable, is it in assembly code format ?
We want to look at the SSA form for any program and see if we can make
some changes ourselves to that format so that its reflected in
2004 Apr 01
0
[LLVMdev] spec95
Vinay S. Belgaumkar wrote:
> Ok, I am trying to configure llvm to compile benchmarks as suggested by
> John, and after running configure, I get the following error while
> running make in the /test/Programs/External/SPEC
Hmmm. It sounds like the Makefiles are not creating the gccld command
line correctly.
Some questions:
1) Can you send us your Makefile.config?
2) Can you tell us
2004 Apr 01
0
[LLVMdev] 134.perl
Vinay,
On Thu, Apr 01, 2004 at 02:27:53PM -0500, Vinay S. Belgaumkar wrote:
> It did compile when I gave that option. But it gives me an error
> when I try to run the executable on an Intel machine.
> -----
> 1513158 is not prime.
> Exception handler needed, but not enabled. Recompile program with
> -enable-correct-eh-support.
[snip]
This error message is from LLVM, not the
2012 Oct 03
2
[LLVMdev] LoopInfo analysis in CallGraphSCCPass
Hi,
Is it possible to recreate the LoopInfo analysis in my pass?
Thanks ,
Vinay
On Wed, Oct 3, 2012 at 2:34 PM, Chandler Carruth <chandlerc at google.com>wrote:
> This is not currently supported by the LLVM pass manager system. It is a
> serious deficiency that I (and others) would like to address, but it
> requires significant changes to the pass manager and analysis
2012 Oct 03
0
[LLVMdev] LoopInfo analysis in CallGraphSCCPass
On Wed, Oct 3, 2012 at 2:33 AM, vinay m <mvinay05041990 at gmail.com> wrote:
> Hi,
> Is it possible to recreate the LoopInfo analysis in my pass?
>
No. You need your pass to be a FunctionPass in order to use the LoopInfo
(and associated) analyses.
>
> Thanks ,
> Vinay
>
> On Wed, Oct 3, 2012 at 2:34 PM, Chandler Carruth <chandlerc at google.com>wrote:
2010 Feb 05
2
Segmentation Fault while compiling and installing openssh-3.9p1
I am trying to compile and install openssh-3.9p1 (with openssl-0.9.7j)
on my personal dev env to have a play. I get the below mentioned
segmentation fault message.
---------
Generating public/private rsa1 key pair.
/bin/sh: line 1: 10901 Segmentation fault ./ssh-keygen -t rsa1 -f
/home/vinay/var/vinay_ssh/etc/ssh_host_key -N ""
Generating public/private dsa key pair.
/bin/sh: line
2014 Mar 27
3
arm64 support
I have used the patch to build opus 1.1. Although I have not tried the
latest git master, will try that. Will that work for armv7, armv7s and
arm64?
On Wed, Mar 26, 2014 at 11:01 PM, Martin Storsj? <martin at martin.st> wrote:
> On Wed, 26 Mar 2014, Jonathan Lennox wrote:
>
>
>> On Mar 26, 2014, at 7:55 AM, Peter Robinson <pbrobinson at gmail.com> wrote:
>>
2004 Mar 31
1
[LLVMdev] 134.perl
Hello,
I am trying to compile 134.perl - the spec95 benchmark using LLVM and I
am getting the following error message -
--------------------------------------------
34.perl/symbol/dolist.c:1786: warning: "struct tm" declared inside parameter
list
134.perl/symbol/dolist.c:1786: warning: its scope is only this definition or
declaration, which is probably not what you want
2014 Mar 27
1
arm64 support
I am trying to generate the config and makefiles using ./autogen.sh on the
mac but get the following error:
Can't exec "aclocal": No such file or directory at
/usr/local/share/autoconf/Autom4te/FileUtils.pm line 326.
autoreconf: failed to run aclocal: No such file or directory
How do I build opus from source? Am I missing some step?
On Thu, Mar 27, 2014 at 11:29 AM, Vinay Nair
2014 Mar 26
2
arm64 support
On Mar 26, 2014, at 7:55 AM, Peter Robinson <pbrobinson at gmail.com> wrote:
> On Wed, Mar 26, 2014 at 11:45 AM, Vinay <vinay.nair at novanet.net> wrote:
>> Hi,
>>
>> I wanted to build opus along with PJSIP for iOS for the architecture arm64.
>> I wanted to know if opus supports arm64?
>
> The opus code builds fine on ARM64 on Linux at least,
2014 Mar 26
2
arm64 support
Hi,
I wanted to build opus along with PJSIP for iOS for the architecture arm64. I wanted to know if opus supports arm64?
--
Vinay Nair
vinay.nair at novanet.net
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.xiph.org/pipermail/opus/attachments/20140326/e617665a/attachment.htm
2012 Oct 03
0
[LLVMdev] LoopInfo analysis in CallGraphSCCPass
This is not currently supported by the LLVM pass manager system. It is a
serious deficiency that I (and others) would like to address, but it
requires significant changes to the pass manager and analysis dependency
system.
I have some dim hope of working on fixing this limitation, but it won't be
quick. ;]
On Wed, Oct 3, 2012 at 1:49 AM, vinay m <mvinay05041990 at gmail.com> wrote:
2014 Aug 26
1
Bug#759384: xen: Lack of copyright entry for Vinay Sajip
Source: xen
Version: Lack of copyright entry for VInay Sajip
Severity: normal
Dear Maintainer,
I noticed that d/copyright lacks information for Vinay Sajip and his permissive
license.
You can see for which files it should be included:
http://codesearch.debian.net/search?prev=0&q=the+name+of+Vinay+Sajip&skip=99,
e.g. tools/python/logging/logging-0.4.9.2/* and
2012 Oct 03
2
[LLVMdev] LoopInfo analysis in CallGraphSCCPass
Hi,
How to get the LoopInfo analysis in a CallGraphSCCPass ?
Thanks,
Vinay
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20121003/bf60da98/attachment.html>
2007 Mar 14
2
Memory Allocation to St
Can anyone tell me why the size of st is defined as:
st = (EncState*)speex_alloc(sizeof(EncState)+8000*sizeof(float));
Reference: nb_encode_init function.
Specifically, I would like to know why 8000 floats are allocated?
Thanks and regards,
Vinay
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2014 Mar 26
2
arm64 support
Hi,
I wanted to build opus along with PJSIP for iOS for the architecture arm64. I wanted to know if opus supports arm64?
--
Vinay Nair
vinay.nair at novanet.net
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.xiph.org/pipermail/opus/attachments/20140326/8576b64e/attachment-0001.htm
2014 Sep 29
2
[LLVMdev] Alias Analysis across functions
Hi,
I am trying to get the alias info for the following code. The alias analysis returns "MayAlias" for arrays "A" and "B" in both the functions instead of "NoAlias". What passes should I run in opt before the alias analysis pass to get the accurate result?
Example:
//Note: static and called by func() only.
static int sum(int *A, int *B) {
int i = 0,