-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve what we generate in debug mode
- Loading branch information
Showing
4 changed files
with
123 additions
and
46 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
// revisions: DEBUG OPTIM | ||
// [DEBUG] compile-flags: -C opt-level=0 | ||
// [OPTIM] compile-flags: -C opt-level=3 | ||
// assembly-output: emit-asm | ||
// compile-flags: --crate-type=lib -C llvm-args=-x86-asm-syntax=intel | ||
// only-x86_64 | ||
// ignore-sgx | ||
|
||
#![feature(core_intrinsics)] | ||
|
||
use std::intrinsics::three_way_compare; | ||
|
||
#[no_mangle] | ||
// CHECK-LABEL: signed_cmp: | ||
pub fn signed_cmp(a: i16, b: i16) -> std::cmp::Ordering { | ||
// DEBUG: cmp | ||
// DEBUG: setg | ||
// DEBUG: and | ||
// DEBUG: cmp | ||
// DEBUG: setl | ||
// DEBUG: and | ||
// DEBUG: sub | ||
|
||
// OPTIM: xor | ||
// OPTIM: cmp | ||
// OPTIM: setne | ||
// OPTIM: mov | ||
// OPTIM: cmovge | ||
// OPTIM: ret | ||
three_way_compare(a, b) | ||
} | ||
|
||
#[no_mangle] | ||
// CHECK-LABEL: unsigned_cmp: | ||
pub fn unsigned_cmp(a: u16, b: u16) -> std::cmp::Ordering { | ||
// DEBUG: cmp | ||
// DEBUG: seta | ||
// DEBUG: and | ||
// DEBUG: cmp | ||
// DEBUG: setb | ||
// DEBUG: and | ||
// DEBUG: sub | ||
|
||
// OPTIM: xor | ||
// OPTIM: cmp | ||
// OPTIM: setne | ||
// OPTIM: mov | ||
// OPTIM: cmovae | ||
// OPTIM: ret | ||
three_way_compare(a, b) | ||
} |
This file was deleted.
Oops, something went wrong.
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,47 @@ | ||
// revisions: DEBUG OPTIM | ||
// [DEBUG] compile-flags: -C opt-level=0 | ||
// [OPTIM] compile-flags: -C opt-level=3 | ||
// compile-flags: -C no-prepopulate-passes | ||
|
||
#![crate_type = "lib"] | ||
#![feature(core_intrinsics)] | ||
|
||
use std::intrinsics::three_way_compare; | ||
|
||
#[no_mangle] | ||
// CHECK-LABEL: @signed_cmp | ||
// DEBUG-SAME: (i16 %a, i16 %b) | ||
// OPTIM-SAME: (i16 noundef %a, i16 noundef %b) | ||
pub fn signed_cmp(a: i16, b: i16) -> std::cmp::Ordering { | ||
// DEBUG: %[[GT:.+]] = icmp sgt i16 %a, %b | ||
// DEBUG: %[[ZGT:.+]] = zext i1 %[[GT]] to i8 | ||
// DEBUG: %[[LT:.+]] = icmp slt i16 %a, %b | ||
// DEBUG: %[[ZLT:.+]] = zext i1 %[[LT]] to i8 | ||
// DEBUG: %[[R:.+]] = sub nsw i8 %[[ZGT]], %[[ZLT]] | ||
|
||
// OPTIM: %[[LT:.+]] = icmp slt i16 %a, %b | ||
// OPTIM: %[[NE:.+]] = icmp ne i16 %a, %b | ||
// OPTIM: %[[CGE:.+]] = select i1 %[[NE]], i8 1, i8 0 | ||
// OPTIM: %[[CGEL:.+]] = select i1 %[[LT]], i8 -1, i8 %[[CGE]] | ||
// OPTIM: ret i8 %[[CGEL]] | ||
three_way_compare(a, b) | ||
} | ||
|
||
#[no_mangle] | ||
// CHECK-LABEL: @unsigned_cmp | ||
// DEBUG-SAME: (i16 %a, i16 %b) | ||
// OPTIM-SAME: (i16 noundef %a, i16 noundef %b) | ||
pub fn unsigned_cmp(a: u16, b: u16) -> std::cmp::Ordering { | ||
// DEBUG: %[[GT:.+]] = icmp ugt i16 %a, %b | ||
// DEBUG: %[[ZGT:.+]] = zext i1 %[[GT]] to i8 | ||
// DEBUG: %[[LT:.+]] = icmp ult i16 %a, %b | ||
// DEBUG: %[[ZLT:.+]] = zext i1 %[[LT]] to i8 | ||
// DEBUG: %[[R:.+]] = sub nsw i8 %[[ZGT]], %[[ZLT]] | ||
|
||
// OPTIM: %[[LT:.+]] = icmp ult i16 %a, %b | ||
// OPTIM: %[[NE:.+]] = icmp ne i16 %a, %b | ||
// OPTIM: %[[CGE:.+]] = select i1 %[[NE]], i8 1, i8 0 | ||
// OPTIM: %[[CGEL:.+]] = select i1 %[[LT]], i8 -1, i8 %[[CGE]] | ||
// OPTIM: ret i8 %[[CGEL]] | ||
three_way_compare(a, b) | ||
} |