search for: sabre

Displaying 20 results from an estimated 4787 matches for "sabre".

2004 Jun 23
3
[LLVMdev] IRC: Discussion About Upgrades To Bugzilla
I thought this conversation was worth saving. DannyB who did wonderful things with GCC's use of bugzilla has offered the same capability to LLVM. Thanks, Danny! <DannyB> sabre: BTW, if you need any of the bugzilla fun i have implemented for gcc, let me know [22:47] <sabre> Cool, what kinds of things do you have? [22:47] <DannyB> Besides the triplet stuff, i changed some of the workflow, added some email related features (incoming email handling, changed outgo...
2009 Aug 31
2
[LLVMdev] spec tests + PWD=
Hi David, It looks like you added the PWD= magic to Makefile.spec. It is preventing me from running bugpoint on the desktop, with errors like this: /Users/sabre/llvm/projects/llvm-test/External/SPEC/Sandbox.sh bugpoint- train Output/176.gcc.bugpoint-opt /Users/sabre/cvs/benchmarks/ speccpu2000/benchspec/CINT2000/176.gcc/data/train/input/ \ PWD=/Volumes/Data/Users/sabre/llvm/projects/llvm-test/External/ SPEC/CINT2000/176.gcc /Users/sabre/llvm/Debug/...
2009 Sep 01
0
[LLVMdev] spec tests + PWD=
...t-llvm.bc -std-compile-opts $ (OPTPASSES) \ David On Aug 30, 2009, at 8:25 PM, Chris Lattner wrote: > Hi David, > > It looks like you added the PWD= magic to Makefile.spec. It is > preventing me from running bugpoint on the desktop, with errors like > this: > > /Users/sabre/llvm/projects/llvm-test/External/SPEC/Sandbox.sh > bugpoint-train Output/176.gcc.bugpoint-opt /Users/sabre/cvs/ > benchmarks/speccpu2000/benchspec/CINT2000/176.gcc/data/train/input/ \ > PWD=/Volumes/Data/Users/sabre/llvm/projects/llvm-test/External/ > SPEC/CINT2000/176.gcc /Use...
2007 Aug 10
2
[LLVMdev] c const
This certainly doesn't occur in gcc mainline. In fact, I improved the error message, and added a error test to gcc just yesterday. On 8/9/07, Chris Lattner <sabre at nondot.org> wrote: > On Wed, 8 Aug 2007, Nikhil A. Patil wrote: > > I think I found a bug. I don't know if it's in upstream gcc or llvm-gcc4. > > Looks like a bug, please file a bugzilla entry. > > -Chris > > > int func() > > { > > const in...
2018 Oct 22
2
Calendar function ?
On Mon, 22 Oct 2018 19:48:17 +0200 Tom Sommer <mail at tomsommer.dk> wrote: > On 2018-10-22 12:56, Mar?a Arrea wrote: > > > We use sabredav for caldav+cardav and roundcube+agendav for nice > > web ui :) > > > Is Sabre still maintained? http://sabre.io/ says 2018 is most recent version -- In modern fantasy (literary or governmental), killing people is the usual solution to the so-called war between good and evil...
2007 Aug 10
0
[LLVMdev] c const
...t, I improved the error message, and added a error test to gcc > just yesterday. Yep, clang reports: t.c:4:12: error: read-only variable is not assignable arr[0] = 1; ~~~~~~ ^ 1 diagnostic generated. so this is specific to llvm-gcc somehow. -Chris > On 8/9/07, Chris Lattner <sabre at nondot.org> wrote: >> On Wed, 8 Aug 2007, Nikhil A. Patil wrote: >>> I think I found a bug. I don't know if it's in upstream gcc or llvm-gcc4. >> >> Looks like a bug, please file a bugzilla entry. >> >> -Chris >> >>> int func() &gt...
2005 Apr 25
4
[LLVMdev] trig language-like code generator generator
...code generator generators. i am evaluating many possbile code generation libraries. at present i give me preferrence to "Prop": http://www.cs.nyu.edu/leunga/www/prop.html and it's portable too. are there any other good library you could recommend? On 4/25/05, Chris Lattner <sabre at nondot.org> wrote: > On Mon, 25 Apr 2005, Tzu-Chien Chiu wrote: > > http://portal.acm.org/citation.cfm?id=75700 > > Oh, tWig. :) Yes, tree pattern matching is exactly the direction we are > heading. We are slowly making the code generators more and more > automaticall...
2005 Mar 12
1
[LLVMdev] GCC 3.4.1 and conflicting types for 'malloc' (2)
I commented this line and it is compiling now: extern void *malloc ARGS((unsigned)); I hope that will not cause a different kind of problem. What it is zalloc used for? Thanks --- Chris Lattner <sabre at nondot.org> wrote: > On Sat, 12 Mar 2005, xavier wrote: > > > It seems that this happened before but I do not know the details: > > http://llvm.cs.uiuc.edu/testresults/SparcV9/2004-12-07.html > > Yup, this patch should fix it: > http://mail.cs.uiuc.edu/pipermail/l...
2005 Apr 24
2
[LLVMdev] trig language-like code generator generator
http://portal.acm.org/citation.cfm?id=75700 On 4/25/05, Chris Lattner <sabre at nondot.org> wrote: > On Sun, 24 Apr 2005, Tzu-Chien Chiu wrote: > > i'd like to know if there is any plan or existing work to add a Aho's > > trig language like code generator generator? > > Trig is a code generator generator? Is there any documentation for it &...
2007 Aug 08
2
[LLVMdev] c const
...ction 'func': main.c:4: error: assignment of read-only location The difference disappears when arr[0] is replaced by *arr. (I tried the above with gcc 4.1.2, 3.4.6, 4.0.3. (I don't have access to 4.0.1, off which llvm-gcc seems to be derived.) nikhil On 08/08/2007, Chris Lattner <sabre at nondot.org> wrote: > This property isn't preserved on the llvm ir, because const can always > be cast away. If you want mod information, then I suggest using the > aliasanalysis interface to get mod ref info for a call. > > -Chris > > http://nondot.org/sabre > htt...
2007 Jul 03
2
[LLVMdev] Question about Constant Expressions
How hard would it be to compile this pass and add it to the passes that opt can run? Is this something I should be able to do relatively quickly? What was the name of the file(s) that implemented the pass? Thanks, Ben On 7/3/07, Chris Lattner <sabre at nondot.org> wrote: > On Tue, 3 Jul 2007, Anton Korobeynikov wrote: > >> We used to have a 'lowerconstantexpr' pass in transforms/scalar. I don't > >> know how to see deleted files in svn though. > > They should be "seen" in the certain revisio...
2007 May 29
2
[LLVMdev] Developer Meeting videos
...if someone would write a blurb >> describing an overview of the meeting, etc at the top. >> >> Also, Scott, please let me know when it's ok to add your video to the >> page. >> >> Enjoy, >> >> -Chris >> >> -- >> http://nondot.org/sabre/ >> http://llvm.org/ >> _______________________________________________ >> LLVM Developers mailing list >> LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu >> http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev > > -Chris -- http://nondot.org/sabre/ http:/...
2008 Mar 19
3
[LLVMdev] 16 bit integers
...lvm doesn't currently support any 16 bit targets > (but could with a little work). So you are out of luck unless > you are willing to work on it. Note that if you only care about C/ObjC (not C++, fortran, ada, etc) that clang may be a good option for you. -Chris -- http://nondot.org/sabre/ http://llvm.org/
2005 Mar 15
2
[LLVMdev] Dynamic Creation of a simple program
...d, but StructTy (a PATypeHolder) is // kept up-to-date. NewSTy = StructTy.get(); ========================= It gives this error in the last line: invalid conversion from `llvm::Type*' to `llvm::StructType*' How can I create such a recursive DS? Thanks! --- Chris Lattner <sabre at nondot.org> wrote: > On Mon, 14 Mar 2005, xavier wrote: > > > Could please somebody give some guidelines? Maybe I can compile a > > program with the LLVM and then load the bytecode in memory and finally > > dump some kind of text/XML representation which I will use...
2005 Apr 25
1
[LLVMdev] trig language-like code generator generator
...like dead code elimination, machine idioms and instruction combining. at present these low-level optimization passes/modules must be implementation ad hoc for each target. there is no low-level target-independent optimization passes. please correct me if i am wrong. On 4/25/05, Chris Lattner <sabre at nondot.org> wrote: > On Mon, 25 Apr 2005, Tzu-Chien Chiu wrote: > > i'd like to know what progress you guys have made (not on cvs?). > > Everything is in CVS. Noone is currently working on automating the > pattern matching generator process yet. Before doing that, the...
2008 Apr 27
8
[LLVMdev] Two new 'llvmnotes'
Hi all, For anyone interested, I posted two new ideas for changes to the LLVM IR. The first is basically a cleanup, the second is a major new feature: Eliminating the 'Void' Type: http://nondot.org/sabre/LLVMNotes/EliminatingVoid.txt Aggregates as First Class Values: http://nondot.org/sabre/LLVMNotes/FirstClassAggregates.txt Thanks to Dan Gohman for convincing me that aggregates as first class values is really possible, I think it is a great idea. -Chris
2005 Apr 25
0
[LLVMdev] trig language-like code generator generator
...ode the patterns for each instruction in the .td files, which are parsed by the tablegen tool. Tablegen then parses these files and emits various chunks of the code generator. It would emit the instruction selector from the patterns in the .td file. -Chris > On 4/25/05, Chris Lattner <sabre at nondot.org> wrote: >> On Mon, 25 Apr 2005, Tzu-Chien Chiu wrote: >>> http://portal.acm.org/citation.cfm?id=75700 >> >> Oh, tWig. :) Yes, tree pattern matching is exactly the direction we are >> heading. We are slowly making the code generators more and more...
2007 Aug 09
0
[LLVMdev] c const
...signment of read-only location > > The difference disappears when arr[0] is replaced by *arr. > > (I tried the above with gcc 4.1.2, 3.4.6, 4.0.3. (I don't have access > to 4.0.1, off which llvm-gcc seems to be derived.) > > nikhil > > On 08/08/2007, Chris Lattner <sabre at nondot.org> wrote: >> This property isn't preserved on the llvm ir, because const can always >> be cast away. If you want mod information, then I suggest using the >> aliasanalysis interface to get mod ref info for a call. >> >> -Chris >> >> http...
2005 Apr 24
0
[LLVMdev] trig language-like code generator generator
...tion in the .td files, then build use an optimal code generator generator to emit the matching code. This processes of increased automation has been happening slowly over the years, but we've made good progress. Are you interested in helping out? -Chris > On 4/25/05, Chris Lattner <sabre at nondot.org> wrote: >> On Sun, 24 Apr 2005, Tzu-Chien Chiu wrote: >>> i'd like to know if there is any plan or existing work to add a Aho's >>> trig language like code generator generator? >> >> Trig is a code generator generator? Is there any docum...
2007 Feb 27
2
[LLVMdev] another problem with function arguments aligment
I think, we must move function arguments lowering from frontend to LLVM core. This lowering is generating machine dependent bytecode. See http://llvm.org/bugs/show_bug.cgi?id=1230 Lauro 2007/2/26, Chris Lattner <sabre at nondot.org>: > On Mon, 26 Feb 2007, Lauro Ramos Venancio wrote: > > The problem is: llvm-gcc generates the same bytecode for both functions: > > > > declare void @f(i32, i64) > > declare void @g(i32, i64) > > > > I can't differ an i64 argument from a...