search for: getelem

Displaying 6 results from an estimated 6 matches for "getelem".

Did you mean: cetelem
2012 Jan 13
3
tm package, custom reader
I need help with creating custom xml reader for use with the tm package. The objective is to crate a corpus for analysis. Files that I'm working with come from solr and are in a funky XML format never the less I'm able to parse the XML files using solrDocs.R function provided by Duncan Temple Lang. The problem I'm having that once I parse the document I need to create a custom
2008 Aug 11
2
[LLVMdev] Casting between address spaces and address space semantics
...t;> this information: It removes any bitcasts from a subset to a superset >> address space. It gets at the address space information by requiring the >> TargetAddrspaces analysis, which will give it the default implementation in >> all current tools. > > For the case of a GetElementPointer, we are replacing a bitcast to a > pointer, getelem with a getelem bitcast. The assumption is the latter > bitcast will hopefully go away when we iterate through those uses. Uh? Is this a comment about what the current code or my patch does, or what it should do? I don't unde...
2008 Aug 10
0
[LLVMdev] Casting between address spaces and address space semantics
...; use of this > information: It removes any bitcasts from a subset to a superset > address > space. It gets at the address space information by requiring the > TargetAddrspaces analysis, which will give it the default > implementation in > all current tools. For the case of a GetElementPointer, we are replacing a bitcast to a pointer, getelem with a getelem bitcast. The assumption is the latter bitcast will hopefully go away when we iterate through those uses. > > > So, this requires a minimal amount of changes, the current code > won't know the > dif...
2008 Sep 15
1
[LLVMdev] Casting between address spaces and address space semantics
...ver create a concrete class from TargetAddrSpace that doesn't also derive > from ImmutablePass? If not, I don't think is worth using multiple > inheritance in this case. I think you are right here, changing the inheritance in this way also works fine. >>> For the case of a GetElementPointer, we are replacing a bitcast to a >>> pointer, getelem with a getelem bitcast. The assumption is the latter >>> bitcast will hopefully go away when we iterate through those uses. >> Uh? Is this a comment about what the current code or my patch does, or what >&gt...
2008 Aug 12
0
[LLVMdev] Casting between address spaces and address space semantics
...a >>> superset >>> address space. It gets at the address space information by >>> requiring the >>> TargetAddrspaces analysis, which will give it the default >>> implementation in >>> all current tools. >> >> For the case of a GetElementPointer, we are replacing a bitcast to a >> pointer, getelem with a getelem bitcast. The assumption is the >> latter >> bitcast will hopefully go away when we iterate through those uses. > Uh? Is this a comment about what the current code or my patch does, > or what i...
2008 Aug 07
2
[LLVMdev] Casting between address spaces and address space semantics
Hi Mon Ping, I've again attached a patch, wich lets LLVM know about about the relations between different address spaces. Instead of cramming this info in with TargetData (with all kinds of unwanted side effects, especially for the IR), I opted to create a new pass, TargetAddrspaces, which holds this information. Just like TargetData, this can be added to the passmanager by the tool running