search for: deltaalgorithm

Displaying 13 results from an estimated 13 matches for "deltaalgorithm".

2011 Jul 31
1
[LLVMdev] Selfhost LLVM and Clang on ARM
Hi, all I am trying to selfhost LLVM and Clanf on ARM. Hopefully doing this can reveal what version of GCC is broken. But I have a concern about the following message while building LLVM and Clang by using clang (selfhost build). --- llvm[1]: Compiling DeltaAlgorithm.cpp for Debug build /tmp/cc-DqWGS1.s: Assembler messages: /tmp/cc-DqWGS1.s:8963: Rd and Rm should be different in mul llvm[1]: Compiling PluginLoader.cpp for Debug build /tmp/cc-wpJpuX.s: Assembler messages: /tmp/cc-wpJpuX.s:724: rdhi, rdlo and rm must all be different /tmp/cc-wpJpuX.s:728: Rd and...
2017 Jan 25
2
LLVM 3.9.1 build race?
...eFiles/LLVMSupport.dir/ConvertUTF.c.o CMakeFiles/LLVMSupport.dir/ConvertUTFWrapper.cpp.o CMakeFiles/LLVMSupport.dir/CrashRecoveryContext.cpp.o CMakeFiles/LLVMSupport.dir/DataExtractor.cpp.o CMakeFiles/LLVMSupport.dir/DataStream.cpp.o CMakeFiles/LLVMSupport.dir/Debug.cpp.o CMakeFiles/LLVMSupport.dir/DeltaAlgorithm.cpp.o CMakeFiles/LLVMSupport.dir/DAGDeltaAlgorithm.cpp.o CMakeFiles/LLVMSupport.dir/Dwarf.cpp.o CMakeFiles/LLVMSupport.dir/Error.cpp.o CMakeFiles/LLVMSupport.dir/ErrorHandling.cpp.o CMakeFiles/LLVMSupport.dir/FileUtilities.cpp.o CMakeFiles/LLVMSupport.dir/FileOutputBuffer.cpp.o CMakeFiles/LLVMSuppo...
2011 Feb 11
0
[LLVMdev] Compiler error when self-hosting
...se build llvm[1]: Compiling Allocator.cpp for Release build llvm[1]: Compiling Atomic.cpp for Release build llvm[1]: Compiling CommandLine.cpp for Release build llvm[1]: Compiling ConstantRange.cpp for Release build llvm[1]: Compiling CrashRecoveryContext.cpp for Release build llvm[1]: Compiling DAGDeltaAlgorithm.cpp for Release build llvm[1]: Compiling Debug.cpp for Release build llvm[1]: Compiling DeltaAlgorithm.cpp for Release build llvm[1]: Compiling Disassembler.cpp for Release build llvm[1]: Compiling Dwarf.cpp for Release build llvm[1]: Compiling DynamicLibrary.cpp for Release build llvm[1]: Compilin...
2017 May 30
4
Should we split llvm Support and ADT?
...ere, then we should have a very good reason why not. BranchProbability shouldn’t be there at all but probably is due to layering, and likely the same goes for TargetRegistry. We should fix that. Same goes for ARM* which should all be in the ARM backend. Dwarf should be in libDebugInfoDWARF. *DeltaAlgorithm aren’t even used outside of tests! Anyway, sorry for the brain dump. But yes, this has grown in to something which can be cleaner. Perhaps Support will still exist to wrap posix and friends, hopefully with ADT separately, but we should also move a bunch of things to better suited libraries if we...
2011 Sep 17
0
[LLVMdev] Build errors on r139985
...ads/llvm3.0/llvm$ make -j 4 make[1]: Entering directory `/home/carl/Downloads/llvm3.0/llvm/lib/Support' llvm[1]: Compiling CommandLine.cpp for Debug+Asserts build llvm[1]: Compiling DataExtractor.cpp for Debug+Asserts build llvm[1]: Compiling Debug.cpp for Debug+Asserts build llvm[1]: Compiling DeltaAlgorithm.cpp for Debug+Asserts build llvm[1]: Compiling Disassembler.cpp for Debug+Asserts build In file included from CommandLine.cpp:25: /home/carl/Downloads/llvm3.0/llvm/include/llvm/Support/system_error.h:499: error: ‘EAFNOSUPPORT’ was not declared in this scope /home/carl/Downloads/llvm3.0/llvm/include...
2017 Jun 01
2
Should we split llvm Support and ADT?
...on why it isn't there is because lib/DebugInfo is for *consuming* debug info, but these definitions are useful for both reading and writing DWARF. That is not to say that they couldn't be moved somewhere else of course (but probably not lib/DebugInfo in its current form). -- adrian > *DeltaAlgorithm aren’t even used outside of tests! > > Anyway, sorry for the brain dump. But yes, this has grown in to something which can be cleaner. Perhaps Support will still exist to wrap posix and friends, hopefully with ADT separately, but we should also move a bunch of things to better suited libra...
2010 Oct 02
2
[LLVMdev] tblgen(75451) malloc: *** error for object 0x7fff5fbfcbd0: pointer being reallocated was not allocated
...ng APInt.cpp for Release+Asserts build llvm[1]: Compiling APSInt.cpp for Release+Asserts build llvm[1]: Compiling CommandLine.cpp for Release+Asserts build llvm[1]: Compiling Allocator.cpp for Release+Asserts build llvm[1]: Compiling ConstantRange.cpp for Release+Asserts build llvm[1]: Compiling DAGDeltaAlgorithm.cpp for Release+Asserts build llvm[1]: Compiling CrashRecoveryContext.cpp for Release+Asserts build llvm[1]: Compiling Debug.cpp for Release+Asserts build llvm[1]: Compiling DeltaAlgorithm.cpp for Release+Asserts build llvm[1]: Compiling Dwarf.cpp for Release+Asserts build llvm[1]: Compiling ErrorH...
2010 Oct 04
0
[LLVMdev] tblgen(75451) malloc: *** error for object 0x7fff5fbfcbd0: pointer being reallocated was not allocated
...Asserts build > llvm[1]: Compiling APSInt.cpp for Release+Asserts build > llvm[1]: Compiling CommandLine.cpp for Release+Asserts build > llvm[1]: Compiling Allocator.cpp for Release+Asserts build > llvm[1]: Compiling ConstantRange.cpp for Release+Asserts build > llvm[1]: Compiling DAGDeltaAlgorithm.cpp for Release+Asserts build > llvm[1]: Compiling CrashRecoveryContext.cpp for Release+Asserts build > llvm[1]: Compiling Debug.cpp for Release+Asserts build > llvm[1]: Compiling DeltaAlgorithm.cpp for Release+Asserts build > llvm[1]: Compiling Dwarf.cpp for Release+Asserts build >...
2017 May 30
3
Should we split llvm Support and ADT?
In my experience the buildsystem works fine in combination with tablegen (at least this aspect of it). The real problem here is that tablegen is just slow. Some of the X86 tables take indeed Last time I looked at it tablegen had still room to optimize the way it resolves class hierarchies and the variables within which it did basically one at a time, so it needed to traverse the hierarchies
2010 Oct 01
2
[LLVMdev] CMake "sudo make install" & headers
...Installing: /usr/local/llvm-2.8/include/llvm/ADT/APFloat.h -- Installing: /usr/local/llvm-2.8/include/llvm/ADT/APInt.h -- Installing: /usr/local/llvm-2.8/include/llvm/ADT/APSInt.h -- Installing: /usr/local/llvm-2.8/include/llvm/ADT/BitVector.h -- Installing: /usr/local/llvm-2.8/include/llvm/ADT/DAGDeltaAlgorithm.h -- Installing: /usr/local/llvm-2.8/include/llvm/ADT/DeltaAlgorithm.h -- Installing: /usr/local/llvm-2.8/include/llvm/ADT/DenseMap.h -- Installing: /usr/local/llvm-2.8/include/llvm/ADT/DenseMapInfo.h -- Installing: /usr/local/llvm-2.8/include/llvm/ADT/DenseSet.h -- Installing: /usr/local/llvm-2.8/...
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
2015 Jul 29
1
[LLVMdev] Error when i am using command make -j4 command in cygwin to compile safecode
...Release+Asserts build llvm[1]: Compiling Compression.cpp for Release+Asserts build llvm[1]: Compiling ConvertUTF.c for Release+Asserts build llvm[1]: Compiling ConvertUTFWrapper.cpp for Release+Asserts build llvm[1]: Compiling CrashRecoveryContext.cpp for Release+Asserts build llvm[1]: Compiling DAGDeltaAlgorithm.cpp for Release+Asserts build llvm[1]: Compiling DataExtractor.cpp for Release+Asserts build llvm[1]: Compiling DataStream.cpp for Release+Asserts build llvm[1]: Compiling Debug.cpp for Release+Asserts build llvm[1]: Compiling DeltaAlgorithm.cpp for Release+Asserts build llvm[1]: Compiling Dwarf.cp...