search for: rawbw

Displaying 20 results from an estimated 185 matches for "rawbw".

2011 Jun 04
0
[LLVMdev] Fwd: Re: How to identify LLVM version? [updated patch]
...patch to commits so that it doesn't get lost. Yuri -------- Original Message -------- From: - Fri Jun 03 12:15:47 2011 X-Mozilla-Status: 0011 X-Mozilla-Status2: 10000000 Return-Path: <llvmdev-bounces at cs.uiuc.edu> X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail1.rawbw.com X-Spam-Level: X-Spam-Status: No, score=-0.2 required=7.0 tests=AWL,HK_RANDOM_ENVFROM, J_CHICKENPOX_102,RCVD_IN_DNSWL_LOW,SPF_PASS,T_RP_MATCHES_RCVD autolearn=disabled version=3.3.1 Received: from dcs-maillist.cs.uiuc.edu (dcs-maillist.cs.uiuc.edu [128.174.252.7]) by mail1.rawbw.com (8.14...
2010 Jun 03
2
[LLVMdev] Is there 'Nop' instruction?
How can I copy the value from another BB? PHI instruction with one argument would fit, but it requires that all arguments are in immediately preceding BBs. Yuri
2010 Jun 03
0
[LLVMdev] Is there 'Nop' instruction?
Yuri <yuri at rawbw.com> writes: > How can I copy the value from another BB? > PHI instruction with one argument would fit, but it requires that all > arguments are in immediately preceding BBs. Using a value is not restricted to the BB where you created it.
2011 Aug 16
2
[LLVMdev] --enable-shared doesn't build shared library any more
In r134967 it still worked, and in r137742 it now doesn't. I used such flags: --enable-assertions --enable-shared --enable-libffi --enable-debug-runtime --enable-debug-symbols --disable-optimized Before build would create directory tools/llvm-shlib under the build tree. Now it is missing. Yuri
2011 Aug 17
0
[LLVMdev] --enable-shared doesn't build shared library any more
Yuri, on which host? 2011/8/17 Yuri <yuri at rawbw.com>: > In r134967 it still worked, and in r137742 it now doesn't. > I used such flags: --enable-assertions --enable-shared --enable-libffi > --enable-debug-runtime --enable-debug-symbols --disable-optimized > > Before build would create directory tools/llvm-shlib under the bu...
2013 Apr 24
0
[LLVMdev] [PATCH] with no response: Bug 13163 - BlockAddress instruction with use from the global context is damaged during module link
On Apr 17, 2013, at 7:26 PM, Yuri <yuri at rawbw.com> wrote: > On 10/02/2012 13:01, Duncan Sands wrote: >> >> I think Chris is the right person to look at this, hopefully he will. > > Now 5 months passed. I updated the patch for this current revision. > Can anybody review this and check in please? > > http://l...
2016 Jul 20
3
[Bug 12030] New: rsync leaves temporary files when transfer is interrupted.
...interrupted. Product: rsync Version: 3.1.2 Hardware: All OS: FreeBSD Status: NEW Severity: enhancement Priority: P5 Component: core Assignee: wayned at samba.org Reporter: yuri at rawbw.com QA Contact: rsync-qa at samba.org When the transfer 'rsync -a dir remote:.' is interrupted and then reran, it leaves the temporary files with a period as a prefix and suffixes like this: .T5umN0 It will be great if rsync first cleaned up the previously left temp files that hav...
2014 Mar 31
3
[LLVMdev] Can WriteBitcodeToFile be parallelized?
This function (understandably) takes quite a long time, because it has to go through each function in module and write its binary. But it probably can be parallelized if different threads would write binaries separately, and then merge them together. Is this implemented or planned? Yuri
2013 Apr 18
3
[LLVMdev] [PATCH] with no response: Bug 13163 - BlockAddress instruction with use from the global context is damaged during module link
On 10/02/2012 13:01, Duncan Sands wrote: > > I think Chris is the right person to look at this, hopefully he will. Now 5 months passed. I updated the patch for this current revision. Can anybody review this and check in please? http://llvm.org/bugs/show_bug.cgi?id=13163 Yuri
2010 Jun 10
3
[LLVMdev] clang build fails if done in the separate object directory
...gt; > svn co llvm... > mkdir llvm/tools/clang > svn co llvm/tools/clang > > mkdir cmake-build > cd cmake-build > cmake ../ > make > > Try something similar by running "../configure", it should work. > > On Thu, Jun 10, 2010 at 11:23 AM, Yuri <yuri at rawbw.com> wrote: >> >> I did these steps: >> * checked out llvm trunk, and clang trunk >> * created symbolic link llvm/tools/clang >> * created separate folder: llvm-objects >> * run configure and gmake in llvm-objects >> >> It builds ok until it hits c...
2010 Jun 19
2
[LLVMdev] [patch] New feature: debug info for function memory ranges (-jit-emit-debug-function-range)
Have you found http://llvm.org/docs/DebuggingJITedCode.html? The JIT already has support for something like this for gdb's benefit. Perftools and valgrind just don't know how to find it yet. On Sat, Jun 19, 2010 at 2:03 PM, Yuri <yuri at rawbw.com> wrote: > This new option (--jit-emit-debug-function-range) will allow to output > function information for memory ranges that functions occupy in memory while > they run in JIT. File format generated is like this: > ... > 0x5000000 0x5001000 function_name_is_here > ... &gt...
2014 Feb 02
2
[LLVMdev] Why variables get "optimized away" after the last use in unoptimized code?
On 02/02/2014 01:48, David Chisnall wrote: > In most calling conventions, this is a callee-save register. After its last use, the register allocator may reuse that register. On x86 and ARM, the register that contains this is also (usually) the register used for But the rule "after the last use, the register allocator may reuse it" is also introduced by llvm, since register
2010 Jun 10
0
[LLVMdev] clang build fails if done in the separate object directory
...l what commands exactly did you use? What I usually do is: svn co llvm... mkdir llvm/tools/clang svn co llvm/tools/clang mkdir cmake-build cd cmake-build cmake ../ make Try something similar by running "../configure", it should work. On Thu, Jun 10, 2010 at 11:23 AM, Yuri <yuri at rawbw.com> wrote: > I did these steps: > * checked out llvm trunk, and clang trunk > * created symbolic link llvm/tools/clang > * created separate folder: llvm-objects > * run configure and gmake in llvm-objects > > It builds ok until it hits clang, at which point I get an this e...
2014 Feb 20
2
[LLVMdev] How is variable info retrieved in debugging for executables generated by llvm backend?
On Thu, Feb 20, 2014 at 1:58 PM, Yuri <yuri at rawbw.com> wrote: > On 02/18/2014 00:44, æšć‹‡ć‹‡ wrote: > >> I ported llvm backend and lldb recently. Both tools can basically work. >> lldb is able to debug programs in asm style and frame unwinding is OK. >> >> But "frame variable XX" does not work because lldb i...
2010 Jun 10
3
[LLVMdev] clang build fails if done in the separate object directory
I did these steps: * checked out llvm trunk, and clang trunk * created symbolic link llvm/tools/clang * created separate folder: llvm-objects * run configure and gmake in llvm-objects It builds ok until it hits clang, at which point I get an this error: gmake[2]: Entering directory `/tmp/llvm-svn/llvm-objects/tools/clang' Makefile:44: Makefile.config: No such file or directory Makefile:127:
2013 Oct 17
8
[Bug 2162] New: Log needs to contain the port on which connection is made
...made Product: Portable OpenSSH Version: 6.2p1 Hardware: All OS: FreeBSD Status: NEW Severity: normal Priority: P5 Component: sshd Assignee: unassigned-bugs at mindrot.org Reporter: yuri at rawbw.com I have sshd listening on multiple ports. Currently I see the log message: Oct 17 11:59:32 myhost sshd[13784]: Bad protocol version identification '\200F\001\003\001' from NNN.NNN.NNN.NNN Somebody connected to it and protocol was invalid. The message will become much more informative i...
2011 Feb 24
2
[LLVMdev] Announcing: LLVM 2.9 Tentative Release Schedule
----- Original Message ---- > From: Chris Lattner <clattner at apple.com> > To: Yuri <yuri at rawbw.com> > Cc: llvmdev at cs.uiuc.edu > Sent: Sun, February 20, 2011 3:26:35 AM > Subject: Re: [LLVMdev] Announcing: LLVM 2.9 Tentative Release Schedule > > > On Feb 19, 2011, at 8:05 PM, Yuri wrote: > > > On 02/19/2011 14:52, Yuri wrote: > >> Will MC path for...
2010 May 31
0
[LLVMdev] Finding Merge nodes in CFG (ambika@cse.iitb.ac.in)
...ng Merge nodes in CFG (ambika at cse.iitb.ac.in) > 9. Error with instruction selection (Kalle.Raiskila at nokia.com) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Sun, 30 May 2010 13:32:22 -0700 > From: Yuri <yuri at rawbw.com> > Subject: Re: [LLVMdev] How difficult is to fix this error: JIT does > not support address-of-label yet! [patch submitted] > To: llvmdev at cs.uiuc.edu > Message-ID: <4C02CB56.8000105 at rawbw.com> > Content-Type: text/plain; charset=ISO-8859-1; format=flowed &g...
2015 Jun 01
2
[LLVMdev] Linking modules across contexts crashes
...3. Load all the chosen modules into a single context and link them together. lib/LTO has a bunch of the pieces for this, but I got the idea from Rafael's work on tools/gold-plugin/gold-plugin.cpp. It might be easier to look at there. > On Fri, May 29, 2015 at 5:18 PM, Yuri <yuri at rawbw.com> wrote: > I get a crash when I try to link multiple modules registered in their individual contexts. > Documentation for Linker::LinkModules doesn't mention anything about contexts, and the first link succeeds. But the second link crashes. The problem is that a fair number of thin...
2015 May 30
2
[LLVMdev] Linking modules across contexts crashes
I get a crash when I try to link multiple modules registered in their individual contexts. Documentation for Linker::LinkModules doesn't mention anything about contexts, and the first link succeeds. But the second link crashes. Is this not the right way to merge such modules? If not, then what is the right way? In any case, documentation for Linker::LinkModules should say if contexts are