Displaying 11 results from an estimated 11 matches for "broune".
Did you mean:
roune
2015 Jul 09
5
[LLVMdev] Strong post-dominance in LLVM?
There is PostDominatorTree for determining post-dominance. Even if A
post-dominates B and B is executed, that doesn't guarantee that A will be
executed. For example, there could be an infinite loop in-between. Strong
post-dominance makes the stronger guarantee that there will be no infinite
loop from B to A. Do we have anything in LLVM for determining strong
post-dominance and in general for
2015 Jul 01
2
[LLVMdev] Deriving undefined behavior from nsw/inbounds/poison for scalar evolution
----- Original Message -----
> From: "Bjarke Roune" <broune at google.com>
> To: "Hal Finkel" <hfinkel at anl.gov>
> Cc: llvmdev at cs.uiuc.edu, "Jingyue Wu" <jingyue at google.com>
> Sent: Wednesday, July 1, 2015 2:27:59 PM
> Subject: Re: [LLVMdev] Deriving undefined behavior from nsw/inbounds/poison for scala...
2015 Jun 30
5
[LLVMdev] Deriving undefined behavior from nsw/inbounds/poison for scalar evolution
...ttps://llvm.org/bugs/show_bug.cgi?id=21148). For this reason, we disabled
indvar widening in NVPTX in http://reviews.llvm.org/D6196.
Hope it helps.
Jingyue
On Mon, Jun 29, 2015 at 11:59 AM Adam Nemet <anemet at apple.com> wrote:
>
> > On Jun 26, 2015, at 4:01 PM, Bjarke Roune <broune at google.com> wrote:
> >
> > *** Summary
> > I'd like to propose (and implement) functionality in LLVM to determine
> when a poison value from an instruction is guaranteed to produce undefined
> behavior. I want to use that to improve handling of nsw, inbounds etc.
&...
2015 Jul 01
3
[LLVMdev] Deriving undefined behavior from nsw/inbounds/poison for scalar evolution
----- Original Message -----
> From: "Bjarke Roune" <broune at google.com>
> To: "Jingyue Wu" <jingyue at google.com>
> Cc: llvmdev at cs.uiuc.edu
> Sent: Tuesday, June 30, 2015 8:16:13 PM
> Subject: Re: [LLVMdev] Deriving undefined behavior from nsw/inbounds/poison for scalar evolution
>
> Hi Adam,
>
> Jingyue i...
2000 May 11
1
cant see cups print queues via samba.
It is possible to see the print queue and via NT4's printer window.
Correct? And remove the jobs too, right? But not for me.
cups-1.0.5, samba-2.07 on linux-2.2.15
queues show ok using lpq
printing from nt works ok using samba.
in smb.conf I have:
printing = cups
print command = lpr -P%p -s %s; rm %s
lpq command = /usr/local/bin/lpq -P %p
lprm command = /usr/local/bin/lprm -P %p %j
The
1999 Oct 18
1
problem with samba on irix 6.5
I have a problem with samba 2.05a on my irix-6.5 box. Now I know this
must be a user problem because I have run samba on this machine before.
Samba compiles and runs fine and I have tried the precompiled version
too. I have /tmp shared out as [tmp] and get the following messages in
log.smb when I try to connect to it using smbclient from the localhost
smbd version 2.0.5a started.
Copyright
2015 Jun 26
6
[LLVMdev] Deriving undefined behavior from nsw/inbounds/poison for scalar evolution
*** Summary
I'd like to propose (and implement) functionality in LLVM to determine when
a poison value from an instruction is guaranteed to produce undefined
behavior. I want to use that to improve handling of nsw, inbounds etc.
flags in scalar evolution and LSR. I imagine that there would be other uses
for it. I'd like feedback on this idea before I proceed with it.
*** Details
Poison
1999 Nov 24
0
workgroup name, small nmdb bug in 2.0.6
Im running 2.0.6 on solaris 7 on an ultra sparc and have discovered the
following strange behavior:
Samba was configured with --prefix=/usr/local/daemon/samba
with this directory being a link.
/usr/local/daemon/samba -> /localhost/daemon/samba-2.0.6
smbd and nmbd are looking for smb.conf in /usr/local/daemon/samba/lib
and this is where the file is. Changes to smb.conf are noticed and acted
2000 May 12
0
cant see cups print queues via samba
It is possible to see the print queue and via NT4's printer window.
Correct? And remove the jobs too, right? But not for me.
cups-1.0.5, samba-2.07 on linux-2.2.14
queues show ok using lpq
printing from nt works ok using samba.
in smb.conf I have:
printing = cups
print command = lpr -P%p -s %s; rm %s
lpq command = /usr/local/bin/lpq -P %p
lprm command = /usr/local/bin/lprm -P %p %j
The
2000 Aug 16
0
lpr command as user, lprm command as nobody
Im using samba 2.07 from source on a digital unix 4.0e machine.
Users are connecting to their unix home directories fine. There are
also samba print shares. Im using cups-1.0.5 for the print server but
this problem looks like it's part of samba. The authenication is done
from a NT server. Ie the global section of smb.conf
[global]
workgroup = ee-student
debuglevel = 3
server string
2015 Jul 01
3
[LLVMdev] Deriving undefined behavior from nsw/inbounds/poison for scalar evolution
Hi Sanjoy, thanks for your thoughts on this.
On Sat, Jun 27, 2015 at 12:16 AM, Sanjoy Das <sanjoy at playingwithpointers.com
> wrote:
>
> First of all, going by the "poison causes UB only when observed", SCEV
> does not do the right thing currently: [...]
>
> That seems like a bug? There's also bug 23527 for GEP. Sounds like there
might be more such bugs.
One