search for: createmetadata

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

Did you mean: create_metadata
2011 Nov 08
1
Unexpected behavior when browsing list objects by name, when the object name is a substring (prefix) of an existing object that has a valid value
> > Hi, > > The program I am writing requires me to append named objects to my > existing list objects dynamically. > > So my list object is retval. retval always has a metadatatabletype object > > createMetadata=TRUE > retval <-list() > retval$metadatatype =c("normal") > retval$metadata=NULL > > How, depending on certain logic, I create a metadata object > > if (createMetadata==TRUE) retval$metadata =rbind(retval$metadata,c(1,0) ) > The results are > > retval$meta...
2011 Nov 20
0
[LLVMdev] How can I output assembly comments from emitPrologue()?
So, an update. I have managed to generate comments, although it does create a non-existent instruction. My method is as follows (and I would appreciate any comments on how to do it "better", although note that this won't make it into the final code :).) 1. I declared a "fake" instruction type to hold comments, ala: class FakeInst<dag outs, dag ins, string asmstr,
2011 Nov 20
2
[LLVMdev] How can I output assembly comments from emitPrologue()?
Dear all, I am looking to output assembly comments in my emitPrologue() function, just for my own readability. Searching for a way to do this found me this thread - http://lists.cs.uiuc.edu/pipermail/llvmdev/2011-October/043722.html, which says that the best way to output comments from somewhere like emitPrologue() is to: 1. Create an MDString for the comment. 2. Attach it to an LLVM