Peter Collingbourne | e6909c8 | 2015-02-20 20:30:47 +0000 | [diff] [blame^] | 1 | ======= |
| 2 | Bitsets |
| 3 | ======= |
| 4 | |
| 5 | This is a mechanism that allows IR modules to co-operatively build pointer |
| 6 | sets corresponding to addresses within a given set of globals. One example |
| 7 | of a use case for this is to allow a C++ program to efficiently verify (at |
| 8 | each call site) that a vtable pointer is in the set of valid vtable pointers |
| 9 | for the type of the class or its derived classes. |
| 10 | |
| 11 | To use the mechanism, a client creates a global metadata node named |
| 12 | ``llvm.bitsets``. Each element is a metadata node with three elements: |
| 13 | the first is a metadata string containing an identifier for the bitset, |
| 14 | the second is a global variable and the third is a byte offset into the |
| 15 | global variable. |
| 16 | |
| 17 | This will cause a link-time optimization pass to generate bitsets from the |
| 18 | memory addresses referenced from the elements of the bitset metadata. The pass |
| 19 | will lay out the referenced globals consecutively, so their definitions must |
| 20 | be available at LTO time. An intrinsic, :ref:`llvm.bitset.test <bitset.test>`, |
| 21 | generates code to test whether a given pointer is a member of a bitset. |
| 22 | |
| 23 | :Example: |
| 24 | |
| 25 | :: |
| 26 | |
| 27 | target datalayout = "e-p:32:32" |
| 28 | |
| 29 | @a = internal global i32 0 |
| 30 | @b = internal global i32 0 |
| 31 | @c = internal global i32 0 |
| 32 | @d = internal global [2 x i32] [i32 0, i32 0] |
| 33 | |
| 34 | !llvm.bitsets = !{!0, !1, !2, !3, !4} |
| 35 | |
| 36 | !0 = !{!"bitset1", i32* @a, i32 0} |
| 37 | !1 = !{!"bitset1", i32* @b, i32 0} |
| 38 | !2 = !{!"bitset2", i32* @b, i32 0} |
| 39 | !3 = !{!"bitset2", i32* @c, i32 0} |
| 40 | !4 = !{!"bitset2", i32* @d, i32 4} |
| 41 | |
| 42 | declare i1 @llvm.bitset.test(i8* %ptr, metadata %bitset) nounwind readnone |
| 43 | |
| 44 | define i1 @foo(i32* %p) { |
| 45 | %pi8 = bitcast i32* %p to i8* |
| 46 | %x = call i1 @llvm.bitset.test(i8* %pi8, metadata !"bitset1") |
| 47 | ret i1 %x |
| 48 | } |
| 49 | |
| 50 | define i1 @bar(i32* %p) { |
| 51 | %pi8 = bitcast i32* %p to i8* |
| 52 | %x = call i1 @llvm.bitset.test(i8* %pi8, metadata !"bitset2") |
| 53 | ret i1 %x |
| 54 | } |
| 55 | |
| 56 | define void @main() { |
| 57 | %a1 = call i1 @foo(i32* @a) ; returns 1 |
| 58 | %b1 = call i1 @foo(i32* @b) ; returns 1 |
| 59 | %c1 = call i1 @foo(i32* @c) ; returns 0 |
| 60 | %a2 = call i1 @bar(i32* @a) ; returns 0 |
| 61 | %b2 = call i1 @bar(i32* @b) ; returns 1 |
| 62 | %c2 = call i1 @bar(i32* @c) ; returns 1 |
| 63 | %d02 = call i1 @bar(i32* getelementptr ([2 x i32]* @d, i32 0, i32 0)) ; returns 0 |
| 64 | %d12 = call i1 @bar(i32* getelementptr ([2 x i32]* @d, i32 0, i32 1)) ; returns 1 |
| 65 | ret void |
| 66 | } |