search for: kubastaszak

Displaying 9 results from an estimated 9 matches for "kubastaszak".

2010 Oct 07
0
[LLVMdev] Beer
...It's the only night I'm available from Friday through Tuesday. I work near the Financial District, so if you have something planned early that evening that is relatively accessible from downtown, let me know. > > Mark > > > On Mon, Oct 4, 2010 at 7:15 AM, Jakub Staszak <kubastaszak at gmail.com> wrote: > Hello Guys! > > I used to participate in LLVM development. Unfortunately, recently I hadn't enough time. This year I was on internships at Microsoft in Mountain View. However, I won't be able to be on Dev Meeting. I live in Poland and I have my flight ba...
2011 Feb 10
0
[LLVMdev] create function
I think you might be interested in ExtractCodeRegion() function. - Jakub On Mon, Feb 7, 2011 at 2:40 PM, Jakub Staszak <kubastaszak at gmail.com> wrote: > I think you might be interested in ExtractCodeRegion() function. > > - Jakub > > On Sat, Feb 5, 2011 at 7:40 AM, neda 8664 <neda8664 at gmail.com> wrote: >> i need split a sequential program to multithread. the first step I am going >> to a...
2011 Feb 10
1
[LLVMdev] PR9112
Hello, This simple patch fixes PR9112: Index: lib/Analysis/ValueTracking.cpp =================================================================== --- lib/Analysis/ValueTracking.cpp (revision 125281) +++ lib/Analysis/ValueTracking.cpp (working copy) @@ -593,6 +593,8 @@ // Otherwise take the unions of the known bit sets of the operands, // taking conservative care to avoid
2010 Aug 11
0
[LLVMdev] PR5373
Hello, Fixed patch attached. Can anyone test it? Regards -- Jakub Staszak -------------- next part -------------- A non-text attachment was scrubbed... Name: pr5373.patch Type: application/octet-stream Size: 5846 bytes Desc: not available URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100811/8c0c364b/attachment.obj> -------------- next part -------------- On Aug 6, 2010, at
2010 Oct 04
0
[LLVMdev] Beer
Hello Guys! I used to participate in LLVM development. Unfortunately, recently I hadn't enough time. This year I was on internships at Microsoft in Mountain View. However, I won't be able to be on Dev Meeting. I live in Poland and I have my flight back home on Oct 13. I would be glad to go out with you guys for some beer. I'm gonna live in S-F from this Friday, but I can go to
2010 Oct 28
0
[LLVMdev] PR7318
Hello again, This patch fixes PR7318. Regards -- Jakub Staszak -------------- next part -------------- A non-text attachment was scrubbed... Name: pr7318.patch Type: application/octet-stream Size: 4124 bytes Desc: not available URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20101028/54314ff2/attachment.obj>
2010 Nov 18
1
[LLVMdev] Replacing phi nodes in ScalarEvolution while preserving LCSSA form
It doesn't seem to fix PR8622. On Nov 17, 2010, at 8:39 PM, Dan Gohman wrote: > On Nov 17, 2010, at 11:03 AM, Duncan Sands wrote: > >> Hi Dan, I whipped up this patch as a more optimal test of whether >> replacing the phi node PN by V will break LCSSA form. I hope it >> is more or less correct, but since I know nothing about loops it >> could well be
2013 Feb 19
0
[LLVMdev] Statistics
Hello, STATISTIC is currently part of ADT. Wouldn't Support be a more proper place for it? - Kuba
2012 Nov 24
6
[LLVMdev] Uninitialized variable - question
Hello, I was wondering about the case below. I tried to find any information in C standard, but I found nothing. In this case, variable "i" is uninitialized, but it is the _same_ value passed as an argument, so only of "a" or "b" should be printed. What I found is that with -O2: LLVM (trunk) prints both "a" and "b" GCC (4.2) prints both