forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request rust-lang#209 from RalfJung/ptrs
Make HashMap insertion work
- Loading branch information
Showing
11 changed files
with
172 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT | ||
// file at the top-level directory of this distribution and at | ||
// http://rust-lang.org/COPYRIGHT. | ||
// | ||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or | ||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license | ||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your | ||
// option. This file may not be copied, modified, or distributed | ||
// except according to those terms. | ||
|
||
#![allow(dead_code)] | ||
|
||
use std::mem; | ||
|
||
enum Tag<A> { | ||
Tag2(A) | ||
} | ||
|
||
struct Rec { | ||
c8: u8, | ||
t: Tag<u64> | ||
} | ||
|
||
fn mk_rec() -> Rec { | ||
return Rec { c8:0, t:Tag::Tag2(0) }; | ||
} | ||
|
||
fn is_u64_aligned(u: &Tag<u64>) -> bool { | ||
let p: usize = unsafe { mem::transmute(u) }; | ||
let u64_align = std::mem::align_of::<u64>(); | ||
return (p & (u64_align + 1)) == 0; //~ ERROR a raw memory access tried to access part of a pointer value as raw bytes | ||
} | ||
|
||
pub fn main() { | ||
let x = mk_rec(); | ||
assert!(is_u64_aligned(&x.t)); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#![feature(intrinsics)] | ||
|
||
mod rusti { | ||
extern "rust-intrinsic" { | ||
pub fn ctlz_nonzero<T>(x: T) -> T; | ||
} | ||
} | ||
|
||
pub fn main() { | ||
unsafe { | ||
use rusti::*; | ||
|
||
ctlz_nonzero(0u8); //~ ERROR: ctlz_nonzero called on 0 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#![feature(intrinsics)] | ||
|
||
mod rusti { | ||
extern "rust-intrinsic" { | ||
pub fn cttz_nonzero<T>(x: T) -> T; | ||
} | ||
} | ||
|
||
pub fn main() { | ||
unsafe { | ||
use rusti::*; | ||
|
||
cttz_nonzero(0u8); //~ ERROR: cttz_nonzero called on 0 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters