mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-05 13:26:55 +00:00
Support multiple COFF sections with the same name but different COMDAT.
This is the first step to fix pr17918. It extends the .section directive a bit, inspired by what the ELF one looks like. The problem with using linkonce is that given .section foo .linkonce.... .section foo .linkonce we would already have switched sections when getting to .linkonce. The cleanest solution seems to be to add the comdat information in the .section itself. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@195148 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -105,3 +105,41 @@ Supported COMDAT types:
|
||||
.section .xdata$foo
|
||||
.linkonce associative .text$foo
|
||||
...
|
||||
|
||||
``.section`` Directive
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
MC supports passing the information in ``.linkonce`` at the end of
|
||||
``.section``. For example, these two codes are equivalent
|
||||
|
||||
.. code-block:: gas
|
||||
|
||||
.section secName, "dr", discard, "Symbol1"
|
||||
.globl Symbol1
|
||||
Symbol1:
|
||||
.long 1
|
||||
|
||||
.. code-block:: gas
|
||||
|
||||
.section secName, "dr"
|
||||
.linkonce discard
|
||||
.globl Symbol1
|
||||
Symbol1:
|
||||
.long 1
|
||||
|
||||
Note that in the combined form the COMDAT symbol is explict. This
|
||||
extension exits to support multiple sections with the same name in
|
||||
different comdats:
|
||||
|
||||
|
||||
.. code-block:: gas
|
||||
|
||||
.section secName, "dr", discard, "Symbol1"
|
||||
.globl Symbol1
|
||||
Symbol1:
|
||||
.long 1
|
||||
|
||||
.section secName, "dr", discard, "Symbol2"
|
||||
.globl Symbol2
|
||||
Symbol2:
|
||||
.long 1
|
||||
|
Reference in New Issue
Block a user