Displaying 1 result from an estimated 1 matches for "armmcobjprinter".
2010 Sep 27
1
[LLVMdev] Proposal: Splitting up MC/ELF + AsmPrinter Hierarchy?
...before I send in
a patch along those lines...
Steps would be:
1. New ABC MCTargetPrinter (similar to the current AsmPrinter.cpp class)
2. New derived ABC ARMMCTargetjPrinter
3. New derived class ARMMCAsmPrinter (this is where JimG's new ARM MC
.s printer code would go)
4. New Derived class ARMMCObjPrinter (this is where the ELF specific
stuff would go)
4a. Add in new temp switches to configure and llc to enable this
feature for ARM only...
5. Once working, clear off ARMAsmPrinter.cppr
6. Once ported over to other architectures, clear off AsmPrinter
entirely and rejigger configure script.
I'd st...