search for: sank

Displaying 20 results from an estimated 28 matches for "sank".

Did you mean: sane
2012 Feb 25
3
[LLVMdev] Missed optimization on array initialization
...m/9442363) I checked and found that LLVM yields the same (seemingly) suboptimal code as MSVC. Consider the following, simplified, C snippet: extern void bar(int*); void foo(int a) { int ar[100] = {a}; if (a) return; bar(ar); } Ideally, the array initialization should be sank after the return, but in Clang/LLVM 3.0 this doesn't happen: ; ModuleID = '/tmp/webcompile/_11079_0.bc' target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128" ta...
2010 Aug 29
0
Multiple geometry, selections and georss
Hello- I have not used Mapstraction yet, and am new to geographic display software. I just sank sank several frustating Firebug-hours into another open source toolkit and am casting about for alternatives. Please tell me how to use Mapstraction for a particular use case.. The use case is a map of places with lines to the nearest surrounding places. I would like to just show all of the places...
2012 Feb 25
0
[LLVMdev] Missed optimization on array initialization
...e (seemingly) suboptimal code as MSVC. > Consider the following, simplified, C snippet: > extern void bar(int*); > > void foo(int a) > { > int ar[100] = {a}; > if (a) > return; > bar(ar); > } > > Ideally, the array initialization should be sank after the return, but in Clang/LLVM 3.0 this doesn't happen: This is a straight-forward form of code motion we don't implement, which would be built on partially dead store analysis. Our dead store analysis in general isn't very powerful, and cannot see across blocks. It turns out th...
2012 Feb 25
1
[LLVMdev] Missed optimization on array initialization
...der the following, simplified, C snippet: > >> extern void bar(int*); >> >> void foo(int a) >> { >> int ar[100] = {a}; >> if (a) >> return; >> bar(ar); >> } >> >> Ideally, the array initialization should be sank after the return, but in Clang/LLVM 3.0 this doesn't happen: > > This is a straight-forward form of code motion we don't implement, which would be built on partially dead store analysis. Our dead store analysis in general isn't very powerful, and cannot see across blocks. It tu...
2016 Nov 09
4
RFC: Killing undef and spreading poison
...Richard Smith proposed that instead we add a "load not_poison %ptr" (like load atomic) instruction that would be equivalent to load+freeze+bitcast, because he is concerned that some C++ stuff needs to be lowered to such a load. This load then becomes tricky to move around (e.g., cannot be sank to inside loops), but there are options to attenuate that problem if necessary. Perhaps this construct would make John McCall happy as well (re. his question during the talk last week)? Thanks, Nuno
2008 May 05
7
iscsi conn error: Xen related?
Hello all, I got some severe iscsi connection loss on my dom0 (Gentoo 2.6.20-xen-r6, xen 3.1.1). Happening several times a day. open-iscsi version is 2.0.865.12. Target iscsi is the open-e DSS product. Here is a snip of my messages log file: May 5 16:52:50 ying connection226:0: iscsi: detected conn error (1011) May 5 16:52:51 ying iscsid: connect failed (111) May 5 16:52:51 ying iscsid:
2016 Dec 07
4
Killing undef and spreading poison
...now the exact details. >> On the negative side is that the freezing load is harder to move >> around and > > Why exactly are these harder to move around? Because they have an implicit freeze, which is also non-trivial to move. For example, these freezing loads cannot easily be sank into loops, like: %v = load %p while (...) { use(%v) } => while (...) { %v = load %p; use(%v) } The load inside the loop may return a different value for each uninitialized/poison bit in each loop iteration, while in the original code all iterations would see the same value for %v. So this...
2020 Sep 29
2
Re-sieve emails
Is it possible to take the contents of a mailbox and feed them to the account's .active_sieve file for reprocessing? (For example, when editing the sieve file for my list account I introduced a typo, so a hundred or some list messages ended up in the inbox instead of filed properly into the maildir hierarchy. Not a huge deal, as it was simple enough to move them manually, but it got me
2007 Apr 18
0
[Bridge] Re: Please help with bridge
...> +-----+ > | > virtuarl if > > virtual if mast be visible from network with its own macaddress > and can be able to get IP by DHCP (dhcpcd) from any network > > I need this very much. > Sanks What kind of virtual interface? The bridge code expects the devices in the bridge to behave like linux ethernet devices.
2009 Mar 19
2
It is possible to run Linux Firefox from app in Wine?
I am running "The Dude" under wine. It is monitoring software, which can run any custom command for any monitored device, by simple right click. It work perfectly fine on windows. You can run RDP or SSH clients, and automaticly pass them user name, IP address, or even password by configuring internal Dude variable in custom command settings. Which I want to do, is create bat script,
2001 Mar 07
1
missing textures with counterstrike?
I finally got my halflife running (don't ask how...it just decided to work for some reason). Anyway there's a couple problems: first off once cstrike loads and I'm in the game, there's a lot of missing textures. Also any status area around the screen with text is just a yellow-shaded kinda transparent box. I'm using NVidia drivers on a geforce 256 (elsa erazor x if it
2011 Apr 09
0
Didn't think only blank
Really so far I can't so sank Gently told himself Even so, or fate do yourself www.ebuybus.com
2011 Jul 03
1
gta vice city not starting
hello to everybody. i'm using wine-1.2.2 on ubuntu 11.04. i've some troubles making the game start: when i write on terminal "wine gta-vc.exe" nothing happens, while if i press ctrl+c the game window comes out and it says me "unhandled exception: c000013a At address: 68000830". note that before updating to natty narwhal and reinstalling wine from application manager [as
2013 May 02
0
Newbie has some questions and thoughts!
...to do with image processing, GPU programming or systems programming (including database programming). I'm still on the outskirts until I get my new PC built for total BF3 domination (geforce 660 2G gfx!!) but when I found out linux doesn't really have a gaming ecosystem thats when my heart sank. using Wine still doesn't support the latest games because of DirectX 10/11 lack of support so I thought I lend my efforts to developing what Linux needs in graphics/video coding. Mostly done C# programming with databases but know C++. My college professor always told me I'm a database des...
2020 Sep 29
2
Re-sieve emails
...tion_manual/sieve/plugins/imapfilter_sieve/ That looks like what I want, but once I've enabled the plugin how would I actually tell dovcot to process a mailbox "Test" with the sieve script "new.sieve"? That seems tone missing from the link above. -- Q is for QUENTIN who sank in the mire R is for RHODA consumed by a fire
2001 Mar 03
1
halflife & wine
Well I've read all the docs/howtos for this and it's still not working for me. Everytime I try to do a 'wine hl.exe' it gives me the good ol' opengl is not supported on this device error. Nothing in the wine console. This is with build 20010112 (and also a very recent one...forget which). I did the enable-opengl configure flag. I'm trying to run it on a mandrake
2009 Sep 01
1
[LLVMdev] llc - generation of native machine code
...ted. I am looking for a possibility to use a LLVM with a debugger GDB. And GDB works with DWARF debug information. Will be continue a work with ELF-Writer for support of a debug? Or is there any other ideas for debug? I will add an ELF-Writer to my project (xPEC - processor from chip NetX)! Sank you! --Tema Best regards, Artem Rudskyy <http://www.uni-magdeburg.de/ieat/robotslab/> http://www..uni-magdeburg.de/ieat/robotslab/ <http://www.uni-magdeburg.de/> http://www.uni-magdeburg.de/ -------------- next part -------------- An HTML attachment was scrubbed... URL:...
2023 Jan 15
3
return value of {....}
...t; refers to the inner variable. Here's an actual example. > x <- 137 > f <- function () { + a <- x + x <- 42 + b <- x + list(a=a, b=b) + } > f() $a [1] 137 $b [1] 42 Many years ago I set out to write a compiler for R, and this was the issue that finally sank my attempt. It's not whether the occurrence of "use x" is *lexically* before the creation of x. It's when the assignment is *executed* that makes the difference. Different paths of execution through a function may result in it arriving at its return point with different sets of l...
2009 Jul 27
3
[LLVMdev] llc - generation of native machine code
...uot; some steps are provided, maybe, for this conversions . Can anybody help me with this way? On the web ( www.llvm.org ) there is not much information for this subject. Where can I read information? Have somebody done generation of "obj"-file? I will be glad for any information. Sank you! --Tema Best regards, Artem Rudskyy http://www..uni-magdeburg.de/ieat/robotslab/ <http://www.uni-magdeburg.de/ieat/robotslab/> http://www.uni-magdeburg.de/ -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/piper...
2008 Jul 29
4
Migrating RHEL 3 to Centos 5.2 - has Adaptec 2400a RAID
Greetings all. I'm new to the mailing list. Hope to get to know many of you. I'll jump right in with a recent project. I have a machine with RHEL WS 3 - Taroon; plus dual boot to Win 2000 Pro. The RAID card is Adaptec's 2400A w/128 megs cache, running RAID 10 on 4 WD's. I want to migrate to 5.2 Centos and wipe the NTFS partition. I have the 5.2 Centos DVD. Anyone see any