search for: saman

Displaying 20 results from an estimated 47 matches for "saman".

Did you mean: raman
2009 Jul 09
5
[LLVMdev] Source file information.
Hi, I am new to LLVM, and need to find the line number and cpp source file name for each instruction in a .bc file. I suppose llvm debugger might have that feature but there is no documentation on it. Would you please give me some help how to do it? Thanks, ::Saman Zonouz University of Illinois -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090709/fdb2b693/attachment.html>
2009 Jul 09
0
[LLVMdev] Source file information.
...e they in a file which I have to parse myself? if so, is there any way that I use a library to get the file/line information for each instruction? since, I am writing a pass for opt tool that manipulates the callgraph and want to get the line number information in runOnModule() function. Thanks, ::Saman On Thu, Jul 9, 2009 at 8:13 AM, Saman Aliari Zonouz <saliari2 at uiuc.edu>wrote: > Hi, > > I am new to LLVM, and need to find the line number and cpp source file name > for each instruction in a .bc file. I suppose llvm debugger might have that > feature but there is no docum...
2009 Jul 23
2
[LLVMdev] LLVM Module Pass problem!
...te an object from the class I get the following error while running the pass: opt: symbol lookup error: ../llvm/Debug/lib/MyPass.so: undefined symbol: _ZN10Thread_MyPassC1Ev The pass is compiled correctly but does not run. Could you someone please let me know what is wrong? Thanks in advance, ::Saman -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090723/378881c8/attachment.html>
2009 Jul 23
0
[LLVMdev] LLVM Module Pass problem!
Saman Zonouz wrote: > Dear All, > > I am new to LLVM and try to write a Module pass. In the same .cpp file > I am defining a class. > The problem is that whenever I instantiate an object from the class I > get the following error while running the pass: > > opt: symbol lookup erro...
2009 Jul 09
1
[LLVMdev] Source file information.
...ysis/DebugInfo.h, and opt -print-dbginfo for an example of how to use it." http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Analysis/DebugInfo.h?revision=74920&view=markup http://llvm.org/doxygen/classes.html#letter_D Anyway theres some pointers, Aaron Thanks, ::Saman On Thu, Jul 9, 2009 at 8:13 AM, Saman Aliari Zonouz <saliari2 at uiuc.edu> wrote: Hi, I am new to LLVM, and need to find the line number and cpp source file name for each instruction in a .bc file. I suppose llvm debugger might have that feature but there is no documentation on...
2016 Oct 05
3
libvirt-v2v error
...es/export_domain --network rhevm "10.16.32.36-db- slcloudcontrol" virt-v2v: Failed to connect to qemu:///system: libvirt error code: 45, message: authentication failed: Failed to step SASL negotiation: -7 (SASL(-7): invalid parameter supplied: Unexpectedly missing a prompt result) -- *Saman K. Bandara,** Database Administrator* *ShipXpres Technologies (Pvt) Ltd.* 2300 Marsh Point Road, Suite 101 || Neptune Beach, FL 32266 Phone: +94 71 8135485 <%2B94%20718135485> | +94 <%2B94%20777522730>76 6014001 *Company Website <http://www.shipxpress.com/>* || *LinkedIn <...
2009 Jun 15
1
[LLVMdev] VmKit Question.
Hi, I compiled VmKit and got it running, but do not know how it is possible to emit llvm-bitcode fram .java code. Would you please help me? Thanks, ::Saman -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090615/79240d35/attachment.html>
2009 Jul 07
1
[LLVMdev] LLVM Question.
Hi, I am Saman, a UIUC PhD student working with LLVM. Would you please let me know how I can extract CG and CFG for a given application? Thanks a lot, ::Saman -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090707/951958b6...
2016 Oct 06
2
Re: libvirt-v2v error
Hi Richard, I'm using Red Hat Enterprise Linux Server release 6.8 / virt-v2v-0.9.1-5.el6_5.x86_64.and perl v5.10.1 This is the latest update I can get for RHEL 6.8. Can you advice me the possible way to proceed with v2v? -- *Saman K. Bandara,** Database Administrator* *ShipXpres Technologies (Pvt) Ltd.* 2300 Marsh Point Road, Suite 101 || Neptune Beach, FL 32266 Phone: +94 71 8135485 <%2B94%20718135485> | +94 <%2B94%20777522730>76 6014001 *Company Website <http://www.shipxpress.com/>* || *LinkedIn <...
2009 Jul 13
2
[LLVMdev] Aliasing on bitcode.
...tically given the .bc file of the application. Is there any library in LLVM which already implements the aliasing? (does it support multi-threaded apps?) What is the best way of doing it (I want to extract aliasing information in runOnModule() function in the pass I am working on)? Thanks a lot, ::Saman Zonouz UIUC PhD CS student -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090713/93137a01/attachment.html>
2009 Jul 09
3
[LLVMdev] Source file information.
>> -----Original Message----- >> From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] > On >> Behalf Of Saman Aliari Zonouz >> Sent: Thursday, July 09, 2009 11:44 AM >> To: llvmdev at cs.uiuc.edu >> Subject: [LLVMdev] Source file information. >> >> Hi, >> >> I am new to LLVM, and need to find the line number and cpp source file >> name for each instruction...
2009 Jul 09
3
[LLVMdev] Source file information.
...fter is to be able to emit line number information for COFF > (Common Object File Format) object module files, basically it comes down to > paired line numbers and virtual address offsets. > > I have not really set out to look at this yet, just feeling ahead, and was > prompted by Saman's question to have a look. > > So any pointers or help are most welcome, > > Aaron > So you are digging into the code generator issues. That's beyond my ken. The original question seemed to be interested in getting debug information corresponding to an LLVM instruction a...
2009 Jul 09
0
[LLVMdev] Source file information.
.... Hi John, What I am after is to be able to emit line number information for COFF (Common Object File Format) object module files, basically it comes down to paired line numbers and virtual address offsets. I have not really set out to look at this yet, just feeling ahead, and was prompted by Saman's question to have a look. So any pointers or help are most welcome, Aaron Török Edwin wrote: > On 2009-07-09 11:17, Aaron Gray wrote: > >>>> -----Original Message----- >>>> From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] >>&g...
2009 Jul 09
0
[LLVMdev] Source file information.
> -----Original Message----- > From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] On > Behalf Of Saman Aliari Zonouz > Sent: Thursday, July 09, 2009 11:44 AM > To: llvmdev at cs.uiuc.edu > Subject: [LLVMdev] Source file information. > > Hi, > > I am new to LLVM, and need to find the line number and cpp source file > name for each instruction in a .bc file. I suppose llvm de...
2009 Jul 27
2
[LLVMdev] Reachability info in LLVM?
Dear All, I am new to LLVM and want to know if LLVM provides any reachability information about the instructions inside a function? For example, is instruction 'J' reachable from the instruction 'I'? (just based on CFG) Thanks a lot, ::Saman -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090727/d36adddd/attachment.html>
2009 Jul 28
1
[LLVMdev] Reachability info in LLVM?
Thanks. that's right but I was looking for sth like "successor closure" set for each instruction 'I' that includes all reachable instructions from I. Does LLVM provide such a set? Thanks alot, ::Saman Dear All, > >I am new to LLVM and want to know if LLVM provides any reachability information about the instructions inside a function? For example, is instruction 'J' reachable from the instruction 'I'? (just based on CFG) > You can just do a depth first search on the cfg...
2011 Aug 24
1
--delete option
...was wondering if it's possible to make the --delete option to not delete files that have been newly created on the destination site but which do not yet exist on the source side. However it should still delete files that did exist on the source side but were subsequently deleted. Many Thanks, Saman
2009 Jul 13
0
[LLVMdev] Aliasing on bitcode.
On Mon, Jul 13, 2009 at 3:28 PM, saman aliari<samy_442 at yahoo.com> wrote: > I am working on a LLVM bitcode based project in which we do static lockset > analysis. I need to get Aliasing information statically given the .bc file > of the application. Is there any library in LLVM which already implements > the aliasing...
2010 Jun 09
1
counting across leves of factors
...ery slow and dumb. it looks like this: i<-0 for(i1 in levels(hivdat$pohl)){ a<-subset(hivdat,hivdat$pohl==i1) for(i2 in levels(a$vekF)){ b<-subset(a,a$vekF==i2) for(i3 in levels(b$ekstF)){ c<-subset(b,b$ekst==i3) for(i4 in levels(c$zam)){ d<-subset(c,c$zam==i4) for(i5 in levels(d$saman)){ e<-subset(d,d$saman==i5) for(i6 in levels(e$test)){ f<-subset(e,e$test==i6) for(i7 in levels(f$aktiv)){ g<-subset(f,f$aktiv==i7) for(i8 in levels(g$pocpartF)){ h<-subset(g,g$vekF==i8) for(i9 in levels(h$stav)){ i<-subset(h,h$stav==i9) for(i10 in levels(i$partner)){ j<-subset(i,...
2016 Oct 05
2
Re: libvirt-v2v error
...rhevm \ esx_guest ------------------------------------------------------------------------------------------------------------------------------------ On Wed, Oct 5, 2016 at 4:48 PM, Richard W.M. Jones <rjones@redhat.com> wrote: > On Wed, Oct 05, 2016 at 04:11:20PM +0530, Saman Bandara wrote: > > Dear sir, > > > > I'm getting following error while trying to convert a VMWare RHEL6 server > > to kvm. > > Please give any suggestion to resolve this. > > > > [root@kvm16 ~]# virt-v2v ic esx://10.16.32.12/?no_verify=1 -o rhev -os &gt...