with split bins poc

This commit is contained in:
2022-08-20 16:51:07 +02:00
parent 420645983f
commit 32933381dd
1270 changed files with 2756 additions and 1 deletions

View File

@@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@@ -0,0 +1,9 @@
; ModuleID = 'probe0.6e91aef5-cgu.0'
source_filename = "probe0.6e91aef5-cgu.0"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-unknown-linux-gnu"
!llvm.module.flags = !{!0, !1}
!0 = !{i32 7, !"PIC Level", i32 2}
!1 = !{i32 2, !"RtLibUseGOT", i32 1}

View File

@@ -0,0 +1,9 @@
; ModuleID = 'probe1.63d9f70e-cgu.0'
source_filename = "probe1.63d9f70e-cgu.0"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-unknown-linux-gnu"
!llvm.module.flags = !{!0, !1}
!0 = !{i32 7, !"PIC Level", i32 2}
!1 = !{i32 2, !"RtLibUseGOT", i32 1}

View File

@@ -0,0 +1,9 @@
; ModuleID = 'probe2.40137ea5-cgu.0'
source_filename = "probe2.40137ea5-cgu.0"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-unknown-linux-gnu"
!llvm.module.flags = !{!0, !1}
!0 = !{i32 7, !"PIC Level", i32 2}
!1 = !{i32 2, !"RtLibUseGOT", i32 1}

View File

@@ -0,0 +1,9 @@
; ModuleID = 'probe3.5cf94df6-cgu.0'
source_filename = "probe3.5cf94df6-cgu.0"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-unknown-linux-gnu"
!llvm.module.flags = !{!0, !1}
!0 = !{i32 7, !"PIC Level", i32 2}
!1 = !{i32 2, !"RtLibUseGOT", i32 1}

View File

@@ -0,0 +1,9 @@
; ModuleID = 'probe4.602db7f0-cgu.0'
source_filename = "probe4.602db7f0-cgu.0"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-unknown-linux-gnu"
!llvm.module.flags = !{!0, !1}
!0 = !{i32 7, !"PIC Level", i32 2}
!1 = !{i32 2, !"RtLibUseGOT", i32 1}

View File

@@ -0,0 +1,5 @@
cargo:rustc-cfg=has_min_const_fn
cargo:rustc-cfg=has_atomic_u8
cargo:rustc-cfg=has_atomic_u16
cargo:rustc-cfg=has_atomic_u32
cargo:rustc-cfg=has_atomic_u64

View File

@@ -0,0 +1 @@
/home/kjuulh/git/git.front.kjuulh.io/kjuulh/guddle/pocs/split_bins/target/debug/build/crossbeam-utils-efd82785c9f72144/out

View File

@@ -0,0 +1,20 @@
error[E0412]: cannot find type `AtomicU128` in module `core::sync::atomic`
--> <anon>:1:38
|
1 | pub type Probe = core::sync::atomic::AtomicU128;
| ^^^^^^^^^^ help: a struct with a similar name exists: `AtomicU16`
|
::: /home/kjuulh/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/sync/atomic.rs:2361:1
|
2361 | / atomic_int! {
2362 | | cfg(target_has_atomic = "16"),
2363 | | cfg(target_has_atomic_equal_alignment = "16"),
2364 | | stable(feature = "integer_atomics_stable", since = "1.34.0"),
... |
2378 | | u16 AtomicU16 ATOMIC_U16_INIT
2379 | | }
| |_- similarly named struct `AtomicU16` defined here
error: aborting due to previous error
For more information about this error, try `rustc --explain E0412`.