-
Notifications
You must be signed in to change notification settings - Fork 13.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update tests for sym support in global_asm!
- Loading branch information
Showing
11 changed files
with
115 additions
and
58 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,26 @@ | ||
// only-x86_64 | ||
// only-linux | ||
// assembly-output: emit-asm | ||
// compile-flags: -C llvm-args=--x86-asm-syntax=intel | ||
|
||
#![feature(asm_const)] | ||
#![feature(asm_const, asm_sym)] | ||
#![crate_type = "rlib"] | ||
|
||
use std::arch::global_asm; | ||
|
||
#[no_mangle] | ||
fn my_func() {} | ||
|
||
#[no_mangle] | ||
static MY_STATIC: i32 = 0; | ||
|
||
// CHECK: mov eax, eax | ||
global_asm!("mov eax, eax"); | ||
// CHECK: mov ebx, 5 | ||
global_asm!("mov ebx, {}", const 5); | ||
// CHECK: mov ecx, 5 | ||
global_asm!("movl ${}, %ecx", const 5, options(att_syntax)); | ||
// CHECK: call my_func | ||
global_asm!("call {}", sym my_func); | ||
// CHECK: lea rax, [rip + MY_STATIC] | ||
global_asm!("lea rax, [rip + {}]", sym MY_STATIC); |
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
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
Oops, something went wrong.