search for: samaneh

Displaying 4 results from an estimated 4 matches for "samaneh".

2017 Jun 16
4
Execution
​Hello all, I have written a code in llvmlite. Using command numba --dump-llvm example.py > example.ll I can have .ll file. However, using lli example.ll, I am stopped with error: 'main' function not found in module. Is there anyway at which it can be executed using lli? Thank you in advance Best -- This email was Anti Virus checked by Security Gateway. -------------- next part
2010 Jun 21
1
[LLVMdev] Extracting Metadata of Variables
...bg.basictype.type* @llvm.dbg.basictype to { }*) }, section "llvm.metadata" ; <%llvm.dbg.variable.type*> [#uses=1] now what I'm interested is the line number "i32 13" shown in the metadata of @llvm.dbg.variable9. I was wondering if there is a way to do so.? Thank you Samaneh -- View this message in context: http://old.nabble.com/Extracting-Metadata-of-Variables-tp28944619p28944619.html Sent from the LLVM - Dev mailing list archive at Nabble.com.
2017 Jun 21
2
question about llvmlite
​Hi all, I am using llvmlite for pyvex and I want the output of my code (which is written based on llvmlite) to be like pyvex. In pyvex, (https://github.com/angr/pyvex). Considering pyvex, I tried to implement the following statements in pyvex to llvmlite: for stmt in irsb.statements: if isinstance(stmt, pyvex.IRStmt.Store): print "ST%s(%s) = %s" % (self.endness[-2:].lower(),
2010 Sep 02
1
[LLVMdev] Problems with Passing agrument to a Pass
Hi, I have a very naive question. I've written a pass that gets an argument from the command line with the following code: static cl::opt<int> LineNum("line-number", cl::Hidden, cl::Required,cl::desc("line of variable being observed")); Now when I run it, it seems like it cant see that I've put in an argument on the command line: opt -load