similar to: [LLVMdev] Unknown or runtime type in function definition?

Displaying 20 results from an estimated 9000 matches similar to: "[LLVMdev] Unknown or runtime type in function definition?"

2010 Apr 09
0
[LLVMdev] Unknown or runtime type in function definition?
On Fri, Apr 9, 2010 at 2:11 PM, Bueno, Denis <denbuen at sandia.gov> wrote: > Hello all, > > I'm trying to understand a bit of LLVM IR syntax.  I have a function > definition which looks like this in IR: > >    define void @foo(%1* ptr) { ... > > The C code for foo has a definition that looks like: > >    typedef struct bar_struct bar; >    ... Definition
2010 Apr 10
2
[LLVMdev] Unknown or runtime type in function definition?
On Fri, Apr 9, 2010 at 3:11 PM, Eli Friedman <eli.friedman at gmail.com> wrote: > On Fri, Apr 9, 2010 at 2:11 PM, Bueno, Denis <denbuen at sandia.gov> wrote: >> Hello all, >> >> I'm trying to understand a bit of LLVM IR syntax.  I have a function >> definition which looks like this in IR: >> >>    define void @foo(%1* ptr) { ... >>
2010 Aug 10
3
[LLVMdev] sqlite3 crashing jit
Hello, I'm trying to compile sqlite3 using llvm-gcc, then run it with lli. I've attached a Makefile and a main.c that simply invokes sqlite3_initialize(). You'll need to download sqlite3 (it was too big to attach) and copy main.c and the Makefile into the directory where sqlite3.c is [Link: sqlite-amalgamation-3_7_0_1.zip <http://www.sqlite.org/sqlite-amalgamation-3_7_0_1.zip>
2010 Aug 10
0
[LLVMdev] sqlite3 crashing jit
On Tue, 10 Aug 2010 13:42:05 -0600 "Bueno, Denis" <denbuen at sandia.gov> wrote: > Hello, > http://www.opendylan.org/~housel/bcdump.pl > I'm trying to compile sqlite3 using llvm-gcc, then run it with lli. sqlite3 is part of LLVM testsuite, so it shouldn't crash ... > This builds with the exact same flags as above, but with -emit-llvm > added. It should
2010 Aug 10
4
[LLVMdev] sqlite3 crashing jit
On Tue, Aug 10, 2010 at 1:35 PM, Eric Christopher <echristo at apple.com> wrote: > > On Aug 10, 2010, at 1:30 PM, Bueno, Denis wrote: > >> Running lli under gdb gives >> >> Program received signal SIGSEGV, Segmentation fault. >> [address] in ?? () >> (gdb) bt >> #0 [address] in ?? () >> Cannot access memory at address [address2] >>
2010 Aug 11
0
[LLVMdev] sqlite3 crashing jit
On Aug 10, 2010, at 5:09 PM, Reid Kleckner wrote: No, he's just on linux x86_64 using JITed frames with no unwind information. That was the whole point of adding the support here: http://llvm.org/docs/DebuggingJITedCode.html See if you can get a stack trace using the directions there. I had followed the directions on that page with llvm 2.6 to no avail. The Makefile I posted does use
2008 Jul 25
1
transcript a matlab code in R
Dear R-users, I am trying to translate a matlab code for calculating the Local Whittle estimator in time series with long memory originally written by Shimotsu and available free in his webpage ( http://www.econ.queensu.ca/pub/faculty/shimotsu/ ) The Matlab code is ======================================================================================= function[r] = whittle(d,x,m) % WHITTLE.M
2010 Apr 11
0
[LLVMdev] Unknown or runtime type in function definition?
> > > In that context, %1 refers to an unnamed struct; whether %1 refers to > > a type or a value is determined by the context. Short example which > > should help: > > FWIW, I personally regard this as a bug not a feature. It doesn't make > the IR any easier to read. > > I also find it very confusing. It would be nice if different prefixes were used for
2010 Aug 10
2
[LLVMdev] sqlite3 crashing jit
I'm trying to get a stacktrace, so I can't provide one. I'm trying llvm 2.7 right now. I'm hoping there's a 2.6 workaround, though. On 8/10/10 2:01 PM, "Török Edwin" <edwintorok at gmail.com> wrote: On Tue, 10 Aug 2010 13:42:05 -0600 "Bueno, Denis" <denbuen at sandia.gov> wrote: > Hello, > http://www.opendylan.org/~housel/bcdump.pl
2004 Sep 10
2
ERROR: mismatch in decoded data, verify FAILED!
> > There have been reports of -9 using huge amounts of memory. -9 is > > really > > theoretical, but people always seem to want to try the max setting. > > Anyway, > > that's not an excuse but figuring out why -9 is using so much > > memory is lower > > on my list than other stuff. -8 should get within 0.01% of -9 and > > is pretty > >
2010 Dec 24
1
reducing smbd memory footprint
I'm currently compiling Samba 3.3.X with the following: CFLAGS = -g -Wall -O2 ./configure --cache-file=./config.cache \ --with-fhs \ --enable-shared \ --prefix=/usr \ --sysconfdir=/etc \ --libdir=/usr/lib/samba \ --with-privatedir=/etc/samba \ --with-piddir=/var/run/samba \
2004 May 02
1
SEGV on FreeBSD 4.8-STABLE with 2.6.2
I'm getting a SEGV on a FreeBSD 4.8-STABLE box. The client is Solaris 9/SPARC. Both boxes run 2.6.2. The command I'm running is: $ rsync -arHRv --numeric-ids --delete --exclude=/opt/dist/cdrom \ [paths] [server]:[path] If I whittle down what appears in [paths], then it works. $ gdb rsync rsync.core gdb> bt #0 0x280faf0d in strncmp () from /usr/lib/libc.so.4 #1 0x7 in ?? () #2
2009 Jan 19
1
R bug or ghostscript bug or my bug?
Dear R developers: The following R program produces a pdf file that does not survive ghostscript distillation correctly. The undistilled version is at http://welch.econ.brown.edu/temp/try.PDF while the distilled version is at http://welch.econ.brown.edu/temp/try.pdf . When previewed, the points are wrong in the distilled .pdf version, but only in one of the two points invokations (huh?) . The
2008 Oct 02
2
[LLVMdev] Making Sense of ISel DAG Output
On Thursday 02 October 2008 15:37, Dan Gohman wrote: > I highly recommend the viewGraph() output. -view-isel-dags and > -view-sched-dags show the graph before and after selection, > respectively. See the CodeGen docs where I recently added some > text describing all these options. Yeah, I've been using those but they're real hard to understand with big graphs. > Also,
2008 Jan 17
1
[LLVMdev] LiveInterval Questions
On Thursday 17 January 2008 13:03, Evan Cheng wrote: > > So why does the live range extend throughout the entire basic block? > > > > %reg1055 doesn't appear anywhere else in the program so it shouldn't > > be > > live-in to the block. > > It could be a bug. Can you get me a test case? I'll see if I can whittle it down. It's a pretty huge
2010 Nov 10
2
Installing Packages
Hi.. I am using R as a user, another group built everything I am using. But I need to install some packages and my only internet access is via a web-proxy. I have hunted though the docs and I'm not finding anything on setting a proxy in the package install command. Any help would be really appreciated. Thanks Sue Susan Caskey International Biological Threat Reduction Sandia National
2003 Oct 27
1
Cross Realm Support
I am doing some testing in Samba 3.0. I am using security=ADS. I am wondering if Samba has any support for cross-realm trust. For example, I have one AD forest SANDIA.GOV that has trust with SANDIA2.GOV. I have the Samba server on linux.sandia2.gov. I have a local user account on linux.sandia2.gov called user. When I log into a win2k client as SANDIA2.GOV/user and connect, it works fine.
2007 Jan 08
1
fSeries Package
Dear All; I have used fbmSim to simulate a fbm sequence, however, when I tried to estimate the Hurst effect, none of the nine procedures gave me an answer close enough to the real value, which is 0.5 (n=1000). So, would you please advice, 1. which is the best method to estimate the H among the 9 mehods, R/S, higuchi or Whittle? 2. how to choose the levels (default=50), minnpts, cutoff values or
2008 Apr 30
5
get_peername - start_server vs. connect
Hi, On windows, get_peername works both with connections obtained via start_server, and connections obtained via connect. On linux, get_peername seems to only work with connections obtained via start_server. (I''m using svn HEAD.) I''m wondering which is the intended behavior? (I realize get_peername is less useful for connections obtained via connect, since one should already
2006 Sep 16
1
regarding chaos
hi all, I have a simple question that does power spectral analysis related to capacity dimension, information dimension, lyapunov exponent, hurst exponent. If yes then please show me the way. I am newbie in the world of chaos. Sayonara With Smile & With Warm Regards :-) G a u r a v Y a d a v Senior Executive Officer, Economic Research & Surveillance Department, Clearing