similar to: [LLVMdev] Call graph node for function: 'main' Calls external node

Displaying 20 results from an estimated 2000 matches similar to: "[LLVMdev] Call graph node for function: 'main' Calls external node"

2010 Jan 20
1
[LLVMdev] Profile-Guided Optimization status
Hi all, I would like to know the status of profile-guided optimization. What enhancements could be done to the current implementation? The ideas for profile-guided transformations from [0] are still available? Many thanks. Gener [0] http://llvm.org/OpenProjects.html#profileguided -------------- next part -------------- An HTML attachment was scrubbed... URL:
2012 Aug 03
3
all duplicated wanted
Hi, Has anyone been able to figure out how to print all duplicated observations? I have a dataset, with patients ID, and other lab records. Some patients have multiple lab records, but 'duplicated' ID will only show me the duplicates, not the original observation. How can I print both the original one and the duplicates? Thanks
2010 Apr 07
0
[LLVMdev] Profile-Guided Optimization status
Hi, sorry to be so late with my answer, I was busy finishing my master thesis. On 03/21/2010 11:06 PM, Gener Omer wrote: > > I have finally started my project which is supposed to implement some > algorithms that uses profile information in order to optimize programs. > I have a very basic question for you. I have a very simple source code, > I compiled it with LLVM > >
2003 Mar 24
1
Rsync snapshots problem.
From: http://lists.samba.org/pipermail/rsync/2002-December/009101.html >Well, I followed this link: http://www.mikerubel.org/computers/rsync_snapshots/ > >and implemented it (with a bit of tweaking) on my home network. It is >used to make snapshots of two Windows PC's over samba. On one of the >machines (and not the other, from what I can tell) it deletes files from >the
2012 Dec 28
2
[LLVMdev] Newbie question(?): How to correctly create debug info, when generating IR
Hello all, Summary & Context: ------------------------------- I am starting to write a front-end for some domain specific programming languages. Code generation seems to be working fine. However, I am having trouble generating debug info, to be used by gdb. The problem: -------------------- I generate a foo.ll file, that is later compiled into an executable foo. The foo.ll file I
2004 Aug 06
4
A few Newbie Questions on libwrap
On Tue, 17 Apr 2001, Andrew M. Wu wrote: > Hello all, > > I have been having some trouble getting my Icecast server and IceS > streamer up and running properly. I have successfully compiled both > (Icecast 1.3.10 and IceS 0.0.1beta5) with libwrap and encrypt enabled. > > I can start up Icecast fine, with the following logged messages on > startup: > > Icecast
2010 Apr 21
0
[LLVMdev] Profile guided optimization
Hello, In order to implement one of my passes, I would like to know if there is any info in the actual code that tells how many times 'f()' called 'g()', where f() and g() are functions from the same module (I saw that there are such kind of statistics about blocks from the same function). Thank you, Gener -------------- next part -------------- An HTML attachment was scrubbed...
2011 Feb 26
0
Help: Error en model.frame.defaul
Hi and thanks to all R developers and helpers, I wanrt to take the 1 and 3 dimensions of this object to create a new one without the years and with the next functions to do some specific calculations: > str(PMpa) num [1:499105, 1:60, 1:12] 29.8 55.8 29.7 25.1 25 ... - attr(*, "dimnames")=List of 3 ..$ punt: NULL ..$ any : chr [1:60] "1950" "1951"
2011 Jun 04
0
Predicted values based on fixed effects do not correspond with actual data in cross-classified generalized linear mixed model (lmer)
Dear R-Users, I have fitted a cross-classified generalized linear mixed model using the lmer package with the following code. Mod<-lmer(y~x+(1|a)+(1|b)+ (1|c), family=binomial) In this case, only including a covariate (x) as a fixed effect. The fitted values, using fitted(mod), correspond to the raw data nicely, and the mean of the fitted values is equal to the mean of the raw data. In
2004 Aug 06
2
A few Newbie Questions
Hi all, I apologize for the following questions - some may be more general Linux questions while others hopefully relate directly to Icecast: 1) With regards to the recent buffer-overflow exploit and the recommendation of running icecast as a non-root user, how exactly does one do that? I've changed the UID and GUID of the icecast directory and files and binaries to nobody, but what user
2004 Aug 06
0
A few Newbie Questions on libwrap
Hello all, I have been having some trouble getting my Icecast server and IceS streamer up and running properly. I have successfully compiled both (Icecast 1.3.10 and IceS 0.0.1beta5) with libwrap and encrypt enabled. I can start up Icecast fine, with the following logged messages on startup: Icecast Version 1.3.10 Initializing... Icecast comes with NO WARRANTY, to the extent permitted by law.
2010 Apr 09
2
problems loading blas with R 2.11.0~20100402-1
Hi, Since upgrading to version 2.11.0~20100402-1, starting R fails with: /usr/lib64/R/bin/exec/R: error while loading shared libraries: libblas.so.3gf: cannot open shared object file: No such file or directory Is this occurring to others on sid? -- Seb
2016 Jul 07
5
update clamav to 0.99.2
Helo, update is in EPEL repository. on startup, clamd does not further create clamd.sock and clamd.pid clamd service stops without any message - even in debug mode. It's a nightmare. Helmut -- Viele Gr??e Helmut Drodofsky Internet XS Service GmbH He?br?hlstra?e 15 70565 Stuttgart Gesch?ftsf?hrung Dr.-Ing. Roswitha Hahn-Drodofsky HRB 21091 Stuttgart USt.ID: DE190582774 Tel. 0711
2002 Dec 06
3
[LLVMdev] Tarjan+function_ptrs == trouble ? (fwd)
Test Cases: (attached) Iteration code: (...) typedef TarjanSCC_iterator<CallGraph*> MyTarjan; CallGraph& callGraph = getAnalysis<CallGraph>(); MyTarjan iter = tarj_begin(&callGraph); MyTarjan end = tarj_end(&callGraph); while(iter!=end) iter++; (...) if you take the time to print out the function each non-looping node iter traverses, it never reaches main...
2015 Jun 08
2
[LLVMdev] Use Callgraph
Hi All, I tried to use CallGraph in llvm by adding "AU.addRequired<CallGraph>();" in getAnalysisUsage function. But it reports an error: include/llvm/PassAnalysisSupport.h:56:39: error: ‘ID’ is not a member of ‘llvm::CallGraph’ return addRequiredID(PassClass::ID); How to use it correctly? Thanks, Haopeng
2012 Aug 17
3
[LLVMdev] Problem of use CallGraph
Hello, I want to traverse CallGraph code segment: virtual void getAnalysisUsage(AnalysisUsage &AU) const { AU.addRequired<CallGraph>(); } virtual bool runOnModule(Module &F) { CallGraph &g = getAnalysis<CallGraph>(); for ( CallGraph::iterator i = g.begin(); i != g.end(); i++) { errs()<<"-----------------\n";
2009 May 10
2
[LLVMdev] Get the call graph SCCs from a function pass
On 5/10/09, Török Edwin <edwintorok at gmail.com> wrote: > On 2009-05-10 20:11, Nick Johnson wrote: > > Hello, > > > > I'm writing a Function Pass. This function pass needs access to the > > CallGraph and CallGraph SCCs. Is there any way I can get CallGraph > > information without changing my pass to a CallGraphSCCPass ? > > > Does
2009 Feb 13
3
[LLVMdev] loop passes vs call graph
I'm looking at bug 3367. If I run: $ opt b.bc -inline -loop-rotate -loop-unswitch -debug-pass=Executions ... it eventually crashes in the inliner, because the call graph isn't up to date. (NB if you want to reproduce this you'll have to apply my patch from bug 3367 first.) The reason the call graph isn't up to date is that -loop-unswitch has changed a function and not updated
2008 Oct 08
2
[LLVMdev] Error while making new pass
Hi Devang, GlobalModRefPass is also a ModulePass and it uses CallGraph Analysis. So, I think it should not necessary to extend CallGraphSCCPass to use CallGraph information. Module Pass shoule be sufficient... --Kapil On 10/8/08, Devang Patel <dpatel at apple.com> wrote: > Hi Kapil, > > On Oct 8, 2008, at 10:19 AM, kapil anand wrote: > >> Hi all, >> >> I
2009 May 10
2
[LLVMdev] Get the call graph SCCs from a function pass
Hello, I'm writing a Function Pass. This function pass needs access to the CallGraph and CallGraph SCCs. Is there any way I can get CallGraph information without changing my pass to a CallGraphSCCPass ? Thanks, -- Nick Johnson