similar to: [LLVMdev] Code Extractor Issue

Displaying 20 results from an estimated 100 matches similar to: "[LLVMdev] Code Extractor Issue"

2007 Oct 02
1
[LLVMdev] Modifying Instruction Class
I'm attempting to add a new member variable to the Instruction class but I get assertion errors when I run lli. All I add is the following line to the private portion of the Instruction class definition. bool b; The error usually is: lli: /development/Contracts/DOVE/src/c/llvm/include/llvm/Type.h:329: void llvm::Type::dropRef() const: Assertion `isAbstract() && "Cannot drop a
2008 May 07
1
[LLVMdev] bitcast function calls
We are seeing some behavior we don't understand. Some of our functions are not showing up in the Call Graph because their calls contain bitcasts. The Call Graph then considers them to be external nodes. The calls look as follows: %tmp35 = call i32 (...)* bitcast (i32 (i32, i8*, i32*)* @convert to i32 (...)*)( i32 %tmp33, i8* %tmp34, i8* %tmp30 ) ; <i32> [#uses=1] After looking
2004 Aug 06
1
ices and libshout.so.1
> "./ices: error while loading shared libraries: libshout.so.1: cannot > open shared object file: No such file or directory" >>Is libshout installed? What I know I haven't installed it, is there a debian package of it so I can install or reinstall it mayne? >>Did you run ldconfig? When I do a ldconfig I get this back in return " ldconfig:
2007 Dec 20
1
[LLVMdev] Code Generation Problem llvm 1.9
I sent a long message yesterday describing a problem I thought had to do with the JIT stubs. After further investigating, the problem seems to be in the code generation. The following basic block seems to have an error in it's code generation: __exp.exit: ; preds = %codeRepl258, %__exp_bb_bb.exit phi double [ 1.000000e+00, %codeRepl258 ], [ %.reload.reload.i,
2004 Aug 06
2
ices and libshout.so.1
Hello! I have compileed ices.0.2.2 for my debian system (the system is on a Mac PowerPC, so I use Debian-PPC) When I want to start Ices I get an error message saying this: "./ices: error while loading shared libraries: libshout.so.1: cannot open shared object file: No such file or directory" I start it with ./ices I checked and saw that I had the files but the maybe are in wrong
2007 Jan 13
1
errata corrige
Hi, I forgot to explain exactely the problem with wine 0.9.29: - programs crash on start - sometimes they start but they immediately freeze There are no trace of all these problems with 0.9.22 deadlinx ___________________________________ Vinci i biglietti per FIFA World Cup in Germania! yahoo.it/concorso_messenger
2003 Jan 15
3
Profiles ...
Greetings ... This is a stupid question which have been wanting to ask for awhile, and hope somebody can help me. Profiles, if I understand it correctly come in two forms, local and roaming? Now local in on the computer the user uses and roaming is one that is download from the server when the user logs in. Now, where my problem is, when I have some users who have huge documents folder,
2014 Feb 14
2
[LLVMdev] DominatorTree not updated properly after calling the llvm::SplitBlock.
Hi Fellows, I am writing a pass that requires the DominatorTree pass. In the runOnFunction of my own pass, I call llvm::SplitBlock to split a block (%for.end) at it's first insert point. Then, when I dump my dominator tree immediately after, I can see the newly split %for.end.split, but its DFSNumIn and DFSNumOut are not properly updated in llvm::SplitBlock (i.e., still the initialized
2010 Jul 18
0
Flash Extractor
Hi Audio / video is becoming a hobby of mine and, knowing nothing about Flash files, I started playing around with them with SWFTools. Being lazy as I am, I quickly tired of writing scripts and went ahead and wrote a gui wrapper for swfextract. Anyway, to make a long story short (to late) the application keeps growing and in my latest release I've embedded your player (very easy to
2012 Jan 11
0
[LLVMdev] Loop Extractor
llvmers, Is it possible to change the loop extractor to extract each nested loop into it's own function, including the top level loop? I would like to put every loop into it's own function. Thanks. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120111/d71582a4/attachment.html>
2005 Mar 18
1
voicemail.conf extractor?
Hi, I believe there is a script that reads the contents of voicemail.conf and goes on to send the voice e-mail messages to whatever e-mail address specified in voicemail.conf. What's the name of this script and where is it located? Thanks, Julius.
2014 Mar 04
0
Constructor/extractor.
Preamble: ========= In spatial point pattern analysis an important component of a point pattern object is the *observation window*. In the spatstat package we have the function owin() to *construct* such a window. It creates an object of class "owin" which can happily exist separately from any point pattern object (object of class "ppp"). However we have at the moment
2008 Apr 03
1
Extractor function for standard deviation.
I have from time to time seen inquiries on r-help in respect of how to obtain the estimated standard deviation from the output of fitting a linear model. And have had occasion to want to do this myself. The way I currently do it is something like summary(fit)$sigma (where fit is returned by lm()). It strikes me that it might be a good idea to have an extractor function, analogous with coef()
2014 Feb 14
2
[LLVMdev] DominatorTree not updated properly after calling the llvm::SplitBlock.
Hi Andrew, Thanks a lot. But the function "DT->dominate(A,B)" decides the dominance relationship through comparing the DFS numbers, right? At least, in my example, when I check whether the newly split node (i.e., % *for.end.split*) DOMINATES the original node (I.e., %for.end), the answer is true, which is obviously wrong. Paul On Fri, Feb 14, 2014 at 1:59 AM, Andrew Trick
2007 Apr 01
1
new warnings related to the extractor "$" with R 2.5.0alpha
Dear all, I just installed R 2.5.0alpha and noticed new warnings related to the extractor "$" when using contributed packages. For instance: > library(RODBC) Warning message: $ operator is not valid for atomic vectors, returning NULL > library(aod) Package aod, version 1.1-18 > data(orob2) > m1 <- betabin(cbind(y, n-y) ~ 1, random = ~ 1, data = orob2) >
2008 Nov 19
2
[LLVMdev] Problem in CodeExtractor::severSplitPHINodes()
Hi, I found a problem in CodeExtractor::severSplitPHINodes() <CodeExtractor.cpp>. The algorithm first separates the header block into two, one containing only PHI nodes and the other containing the remaining non-PHI nodes. The variable NewBB holds the pointer to the latter half block. Later, it tries to update DT information. if (DT) DT->splitBlock(NewBB); In splitBlock, it checks
2008 Nov 20
0
[LLVMdev] Problem in CodeExtractor::severSplitPHINodes()
On Nov 19, 2008, at 7:41 AM, Jack Tzu-Han Hung wrote: > Hi, > > I found a problem in CodeExtractor::severSplitPHINodes() > <CodeExtractor.cpp>. > > The algorithm first separates the header block into two, one > containing only PHI nodes and the other containing the remaining non- > PHI nodes. The variable NewBB holds the pointer to the latter half > block.
2005 Feb 19
1
Street Atlas 8.0 Extractor
I mentioned earlier that I had DeLorme Street Atlas 8.0 working on wine. It comes with a separate program, the extractor. This will pull parts of the map CD and store them locally so that the main program does not have to refer to the CD for those parts of the map. I had one problem which I overcame: it was looking for h:\refnc. I have no idea why it was looking on h:, as the CD-ROM is on d: and
2016 Feb 24
1
Publication : CERE LLVM Based Codelet Extractor and REplayer
Hello, We have published two papers which build upon the LLVM Compiler Infrastructure. Would it be possible to include them in the LLVM related publications at http://llvm.org/pubs/ ? I attach below the bibliographic references: "CERE: LLVM Based Codelet Extractor and REplayer for Piecewise Benchmarking and Optimization" P. de Oliveira Castro, C. Akel, E. Petit, M. Popov, and W.
2009 Oct 10
2
easy way to find all extractor functions and the datatypes of what they return
Am I asking for too much: for any object that a stat proc returns ( y <- lm( y~x) , etc ) ) , is there a super convenient function like give_all_extractors( y ) that lists all extractor functions , the datatype returned , and a text descriptor field ("pairwisepval" "lsmean" etc) That would just be so convenient. What are my options for querying an object so that I can