search for: dietz

Displaying 20 results from an estimated 126 matches for "dietz".

Did you mean: diet
2014 Jan 08
2
[LLVMdev] Request for Git Mirror of VMKit Subproject
...e a mirror, this is not a problem. The only thing I'd like > to know in advance is branch policy - e.g. whether only trunk should > converted, or all the branches as well, etc. > > PS: E-mail to llvm-admin would be much more visible ;) > > On Sun, Jan 5, 2014 at 12:03 AM, Will Dietz <willdtz at gmail.com> wrote: >> Hi all, >> >> Don't suppose VMKit could be added to the set of subprojects with >> official git mirrors? >> >> Please and thank you! :) >> >> ~Will >> _______________________________________________ &gt...
2010 May 26
2
[LLVMdev] AliasAnalysis as a Loadable Module, Possible 2.6->2.7 issue
...h, attached is the project triggering the issue, if someone gets bored and either wants to try it or tell me what I'm doing wrong :). Thanks for your time, ~Will On Tue, May 25, 2010 at 10:13 PM, Eli Friedman <eli.friedman at gmail.com> wrote: > On Tue, May 25, 2010 at 5:53 PM, Will Dietz <willdtz at gmail.com> wrote: >> Hi all, >> >> First time posting to llvmdev, be gentle :). >> >> I'm working on an AliasAnalysis implementation and running into an >> issue on 2.7, that doesn't exist in 2.6 as far as I can tell. >> >> S...
2011 Aug 17
2
[LLVMdev] Is va_arg deprecated?
To get clang to emit va_arg instructions for va_arg() calls, as opposed to manually lowering it in the frontend, same as the llvm-gcc patch sent earlier does. ~Will On Wed, Aug 17, 2011 at 2:41 PM, Eric Christopher <echristo at apple.com> wrote: > > On Aug 17, 2011, at 11:53 AM, Will Dietz wrote: > >> FWIW, attached is a similar patch that adds a -falways-use-llvm-vaarg >> flag to Clang. >> >> Applies against mainline. >> >> (As discussed, va_arg isn't really supported well so this probably >> doesn't work well on anything other th...
2010 May 26
0
[LLVMdev] AliasAnalysis as a Loadable Module, Possible 2.6->2.7 issue
...tedAnalysisPointer(const PassInfo *PI) { if (PI->isPassID(&ArrayBoundsCheckGroup::ID)) return (ArrayBoundsCheckGroup*)this; return this; } Just replace "ArrayBoundsCheckGroup" with whatever the name of your analysis group is, and it should work. -- John T. Will Dietz wrote: > Thanks for the response, Eli. > > The header suggestion could certainly cause this issue (I panicked for > a second), but unfortunately as far as I can tell the headers are in > fact from LLVM 2.7. > > The pass is built as a project configured by llvm, so hopefully tha...
2014 Jan 04
3
[LLVMdev] Request for Git Mirror of VMKit Subproject
Hi all, Don't suppose VMKit could be added to the set of subprojects with official git mirrors? Please and thank you! :) ~Will
2011 Aug 17
0
[LLVMdev] Is va_arg deprecated?
I should have been more specific: "Why do we want this as an option? Do we want it on all the time? Why or why not?" -eric On Aug 17, 2011, at 3:02 PM, Will Dietz wrote: > To get clang to emit va_arg instructions for va_arg() calls, as > opposed to manually lowering it in the frontend, same as the llvm-gcc > patch sent earlier does. > > ~Will > > On Wed, Aug 17, 2011 at 2:41 PM, Eric Christopher <echristo at apple.com> wrote: &g...
2017 Jul 09
2
Invalid link on Github
...a lot of problems under the load / > compatibility issues. This caused massive problems with git during the > first day after migration and therefore we decided to roll back to > "old" scheme, using "stock" git for server. > > On Sat, Jul 8, 2017 at 5:07 AM, Will Dietz via llvm-dev > <llvm-dev at lists.llvm.org> wrote: >> Hmm. Since the git URL's changed recently I was inclined to believe >> this was a simple oversight that needed to be updated. >> >> However, AFAICT the listed URL's are more or less equivalent to the &gt...
2011 Aug 23
2
[LLVMdev] VMKit build error
...s not what's primarily causing your issue)--your particular error is when you don't point vmkit to the classpath libraries properly. Set it with the configure option --with-gnu-classpath-glibj=/path/to/classpath-0.97.2/lib/glibj.zip Good luck! ~Will On Tue, Aug 23, 2011 at 5:49 PM, Will Dietz <willdtz at gmail.com> wrote: > Are you running on 64bit (your backtrace addresses suggest you are)? > > I'm encountering the same error when trying to use VMKit on 64bit, > which I believe is an unsupported target. > > ~Will > > On Tue, Aug 23, 2011 at 5:17 PM, Fr...
2011 Aug 24
0
[LLVMdev] VMKit build error
...er/llvm --with-gnu-classpath-glibj=/home/user/classpath-0.97.2/lib/glibj.zip --with-gnu-classpath-libs=/home/user/classpath-0.97.2/lib --with-llvmobj=/home/user/llvm I'm not sure where the --with-gnu-classpath-libs should point. Any ideas about the error? On Wed, Aug 24, 2011 at 1:16 AM, Will Dietz <willdtz at gmail.com> wrote: > Hmm, disregard my previous comment (while you might still have issues > with 64bit, that's not what's primarily causing your issue)--your > particular error is when you don't point vmkit to the classpath > libraries properly. > >...
2016 Oct 14
5
BoF: Shipping Software as LLVM IR (@Upcoming Dev Mtg)
Hi LLVM’ers! We are hosting a BoF at this year's Dev Meeting on a subject we hope will be of interest to some (many?) of you: shipping software (entirely) as LLVM IR. You can find our proposal in the meeting schedule online: https://llvmdevelopersmeetingbay2016.sched.org/event/8Yzq/shipping-software-as-llvm-ir The BoF is scheduled to last 45 minutes, which will go by very quickly! To make
2011 Aug 18
1
[LLVMdev] Is va_arg deprecated?
...rprise!). On Wed, Aug 17, 2011 at 5:08 PM, Eric Christopher <echristo at apple.com> wrote: > I should have been more specific: > > "Why do we want this as an option? Do we want it on all the time? Why or why not?" > > -eric > > On Aug 17, 2011, at 3:02 PM, Will Dietz wrote: > >> To get clang to emit va_arg instructions for va_arg() calls, as >> opposed to manually lowering it in the frontend, same as the llvm-gcc >> patch sent earlier does. >> >> ~Will >> >> On Wed, Aug 17, 2011 at 2:41 PM, Eric Christopher <echri...
2010 May 26
0
[LLVMdev] AliasAnalysis as a Loadable Module, Possible 2.6->2.7 issue
On Tue, May 25, 2010 at 5:53 PM, Will Dietz <willdtz at gmail.com> wrote: > Hi all, > > First time posting to llvmdev, be gentle :). > > I'm working on an AliasAnalysis implementation and running into an > issue on 2.7, that doesn't exist in 2.6 as far as I can tell. > > Short version: has anyone been ab...
2011 Aug 17
0
[LLVMdev] Is va_arg deprecated?
On Aug 17, 2011, at 11:53 AM, Will Dietz wrote: > FWIW, attached is a similar patch that adds a -falways-use-llvm-vaarg > flag to Clang. > > Applies against mainline. > > (As discussed, va_arg isn't really supported well so this probably > doesn't work well on anything other than simple code, YMMV, etc) &gt...
2019 Jul 11
5
GitHub llvm-mirror 8d behind
Hi all In case anyone has a remote to the (unofficial) https://github.com/llvm-mirror, please note that all the repos are at least 8 days behind. There's no warning about it. The page still says it's "Updated every five minutes". Best Stefan -- https://flowcrypt.com/pub/stefan.graenitz at gmail.com
2012 Oct 18
0
[LLVMdev] Debugging LLVM IR with GDB
On 10/18/2012 04:35 PM, Will Dietz wrote: > On Thu, Oct 18, 2012 at 8:59 AM, Eli Bendersky <eliben at gmail.com> wrote: > > Hi all, > > For my own purposes, I wrote a pass that does exactly what you all are > describing: add debug metadata to LLVM IR. > > As a pass, it had to tackle the problem of &quo...
2017 Sep 03
0
Why are LLVM releases statically linked against LLVM libraries?
On 3 Sep 2017, at 02:41, Will Dietz via llvm-dev <llvm-dev at lists.llvm.org> wrote: > > I can speculate the reasons from a technical standpoint and by > inferring from commit history... > but curious if there's a better answer to be had? There’s a fairly noticeably performance improvement from static linking....
2011 Aug 15
1
[LLVMdev] [VMKit] 2.9 or ToT? Java version/features?
...ize for not responding to tell you how very helpful your information was! Didn't come back because you gave me everything I needed at the time :). Anyway: On Fri, May 13, 2011 at 2:00 PM, nicolas geoffray <nicolas.geoffray at gmail.com> wrote: > On Fri, May 13, 2011 at 7:30 PM, Will Dietz <willdtz at gmail.com> wrote: > Today you can use both. I haven't improved vmkit much lately, so version 2.9 > and TOT are pretty much the same. Looking at the vmkit-commits mailing list, seems like you've changed/are changing a lot. Is ToT generally stable enough for use in m...
2015 Mar 09
3
[LLVMdev] unofficial github llvm-mirror: announce, frequency update, ownership
Hi all, I'd like to announce the "unofficial llvm github mirror", which I've been running for a bit over 3 years now: https://github.com/llvm-mirror Why is this useful in addition to the existing llvm git mirrors? * quick code browsing, easy to link to a particular line or commit * github projects based on LLVM can simply fork (server-side) and avoid uploading project contents
2014 Jun 15
2
[LLVMdev] Questions bout the Steensguard AA Pass in rDSA
@John: Since rDSA hasn't been used in ages, perhaps it's time we deleted it from the repository? It'll live on in SVN glory forever for interested parties, and will avoid some of the confusion about its purpose. Additionally, we probably shouldn't have entire directories of dead code in mainline O:). Given these reasons: mind if I remove it from trunk? ~Will On Sun, Jun 15,
2012 Oct 18
4
[LLVMdev] Debugging LLVM IR with GDB
...Another interesting issue is how to coexist with any existing debug metadata, which can be useful for simultaneously debugging an IR transform inline with the C source for instrumentation-style passes like SAFECode, ASan/TSan. Quick Example: (gdb) break main Breakpoint 1 at 0x4010b1: file /home/wdietz2/magic/test/unit/test_loop.c, line 9. (gdb) r Starting program: /home/wdietz2/llvm/32-obj-make/projects/magic/test/Output/test_loop Breakpoint 1, main (argc=<value optimized out>, argv=<value optimized out>) at /home/wdietz2/magic/test/unit/test_loop.c:9 9 unsigned k = 0; Missi...