search for: metadta

Displaying 3 results from an estimated 3 matches for "metadta".

Did you mean: metadata
2010 Nov 04
2
[LLVMdev] C++ interface for metadta
...ates over functions and attaches metadata to them, and another pass that reads it and decides what to do (i.e print/ don't print to screen) according to the metadata that the first pass has written? Thanks a lot, Guy -- View this message in context: http://old.nabble.com/C%2B%2B-interface-for-metadta-tp30133423p30133423.html Sent from the LLVM - Dev mailing list archive at Nabble.com.
2013 Jan 12
4
obscure out of space, df and fi df are way off
Very low priority. No user data at risk. 8GB virtual disk being installed to, and the installer is puking. I''m trying to figure out why. I first get an rsync error 12, followed by the installer crashing. What''s interesting is this, deleting irrelevant source file systems, just showing the mounts for the installed system: [root@localhost tmp]# df Filesystem
2012 Aug 01
1
[LLVMdev] How to insert metadata in llvm IR?
...scriptor , e.g. DIVariable ,DICompileUnit, DISubprogram , I can use some function to insert metadata. 1. LLVM::Instruction::SetDebugLoc(...) => insert the debug info location like DILexicalBlock ,and insert !dbg appending an instruction. 2. LLVM::Instruction::setMetadata(...) => insert the metadta and !dbg appending an instruction. 3. DIBuilder::insertDeclare(...) => insert variable declare (like @llvm.dbg.declare) and metadata. 4. llvm::NamedMDNode::addOperand(...) => insert and Named Metadata. Like I can use above four function to insert metadata into bitcode. But I can't j...