2018-09-06 12:41:12 +00:00
|
|
|
// run-pass
|
|
|
|
|
2017-06-03 21:54:08 +00:00
|
|
|
// aux-build:custom.rs
|
|
|
|
// aux-build:custom-as-global.rs
|
|
|
|
// aux-build:helper.rs
|
|
|
|
// no-prefer-dynamic
|
|
|
|
|
2018-07-23 02:14:42 +00:00
|
|
|
#![feature(allocator_api)]
|
2017-06-03 21:54:08 +00:00
|
|
|
|
|
|
|
extern crate custom;
|
|
|
|
extern crate custom_as_global;
|
|
|
|
extern crate helper;
|
|
|
|
|
2018-05-31 07:10:01 +00:00
|
|
|
use std::alloc::{alloc, dealloc, GlobalAlloc, System, Layout};
|
2019-01-26 16:14:49 +00:00
|
|
|
use std::sync::atomic::{AtomicUsize, Ordering};
|
2017-06-03 21:54:08 +00:00
|
|
|
|
2019-01-26 16:14:49 +00:00
|
|
|
static GLOBAL: custom::A = custom::A(AtomicUsize::new(0));
|
2017-06-03 21:54:08 +00:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
unsafe {
|
|
|
|
let n = custom_as_global::get();
|
|
|
|
let layout = Layout::from_size_align(4, 2).unwrap();
|
|
|
|
|
|
|
|
// Global allocator routes to the `custom_as_global` global
|
2018-05-31 07:10:01 +00:00
|
|
|
let ptr = alloc(layout.clone());
|
2017-06-03 21:54:08 +00:00
|
|
|
helper::work_with(&ptr);
|
|
|
|
assert_eq!(custom_as_global::get(), n + 1);
|
2018-05-31 07:10:01 +00:00
|
|
|
dealloc(ptr, layout.clone());
|
2017-06-03 21:54:08 +00:00
|
|
|
assert_eq!(custom_as_global::get(), n + 2);
|
|
|
|
|
|
|
|
// Usage of the system allocator avoids all globals
|
2018-04-03 15:12:57 +00:00
|
|
|
let ptr = System.alloc(layout.clone());
|
2017-06-03 21:54:08 +00:00
|
|
|
helper::work_with(&ptr);
|
|
|
|
assert_eq!(custom_as_global::get(), n + 2);
|
|
|
|
System.dealloc(ptr, layout.clone());
|
|
|
|
assert_eq!(custom_as_global::get(), n + 2);
|
|
|
|
|
|
|
|
// Usage of our personal allocator doesn't affect other instances
|
2018-04-03 15:12:57 +00:00
|
|
|
let ptr = GLOBAL.alloc(layout.clone());
|
2017-06-03 21:54:08 +00:00
|
|
|
helper::work_with(&ptr);
|
|
|
|
assert_eq!(custom_as_global::get(), n + 2);
|
|
|
|
assert_eq!(GLOBAL.0.load(Ordering::SeqCst), 1);
|
2018-04-03 15:12:57 +00:00
|
|
|
GLOBAL.dealloc(ptr, layout);
|
2017-06-03 21:54:08 +00:00
|
|
|
assert_eq!(custom_as_global::get(), n + 2);
|
|
|
|
assert_eq!(GLOBAL.0.load(Ordering::SeqCst), 2);
|
|
|
|
}
|
|
|
|
}
|