search for: preserved

Displaying 20 results from an estimated 9160 matches for "preserved".

Did you mean: reserved
2018 Nov 09
5
Should NaN payloads be preserved through compilation?
Hi everyone, The WebAssembly backend recently had Bug 39448 <https://bugs.llvm.org/show_bug.cgi?id=39448> filed against it because NaN payloads in floating-point immediates are not preserved through compilation on 32-bit builds. I took a look and the corruption takes place when the immediates are converted from APFloats to be stored as native doubles in MCOperand. I assume this bug only appears in 32-bit builds because they are using x87 doubles that happen to not preserve all possible...
1998 Sep 18
4
Letter case not preserved
All files transferred to my Samba server end up with lower case on the Unix box. Case is not preserved from NT to Unix. For example, if I copy C:\Temp\MyFile to a directory on the Samba server, it ends up there as myfile. What am I missing? I browsed the FAQ's in the web pages, without success... Marc Provencher Foxboro Calgary, Systems Integration and IT (403) 777-4275 mprovenc@foxboro.ca
2014 Apr 04
3
[LLVMdev] Add a new information and preserve it in LLVM
...n is that I have some information W, some transform passes may change it, after these passes, I need the new W. What I did is to create an analysis pass similar to scalar-evolution or loopinfo, I can get the information by using getAnalysis<W>(); and preserve this information W by using AU.addPreserved<W>();. Then the problem came, for the module pass, the information can’t be preserved. (I found this: To the best of my knowledge, the LLVM pass manager never preserves a FunctionPass analysis that is requested by a ModulePass; every time you call getAnalysis for a function, the FunctionPass...
1999 Jul 29
0
Strange problem with samba 1.9.18p10 on Solaris 2.6
Hy, I have currently a big problem with Win95 clients generating files with invalid inode types. This only happens with Quark documents created from scratch. Example: ?rwxrwxrwt 1 falkenbe av 35638891 Jul 29 16:02 /vol04/pc_03/Deerberg/ctp_Deerberg/test07 after copying the file it really is a file !! -rwxrwxrwx 1 schoenhe av 35638891 Jul 29 16:00
2009 Feb 27
2
[LLVMdev] AnalysisUsage & Call Graph SCC Pass Manager
...nalysis and preserves it. I am expecting MyAnalysis to be re-scheduled between MyCallGraphSCCPass and MyModulePass3 but it's not happening. If I set MyModulePass3 to not preserve MyAnalysis, then I see MyAnalysis re-scheduled after MyModulePass3. It seems like the fact that MyAnalysis is not preserved by MyCallGraphSCCPass is somehow not propagated outside the Call Graph SCC Pass Manager. Is there something wrong with that sequence ? Thanks, Julien -- Julien Lerouge PGP Key Id: 0xB1964A62 PGP Fingerprint: 392D 4BAD DB8B CE7F 4E5F FA3C 62DB 4AA7 B196 4A62 PGP Public Key from: keyserver.pgp.co...
2010 Jul 14
3
[LLVMdev] different layout of structs for llc vs. llvm-gcc
On Tuesday 13 July 2010 19:48:25 you wrote: > On Tue, Jul 13, 2010 at 10:09 AM, Torvald Riegel > > I thought that the layout of structs was supposed to be preserved (wrong > > assumption?). Otherwise, any ideas why this happens? > > It should be preserved in general; Is this a "should" or a "must"? Are there any cases in which structure layout must be preserved besides for volatile accesses and if the data goes out to extern...
2008 Sep 06
2
cyrus2courier or cyrus2maildir.py, which to choose?
What's the best utility to use to convert mail folders from a cyrus 2.2.13-10, on a debian 4.0 Etch system, to folders that can be used by dovecot? The http://wiki.dovecot.org/Migration/Cyrus page isn't too clear on what's the difference. cyrus2courier says "It should be able to preserve message UIDs, flags and 26 first keywords." cyrus2maildir.py says "preserves
2006 Apr 06
2
preserving pop3 mail uids
Is there some way that message uids can be preserved when converting uw-pop3 mbox mail to dovecot maildir format? We've tried perfect_maildir, mb2md and the convert-tool that comes with dovecot but so far have been unable to preserve the message uids, which for example go from 44333a8500000003 before the conversion to 4434621500000003 afterwards...
2015 Apr 01
4
[LLVMdev] [RFC] Setting preserve-bc-use-list-order=true by default
...tal" mode, and turn `-preserve-bc-use-list-order` on by default. I've attached a patch that does this. Why? ==== Use-list order affects the output of some LLVM passes. A typical example is a pass that walks through basic block predecessors. The use-list order is deterministic, but not preserved when serializing the LLVM IR to bitcode or assembly. In rare (but frustrating) cases, this makes it difficult to reproduce a crash or miscompile from an intermediate result. For example, consider running an LTO build and serializing between the LTO optimization pipeline and the LTO codegen pipeli...
2018 May 07
2
Preservation of CallGraph (by BasicBlockPass, FunctionPass)
...in the CallGraph when doing the inlining. That will go away if I remove the setPreservesAll from the FPPassManager:: getAnalysisUsage (which I assume is too aggressive). Would it be correct to change the FPPassManager:: getAnalysisUsage to exclude "CallGraph Construction" from the set of preserved analyses, or am I missing something here? I assume that DeadInstElimination isn't preserving the CallGraph. Shouldn't that (automatically/dynamically) impact which analyses that are preserved from the BBPassManager and the FPPassManager for this pass structure? Regards, Björn ------------...
2010 Jul 14
0
[LLVMdev] different layout of structs for llc vs. llvm-gcc
On Wed, Jul 14, 2010 at 3:20 AM, Torvald Riegel <torvald at se.inf.tu-dresden.de> wrote: > On Tuesday 13 July 2010 19:48:25 you wrote: >> On Tue, Jul 13, 2010 at 10:09 AM, Torvald Riegel >> > I thought that the layout of structs was supposed to be preserved (wrong >> > assumption?). Otherwise, any ideas why this happens? >> >> It should be preserved in general; > > Is this a "should" or a "must"? Are there any cases in which structure layout > must be preserved besides for volatile accesses and if the...
2001 Mar 14
0
Case Sensitivity vs. Case Preservation
...39;t look good! I can understand 'filethree.txt' being converted to lower case; after all it is not an 8.3 filename, so it should fall under the auspices of the 'preserve case = no' option. But what about the other three? They are all good little 8.3 filenames. Why was case NOT preserved? Apparently, 'short preserve case' is dependent on 'preserve case'. That is to say, in order for 'short preserve case = yes' to work, 'preserve case = yes' must be set. Ok, lets move on to the case where we specify BOTH preserve case = yes and short preserve cas...
2015 Dec 03
3
GlobalsAA from GVN
...esmolloy.co.uk> wrote: > Hi Vaivaswatha, > > GlobalsAA is not an immutable pass because it needs to cache queries to > avoid them being unusably slow. It therefore relies on passes explicitly > preserving it. Most of the passes in the scalar pipeline have been modified > to setPreserved<GlobalsAA>() and I know the pass gets preserved at least > until LICM. > > You can use -debug-pass=Executions to determine at what point GlobalsAA is > not preserved (which pass clobbers it) - you'd then need to add GlobalsAA > to its preserved pass list. > > Cheers,...
2002 Nov 05
2
[PATCH] fix sftp to preserve permissions and uid/gid
Sftp fails to correctly preserve permissions when fetching a file. It adds write permission for the owner (presumably so it can write the file). Sftp also fails to preserve the uid/gid. Added code so that if is running as root, uid and gid are preserved. patch is based on Openssh 3.4p1. *** sftp-client.c@@\main\1 Tue Oct 1 17:26:20 2002 --- sftp-client.c Tue Nov 5 10:22:52 2002 *************** *** 666,672 **** status = get_status(conn->fd_in, id); if (status != SSH2_FX_OK) ! error("Couldn't rename file \"%s\" t...
2016 Jul 13
5
[PM] I think that the new PM needs to learn about inter-analysis dependencies...
.... Yay! This email is about one issue that I ran into testing the pipeline on test-suite. The issue arose in the wild as an interaction between lcssa and gvn. But the issue is extremely general. What happened is that BasicAA uses TargetLibraryInfo. If it makes a change, then LCSSA marks BasicAA as preserved (if it made no change, it would preserve all). The new PM then invalidates everything not marked as preserved by LCSSA. So it does not invalidate BasicAA but it does invalidate TargetLibraryInfo. Now BasicAA is holding dangling pointers to TargetLibraryInfo. GVN then goes to query BasicAA and thing...
2018 May 07
0
Preservation of CallGraph (by BasicBlockPass, FunctionPass)
...he inlining. > > That will go away if I remove the setPreservesAll from the FPPassManager:: > getAnalysisUsage (which I assume is too aggressive). > > > > Would it be correct to change the FPPassManager:: getAnalysisUsage to > exclude “CallGraph Construction” from the set of preserved analyses, or am I > missing something here? > > > > I assume that DeadInstElimination isn’t preserving the CallGraph. Shouldn’t > that (automatically/dynamically) impact which analyses that are preserved > from the BBPassManager and the FPPassManager for this pass structure? &g...
2007 May 08
1
rsync feature needed: preserve atime
Often we need to preserve the information atime conveys, but I have found no way to get rsync to preserve this, nor any hint it is being worked on. It would be great if 'rsync -t' also set atime not just mtime -- or maybe a new option is desired for atime. I don't know if the -X mentioned in "NEWS file from CVS" covers this: > Added the --xattrs (-X) option to preserver
2018 May 08
2
Preservation of CallGraph (by BasicBlockPass, FunctionPass)
...ll go away if I remove the setPreservesAll from the FPPassManager:: > > getAnalysisUsage (which I assume is too aggressive). > > > > > > > > Would it be correct to change the FPPassManager:: getAnalysisUsage to > > exclude “CallGraph Construction” from the set of preserved analyses, or > am I > > missing something here? > > > > > > > > I assume that DeadInstElimination isn’t preserving the CallGraph. Shouldn’t > > that (automatically/dynamically) impact which analyses that are preserved > > from the BBPassManager and the F...
2010 Jul 14
2
[LLVMdev] different layout of structs for llc vs. llvm-gcc
...rote: > On Wed, Jul 14, 2010 at 3:20 AM, Torvald Riegel > <torvald at se.inf.tu-dresden.de> wrote: >> On Tuesday 13 July 2010 19:48:25 you wrote: >>> On Tue, Jul 13, 2010 at 10:09 AM, Torvald Riegel >>> > I thought that the layout of structs was supposed to be preserved (wrong >>> > assumption?). Otherwise, any ideas why this happens? >>> >>> It should be preserved in general; >> >> Is this a "should" or a "must"? Are there any cases in which structure layout >> must be preserved besides for volat...
2002 Sep 10
0
[PATCH] Add --preserve-atime switch to rsync
...a switch to rsync to preserve the atime on files being copied by rsync. I needed this function for a project I'm working on and decided to invent it. I've attached the diffs. Note that this has the limitations describe in previous emails, namely that preserving atime causes ctime to not be preserved. *** Patch follows *** *** backup.c@@/main/original/1 Tue Apr 9 14:02:14 2002 --- backup.c Tue Apr 9 15:21:56 2002 *************** *** 110,116 **** rprintf(FERROR,"make_bak_dir stat %s : %s\n",fullpath,strerror(errno));...