Displaying 1 result from an estimated 1 matches for "footargetelfstream".
Did you mean:
footargetelfstreamer
2013 Oct 08
0
[LLVMdev] The new MCTargetStreamer interface
...tives for PPC, Mips and ARM over to the new
interface. If you think I forgot some, need to add more or maintain an
out of tree target, this is what you need to do for a Foo target:
Implement 3 classes:
* FooTargetStreamer : public MCTargetStreamer
* FooTargetAsmSreamer : public FooTargetStreamer
* FooTargetELFStreamer : public FooTargetStreamer
FooTargetStreamer should have a pure virtual method for each directive. For
example, for a ".bar symbol_name" directive, it should have
virtual emitBar(const MCSymbol &Symbol) = 0;
The FooTargetAsmSreamer and FooTargetELFStreamer classes implement the
me...