search for: removekey

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

Did you mean: remote_key
2008 Sep 02
0
[LLVMdev] New llvm-gcc bootstrap failure
I get the error below (and have for a couple weeks now) when trying to build llvm-gcc on Ubuntu Feisty. In the meantime, on Ubuntu Gutsy, everything has been building fine. Both are release builds for x86. John cc1: StringMap.cpp:177: void llvm::StringMapImpl::RemoveKey(llvm::StringMapEntryBase*): Assertion `V == V2 && "Didn't find key?"' failed.
2008 Aug 25
4
[LLVMdev] New llvm-gcc bootstrap failure
> I am having the same problem. It was "introduced" by revision 54811, > so it looks like a memory corruption problem. Investigating. Interesting. Bootstrapping with gcac works! Some tests with valgrind also work. My next try is to add some debug code to do bounds checking in SmallVector. Cheers, -- Rafael Avila de Espindola Google | Gordon House | Barrow Street | Dublin 4 |
2008 Mar 29
3
[LLVMdev] Advice on debugging?
...ding bugs in my source program; It seems to be related more to finding errors in the various optimizer passes. So for example, when I run lli on my program: ---------------------------------------------------------- Assertion failed: (V == V2 && "Didn't find key?"), function RemoveKey, file StringMap.cpp, line 177. 0 lli 0x0049edcd _ZN40_GLOBAL__N_Signals.cpp_00000000_B58D0A3815PrintStackTraceEv + 45 1 lli 0x0049efc9 _ZN40_GLOBAL__N_Signals.cpp_00000000_B58D0A3813SignalHandlerEi + 323 2 libSystem.B.dylib...
2008 Apr 01
0
[LLVMdev] Advice on debugging?
...rogram; It seems to be related more to > finding errors in the various optimizer passes. > > So for example, when I run lli on my program: > ---------------------------------------------------------- > Assertion failed: (V == V2 && "Didn't find key?"), function RemoveKey, > file StringMap.cpp, line 177. > 0 lli 0x0049edcd > _ZN40_GLOBAL__N_Signals.cpp_00000000_B58D0A3815PrintStackTraceEv + 45 > 1 lli 0x0049efc9 > _ZN40_GLOBAL__N_Signals.cpp_00000000_B58D0A3813SignalHandlerEi + 323...
2008 Apr 01
1
[LLVMdev] Advice on debugging?
...> code is causing lli to crash... Did you run your code through the verifier? > > So for example, when I run lli on my program: > > ---------------------------------------------------------- > > Assertion failed: (V == V2 && "Didn't find key?"), function RemoveKey, > > file StringMap.cpp, line 177. This looks like either an lli bug, or invalid bitcode (see my remark on the verifier above). If it passes the verifier, please reduce a testcase and open a bug report. How were you running lli by the way - interpreter or jit? > > But when I run bu...
2008 Aug 13
2
[LLVMdev] llvm-gcc bootstrap failure
...-unknown-linux-gnu/include -I/ptmp/dag/llvm-project.official/llvm/trunk/include -DL_popcountsi2 -c /ptmp/dag/llvm-project.official/llvm-gcc-4.2/trunk/gcc/libgcc2.c -o libgcc/./_popcountsi2.o cc1: /ptmp/dag/llvm-project.official/llvm/trunk/lib/Support/StringMap.cpp:177: void llvm::StringMapImpl::RemoveKey(llvm::StringMapEntryBase*): Assertion `V == V2 && "Didn't find key?"' failed. /ptmp/dag/llvm-project.official/llvm-gcc-4.2/trunk/gcc/libgcc2.c:809: internal compiler error: Aborted Please submit a full bug report, with preprocessed source if appropriate. See <URL:http...
2008 Aug 13
0
[LLVMdev] llvm-gcc bootstrap failure
...e > -I/ptmp/dag/llvm-project.official/llvm/trunk/include -DL_popcountsi2 > -c /ptmp/dag/llvm-project.official/llvm-gcc-4.2/trunk/gcc/libgcc2.c -o > libgcc/./_popcountsi2.o > cc1: /ptmp/dag/llvm-project.official/llvm/trunk/lib/Support/StringMap.cpp:177: > void llvm::StringMapImpl::RemoveKey(llvm::StringMapEntryBase*): Assertion `V > == V2 && "Didn't find key?"' failed. > /ptmp/dag/llvm-project.official/llvm-gcc-4.2/trunk/gcc/libgcc2.c:809: internal > compiler error: Aborted Unless this is in something like an inline asm, an internal compiler error...
2008 Sep 03
2
[LLVMdev] New llvm-gcc bootstrap failure
...-checking does not currently select the LLVM debug build to link into llvm-gcc, so you have to set this manually), I do not see the error, only the Release build. valgrind seems clean on the Release build. Andrew > > John > > > cc1: StringMap.cpp:177: void > llvm::StringMapImpl::RemoveKey(llvm::StringMapEntryBase*): Assertion `V == > V2 && "Didn't find key?"' failed. > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listi...
2002 Nov 14
0
[Bug 436] New: SSH client API
...nfiguration hc = sshConfig.getHostConfiguration("*.ssh.box"); hc.setForwardX11(true); sshConfig.write(); // manage keys SSHKey key = SSHKeymanager.createKey(SSHKey.DSA, "apan-ola at foo.bar"); key.write("key1"); // creates ~/.ssh/key1 and ~/.ssh/key1.pub SSHKeymanager.removeKey("key1"); Collection keys = SSHKeymanager.listKeys(); ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee.
2008 Dec 13
2
[LLVMdev] internal compiler error problem in build llvm-gcc
Hi, When i wanted to build the llvm-gcc, i got the problem as following. ========================================================================================================================== cc1: /home/cllou/LLVM/llvm-2.4-dir/llvm-2.4/lib/Support/StringMap.cpp:177: void llvm::StringMapImpl::RemoveKey(llvm::StringMapEntryBase*): Assertion `V == V2 && "Didn't find key?"' failed. ../../llvm-gcc4.2-2.4.source/gcc/libgcc2.c:809: internal compiler error: Aborted Please submit a full bug report, with preprocessed source if appropriate. See <URL:http://developer.apple.com/b...
2011 Mar 15
10
[LLVMdev] Prevent unbounded memory consuption of long lived JIT processes
This series of patches address several issues causing memory usage to grow indefinetely on a long lived process. These are not convenional leaks -- memory would have been freed when the LLVM context or/and JIT engine is destroyed -- but for as long as they aren't the memory is usage effectively ubounded. The issues were found using valgrind with '--show-reachable=yes' option: 1.