Displaying 20 results from an estimated 86 matches for "mmccrack".
2006 Apr 03
2
[LLVMdev] lli: problem finding external symbol
...ld it uses, so I am now passing
-Wl,-disable-inlining and -Wa,-disable-inlining, and having it
generate LLVM bytecode, then running opt -inlining to generate
versions with different thresholds. However, from there I can't run
the bytecode with lli - I get the following error:
$ lli -load=/home/mmccrack/linux/lib/libTau.sh leo-inline-300-tau.bc
ERROR: Program used external function
'__llvm_cxxeh_allocate_exception' which could not be resolved!
lli((anonymous namespace)::PrintStackTrace()+0x18)[0x8629a74]
lli((anonymous namespace)::SignalHandler(int)+0xfe)[0x8629cfc]
/lib/tls/libc.so.6[0x4d...
2006 Sep 09
1
[LLVMdev] gfortran: link error building gfortran on linux
...e,
but a couple are less obvious.
What's the best way to fix this? I'm stuck without my powerbook for at
least three weeks and I'd like to keep working on llvm-gfortran in
Linux in the meantime.
Thanks,
-mike
Here's how I configured and built it:
% ../src/configure --prefix=/home/mmccrack/gfortran-llvm/install
--enable-llvm=/home/mmccrack/gfortran-llvm/llvm-obj --enable-checking
--disable-threads --enable-languages=c,c++,f95
% make LLVM_VERSION_INFO="20060908+f95"
...snip lots of compilations...
c++ -c -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -pedantic
-Wno-long-long -...
2006 Apr 03
0
[LLVMdev] lli: problem finding external symbol
On Mon, 3 Apr 2006, Michael McCracken wrote:
> the bytecode with lli - I get the following error:
>
> $ lli -load=/home/mmccrack/linux/lib/libTau.sh leo-inline-300-tau.bc
> ERROR: Program used external function
> '__llvm_cxxeh_allocate_exception' which could not be resolved!
This is most likely because you are trying to link with llvmgcc, not with
llvm-g++. Make sure that the problem is linked with llvm-g++...
2007 Aug 21
0
[LLVMdev] Problems building llvm-gcc-4.2 on ppc32, OS X 10.4.10
...ith-mpfr=$HOME/Documents/hpcl/LLVM/llvm-gcc-4-2/libdeps
--enable-languages=c,c++,fortran
--with-gxx-include-dir=/usr/include/c++/4.0.0
--build=powerpc-apple-darwin8 --host=powerpc-apple-darwin8
--target=powerpc-apple-darwin8
and
make LLVM_VERSION_INFO=fortran_test
And I get this:
.. lots ..
/Users/mmccrack/Documents/hpcl/LLVM/llvm-gcc-4-2/build/./gcc/xgcc
-B/Users/mmccrack/Documents/hpcl/LLVM/llvm-gcc-4-2/build/./gcc/
-B/Users/mm
ccrack/Documents/hpcl/LLVM/llvm-gcc-4-2/install/powerpc-apple-darwin8/bin/
-B/Users/mmccrack/Documents/hpcl/LLVM/llvm-gcc-4-2/install/powerpc
-apple-darwin8/lib/ -isystem
/U...
2005 Aug 24
3
[LLVMdev] Problems running dejagnu tests
...sing zsh, v4.2.3 and gmake 3.8, and dejagnu:
% runtest --version
WARNING: Couldn't find the global config file.
Expect version is 5.42.0
Tcl version is 8.4
Framework version is 1.4.4
Thanks,
mike
--
Michael McCracken
UCSD CSE PhD Candidate
research: http://www.cse.ucsd.edu/~mmccrack/
misc: http://michael-mccracken.net/blog/
2007 Apr 19
1
[LLVMdev] LENS Project
Hi,
I think it is a little bit off topic, but perhaps someone can help me:
I found on the LLVM-website something about the LENS project and the
project page (http://llvm.org/ProjectsWithLLVM/#LENS; http://
www.cs.ucsd.edu/~mmccrack/lens/).
But I can't found if or where I can download it.
Is someone on the list who uses LENS?
Thank you,
Nico
2006 Mar 21
0
[LLVMdev] problem loading analysis results from Inliner pass
...re information:
After a more thorough test, that isn't quite the case - since the
ImmutablePass is never 'run', my code needs modification to work.
However, I thought that maybe I could just make them both ModulePasses
instead, but that produces the following runtime error:
opt: /home/mmccrack/lens/obj-llvm-darcslocal/../llvm-darcslocal/llvm/lib/VMCore/PassManagerT.h:426:
void llvm::PassManagerT<UnitType>::markPassUsed(const llvm::PassInfo*,
llvm::Pass*) [with UnitType = llvm::Module]: Assertion
`getAnalysisOrNullUp(P) &&
dynamic_cast<ImmutablePass*>(getAnalysisOrNull...
2006 Feb 11
2
[LLVMdev] Another project using LLVM: LENS, a program investigation framework.
...ns about how we're using LLVM, or
anything else.
I'll be putting up a LENS web page soon - I'll post a link to that when it's
ready so you can add it to the LLVM projects list if you want.
Thanks,
-mike
--
Michael McCracken
UCSD CSE PhD Candidate
research: http://www.cse.ucsd.edu/~mmccrack/
misc: http://michael-mccracken.net/blog/
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20060210/572ff7d3/attachment.html>
2006 Mar 22
1
[LLVMdev] problem loading analysis results from Inliner pass
On Tue, 21 Mar 2006, Michael McCracken wrote:
> opt: /home/mmccrack/lens/obj-llvm-darcslocal/../llvm-darcslocal/llvm/lib/VMCore/PassManagerT.h:426:
> void llvm::PassManagerT<UnitType>::markPassUsed(const llvm::PassInfo*,
> llvm::Pass*) [with UnitType = llvm::Module]: Assertion
> `getAnalysisOrNullUp(P) &&
> dynamic_cast<ImmutablePass*&g...
2006 Mar 21
3
[LLVMdev] problem loading analysis results from Inliner pass
...roblem, but it was
confusing.
I'll also try to replicate the exact same conditions on darwin to see
if the platform makes a difference, since I didn't run into this
problem until moving to linux.
Thanks,
-mike
--
Michael McCracken
UCSD CSE PhD Candidate
research: http://www.cse.ucsd.edu/~mmccrack/
misc: http://michael-mccracken.net/wp/
2006 Sep 11
2
[LLVMdev] gfortran calling convention
...ure I want to make any changes outside of the gfortran subdirs, since
that would make merging changes back in a real pain.
Am I missing another option, or am I out of luck until llvm-gcc updates to 4.1?
Thanks,
-mike
--
Michael McCracken
UCSD CSE PhD Candidate
research: http://www.cse.ucsd.edu/~mmccrack/
misc: http://michael-mccracken.net/wp/
2006 Sep 11
0
[LLVMdev] gfortran calling convention
...ran subdirs, since
> that would make merging changes back in a real pain.
>
> Am I missing another option, or am I out of luck until llvm-gcc updates to 4.1?
>
> Thanks,
> -mike
>
> --
> Michael McCracken
> UCSD CSE PhD Candidate
> research: http://www.cse.ucsd.edu/~mmccrack/
> misc: http://michael-mccracken.net/wp/
> _______________________________________________
> LLVM Developers mailing list
> LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev
>
2005 Oct 20
1
[LLVMdev] llvm-test Makefile question
...ite with my option? I've attached my diff for
Makefile.programs, but I think the problem exists for profile also
without my changes. Maybe I'm just missing a detail about gmake
here...
Thanks for any help,
-mike
--
Michael McCracken
UCSD CSE PhD Candidate
research: http://www.cse.ucsd.edu/~mmccrack/
misc: http://michael-mccracken.net/blog/
-------------- next part --------------
A non-text attachment was scrubbed...
Name: Makefile.programs.diff
Type: application/octet-stream
Size: 2191 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20051020/98be8eaf/at...
2006 Feb 11
0
[LLVMdev] Another project using LLVM: LENS, a program investigation framework.
On Fri, 10 Feb 2006, Michael McCracken wrote:
> The project is called LENS. It's a file format and a framework for storing
> generic information about a program based on the control structure of the
> ...
Very cool!
> I'll be putting up a LENS web page soon - I'll post a link to that when it's
> ready so you can add it to the LLVM projects list if you want.
Please
2005 Sep 16
2
[LLVMdev] Problems Cross Compiling for x86 and ia64
...LLVM/obj-llvm-darcslocal/Debug/bin//llc -march=ia64 -stats -f -o
loopUnroll-ia64 loopUnroll.bc
make: *** [llvm-ia64] Bus error (core dumped)
-- note that this has no -filetype option at all.
Any hints?
Thanks,
-mike
--
Michael McCracken
UCSD CSE PhD Candidate
research: http://www.cse.ucsd.edu/~mmccrack/
misc: http://michael-mccracken.net/blog/
2007 Apr 12
7
[LLVMdev] Compiler name: Nāga
...age for Nāga: "Lóng" (Chinese), "Ryū"
(Japanese), and my second-favorite after Nāga, "kyo" ("Korean mountain
dragon"), which has nice consonance with "compiler".
-mike
--
Michael McCracken
UCSD CSE PhD Candidate
research: http://www.cse.ucsd.edu/~mmccrack/
misc: http://michael-mccracken.net/wp/
2007 May 15
2
[LLVMdev] FORTRAN compiler status?
...t; Duncan.
> _______________________________________________
> LLVM Developers mailing list
> LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev
>
--
Michael McCracken
UCSD CSE PhD Candidate
research: http://www.cse.ucsd.edu/~mmccrack/
misc: http://michael-mccracken.net/wp/
2005 Jul 26
2
[LLVMdev] Making a pass available to llc?
...names with a FilteredPassNameParser and create them,
but llc does not - it just gets all the passes it wants through the
TargetMachine.
Is there a particular reason not to create general Passes from llc?
Thanks,
mike
--
Michael McCracken
UCSD CSE PhD Candidate
research: http://www.cse.ucsd.edu/~mmccrack/
misc: http://michael-mccracken.net/blog/
2006 Aug 31
3
[LLVMdev] gfortran
...that if it sounds like something I'll be able
to make a dent in, I'm going to start on it first thing tomorrow
morning. Like it's my job.
Thanks,
-mike
[1]:http://gcc.gnu.org/ml/gcc/2005-11/msg00929.html
--
Michael McCracken
UCSD CSE PhD Candidate
research: http://www.cse.ucsd.edu/~mmccrack/
misc: http://michael-mccracken.net/wp/
2005 Jul 27
2
[LLVMdev] Making a pass available to llc?
...mpile the sample programs. Same
> goes for the test directory.
OK, sounds like the solution to my problem is to modify llc, and is
sort of unrelated to llvmc, so I'll stick with what I was doing.
Thanks,
-mike
--
Michael McCracken
UCSD CSE PhD Candidate
research: http://www.cse.ucsd.edu/~mmccrack/
misc: http://michael-mccracken.net/blog/