mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-05 13:26:55 +00:00
Introduce bitset metadata format and bitset lowering pass.
This patch introduces a new mechanism that allows IR modules to co-operatively build pointer sets corresponding to addresses within a given set of globals. One particular use case for this is to allow a C++ program to efficiently verify (at each call site) that a vtable pointer is in the set of valid vtable pointers for the class or its derived classes. One way of doing this is for a toolchain component to build, for each class, a bit set that maps to the memory region allocated for the vtables, such that each 1 bit in the bit set maps to a valid vtable for that class, and lay out the vtables next to each other, to minimize the total size of the bit sets. The patch introduces a metadata format for representing pointer sets, an '@llvm.bitset.test' intrinsic and an LTO lowering pass that lays out the globals and builds the bitsets, and documents the new feature. Differential Revision: http://reviews.llvm.org/D7288 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230054 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -3308,6 +3308,12 @@ the loop identifier metadata node directly:
|
||||
!1 = !{!1} ; an identifier for the inner loop
|
||||
!2 = !{!2} ; an identifier for the outer loop
|
||||
|
||||
'``llvm.bitsets``'
|
||||
^^^^^^^^^^^^^^^^^^
|
||||
|
||||
The ``llvm.bitsets`` global metadata is used to implement
|
||||
:doc:`bitsets <BitSets>`.
|
||||
|
||||
Module Flags Metadata
|
||||
=====================
|
||||
|
||||
@@ -9891,6 +9897,31 @@ sufficient overall improvement in code quality. For this reason,
|
||||
that the optimizer can otherwise deduce or facts that are of little use to the
|
||||
optimizer.
|
||||
|
||||
.. _bitset.test:
|
||||
|
||||
'``llvm.bitset.test``' Intrinsic
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
Syntax:
|
||||
"""""""
|
||||
|
||||
::
|
||||
|
||||
declare i1 @llvm.bitset.test(i8* %ptr, metadata %bitset) nounwind readnone
|
||||
|
||||
|
||||
Arguments:
|
||||
""""""""""
|
||||
|
||||
The first argument is a pointer to be tested. The second argument is a
|
||||
metadata string containing the name of a :doc:`bitset <BitSets>`.
|
||||
|
||||
Overview:
|
||||
"""""""""
|
||||
|
||||
The ``llvm.bitset.test`` intrinsic tests whether the given pointer is a
|
||||
member of the given bitset.
|
||||
|
||||
'``llvm.donothing``' Intrinsic
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
|
Reference in New Issue
Block a user