Skip to content
  • Peter Collingbourne's avatar
    21521891
    IR: Allow metadata attachments on declarations, and fix lazy loaded metadata issue with globals. · 21521891
    Peter Collingbourne authored
    This change is motivated by an upcoming change to the metadata representation
    used for CFI. The indirect function call checker needs type information for
    external function declarations in order to correctly generate jump table
    entries for such declarations. We currently associate such type information
    with declarations using a global metadata node, but I plan [1] to move all
    such metadata to global object attachments.
    
    In bitcode, metadata attachments for function declarations appear in the
    global metadata block. This seems reasonable to me because I expect metadata
    attachments on declarations to be uncommon. In the long term I'd also expect
    this to be the case for CFI, because we'd want to use some specialized bitcode
    format for this metadata that could be read as part of the ThinLTO thin-link
    phase, which would mean that it would not appear in the global metadata block.
    
    To solve the lazy loaded metadata issue I was seeing with D20147, I use the
    same bitcode representation for metadata attachments for global variables as I
    do for function declarations. Since there's a use case for metadata attachments
    in the global metadata block, we might as well use that representation for
    global variables as well, at least until we have a mechanism for lazy loading
    global variables.
    
    In the assembly format, the metadata attachments appear after the "declare"
    keyword in order to avoid a parsing ambiguity.
    
    [1] http://lists.llvm.org/pipermail/llvm-dev/2016-June/100462.html
    
    Differential Revision: http://reviews.llvm.org/D21052
    
    llvm-svn: 273336
    21521891
    IR: Allow metadata attachments on declarations, and fix lazy loaded metadata issue with globals.
    Peter Collingbourne authored
    This change is motivated by an upcoming change to the metadata representation
    used for CFI. The indirect function call checker needs type information for
    external function declarations in order to correctly generate jump table
    entries for such declarations. We currently associate such type information
    with declarations using a global metadata node, but I plan [1] to move all
    such metadata to global object attachments.
    
    In bitcode, metadata attachments for function declarations appear in the
    global metadata block. This seems reasonable to me because I expect metadata
    attachments on declarations to be uncommon. In the long term I'd also expect
    this to be the case for CFI, because we'd want to use some specialized bitcode
    format for this metadata that could be read as part of the ThinLTO thin-link
    phase, which would mean that it would not appear in the global metadata block.
    
    To solve the lazy loaded metadata issue I was seeing with D20147, I use the
    same bitcode representation for metadata attachments for global variables as I
    do for function declarations. Since there's a use case for metadata attachments
    in the global metadata block, we might as well use that representation for
    global variables as well, at least until we have a mechanism for lazy loading
    global variables.
    
    In the assembly format, the metadata attachments appear after the "declare"
    keyword in order to avoid a parsing ambiguity.
    
    [1] http://lists.llvm.org/pipermail/llvm-dev/2016-June/100462.html
    
    Differential Revision: http://reviews.llvm.org/D21052
    
    llvm-svn: 273336
Loading