Displaying 2 results from an estimated 2 matches for "sparcev9".
2004 Dec 27
0
[LLVMdev] Could LLVM help me?
...lus, I
am on vacation! :)
> well....my questions are following.
> 1. I wrote a very simple backend, but I dont know how to tell the llvm
> compiler to use it.
> I found something in "llc --help", it says that I can use
> -march=BACKEND. But it only
> can use X86, sparcev9 and powerpc. The skeleton looks like for
> custom use, but I dnot
> know how to use it??
You need to use -load or link it in statically to the llc executable. If
you have done this you should see your backend option with -help.
> 2. I dont know how to generate the "machine code...
2004 Dec 01
3
[LLVMdev] Could LLVM help me?
Howdy:
I'm a newbie of LLVM. I want to make sure that my way is correct.
Plz tell me...
we design a new processor with a new arch. we wanna get a compiler as
fast as possible. The target code of the new compiler is machine
code.
So, is it I just to create a whole new backend for our new processor,
right? And then????
Thx.