Displaying 1 result from an estimated 1 matches for "keyd".
Did you mean:
key
2007 Dec 02
1
[LLVMdev] reading & writing bitcode from non file, e.g. GDBM store (or MySQL database)
...users after a
standard installation (and without any tweaking of LLVM sources!)
I want to store modules inside non-files, for example inside GDBM
entries (or inside MySQL databases). Apparently, I can read a module
from a GDBM store with something like (all error handling is skipped)
datum keyd, vald; // GDBM key & value
// fill keyd appropriately
vald = gdbm_fetch (bark_gdbm, keyd);
MemoryBuffer* membuf = MemoryBuffer::getMemBuffer(vald.dptr,
vald.dptr+vald.dsize, bufnam);
Module* lmodu = ParseBitcodeFile(membuf, &errmsg);
// do something appropriate with the...