search for: andrewf

Displaying 8 results from an estimated 8 matches for "andrewf".

Did you mean: andrew
2001 Dec 20
2
Supplemental group support in smb.conf
...have entries in /etc/passwd Does anyone know of a switch I can use so that forces the user logging in (if it is permitted to do so by /etc/group) to use the mp3users group? Regards Drew Foehn R&D Engineer Optima Computer Technology Phone: +61 (02) 9475 2719 Fax: +61 (02) 9475 2780 Email: <andrewf@optima.com.au> Web: <http://www.optima.com.au> -------------- next part -------------- HTML attachment scrubbed and removed
2011 Jul 26
0
[LLVMdev] LLVMdev Digest, Vol 85, Issue 54
...le with GEP on arrays in 2.8, until I upgraded and then the problem went away. -Peter Lawrence. On Jul 25, 2011, at 6:43 AM, llvmdev-request at cs.uiuc.edu wrote: > ------------------------------ > > Message: 7 > Date: Mon, 25 Jul 2011 13:44:50 +1200 > From: Andrew Ferguson <andrewf at idlearts.com> > Subject: [LLVMdev] function failing to run in Jit > To: llvm <llvmdev at cs.uiuc.edu> > Message-ID: <1311558290.2261.83.camel at andrew-desktop> > Content-Type: text/plain; charset="UTF-8" > > Is there any reason this generated code won&...
2011 Jul 09
1
[LLVMdev] getting and setting array indices c interface
I really can't figure out how to get and set array indices from the c interface. so to get an element I'm calling tindex = *fn\SymbolTable(*index\name) index = LLVMBuildLoad(builder,tindex,"index") arr = *fn\SymbolTable(*array\name) arrptr = LLVMBuildLoad(Builder,arr,"arrayptr") tmp = LLVMBuildGEP(Builder,arrptr,index,0,"ptr") ptr =
2011 Jun 18
1
[LLVMdev] loop only executes once
Hello, I'm trying to get to grips with the c interface of llvm intending to eventually develop a front end for Purebasic Though I've hit the wall already writing an iterative Fibonacci function. While I think the module dump looks ok it doesn't work for any input > 2 the function returns 2, the loop only executes once Hopefully someone can see what the problem is from the
2012 Dec 04
1
Periodicity of Weekly Zoo
Hi List, I have weekly sales observations for several products drawn via ODBC. Source data is available at https://www.dropbox.com/s/78vxae5ic8tnutf/asr.csv. This is retail sales data, so will contain seasonality and trend information. I expect to see 52 or 53 observations per year, each observation occuring on the same day of the week (Saturday). Ultimately I'm looking to feed these series
2011 Jul 18
0
[LLVMdev] llvmbuildmalloc/llvmbuildarraymalloc
I can't seem to use either LLVMBuildMalloc or LLVMBuildArrayMalloc without getting an IMA How am I supposed to create a global array? I can create locals no problem and global vars using LLVMAddGlobal though I'm stumped on the arrays. -- Andrew Ferguson
2011 Jul 25
3
[LLVMdev] function failing to run in Jit
Is there any reason this generated code won't run in the Jit? I've pretty much got everything else working for my front end which all runs fin in the Jit but I can't get global arrays to work. ; ModuleID = 'test' target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:32:32" target triple
2011 Jul 05
3
[LLVMdev] optimizer returning wrong variable?
I'm having some trouble trying to workout how to form functions from the c interface I thought I had it sorted but I guess I'm missing something or haven't understood the requirements, a case of trial and error and not really having a clue to start with! I've got binary ops, cmps, for loops, while loops working but then it hit the wall with a tail cmp loop. looking at the