Displaying 1 result from an estimated 1 matches for "footargetstream".
Did you mean:
footargetstreamer
2013 Oct 08
0
[LLVMdev] The new MCTargetStreamer interface
...small addition
because of the need to handle assembly and object emission.
I have moved directives 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 MCS...