Add codegen test for multiple asm!
options
This commit is contained in:
parent
27cc7c7d9f
commit
820bba1c46
1 changed files with 53 additions and 0 deletions
53
src/test/codegen/asm-multiple-options.rs
Normal file
53
src/test/codegen/asm-multiple-options.rs
Normal file
|
@ -0,0 +1,53 @@
|
||||||
|
// compile-flags: -O
|
||||||
|
// only-x86_64
|
||||||
|
|
||||||
|
#![crate_type = "rlib"]
|
||||||
|
#![feature(asm)]
|
||||||
|
|
||||||
|
// CHECK-LABEL: @pure
|
||||||
|
// CHECK-NOT: asm
|
||||||
|
// CHECK: ret void
|
||||||
|
#[no_mangle]
|
||||||
|
pub unsafe fn pure(x: i32) {
|
||||||
|
let y: i32;
|
||||||
|
asm!("", out("ax") y, in("bx") x, options(pure), options(nomem));
|
||||||
|
}
|
||||||
|
|
||||||
|
pub static mut VAR: i32 = 0;
|
||||||
|
pub static mut DUMMY_OUTPUT: i32 = 0;
|
||||||
|
|
||||||
|
// CHECK-LABEL: @readonly
|
||||||
|
// CHECK: call i32 asm
|
||||||
|
// CHECK: ret i32 1
|
||||||
|
#[no_mangle]
|
||||||
|
pub unsafe fn readonly() -> i32 {
|
||||||
|
VAR = 1;
|
||||||
|
asm!("", out("ax") DUMMY_OUTPUT, options(pure), options(readonly));
|
||||||
|
VAR
|
||||||
|
}
|
||||||
|
|
||||||
|
// CHECK-LABEL: @nomem
|
||||||
|
// CHECK-NOT: store
|
||||||
|
// CHECK: call i32 asm
|
||||||
|
// CHECK: store
|
||||||
|
// CHECK: ret i32 2
|
||||||
|
#[no_mangle]
|
||||||
|
pub unsafe fn nomem() -> i32 {
|
||||||
|
VAR = 1;
|
||||||
|
asm!("", out("ax") DUMMY_OUTPUT, options(pure), options(nomem));
|
||||||
|
VAR = 2;
|
||||||
|
VAR
|
||||||
|
}
|
||||||
|
|
||||||
|
// CHECK-LABEL: @not_nomem
|
||||||
|
// CHECK: store
|
||||||
|
// CHECK: call i32 asm
|
||||||
|
// CHECK: store
|
||||||
|
// CHECK: ret i32 2
|
||||||
|
#[no_mangle]
|
||||||
|
pub unsafe fn not_nomem() -> i32 {
|
||||||
|
VAR = 1;
|
||||||
|
asm!("", out("ax") DUMMY_OUTPUT, options(pure), options(readonly));
|
||||||
|
VAR = 2;
|
||||||
|
VAR
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue