Displaying 20 results from an estimated 1000 matches similar to: "Deleting in ext3"
2013 Feb 19
1
[LLVMdev] Problem to run SPEC2006
Actually I am trying to run SPEC2006 through the Makefiles provided with
LLVM Test Suite, so I think it should work properly...
On 18 February 2013 15:49, Adhemerval Zanella
<azanella at linux.vnet.ibm.com>wrote:
> I can't really tell what is happening based on this output, but 'make' is
> not the right way
> to build SPECcpu2006 components. You need to do either by
2013 Mar 03
1
[LLVMdev] Can a Function Pass require a Module Pass?
Dear LLVMers,
I am implementing a Function Pass and I would like to use analysis obtained
from a Module Pass. Some extracts of my code look like that:
struct MyPass : public FunctionPass {
static char ID;
MyPass() : FunctionPass(ID) {
PADriver &PD = getAnalysis<AModulePass>();
...
virtual void getAnalysisUsage(AnalysisUsage &AU) const{
2015 Sep 03
2
LiveInterval and Loop Info
Hello to all LLVM Developers.
Given a object from a LiveInterval class, is there any way to know if this
Live Interval is part or is inside a loop?
Att
--
Natanael Ramos
Membro do corpo discente de Ciência da Computação pelo Instituto Federal de
Minas Gerais - Campus Formiga
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2015 Sep 04
2
LiveInterval and Loop Info
Thanks Matthias
I can also use the method intervalIsInOneMBB() from LiveIntervals class to
relate a LiveInterval to a MachineBasicBlock, right?
Em 04/09/2015 2:26 PM, "Matthias Braun" <mbraun at apple.com> escreveu:
> There is no direct support for this, but you can use
> LiveIntervalAnalysis::getMBBStartIndex()/getMBBEndIndex()/getMBBFromIndex()
> to relate the
2013 Feb 18
0
[LLVMdev] Problem to run SPEC2006
I can't really tell what is happening based on this output, but 'make' is not the right way
to build SPECcpu2006 components. You need to do either by using the supplied 'runspec'
command with '-build' action directive or to issue the 'specmake' (which is a
make adjusted by spec.org) on the build component folder.
I can build 433.milc on PPC64 with clang without
2015 Sep 03
2
LLVM and strict SSA
Hello to all LLVM Developers.
The LLVM IR is in strict SSA form (i.e. every variable is defined before it
is used along every path from the entry to exit point)?
According to the documentation, currently the LLVM IR is in the SSA form,
but I don't see additional information about *strict* SSA form.
The strict SSA form provide opportunities of optimization in register
allocation, because is
2013 Feb 18
2
[LLVMdev] Problem to run SPEC2006
Dear LLVMers,
I am having trouble to run SPEC2006. I have checked in my log file that the
spec root has been correctly found with ./configure, but when I try:
make TEST=simple
in the External folder I get the following error:
make -C /home/izabela/svn_llvm/llvm/projects/test-suite/tools all \
ORIGINAL_CC="clang" \
ORIGINAL_CXX="clang"
make[1]: Entering directory
2015 Jul 09
3
[LLVMdev] PHI Elimination in Register Allocation Pass
Good Afternoon.
I am a Computer Science undergraduate student in Brazil and as completion
of course work, I am developing an register allocator, using the
infrastructure of the LLVM.
To accomplish this task, I have based my implementation in allocators
already implemented in LLVM. But a question came to me while I was
researching in books and articles of compiler theory and own documentation
of
2015 May 20
2
[LLVMdev] Implement a Register Allocator in LLVM
I'm working on my project for completion undergraduate courses, consisting
of an experimental analysis of registers allocation algorithms. For this
task, I am using the set of tools from the LLVM project.
However, I have read the documentation of the LLVM project and not yet
found a way to put the pieces of the puzzle together. So far I know:
- As passes work as engage them to LLVM and
2015 Sep 01
2
Spilling Virtual Registers
Hello to all LLVM developers.
I'm developing a register allocator using LLVM, my allocator has a local
search phase: given a solution (assignment of virtual registers to physical
registers or memory) generated in the first phase of the algorithm, some
movements are applied to this solution in order to find a better solution.
To apply such movements, I need to unassign a virtual register from
2013 Jan 21
1
[LLVMdev] Testing canaries
Dear LLVMers,
I am trying to measure the performance overhead (if any) of the
canaries that clang inserts in the code. I would like to do this
automatically, using the LLVM test infra-structure. However, I am not sure
if that is possible. Could someone tell me which flags in the
TEST.nightly.Makefile script, (or any other script) I must change to have
this done? Usually I insert canaries with
2005 Oct 31
1
Build R package with shared library
Hello to all,
I am try to build a package, I do the follow commands: "R CMD check pack",
"R CMD pack build" and run OK, no errors. I put my shared library in package
subdirectory R, src, but it is not put a shared library ".so" in directory
"/usr/lib/R/library/pack/lib". Below is my code :
dyn.load("pack.so",PACKAGE="pack")
argc<-2
2011 May 06
1
Objective: run commands in the domain. Trouble: setting up a console
I've installed libvirt and also Virtual Box OSE hypervisor, in order to see
if I could properly manage it through virsh.
I could easily set up, start, pause, resume, shutdown and destroy the newly
created domains, from a XML file.
Then I was wondering how could I be able to spawn commands in the domain
through virsh, and the command 'console' gave me a the thought that I should
2005 Nov 29
0
Error in plclust
Hi all,
I need to plot a dendrogram, but I built a hclust object. Follow the code
lines:
>dendObject<-list(merge=merge,height=height,order=order,labels=labels,call="hclust(d=d)",method="complete",
dist.method="euclidean")
>class(dendObject)<-"hclust"
>plclust(dendObject,axes=FALSE)
Error in cl[[2]] : subscript out of bounds
Anybody can help
2005 Nov 18
0
Problems with tkentry
Hello to all,
I don't know almost nothing about Tcl/TK. I have the follow code:
>Name <- tclVar("")
>insert.Name <-tkentry(window1,width="20",objectvariable=Name)
>tkplace(tklabel(window1,text=" Enter the matrix name:"),x=0,y=0)
>tkplace(insert.Name,x=175,y=0)
So, I need to pass the variable Name like parameter in R function.
Ex:
2005 Dec 29
1
Segmetation Fault in R
Hi all,
I has a C code in Linux, it has 7 pointers and compile e run OK, but when I
run in R happens Segmetation Fault.
When I use calloc function, it returns NULL.
What's wrong?
I would like more information about R-alloc function?
Thanks!
--
Marcelo Damasceno de Melo
Graduando em Ciência da Computação
Departamento de Tecnologia da Informação - TCI
Universidade Federal de Alagoas - UFAL
2005 Dec 29
1
Problems with calloc function.
Hi all,
I have a C code in Linux, it has 7 pointers and compile e run OK, but when I
run in R happens problems with calloc function, it returns NULL.
###############################################
> int *temp1,*temp2,*temp3,*temp4;
temp1 = (int *)calloc(col,sizeof(int));
if(temp1 == NULL){
printf("\n\n No Memory1!");
exit(1);
}
temp2 = (int *)calloc(col,sizeof(int));
2011 May 11
1
Problems connecting to Virtualbox hypervisor using libvirt java binding
I am trying to connect to the virtualbox hypervisor through libvirt java
binding.
I am on Ubuntu 10.04 and I have installed libvirt-0.85, libvirt-java-0.4.6
and virtualbox-ose-dkms. I have configured libvirt project and its java
binding at Eclipse and the default test of the binding runs properly. When I
try to run a simple test in java with the connection:
conn = new
2003 Feb 18
1
hacking ext3 code
hi,
I want to make some changes in ext3_unlink code to make undelete works, i
read a lot about it and im planning to put this lines in that function:
if (IS_UNDEL(inode)){
trash = ????
ext3_link(dir,dentry,trash); //make a hard link
}
somebody know how do i get a especific directory dentry using the ext3
functions ? (im planning to use the inode 6 or inode 11 that somebody
said that usually
2006 Apr 20
2
(sem assunto)
Dear R-colleagues,
Is it possible to mix TEXT and VALUE of objects in y (or x) label of a plot?
For instance:
f<-2
plot(..., ylab='Axis f', ...)
where "f" means the VALUE of "f".
Thany you in advance,
Eric.
--
Barba
Departamento de Ciências Exatas
Universidade Federal de Lavras
Minas Gerais - Brasil
[[alternative HTML version deleted]]