Displaying 6 results from an estimated 6 matches similar to: "[LLVMdev] LLVMInitializeMyTargetAsmPrinter is not called"
2013 Oct 10
2
[LLVMdev] [PATCH] R600/SI: Embed disassembly in ELF object
Hi,
This patch adds R600/SI disassembly text to compiled object files, when
a code dump is requested, to assist debugging in Mesa clients.
Here's an example of the output in a Mesa client with a corresponding
patch and RADEON_DUMP_SHADERS set:
Shader Disassembly:
S_WQM_B64 EXEC, EXEC ; BEFE0A7E
S_MOV_B32 M0, SGPR6 ; BEFC0306
2013 Mar 03
2
[LLVMdev] trouble with AsmPrinter registration
Hello everyone!
Could somebody, advice me what's wrong with my AsmPrinter? I've created
ColdFireAsmPrinter.cpp file, and added initialization:
extern "C" void LLVMInitializeColdFireAsmPrinter() {
RegisterAsmPrinter<ColdFireAsmPrinter> X(TheColdFireTarget);
}
But, unfortunately, after build AsmPrinters.def doesn't contain
LLVM_ASM_PRINTER(ColdFire). Maybe I've
2011 Oct 14
0
[LLVMdev] Native MCAsmStreamer?
Hi all,
I'm working on a new target, a 16 bit microcontroller, in the process of
learning the LLVM backend things.
It's going well so far, but I have a question:
I'd like to use a pure MCAsmStreamer and not have another layer of glue.
Right now, I have the following to make it compile:
---
using namespace llvm;
namespace {
class HCS12AsmPrinter : public AsmPrinter {
public:
2010 Sep 26
0
[LLVMdev] What is the canonical way to build on Solaris 10?
Hi,
I am trying to get r114797 to build on Solaris 10u6 (5.10
Generic_142901-03).
gcc 4.2 is installed and configured with:
-bash-3.00$ /opt/gcc4/bin/gcc -v
Using built-in specs.
Target: i386-pc-solaris2.10
Configured with: ./configure --prefix=/opt/gcc4 --with-gnu-as
--with-as=/usr/sfw/bin/gas --without-gnu-ld --with-ld=/usr/ccs/bin/ld
--enable-shared --enable-languages=c,c++
Thread model:
2013 Oct 10
0
[LLVMdev] [PATCH] R600/SI: Embed disassembly in ELF object
On Wed, Oct 09, 2013 at 08:06:42PM -0500, Jay Cornwall wrote:
> Hi,
>
> This patch adds R600/SI disassembly text to compiled object files, when
> a code dump is requested, to assist debugging in Mesa clients.
>
> Here's an example of the output in a Mesa client with a corresponding
> patch and RADEON_DUMP_SHADERS set:
>
> Shader Disassembly:
>
>
2012 Oct 12
3
[LLVMdev] Newbie question for registering new target with LLVM
Hi all, llvm newbie here.
I'm trying to learn porting with llvm for study purpose. This is my first query
on llvm mailing list.I have some idea about GCC. I choose 'rx' as a target to
port as it is also available in GCC. I have done some initial changes with llvm
source code to register target with llvm. I need to verify these changes. Can
anyone please take a chance to verify it.