search for: llvm_asm_printer

Displaying 7 results from an estimated 7 matches for "llvm_asm_printer".

2011 Jan 19
0
[LLVMdev] About test suits Cont2
...s at Urbana-Champaign.' LLVM_CROSS_COMPILING='0' LLVM_DATADIR='/home/qali/install/llvm-2.8-ori/share/llvm' LLVM_DOCSDIR='/home/qali/install/llvm-2.8-ori/share/doc/llvm' LLVM_ENUM_ASM_PARSERS='LLVM_ASM_PARSER(ARM) LLVM_ASM_PARSER(X86) ' LLVM_ENUM_ASM_PRINTERS='LLVM_ASM_PRINTER(MBlaze) LLVM_ASM_PRINTER(Blackfin) LLVM_ASM_PRINTER(SystemZ) LLVM_ASM_PRINTER(MSP430) LLVM_ASM_PRINTER(XCore) LLVM_ASM_PRINTER(PIC16) LLVM_ASM_PRINTER(CellSPU) LLVM_ASM_PRINTER(Mips) LLVM_ASM_PRINTER(ARM) LLVM_ASM_PRINTER(Alpha) LLVM_ASM_PRINTER(PowerPC) LLVM_ASM_PRINTER(Sparc) LLVM_ASM_PRINTER(X86...
2011 Jan 19
0
[LLVMdev] Fwd: About test suits Cont1
...s at Urbana-Champaign.' LLVM_CROSS_COMPILING='0' LLVM_DATADIR='/home/qali/install/llvm-2.8-ori/share/llvm' LLVM_DOCSDIR='/home/qali/install/llvm-2.8-ori/share/doc/llvm' LLVM_ENUM_ASM_PARSERS='LLVM_ASM_PARSER(ARM) LLVM_ASM_PARSER(X86) ' LLVM_ENUM_ASM_PRINTERS='LLVM_ASM_PRINTER(MBlaze) LLVM_ASM_PRINTER(Blackfin) LLVM_ASM_PRINTER(SystemZ) LLVM_ASM_PRINTER(MSP430) LLVM_ASM_PRINTER(XCore) LLVM_ASM_PRINTER(PIC16) LLVM_ASM_PRINTER(CellSPU) LLVM_ASM_PRINTER(Mips) LLVM_ASM_PRINTER(ARM) LLVM_ASM_PRINTER(Alpha) LLVM_ASM_PRINTER(PowerPC) LLVM_ASM_PRINTER(Sparc) LLVM_ASM_PRINTER(X86...
2011 Jan 18
3
[LLVMdev] About test suits Cont1
*1. I have searched the access/setting of LLVMCC_EMITIR_FLAG in the build directory, recursively, and all the output is what I pasted in last email (just the same to the that in source directory). Maybe the configure failed to do it. My command list for building the test suit is as followings:* *(1) cd ~/SRC_DIR/llvm/projects* *(2) svn co http://llvm.org/svn/llvm-project/test-suite/trunk
2011 Jun 20
0
[LLVMdev] Problem regarding AsmPrinter registration
...ef, I see my target details.   #ifndef LLVM_TARGET   #  error Please define the macro LLVM_TARGET(TargetName)   #endif   LLVM_TARGET(DRE) LLVM_TARGET(X86)   #undef LLVM_TARGET But when I check for the ASMPrinter for my target in build/include/llvm/Config/AsmPrinters.def, I see only X86 #ifndef LLVM_ASM_PRINTER #  error Please define the macro LLVM_ASM_PRINTER(TargetName) #endif LLVM_ASM_PRINTER(X86) #undef LLVM_ASM_PRINTER Can some point to some text about how these *.def files are created and what may be the reason for my printer not getting registered. I was having another problem related to...
2011 Jun 21
1
[LLVMdev] AsmPrinter directory
Hi, While trying to debug a linking problem related to AsmPrinter, I found following lines in {srcdir}/configure file. if test -f ${srcdir}/lib/Target/${target_to_build}/*AsmPrinter.cpp ; then LLVM_ENUM_ASM_PRINTERS="LLVM_ASM_PRINTER($target_to_build) $LLVM_ENUM_ASM_PRINTERS"; It looks like the AsmPrinters are enumerated only if *AsmPrinter.cpp file is present in {srcdir}/lib/Target/${target_to_build} Does this means that making a separate directory for AsmPrinter is no more supported. I saw other architectures have also...
2013 Mar 03
2
[LLVMdev] trouble with AsmPrinter registration
...ong 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 missed something important? -- Regards, Vadim. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130303/2edae9c6/attachment.html>
2012 Jul 25
1
[LLVMdev] LLVMInitializeMyTargetAsmPrinter is not called
Hi, I'm trying to implement a LLVM backend but have actually a problem and don't know how to handle. Actually I'm at the very beginning. I tried to (carefully) copy from existing backends (Sparc and Hexogon), but I messed up with something. My "LLVMInitializeMyTargetAsmPrinter" function is not called. All the other "LLVMInitializeMyTargetSomeThing" functions to