similar to: [LLVMdev] Finding call points to a function

Displaying 20 results from an estimated 8000 matches similar to: "[LLVMdev] Finding call points to a function"

2009 Sep 10
0
[LLVMdev] Finding call points to a function
Rakesh Komuravelli wrote: > Hi, > > I am writing an LLVM Pass and I would like to know how would I do the > following: > > 1. I have a function foo, and I need to get all the call points calling > this function in each Function of the Module. The only way I can think > of is to iterate over the BasicBlocks of each Function, look for all the > Call Instructions and
2009 Sep 04
2
[LLVMdev] Error in Hello World Pass
Hi, I am trying to compile the Hello World pass (described at http://llvm.org/docs/WritingAnLLVMPass.html#basiccode) in an LLVM Project and I get an error, 'no match for ‘operator<<’ at line llvm::cerr << "*Hello: *" << F.getName() << "\n"; But when I looked up in the LLVM API Documentation, I think "<<" operator is not overloaded
2009 Oct 05
0
[LLVMdev] [Fwd: Re: problem with multiple LLVM passes]
Rakesh Komuravelli wrote: > Hi John, > > I am having the exact same problem. Let me answer the four questions > that you have asked.. > > 1) Are both passes included in the same dynamic library? If not, are > you loading their respective libraries with multiple -load options? > > Yes. I load both the libraries with two -load options. I see both the > passes listed
2013 Oct 31
6
need help !!!
Hi, I am using puppet 2.7.20 server on linux and windows client with same version of puppet. Until recently everything was working fine but lately I have started getting the error below [0m [0;32minfo: Caching catalog for node_windows [0m [0;37mdebug: Puppet::Type::Exec::ProviderShell: feature posix is missing [0m [0;37mdebug: Puppet::Type::Exec::ProviderPosix: feature posix is missing [0m
2011 Aug 22
8
Reserved Memory release
I had temporarily started a VM, and it has allocated the memory for it. I have realised that after turning it down, the memory allocated to it, has remained reserved. Now, I need it for Dom0. So, how do I release the RAM that is reserved for VM, and make it available to Dom0? Is reboot the only option? _______________________________________________ Xen-users mailing list
2011 Aug 17
14
Copy files from Centos Guest to Host
Is there any method to copy files from the guest to host? I use virbr networking where the host and the guest have different static IPs. _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
2011 Aug 17
14
Copy files from Centos Guest to Host
Is there any method to copy files from the guest to host? I use virbr networking where the host and the guest have different static IPs. _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
2005 Dec 27
1
Rails/Ajax question from a newbie (to both)
I''m trying to get a Rico LiveGrid working, and I am a bit stuck on how to accomplish this. I have a page that successfully queries a controller and updates a <div> containing a table. I have two versions of the action; one uses the render_partial to return a rendered version of that table, and the other returns an XML-RPC document, and this is where I hit a snag. The Rico LiveGrid
2006 May 04
3
Problem using url_for
I''m trying to generate a URL of the form controller/action?id=<id>&type=<type>. My code looks like this: url_for(:controller => ''content'', :action => ''get_resource'',:id => item[''Id''],:type => item[''type''] ) The url I end up with looks like this:
1999 Aug 25
2
Change passwd via web
hi all, I am looking for a cgi script which can be used to change the smbpasswd via web browser. Anyone done this already ?. Any pointers will he appreciated much. Thanks rakesh -------------------------------------------------------------------- Rakesh Jain Systems Administrator, MIS Dept BEA Systems, Inc. voice: +1-972-943-5135 4965, Preston Park Blvd fax: +1-972-943-5111 Suite 500
2010 Jun 25
3
Best practice for removing leading and trailing whitespaces
I want to remove the leading and training spaces for most of the resources in my rails application For a new POST request, rails does the xml parsing and passes the params hash to the controller. Some of the parameters have leading and/or trailing whitespaces which are causing problems (e.g. new resources being created rather than using the old ones). I don''t want to put the code in all
2005 Feb 19
3
Hi Newbie question
Hi List, I am a newbie, just came to know about asterisk a few days back while installing suse 9.2. I have a question for which I am sorry to say,but I havntread through all the archives, but AFAIK i didnt get the answer in the archives. My question is like this. I am in Nebraska, US. I have broadband cable connection at my home. And I have friend and family in other country. Using asterisk
2012 Aug 07
1
Samba User authentication from external LDAP server
I need to authenticate samba users from external LDAP server, tried a few options but when I change LDAP password, the samba password does not change. Is it possible to do away with Samba password and only use LDAP password Rakesh
2013 Mar 13
5
Copying a 900 mb file to Windows !!!
Hi, I am writing a puppet manifest to install a service pack on windows, what I observe is that in case the exe file is withing 50 - 70 Mb the transfer to windows happens without any issues. But the current service pack "windows6.1-KB976932-X64.exe" is around 900 Mb. My manifest is as follows file { ''c:/temp/windows6.1-KB976932-X64.exe'': ensure =>
2001 Dec 20
1
Samba Returns Access Denied
I have Linux Server 7.0 running Samba with 1 nic ip 199.168.1.2 and the Win2k server with 2 Nic one having the DHCP ip from the DSL and other being my internal 199.168.1.1, Now I installed samba and setup a smb.conf file smbd and nmbd runs fine also testparam doe's not show any errors and when I run the smbclient on the same machine It's authenticates fine, but when I try to access
2012 Aug 25
8
JBOSS installation and Configuration through puppet
Hi All, I have puppet server and client ready. I found JBOSS module and manifests under https://github.com/example42/puppet-jboss/<https://github.com/example42/puppet-jboss/blob/master/manifests/init.pp> and imported it through git. I am encountering these isse while I run : http://pastebin.com/S67JqmSK -- You received this message because you are subscribed to the Google Groups
1999 Oct 01
3
Compiling SAMBA 2.0.5a on HP-UX 11
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Trying to run ./configure and after a while of chugging along, I get this: checking for four-argument statfs (AIX-3.2.5, SVR3)... no checking for two-argument statfs with statfs.fsize member (4.4BSD and NetBSD)... no checking for two-argument statfs with struct fs_data (Ultrix)... no checking if large file support can be enabled no checking
2011 Jan 17
5
[LLVMdev] How to get the name and argument of a function
Hi everyone: The code I am analyzing is : int main() { int i = 0; printf("hello world!"); printf( "%d" , i ); } I want to get each place where printf is called, and the argument used during that call. so I write llvm pass code like: void Myfunction( Function & F){ for( Function::iterator b = F.begin() , be = F.end() ;
2015 May 25
1
Need Help
Hi All, Can we use libguestfs to somehow uninstall softwares from VMware images? The VMware image is of windows 2012 server. Thanks Rakesh DISCLAIMER ========== This e-mail may contain privileged and confidential information which is the property of Persistent Systems Ltd. It is intended only for the use of the individual or entity to which it is addressed. If you are not the intended
2015 Feb 25
2
[LLVMdev] Walking thru CallGraph bottom up
Thanks John. I guess I will use a ModulePass, so when I am implementing the “runOnModule” function, do I have to loop through all the functions, for each functions all the BasicBlocks and for each BasicBlock all the instructions or given the Module I have to call the CallGraph directly? Is there an example out there? I can’t find anything. Thanks. Simone > On Feb 24, 2015, at 13:29, John