File tree 8 files changed +56
-157
lines changed
8 files changed +56
-157
lines changed Original file line number Diff line number Diff line change @@ -27,10 +27,10 @@ rust_dbg_extern_identity_u8(char u) {
27
27
return u ;
28
28
}
29
29
30
- typedef void * (* dbg_callback )(void * );
30
+ typedef uint64_t (* dbg_callback )(uint64_t );
31
31
32
- void *
33
- rust_dbg_call (dbg_callback cb , void * data ) {
32
+ uint64_t
33
+ rust_dbg_call (dbg_callback cb , uint64_t data ) {
34
34
return cb (data );
35
35
}
36
36
Original file line number Diff line number Diff line change 1
1
#![ crate_name = "externcallback" ]
2
2
#![ crate_type = "lib" ]
3
- #![ feature( rustc_private) ]
4
3
5
- extern crate libc;
6
-
7
- pub mod rustrt {
8
- extern crate libc;
9
-
10
- #[ link( name = "rust_test_helpers" , kind = "static" ) ]
11
- extern "C" {
12
- pub fn rust_dbg_call (
13
- cb : extern "C" fn ( libc:: uintptr_t ) -> libc:: uintptr_t ,
14
- data : libc:: uintptr_t ,
15
- ) -> libc:: uintptr_t ;
16
- }
4
+ #[ link( name = "rust_test_helpers" , kind = "static" ) ]
5
+ extern "C" {
6
+ pub fn rust_dbg_call (
7
+ cb : extern "C" fn ( u64 ) -> u64 ,
8
+ data : u64 ,
9
+ ) -> u64 ;
17
10
}
18
11
19
- pub fn fact ( n : libc :: uintptr_t ) -> libc :: uintptr_t {
12
+ pub fn fact ( n : u64 ) -> u64 {
20
13
unsafe {
21
14
println ! ( "n = {}" , n) ;
22
- rustrt :: rust_dbg_call ( cb, n)
15
+ rust_dbg_call ( cb, n)
23
16
}
24
17
}
25
18
26
- pub extern "C" fn cb ( data : libc :: uintptr_t ) -> libc :: uintptr_t {
19
+ pub extern "C" fn cb ( data : u64 ) -> u64 {
27
20
if data == 1 { data } else { fact ( data - 1 ) * data }
28
21
}
Original file line number Diff line number Diff line change 1
1
//@ run-pass
2
2
//@ ignore-emscripten blows the JS stack
3
3
4
- #![ feature( rustc_private) ]
5
-
6
- extern crate libc;
7
-
8
- mod rustrt {
9
- extern crate libc;
10
-
11
- #[ link( name = "rust_test_helpers" , kind = "static" ) ]
12
- extern "C" {
13
- pub fn rust_dbg_call (
14
- cb : extern "C" fn ( libc:: uintptr_t ) -> libc:: uintptr_t ,
15
- data : libc:: uintptr_t ,
16
- ) -> libc:: uintptr_t ;
17
- }
4
+ #[ link( name = "rust_test_helpers" , kind = "static" ) ]
5
+ extern "C" {
6
+ pub fn rust_dbg_call (
7
+ cb : extern "C" fn ( u64 ) -> u64 ,
8
+ data : u64 ,
9
+ ) -> u64 ;
18
10
}
19
11
20
- extern "C" fn cb ( data : libc :: uintptr_t ) -> libc :: uintptr_t {
12
+ extern "C" fn cb ( data : u64 ) -> u64 {
21
13
if data == 1 { data } else { count ( data - 1 ) + 1 }
22
14
}
23
15
24
- fn count ( n : libc :: uintptr_t ) -> libc :: uintptr_t {
16
+ fn count ( n : u64 ) -> u64 {
25
17
unsafe {
26
18
println ! ( "n = {}" , n) ;
27
- rustrt :: rust_dbg_call ( cb, n)
19
+ rust_dbg_call ( cb, n)
28
20
}
29
21
}
30
22
31
23
pub fn main ( ) {
32
24
let result = count ( 1000 ) ;
33
- println ! ( "result = {}" , result) ;
25
+ println ! ( "result = {:? }" , result) ;
34
26
assert_eq ! ( result, 1000 ) ;
35
27
}
Original file line number Diff line number Diff line change 1
1
//@ run-pass
2
- #![ allow( unused_must_use) ]
3
2
//@ needs-threads
4
- #![ feature( rustc_private) ]
5
3
6
- extern crate libc;
7
4
use std:: thread;
8
5
9
- mod rustrt {
10
- extern crate libc;
11
-
12
- #[ link( name = "rust_test_helpers" , kind = "static" ) ]
13
- extern "C" {
14
- pub fn rust_dbg_call (
15
- cb : extern "C" fn ( libc:: uintptr_t ) -> libc:: uintptr_t ,
16
- data : libc:: uintptr_t ,
17
- ) -> libc:: uintptr_t ;
18
- }
6
+ #[ link( name = "rust_test_helpers" , kind = "static" ) ]
7
+ extern "C" {
8
+ pub fn rust_dbg_call (
9
+ cb : extern "C" fn ( u64 ) -> u64 ,
10
+ data : u64 ,
11
+ ) -> u64 ;
19
12
}
20
13
21
- extern "C" fn cb ( data : libc :: uintptr_t ) -> libc :: uintptr_t {
22
- if data == 1 { data } else { count ( data - 1 ) + 1 }
14
+ extern "C" fn cb ( data : u64 ) -> u64 {
15
+ if data == 1 { data } else { count ( data - 1 ) + 1 }
23
16
}
24
17
25
- fn count ( n : libc :: uintptr_t ) -> libc :: uintptr_t {
18
+ fn count ( n : u64 ) -> u64 {
26
19
unsafe {
27
20
println ! ( "n = {}" , n) ;
28
- rustrt :: rust_dbg_call ( cb, n)
21
+ rust_dbg_call ( cb, n)
29
22
}
30
23
}
31
24
@@ -37,5 +30,5 @@ pub fn main() {
37
30
println ! ( "result = {}" , result) ;
38
31
assert_eq ! ( result, 1000 ) ;
39
32
} )
40
- . join ( ) ;
33
+ . join ( ) . unwrap ( ) ;
41
34
}
Original file line number Diff line number Diff line change 1
1
//@ run-pass
2
2
3
- #![ feature( rustc_private) ]
4
-
5
- extern crate libc;
6
-
7
- mod rustrt {
8
- extern crate libc;
9
-
10
- #[ link( name = "rust_test_helpers" , kind = "static" ) ]
11
- extern "C" {
12
- pub fn rust_dbg_call (
13
- cb : extern "C" fn ( libc:: uintptr_t ) -> libc:: uintptr_t ,
14
- data : libc:: uintptr_t ,
15
- ) -> libc:: uintptr_t ;
16
- }
3
+ #[ link( name = "rust_test_helpers" , kind = "static" ) ]
4
+ extern "C" {
5
+ pub fn rust_dbg_call (
6
+ cb : extern "C" fn ( u64 ) -> u64 ,
7
+ data : u64 ,
8
+ ) -> u64 ;
17
9
}
18
10
19
- extern "C" fn cb ( data : libc :: uintptr_t ) -> libc :: uintptr_t {
11
+ extern "C" fn cb ( data : u64 ) -> u64 {
20
12
if data == 1 { data } else { fact ( data - 1 ) * data }
21
13
}
22
14
23
- fn fact ( n : libc :: uintptr_t ) -> libc :: uintptr_t {
15
+ fn fact ( n : u64 ) -> u64 {
24
16
unsafe {
25
17
println ! ( "n = {}" , n) ;
26
- rustrt :: rust_dbg_call ( cb, n)
18
+ rust_dbg_call ( cb, n)
27
19
}
28
20
}
29
21
Original file line number Diff line number Diff line change 1
1
//@ run-pass
2
- #! [ allow ( unused_must_use ) ]
2
+ //@ needs-threads
3
3
// This time we're testing repeatedly going up and down both stacks to
4
4
// make sure the stack pointers are maintained properly in both
5
5
// directions
6
6
7
- //@ needs-threads
8
- #![ feature( rustc_private) ]
9
-
10
- extern crate libc;
11
7
use std:: thread;
12
8
13
- mod rustrt {
14
- extern crate libc;
15
-
16
- #[ link( name = "rust_test_helpers" , kind = "static" ) ]
17
- extern "C" {
18
- pub fn rust_dbg_call (
19
- cb : extern "C" fn ( libc:: uintptr_t ) -> libc:: uintptr_t ,
20
- data : libc:: uintptr_t ,
21
- ) -> libc:: uintptr_t ;
22
- }
9
+ #[ link( name = "rust_test_helpers" , kind = "static" ) ]
10
+ extern "C" {
11
+ pub fn rust_dbg_call (
12
+ cb : extern "C" fn ( u64 ) -> u64 ,
13
+ data : u64 ,
14
+ ) -> u64 ;
23
15
}
24
16
25
- extern "C" fn cb ( data : libc :: uintptr_t ) -> libc :: uintptr_t {
17
+ extern "C" fn cb ( data : u64 ) -> u64 {
26
18
if data == 1 { data } else { count ( data - 1 ) + count ( data - 1 ) }
27
19
}
28
20
29
- fn count ( n : libc :: uintptr_t ) -> libc :: uintptr_t {
21
+ fn count ( n : u64 ) -> u64 {
30
22
unsafe {
31
23
println ! ( "n = {}" , n) ;
32
- rustrt :: rust_dbg_call ( cb, n)
24
+ rust_dbg_call ( cb, n)
33
25
}
34
26
}
35
27
@@ -41,5 +33,5 @@ pub fn main() {
41
33
println ! ( "result = {}" , result) ;
42
34
assert_eq ! ( result, 2048 ) ;
43
35
} )
44
- . join ( ) ;
36
+ . join ( ) . unwrap ( ) ;
45
37
}
Original file line number Diff line number Diff line change 1
1
//@ run-pass
2
2
//@ aux-build:extern-crosscrate-source.rs
3
3
4
- #![ feature( rustc_private) ]
5
-
6
4
extern crate externcallback;
7
- extern crate libc;
8
5
9
- fn fact ( n : libc :: uintptr_t ) -> libc :: uintptr_t {
6
+ fn fact ( n : u64 ) -> u64 {
10
7
unsafe {
11
- println ! ( "n = {}" , n) ;
12
- externcallback:: rustrt :: rust_dbg_call ( externcallback:: cb, n)
8
+ println ! ( "n = {:? }" , n) ;
9
+ externcallback:: rust_dbg_call ( externcallback:: cb, n)
13
10
}
14
11
}
15
12
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments