Displaying 7 results from an estimated 7 matches for "llcm".
Did you mean:
llc
2009 Aug 27
0
[LLVMdev] LLCM Compiler Job
Hi,
AMD is currently looking for talented compiler engineers to work with
LLVM
and this list seemed like a good place to let people know. Below is the
job
description, please send me an email if you are interested.
Regards,
Ben
Compiler engineer
We are currently looking for a software engineer as part of the core
team
developing OpenCL, a new open standard for heterogonous
2011 Sep 27
2
[LLVMdev] Poor code generation for odd sized vectors
Hi all,
I'm compiling LLCM IR code like this on x86-64:
define linkonce ccc <16 x float> @vector_add_float(<16 x float> %a.78, <16 x float> %a.79) align 8
{
entry:
%result.80 = fadd <16 x float> %a.78, %a.79
ret <18 x float> %result.80
}
This works really well when the vect...
2011 Sep 27
0
[LLVMdev] Poor code generation for odd sized vectors
...; *%a.78p, <18 x
float> *%a.79p) {
%a.78 = load <18 x float> *%a.78p
%a.79 = load <18 x float> *%a.79p
%result.80 = fadd <18 x float> %a.78, %a.79
store <18 x float> %result.80, <18 x float> *%rp
ret void
}
Ciao, Duncan.
> I'm compiling LLCM IR code like this on x86-64:
>
> define linkonce ccc<16 x float> @vector_add_float(<16 x float> %a.78,<16 x float> %a.79) align 8
> {
> entry:
> %result.80 = fadd<16 x float> %a.78, %a.79
> ret<18 x float> %result.80
>...
2012 Jul 17
0
[LLVMdev] [cfe-dev] Curent svn build, generates llvm DEBUG builds
2012/7/17 Unai Landa <ulanda at digital-legends.com>:
> But ig I do so with llc or any other llcm executable I get DEBUG build this;
> LLVM (http://llvm.org/):
> LLVM version 3.2svn
> DEBUG build.
> Built Jul 16 2012 (16:31:02).
> Default target: i686-pc-win32
> Host CPU: penryn
> Registered Targets:
> arm - ARM
> cpp - C++ backend
> t...
2008 Feb 09
0
[LLVMdev] exception handling broken on x86-64?
On Feb 9, 2008, at 6:53 AM, Thomas Neumann wrote:
> Hi,
>
> when building the second release candidate of llvm 2.2 I noticed that
> exception handling seems to be broken on Linux x86-64. The exception
> is
> thrown but never caught.
> This can be seen by this trivial example:
>
> #include <iostream>
> using namespace std;
> class A { };
> int main()
2008 Feb 09
2
[LLVMdev] exception handling broken on x86-64?
Hi,
when building the second release candidate of llvm 2.2 I noticed that
exception handling seems to be broken on Linux x86-64. The exception is
thrown but never caught.
This can be seen by this trivial example:
#include <iostream>
using namespace std;
class A { };
int main()
{
cout << "A" << endl;
try {
cout << "B" << endl;
2010 Jan 22
3
[LLVMdev] Kaleidoscope-tutorial: Fails to create the JIT
...a fix, workaround,. or
when needed details
Some details: Version is 2.6, PreBuild Apple OS-X download (from llvm-
website). But the same happens with build form 2.6 sources.
Apple (Laptop) , intel; Leopard OS (No Snow), with all updates
Placed the bin/libs in a custom dir: $HOME/NoTimeMachine/LLCM/
PreBuild/ is LLVM home [or: .../<OwnBuidl>/Release/]
Build the Kaleidoscope tool, as mentioned in the docs:
g++ -g -O3 $< -o $@ `${LLVM}/bin/llvm-config --cppflags --ldflags --
libs core jit native`
Also tried with -rdynamic option; same result
Please send me instruction for a patc...