Displaying 15 results from an estimated 15 matches similar to: "[LLVMdev] Getting rid of the DoesntAccessMemoryFns and OnlyReadsMemoryFns tables"
2007 Nov 24
0
[LLVMdev] Getting rid of the DoesntAccessMemoryFns and OnlyReadsMemoryFns tables
--- Duncan Sands <baldrick at free.fr> wrote:
> The DoesntAccessMemoryFns and OnlyReadsMemoryFns tables are used
> by alias analysis to specify which standard functions don't access
> memory or only read memory. However gcc now automatically supplies
> this information to us.
...
> We could keep some small tables just for these, or nuke the tables altogether
> and
2007 Nov 24
1
[LLVMdev] Getting rid of the DoesntAccessMemoryFns and OnlyReadsMemoryFns tables
Hi Chris,
> I'm quite new to using LLVM, and thus don't have a complete understanding of
> how everything works yet, but won't removing this information have an impact on
> projects that use LLVM as a backend only, and thus don't get any gcc supplied
> information?
yes it will, but they can always add these tables to their code and use them
to generate the appropriate
2020 Jul 25
0
[klibc:master] stdio: Define all the _unlocked functions and macros
Commit-ID: 8c056cab6c8cce0b5dbc2c3141060f89a6ffc905
Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=8c056cab6c8cce0b5dbc2c3141060f89a6ffc905
Author: Ben Hutchings <ben at decadent.org.uk>
AuthorDate: Sat, 25 Jul 2020 21:18:30 +0100
Committer: Ben Hutchings <ben at decadent.org.uk>
CommitDate: Sat, 25 Jul 2020 21:44:14 +0100
[klibc] stdio: Define all the
2012 Jan 20
1
Building R on RHEL 5
Hello,
I am trying to upgrade to the latest R release on a machine running Red Hat el5.? Previously I was successful at building R 2.11, but now I am having troubles with R 2.14.
Configure goes fine, but then make throws a lot of errors (output below).? Any idea what I am doing wrong this time around?
Thanks in advance,
Erik
make output:
...
gcc -std=gnu99 -I../../src/extra/zlib
2010 Oct 29
2
[LLVMdev] "multiple definition of .. " in clang 2.8
Hi,
I tried to run the SPEC benchmark suite SPECCPU 2006 with llvm and clang
2.8. When building the perlbench sources I get these errors (see below) for
all the source files. I used a config file (
http://old.nabble.com/file/p30085184/llvm.cfg llvm.cfg ) where I specify
clang as the compiler. I verified the same sources with llvm-gcc and it
works fine. Also, I verified the sjeng benchmark from
2008 Feb 16
0
[LLVMdev] linux/x86-64 codegen support
Andrew Lenharth wrote:
> Interestingly, in the .i file there are 2 __builtin_alloca, and
> EmitBuiltinAlloca is only being called once.
>
>
Hmm, here EmitBuiltinAlloca gets called twice, but it looks like
validate_arglist is rejecting the args both times.
I have 2 calls to alloca generated:
$ grep alloca x.bc|grep call
%tmp21 = call i8* @alloca( i64 %tmp20 ) nounwind
2008 Feb 16
3
[LLVMdev] linux/x86-64 codegen support
See the bug for a reduction and the gimple trees. validate_arglist
definately is rejecting the arglist in EmitBuiltinAlloca.
(try:
bool TreeToLLVM::EmitBuiltinAlloca(tree exp, Value *&Result) {
tree arglist = TREE_OPERAND(exp, 1);
if (!validate_arglist(arglist, INTEGER_TYPE, VOID_TYPE)) {
debug_tree(arglist);
return false;
}
Value *Amt = Emit(TREE_VALUE(arglist), 0);
Amt =
2008 Feb 16
2
[LLVMdev] linux/x86-64 codegen support
Interestingly, in the .i file there are 2 __builtin_alloca, and
EmitBuiltinAlloca is only being called once.
Andrew
On 2/16/08, Andrew Lenharth <andrewl at lenharth.org> wrote:
> libcpp/charset.c:631 turns into:
>
> %tmp16 = tail call i64 @strlen( i8* %to ) nounwind readonly
> ; <i64> [#uses=1]
> %tmp18 = tail call i64 @strlen( i8* %from ) nounwind
2012 Dec 01
0
[LLVMdev] problem trying to write an LLVM register-allocation pass
On 11/30/2012 6:36 PM, Lang Hames wrote:
>
>
> RBP is used as the frame pointer on x86 (hence its automatic
> appearance in your code), and shouldn't be allocated to any vreg in
> function bar. Loading/saving RBP should be managed by the stack frame
> setup/teardown code.
> If it doesn't already, your allocator should filter out reserved
> registers (See
2006 May 18
0
R-devel and PGI 6.0 compile error
I am trying to compile R-devel (R-devel_2006-05-17.tar.gz) on Red Hat
Enterprise Linux AS release 3 (Taroon Update 7) using the Portland Group
compiler 6.0. (I have not yet successful compiled R on this
configuration, so I don't know if this is a new problem.) I get an error
pgcc -L/usr/local/pgi/linux86-64/6.0/libso -L/usr/lib64 -o dftables
dftables.o
../dftables chartables.h
2006 Jun 22
2
Error - Compiling R on a Sun V40Z - R/R-2.2.1 (PR#9024)
configure: WARNING: dlfcn.h: present but cannot be compiled
configure: WARNING: dlfcn.h: check for missing prerequisite headers?
configure: WARNING: dlfcn.h: see the Autoconf documentation
configure: WARNING: dlfcn.h: section "Present But Cannot Be Compiled"
configure: WARNING: dlfcn.h: proceeding with the preprocessor's result
configure: WARNING: dlfcn.h: in the future, the
2005 May 11
5
Implementing R on IBM p690 cluster Jump
Dear All,
we're trying to implement R on the IBM p690 cluster "Jump" at the
research centre in J?lich, Germany (c.f.
http://www.fz-juelich.de/nic/Supercomputer/computer-e.html)
using the most recent version of R (2.1.0) and precisly following the
installation instructions.
After ./configure we get the final message:
----------------
R is now configured for powerpc-ibm-aix5.2.0.0
2012 Nov 29
2
[LLVMdev] problem trying to write an LLVM register-allocation pass
I have a new problem: Register RBP is used in a function foo. (I am not
allocating RBP to any virtual register, the instances of RBP in function
foo are in the machine code when my register allocator starts.)
Function foo calls function bar. Register RBP is not saved across the
call, though it is live after the call. Function bar includes a virtual
register. The code that I'm using to
2008 Dec 22
1
Error compiling R.2.8.1 with gcc 4.4 on Mac OS 10.5.6
Hi all,
I've encountered a build error with the latest R source (2.8.1). This is a
relatively fresh install of OS Leopard (10.5.6), latest developer tools
installed, gcc/g++/gfortran version 4.4 installed (via
http://hpc.sourceforge.net/, after which I updated the gcc & g++ symlinks to
link to the 4.4 versions; gfortran used the 4.4 version without updating the
symlink).
Ultimately I
2008 Dec 29
0
Serial Correlation Test for Short Time Series
Hello,
Are there any R functions available for performing a serial correlation test
for short
time series (e.g, series having between 10-14 observations)?
Many thanks!
Isabella R. Ghement, Ph.D.
Ghement Statistical Consulting Company
301-7031 Blundell Road, Richmond, B.C., Canada, V6Y 1J5
Tel: 604-767-1250
Fax: 604-270-3922
E-mail: isabella at ghement.ca
Web: www.ghement.ca
-----Original