Displaying 1 result from an estimated 1 matches for "reginfosect".
2012 Dec 15
0
[LLVMdev] Setting ELF section alignment at the Target level
...reate a few target specific ELF sections. I seem to be able to create the section and fill it with data that gets written out, but don't see how I can set the alignment without first having an MCAssembler object handy.
I am patterning after existing code for .sbss In MipsTargetObjectFile.cpp:
ReginfoSection =
getContext().getELFSection(".MIPS.options",
ELF::SHT_MIPS_OPTIONS,
ELF::SHF_ALLOC |ELF::SHF_MIPS_NOSTRIP,
SectionKind::getMetadata());
ReginfoSection is defined as a MCSection *.
Dumpin...