search for: libgc

Displaying 20 results from an estimated 28 matches for "libgc".

Did you mean: libc
2005 Dec 05
2
Re: [users] CentOS 4.2 dag repo problem.
Hello, It would be nice if we could get a full list of packages which have a wrong sha1 checksum. I don't have the bandwidth for a full mirror of all of Dag's rpms and i also don't have shell access to such a mirror. So a small request for a mirror admin: The following checks the files repodata/*.xml.gz against the sha1 sums in repomd.xml and checks the RPMS/*.rpm files against
2010 Sep 17
6
[LLVMdev] Accurate garbage collection
...s malloc does (it's a library call). The issue with > GC's is that they need to be provided info about the stack, thats where > LLVM's support comes in. Are there any standalone accurate garbage collectors that I could use in my project, rather than having to write me own (or use libgc, which is what I'm doing now)? Garbage collectors are subtle and very tricky and I really don't want to have to do one myself, as I know I'll just get it wrong. -- ┌─── dg@cowlark.com ───── http://www.cowlark.com ───── │ │ life←{ ↑1 ⍵∨.^3 4=+/,¯1 0 1∘.⊖¯1 0 1∘.⌽⊂⍵ } │ --- Conway's...
2016 Jun 07
2
lld/x86_64 linux elf invalid link_map
I'm having a curious issue with LLD/x86_64 linux/elf (Ubuntu 14.04); Where the l_addr of the link_map is invalid when linked with lld, but is fine with gnu ld. I'm using the libgc (boehm) code which when initializing reads the DYNAMIC/DEBUG link_map data, and crashes because the l_addr field has value out of readable memory. The strange this is that it happens only on some linux systems even though they're the same ubuntu version. My question is, what could possibly...
2010 Jan 05
2
[LLVMdev] LLVM C bindings and Boehm GC
...'s native call mechanism to call the LLVM C bindings. I've got a couple of questions I'd be grateful if anyone can answer: My language in general and the compiler in particular rely heavily on Boehm GC. I'm assuming that LLVM is OK with being linked into a process that's using libgc? I really don't want to write a garbage collector! My existing IR has no structured type information. All structures are layed out exactly for the target machine before intermediate code is generated and array and intermediate code for class/struct field accesses are all pointer operations. I&...
2008 Jun 09
6
FW: Memory Leak Problem in My Application running on Solaris 10.
...c unresponsiveness While suing mdb ( ::findleaks ) It says no memory allocation done and says no leaks found. 1) Is there any way where I can restrict dtrace to look for probe only certain source files or functions? 2) Is there any way to handle such problems? 3) I got a clue of using "libgc.so" which acts as garbage collector is there any problem in using and how reliable and effective is this. ( it works fine on sample application but not improvement in real application ) . I just linked the library "libgc.so" at compile time ? Anything else need to done for thi...
2010 Jan 31
2
[LLVMdev] Boehm GC + static variables?
Hi, I'm running LLVM bitcode generated by my compiler under lli. The bitcode is linked against Boehm GC (lli -load=/usr/lib/libgc.so). It looks like Boehm GC isn't scanning global variables and as a result objects referenced only through globals are being prematurely collected. I understand that Boehm GC needs to see the data segment containing my global variables as a root. For native executables It's smart enough t...
2016 Oct 11
0
PKG_LIBS in make child processes
...ectory, then these static libraries are copied to src/, and finally the static libraries are integrated into msa.so. The Makevars file looks as follows: PKG_LIBS=`${R_HOME}/bin${R_ARCH_BIN}/Rscript -e "if (Sys.info()['sysname'] == 'Darwin') cat('-Wl,-all_load ./libgc.a ./libClustalW.a ./libClustalOmega.a ./libMuscle.a') else cat('-Wl,--whole-archive ./libgc.a ./libClustalW.a ./libClustalOmega.a ./libMuscle.a -Wl,--no-whole-archive')"` PKG_CXXFLAGS=-I"./gc-7.2/include" -I"./Muscle/" -I"./ClustalW/src...
2003 Sep 18
2
Adpcm quality
Please, try exten => 99,1,Wait,1 exten => 99,2,Record,/tmp/pcmfile:pcm exten => 99,3,Wait,1 exten => 99,4,Playback,/tmp/pcmfile exten => 99,5,Wait,1 exten => 99,6,Record,/tmp/voxfile:vox exten => 99,7,Wait,1 exten => 99,8,Playback,/tmp/voxfile (put your own extension). Pcm recording is OK, playback is OK. Adpcm recording is noticeably worse. Adpcm playback is very
2005 Nov 21
1
[LLVMdev] setjmp/longjmp interoperable between llvm and gcc?
.... At present the gcc-built code uses the setjmp/longjmp implementations provided by the gnu C library; and presumably the llvm-built code will use llvm's setjmp/longjmp intrinsics. Are the two implementations safely interoperable? Alternatives would be to force the llvm-built code to use the libgc setjmp/longjmp; force the gcc-built code to use a setjmp/longjmp borrowed from llvm; or perhaps make each setjmp tag the jmpbuf to show which flavor of longjmp is required. Regards, ... kurt
2010 Sep 17
0
[LLVMdev] Accurate garbage collection
...library call). The issue with > > GC's is that they need to be provided info about the stack, thats where > > LLVM's support comes in. > > Are there any standalone accurate garbage collectors that I could use in > my project, rather than having to write me own (or use libgc, which is > what I'm doing now)? Garbage collectors are subtle and very tricky and I > really don't want to have to do one myself, as I know I'll just get it > wrong. > > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs...
2012 Jan 03
2
[LLVMdev] Using llvm command line functions from within a plugin?
...M head I'm encountering a new problem. When I attempt to load my custom plugin pass into opt, I'm getting this error message: dyld: lazy symbol binding failed: Symbol not found: __ZN4llvm2cl3optIbLb0ENS0_6parserIbEEE4doneEv Referenced from: /Users/talin/Projects/tart/build-eclipse/linker/libgc.dylib Expected in: flat namespace It appears to be due to the fact that I'm using LLVM's command-line functions from within my plugin: cl::opt<bool> optShowGC("show-gc", cl::desc("Print debugging output from GC strategy")); (when I remove the option from the s...
2010 Jan 31
0
[LLVMdev] Boehm GC + static variables?
...ule. Can anyone confirm if I can rely on these assumptions? -- James On 31 January 2010 12:53, James Williams <junk at giantblob.com> wrote: > Hi, > > I'm running LLVM bitcode generated by my compiler under lli. The bitcode is > linked against Boehm GC (lli -load=/usr/lib/libgc.so). > > It looks like Boehm GC isn't scanning global variables and as a result > objects referenced only through globals are being prematurely collected. I > understand that Boehm GC needs to see the data segment containing my global > variables as a root. For native executables...
2017 Feb 21
3
[lld] elf linker creates undefined empty symbol
...github.com/carlokok/109a03620abb95bdad6479426e3dce11 lld command line used: lld -flavor gnu -O0 --lto-O0 --eh-frame-hdr --dynamic-linker "/lib64/ld-linux-x86-64.so.2" "-L." "-oConsoleApplication347" "RemObjects.Elements.Cirrus.ConsoleApplication347.o" "libgc.a" "Island.a" "RemObjects.Elements.Cirrus.importlib-ConsoleApplication347-libc.so" "RemObjects.Elements.Cirrus.importlib-ConsoleApplication347-ClassLibrary22" "RemObjects.Elements.Cirrus.importlib-ConsoleApplication347-libpthread.so" "RemObjects...
2012 Jan 03
0
[LLVMdev] Using llvm command line functions from within a plugin?
...new problem. > When I attempt to load my custom plugin pass into opt, I'm getting this error > message: > > dyld: lazy symbol binding failed: Symbol not found: > __ZN4llvm2cl3optIbLb0ENS0_6parserIbEEE4doneEv > Referenced from: /Users/talin/Projects/tart/build-eclipse/linker/libgc.dylib > Expected in: flat namespace are you sure you built opt and your plugin using the same LLVM build? You can get this kind of thing if (eg) opt is from a Release build, but your plugin was built against a Debug build. Ciao, Duncan. > It appears to be due to the fact that I'm u...
2010 Jan 31
1
[LLVMdev] Boehm GC + static variables?
...e assumptions? > > -- James > > > On 31 January 2010 12:53, James Williams <junk at giantblob.com> wrote: >> >> Hi, >> >> I'm running LLVM bitcode generated by my compiler under lli. The bitcode >> is linked against Boehm GC (lli -load=/usr/lib/libgc.so). >> >> It looks like Boehm GC isn't scanning global variables and as a result >> objects referenced only through globals are being prematurely collected. I >> understand that Boehm GC needs to see the data segment containing my global >> variables as a root. Fo...
2008 Jun 21
0
dovecot-1.1.0: child (imap) killed with signal 11
...o warranty for GDB. Type "show warranty" for details. This GDB was configured as "i486-slackware-linux"... Using host libthread_db library "/lib/libthread_db.so.1". warning: Can't read pathname for load map: Input/output error. Reading symbols from /usr/local/lib/libgc.so.1...done. Loaded symbols for /usr/local/lib/libgc.so.1 Reading symbols from /lib/libc.so.6...done. Loaded symbols for /lib/libc.so.6 Reading symbols from /lib/libdl.so.2...done. Loaded symbols for /lib/libdl.so.2 Reading symbols from /lib/libpthread.so.0...done. Loaded symbols for /lib/libpthrea...
2010 Sep 17
0
[LLVMdev] Accurate garbage collection
As I understand it, LLVM simply gives you support for garbage collectors that you have to implement yourself and link into the final binary, similar to what C's malloc does (it's a library call). The issue with GC's is that they need to be provided info about the stack, thats where LLVM's support comes in. As far as I know, the garbage collector is linked into the final binary
1998 Apr 24
1
R-beta: exponentiation continued
A non-text attachment was scrubbed... Name: not available Type: text Size: 491 bytes Desc: not available Url : https://stat.ethz.ch/pipermail/r-help/attachments/19980424/a4bd8991/attachment.pl
2005 Nov 25
0
[LLVMdev] Re: setjmp/longjmp interoperable between llvm and gcc?
...ntrinsics. Are the two implementations >> safely interoperable? > >No, not right now. EH in general doesn't interoperate. This will be >fixed in the future, but is problematic for the time being. > >> Alternatives would be to force the llvm-built code to use the libgc >> setjmp/longjmp; force the gcc-built code to use a setjmp/longjmp >> borrowed from llvm; or perhaps make each setjmp tag the jmpbuf to >> show which flavor of longjmp is required. > >I depends on what sort of thing you want to do. Another option is to >compile ev...
2011 Dec 16
1
[LLVMdev] Accurate garbage collection
David Given wrote: > Are there any standalone accurate garbage collectors that I could use in my > project, rather than having to write me own (or use libgc, which is what I'm > doing now)? Garbage collectors are subtle and very tricky and I really don't want > to have to do one myself, as I know I'll just get it wrong. On the contrary, writing your own GC is both easy and enlightening. You'll need: 1. Your own shadow stack: an...