Displaying 1 result from an estimated 1 matches for "x86yasminstprinter".
2012 Apr 02
1
[LLVMdev] Adding a Yasm ASM printer
...ting the asm in
a style that Yasm can take without any post processing. Yasm's format is
very close to that of intel. I was wondering if my approach is correct:
I've made a custom MCAsmStreamer to remove some of the COFF symbol
directives that yasm doesn't understand.
I've made a X86YasmInstPrinter, and added it to the x86.td, as a new
variant, and due to it having a new Variant number, I'm having to edit all
the X86*.td files and add the extra variant's descriptions in the { | }
blocks.
I've also added a new ASMInfo class with the required changes for yasm.
Now what is worryin...