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
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
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
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
2024 Sep 06
1
effects() extractor for a quantile reqression object: error message
I'm using quantreg package version 5.98 of 24 May 2024, in R 4.4.1 on
Linux Mint.
The online documentation for quantreg says, in part, under the
description of the rq.object, "The coefficients, residuals, and effects
may be extracted by the generic functions of the same name, rather than
by the $ operator."
I create an rq object for the 0.9 quantile, called qm.9
effects(qm.9)
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()
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.
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)
>
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.