search for: targetfold

Displaying 11 results from an estimated 11 matches for "targetfold".

Did you mean: targetfolder
2012 Mar 23
3
[LLVMdev] DragonEgg 3.0 with GCC 4.7
...aration /usr/lib/gcc/x86_64-redhat-linux/4.7.0/plugin/include/tm-preds.h:191:68: error: invalid type in declaration before ';' token /builddir/build/BUILD/dragonegg-3.0.src/src/Constants.cpp: In member function '{anonymous}::BitSlice {anonymous}::BitSlice::ExtendRange(SignedRange, llvm::TargetFolder&) const': /builddir/build/BUILD/dragonegg-3.0.src/src/Constants.cpp:188:7: error: 'BYTES_BIG_ENDIAN' was not declared in this scope /builddir/build/BUILD/dragonegg-3.0.src/src/Constants.cpp: In member function '{anonymous}::BitSlice {anonymous}::BitSlice::ReduceRange(SignedRan...
2010 Sep 15
2
Get File Names in Folder, Read Files, Update, and Write
Dear All, Could you please recommend how I can do this? I have several text files in one folder. Let's name them A0801.RSK, A0802.RSK, .... I would like R to 1) Know all file names in this folder 2) Update value in one column of these files 3) Write results in another text file with _xval in the file names Below is R code for read, update, and write one file
2014 Sep 19
2
[LLVMdev] More careful treatment of floating point exceptions
Hi Sanjay, Thanks, I saw this flag and it's definitely should be considered, but it appeared to me to be static characteristic of target platform. I'm not sure how appropriate it would be to change its value from a front-end. It says "Has", while optional flag would rather say "Uses" meaning that implementation cares about floating point exceptions. Regards, Sergey
2014 Sep 25
2
[LLVMdev] More careful treatment of floating point exceptions
..., false)) return FC; // Fold a few common cases. if (OnlyIfReducedTy == C1->getType()) -- 1.8.4 -------------- next part -------------- Subject: [PATCH 6/7] Pass HonorFPExceptions flag around --- include/llvm/Analysis/ConstantFolding.h | 9 ++++++--- include/llvm/Analysis/TargetFolder.h | 13 +++++++----- include/llvm/IR/ConstantFolder.h | 15 ++++++++------ include/llvm/IR/Constants.h | 9 ++++++--- include/llvm/IR/IRBuilder.h | 5 +++-- lib/Analysis/ConstantFolding.cpp | 35 ++++++++++++++++++++++----------- lib/IR/Constants.cpp...
2005 Feb 15
2
Speed up large maildirs
Hi, I'm very fond of maildirs, they are simple, I like that. But I've never really understood the significance of maildir/new/. The only use I can see is that (for example in the case of dovecot), you'd move a message from new to cur and then update the index-file, that's it. So to make put it more direct, you'd know when and with what to update the index-file, based on
2009 Mar 13
0
RM using a Windows Service
...n "rm" using SSH, from a Windows Service using the following command line arguments - the aim is to clear the target folder before i SFTP new files to it so that the two folders are then identical. -o BatchMode=yes -o StrictHostkeyChecking=no -o -i C:\uat_key -l USERNAME MACHINE rm -f /targetfolder/* If I run this from a Windows EXE or Console application everything works fine and the folder is cleared and my SFTP copies the new files over. However, when I run it from the Windows Service the files are deleted but the SSH process doesn?t actually end and therefore my application hangs and...
2010 Oct 28
0
[LLVMdev] nested GEP in a static initializer fails
...t; In case it isn't clear, my goal is more about understanding constant > folding in LLVM than in seeing this particular functionality implemented. It could certainly be folded if you happen to have the TargetData for the relevant target architecture at hand. I know there's llvm/Support/TargetFolder.h for use with IRBuilder, which uses ConstantFoldConstantExpression() from llvm/Analysis/ConstantFolding.h. That handles GEPs of null pointers. As for transformation passes, grepping for ConstantFoldConstantExpression tells me that instruction combining (-instcombine) calls this method on all ope...
2010 Oct 28
2
[LLVMdev] nested GEP in a static initializer fails
Hi Nick, On Tue, 26 Oct 2010, Nick Lewycky wrote: > Joel E. Denny wrote: > > Given this LLVM assembly: > > > > @a = global i8* getelementptr (i8* null, i64 mul (i64 ptrtoint (i32* > > getelementptr (i32* null, i32 1) to i64), i64 2)) > > > > llc fails an assertion: > > > > llc: /home/jdenny/llvm-svn/include/llvm/Support/Casting.h:202:
2010 Oct 01
2
[LLVMdev] CMake "sudo make install" & headers
...ort/StableBasicBlockNumbering.h -- Installing: /usr/local/llvm-2.8/include/llvm/Support/StandardPasses.h -- Installing: /usr/local/llvm-2.8/include/llvm/Support/StringPool.h -- Installing: /usr/local/llvm-2.8/include/llvm/Support/SystemUtils.h -- Installing: /usr/local/llvm-2.8/include/llvm/Support/TargetFolder.h -- Installing: /usr/local/llvm-2.8/include/llvm/Support/Timer.h -- Installing: /usr/local/llvm-2.8/include/llvm/Support/TypeBuilder.h -- Installing: /usr/local/llvm-2.8/include/llvm/Support/ValueHandle.h -- Installing: /usr/local/llvm-2.8/include/llvm/Support/circular_raw_ostream.h -- Installin...
2010 Oct 01
0
[LLVMdev] CMake "sudo make install" & headers
On Thu, Sep 30, 2010 at 3:08 PM, Samuel Williams <space.ship.traveller at gmail.com> wrote: > Hi, > > I might just be doing something stupid, but when I do > > $ cmake -DCMAKE_INSTALL_PREFIX=/usr/local/llvm-2.8 -DCMAKE_BUILD_TYPE=Release .. > $ sudo make install > > I don't get the expected headers in >        /usr/local/llvm-2.8/include/llvm > > It is
2010 Sep 30
6
[LLVMdev] CMake "sudo make install" & headers
Hi, I might just be doing something stupid, but when I do $ cmake -DCMAKE_INSTALL_PREFIX=/usr/local/llvm-2.8 -DCMAKE_BUILD_TYPE=Release .. $ sudo make install I don't get the expected headers in /usr/local/llvm-2.8/include/llvm It is simply an empty directory. What am I doing wrong? This is on Mac OS X, CMake 2.8+ Kind regards, Samuel